From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 00:14: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 543CB16A4B3 for ; Sun, 28 Sep 2003 00:14:07 -0700 (PDT) Received: from falcon.midgard.homeip.net (h76n3fls24o1048.bredband.comhem.se [213.67.148.76]) by mx1.FreeBSD.org (Postfix) with SMTP id B782744017 for ; Sun, 28 Sep 2003 00:14:04 -0700 (PDT) (envelope-from ertr1013@student.uu.se) Received: (qmail 82076 invoked by uid 1001); 28 Sep 2003 07:14:02 -0000 Date: Sun, 28 Sep 2003 09:14:02 +0200 From: Erik Trulsson To: "Pedro F. Giffuni" Message-ID: <20030928071402.GA72957@falcon.midgard.homeip.net> Mail-Followup-To: "Pedro F. Giffuni" , freebsd-ports@FreeBSD.org References: <20030928021626.99739.qmail@web13407.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030928021626.99739.qmail@web13407.mail.yahoo.com> User-Agent: Mutt/1.5.4i cc: freebsd-ports@FreeBSD.org Subject: Re: xview-clients port and the bento log X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 07:14:07 -0000 On Sat, Sep 27, 2003 at 07:16:26PM -0700, Pedro F. Giffuni wrote: > Hi; > > I'm looking at the bento log cview-clients and it looks easy to fix but really > weird and in a certain sense scary: > > patch-aa does not apply cleanly, but it seems like a path problem: > .. > patch: **** can't cd to > /tmp/a/ports/x11-toolkits/xview-clients/../xview/work/xview3.2p1-X11R6: No such > file or directory > > The patch is ugly by modern standards, it has several diffs in the same file, > and the first diff is not necessary as it contains only newline changes, but > the patch has been untouched since it was committed (4 years ago!). Has this > port been broken for 4 years?? The port itself is not quite broken (and the patch itself is fine), but the port has a somewhat incestous relataionship with the xview port. If you first do a 'make patch' in the xviw port, then 'make patch' in the xview-clients port, then things will work fine. Otherwise they won't. This used to work automatically, but some time ago there were changes made to the ports system as to exactly when build-time dependencies are checked. It used to be prior to the extract target, but was moved to just prior to the configure target. Things ought to work fine, since xview-clients DEPENDS on xview, but it doesn't work right for some reason. Anyway, the problem lies in how xview-clients depends on xview. (And in the fact that both these ports seem quite dusty and in need of a complete overhaul to have them updated to modern ports-practice, but that seems like a lot of work.) The following patch to xview-clients seems to make the patches apply cleanly, but I am not at all sure if this is the right way to solve the problem: Index: Makefile =================================================================== RCS file: /ncvs/ports/x11-toolkits/xview-clients/Makefile,v retrieving revision 1.27 diff -u -r1.27 Makefile --- Makefile 20 Feb 2003 19:20:28 -0000 1.27 +++ Makefile 28 Sep 2003 07:03:28 -0000 @@ -18,6 +18,7 @@ COMMENT= OpenLook applications and man pages DEPENDS= ${PORTSDIR}/x11-toolkits/xview:install +PATCH_DEPENDS= /nonexistent:${PORTSDIR}/x11-toolkits/xview:patch USE_X_PREFIX= yes EXTRACT_ONLY= # empty -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 04:49: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 64EA216A4B3 for ; Sun, 28 Sep 2003 04:49:18 -0700 (PDT) Received: from lilith.bellavista.cz (lilith.bellavista.cz [213.235.167.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E79644032 for ; Sun, 28 Sep 2003 04:49:17 -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 4BCBD28; Sun, 28 Sep 2003 13:49:15 +0200 (CEST) Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id CDF862FDA01; Sun, 28 Sep 2003 13:49:14 +0200 (CEST) Date: Sun, 28 Sep 2003 13:49:14 +0200 From: Roman Neuhauser To: "Pedro F. Giffuni" , freebsd-ports@FreeBSD.org Message-ID: <20030928114914.GA11636@freepuppy.bellavista.cz> Mail-Followup-To: "Pedro F. Giffuni" , freebsd-ports@FreeBSD.org References: <20030928021626.99739.qmail@web13407.mail.yahoo.com> <20030928071402.GA72957@falcon.midgard.homeip.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030928071402.GA72957@falcon.midgard.homeip.net> User-Agent: Mutt/1.5.4i Subject: Re: xview-clients port and the bento log X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 11:49:18 -0000 # ertr1013@student.uu.se / 2003-09-28 09:14:02 +0200: > The following patch to xview-clients seems to make the patches apply > cleanly, but I am not at all sure if this is the right way to solve the > problem: > > > Index: Makefile > =================================================================== > RCS file: /ncvs/ports/x11-toolkits/xview-clients/Makefile,v > retrieving revision 1.27 > diff -u -r1.27 Makefile > --- Makefile 20 Feb 2003 19:20:28 -0000 1.27 > +++ Makefile 28 Sep 2003 07:03:28 -0000 > @@ -18,6 +18,7 @@ > COMMENT= OpenLook applications and man pages > > DEPENDS= ${PORTSDIR}/x11-toolkits/xview:install > +PATCH_DEPENDS= /nonexistent:${PORTSDIR}/x11-toolkits/xview:patch s:/nonexistent:${NONEXISTENT}: ? -- 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 Sun Sep 28 05:04: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 E67EB16A4B3 for ; Sun, 28 Sep 2003 05:04:17 -0700 (PDT) Received: from falcon.midgard.homeip.net (h76n3fls24o1048.bredband.comhem.se [213.67.148.76]) by mx1.FreeBSD.org (Postfix) with SMTP id 017C84400B for ; Sun, 28 Sep 2003 05:04:15 -0700 (PDT) (envelope-from ertr1013@student.uu.se) Received: (qmail 84279 invoked by uid 1001); 28 Sep 2003 12:04:13 -0000 Date: Sun, 28 Sep 2003 14:04:13 +0200 From: Erik Trulsson To: "Pedro F. Giffuni" , freebsd-ports@FreeBSD.org Message-ID: <20030928120413.GA84090@falcon.midgard.homeip.net> Mail-Followup-To: "Pedro F. Giffuni" , freebsd-ports@FreeBSD.org References: <20030928021626.99739.qmail@web13407.mail.yahoo.com> <20030928071402.GA72957@falcon.midgard.homeip.net> <20030928114914.GA11636@freepuppy.bellavista.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030928114914.GA11636@freepuppy.bellavista.cz> User-Agent: Mutt/1.5.4i Subject: Re: xview-clients port and the bento log X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 12:04:18 -0000 On Sun, Sep 28, 2003 at 01:49:14PM +0200, Roman Neuhauser wrote: > # ertr1013@student.uu.se / 2003-09-28 09:14:02 +0200: > > The following patch to xview-clients seems to make the patches apply > > cleanly, but I am not at all sure if this is the right way to solve the > > problem: > > > > > > Index: Makefile > > =================================================================== > > RCS file: /ncvs/ports/x11-toolkits/xview-clients/Makefile,v > > retrieving revision 1.27 > > diff -u -r1.27 Makefile > > --- Makefile 20 Feb 2003 19:20:28 -0000 1.27 > > +++ Makefile 28 Sep 2003 07:03:28 -0000 > > @@ -18,6 +18,7 @@ > > COMMENT= OpenLook applications and man pages > > > > DEPENDS= ${PORTSDIR}/x11-toolkits/xview:install > > +PATCH_DEPENDS= /nonexistent:${PORTSDIR}/x11-toolkits/xview:patch > > s:/nonexistent:${NONEXISTENT}: ? Yeah, I guess so. I wasn't aware of that make-variable before, but it should probably be used here. -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 05:41: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 E088516A4B3 for ; Sun, 28 Sep 2003 05:41:27 -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 AE4C944003 for ; Sun, 28 Sep 2003 05:41:26 -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 1A3arb-0001nV-00; Sun, 28 Sep 2003 14:41:23 +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 h8SCfN4W015924; Sun, 28 Sep 2003 14:41:23 +0200 (CEST) (envelope-from riggs@o503.hadiko.de) Received: (from riggs@localhost) by o503.hadiko.de (8.12.9p1/8.12.9/Submit) id h8SCfNM5015923; Sun, 28 Sep 2003 14:41:23 +0200 (CEST) (envelope-from riggs) Date: Sun, 28 Sep 2003 14:41:23 +0200 From: "Thomas E. Zander" To: Steve Wingate Message-ID: <20030928124123.GA15458@o503.hadiko.de> References: <20030927191930.M4565@daemon.g-e-e-k.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="r5Pyd7+fXNt84Ff3" Content-Disposition: inline In-Reply-To: <20030927191930.M4565@daemon.g-e-e-k.net> 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 1064752655) X-Operating-System: Riggiland BSD 5.1-RELEASE-p7 (To serve and protect.) cc: FreeBSD Ports Mail list Subject: Re: mplayer-skins X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 12:41:28 -0000 --r5Pyd7+fXNt84Ff3 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, 27. Sep 2003, at 19:20 -0700, Steve Wingate wrote according to [mplayer-skins]: > Who is the knucklehead behind the mplayer-skins port asking you 2-3 which > skins you want? Man, that's irritating. You're welcome to suggest a patch to solve this misbehaviour. 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. --r5Pyd7+fXNt84Ff3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iD8DBQE/dtbzjdSJKchZls0RAjSEAJsGcTa/N0FROKACFablQH+gVjuIrgCfTFlB Th/x4VodU48L+K0/kRdOiLU= =yNvW -----END PGP SIGNATURE----- --r5Pyd7+fXNt84Ff3-- From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 05:57: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 9D31516A4B3; Sun, 28 Sep 2003 05:57:46 -0700 (PDT) Received: from shellma.zin.lublin.pl (shellma.zin.lublin.pl [212.182.126.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CA9243FF5; Sun, 28 Sep 2003 05:57:43 -0700 (PDT) (envelope-from pawmal-posting@freebsd.lublin.pl) Received: by shellma.zin.lublin.pl (Postfix, from userid 1018) id B95225F103; Sun, 28 Sep 2003 15:00:38 +0200 (CEST) Date: Sun, 28 Sep 2003 15:00:38 +0200 From: Pawel Malachowski To: ports@freebsd.org Message-ID: <20030928130038.GA92943@shellma.zin.lublin.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.4.1i cc: sumikawa@FreeBSD.org cc: bms@freebsd.org cc: fuzzball@ipv6peer.net Subject: quagga vs. zebra-pj X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 12:57:46 -0000 Hello, It looks net/quagga and net/zebra-pj both are the same ports for quagga, difference is that net/zebra-pj bases on quagga snapshots and net/quagga uses a release one. How about renaming net/zebra-pj to net/quagga-devel or something like that? cheers, -- Pawe³ Ma³achowski From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 06:41: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 E23F216A4B3 for ; Sun, 28 Sep 2003 06:41:02 -0700 (PDT) Received: from mail-kv.alkar.net (mail-kv.alkar.net [195.248.176.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id A465343FA3 for ; Sun, 28 Sep 2003 06:41:01 -0700 (PDT) (envelope-from ss-18@ukr.net) Received: from ns.net-centre.com.ua ([212.86.251.166] helo=ss18) by mail-kv.alkar.net with smtp (Exim 4.20) id 1A3bnE-0007kc-U3 for freebsd-ports@FreeBSD.org; Sun, 28 Sep 2003 16:40:57 +0300 Message-ID: <000901c385c6$2af3b7a0$cbdca8c0@ss18> From: "Serg Khmizenko" To: Date: Sun, 28 Sep 2003 16:41:04 +0300 MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Subject: RDESKTOP and SVGALIB 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: Sun, 28 Sep 2003 13:41:03 -0000 Hello. Whether prompt, please, there is a port for installation of program RDESKTOP and SVGALIB without installation X-windows. I try to install them from ports but it is impossible. I tried to install these programs, using patches from a site http: // sourceforge.net/tracker/index.php? func=detail*aid=646352*group_id=24366*atid=381349, but they run with errors. Please tell me, how install it? Thanks. From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 07:18: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 B132716A4B3 for ; Sun, 28 Sep 2003 07:18:08 -0700 (PDT) Received: from nagual.st (cc20684-a.assen1.dr.home.nl [217.120.160.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB4874402B for ; Sun, 28 Sep 2003 07:18:07 -0700 (PDT) (envelope-from dick@nagual.st) Received: from nagual.st (pooh.nagual.st [192.168.11.22]) by nagual.st with esmtp; Sun, 28 Sep 2003 16:18:06 +0200 Message-ID: <3F76ED9E.4050809@nagual.st> Date: Sun, 28 Sep 2003 16:18:06 +0200 From: Dick Hoogendijk User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3) Gecko/20030424 X-Accept-Language: nl, en-us, en MIME-Version: 1.0 To: yinjieh@csie.nctu.edu.tw Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: amsn-0.81 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 14:18:08 -0000 Hi, I see you're the maintainer of amsn. I use this messenger often, but the new protocol gives me this annoying messesges ;-( The *new* amsn-0.82 dealt with this, so I want to ask you:"when will the port be updated" Sorry to bother you Thanks for your time. Dick From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 08:37: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 A10D916A4B3 for ; Sun, 28 Sep 2003 08:37:11 -0700 (PDT) Received: from web13407.mail.yahoo.com (web13407.mail.yahoo.com [216.136.175.65]) by mx1.FreeBSD.org (Postfix) with SMTP id BE2BD44017 for ; Sun, 28 Sep 2003 08:37:10 -0700 (PDT) (envelope-from giffunip@yahoo.com) Message-ID: <20030928153710.81198.qmail@web13407.mail.yahoo.com> Received: from [200.91.194.224] by web13407.mail.yahoo.com via HTTP; Sun, 28 Sep 2003 08:37:10 PDT Date: Sun, 28 Sep 2003 08:37:10 -0700 (PDT) From: "Pedro F. Giffuni" To: Erik Trulsson In-Reply-To: <20030928071402.GA72957@falcon.midgard.homeip.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-ports@FreeBSD.org Subject: Re: xview-clients port and the bento log X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 15:37:11 -0000 I see... (I did the last "cleaning" on that port years ago) Your patch is an option, another one is merging xview-clients into xview. I think the best would be to do something like ghostscript-x11 does, merge the xview-clients patches into the xview port and add the Clients target from the xview-clients port. Yeah, it's quite a job and it has to be done with some care. cheers, Pedro. --- Erik Trulsson wrote: ... > > The port itself is not quite broken (and the patch itself is fine), but > the port has a somewhat incestous relataionship with the xview port. > If you first do a 'make patch' in the xviw port, then 'make patch' in > the xview-clients port, then things will work fine. Otherwise they > won't. > This used to work automatically, but some time ago there were changes > made to the ports system as to exactly when build-time dependencies are > checked. It used to be prior to the extract target, but was moved to > just prior to the configure target. > Things ought to work fine, since xview-clients DEPENDS on xview, but > it doesn't work right for some reason. > > Anyway, the problem lies in how xview-clients depends on xview. > (And in the fact that both these ports seem quite dusty and in need of > a complete overhaul to have them updated to modern ports-practice, but > that seems like a lot of work.) > > The following patch to xview-clients seems to make the patches apply > cleanly, but I am not at all sure if this is the right way to solve the > problem: > > > Index: Makefile > =================================================================== > RCS file: /ncvs/ports/x11-toolkits/xview-clients/Makefile,v > retrieving revision 1.27 > diff -u -r1.27 Makefile > --- Makefile 20 Feb 2003 19:20:28 -0000 1.27 > +++ Makefile 28 Sep 2003 07:03:28 -0000 > @@ -18,6 +18,7 @@ > COMMENT= OpenLook applications and man pages > > DEPENDS= ${PORTSDIR}/x11-toolkits/xview:install > +PATCH_DEPENDS= /nonexistent:${PORTSDIR}/x11-toolkits/xview:patch > > USE_X_PREFIX= yes > EXTRACT_ONLY= # empty > > > > > > > -- > > Erik Trulsson > ertr1013@student.uu.se __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 09:00: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 6270916A4B3 for ; Sun, 28 Sep 2003 09:00:02 -0700 (PDT) Received: from falcon.midgard.homeip.net (h76n3fls24o1048.bredband.comhem.se [213.67.148.76]) by mx1.FreeBSD.org (Postfix) with SMTP id 250BE44035 for ; Sun, 28 Sep 2003 09:00:00 -0700 (PDT) (envelope-from ertr1013@student.uu.se) Received: (qmail 94293 invoked by uid 1001); 28 Sep 2003 15:59:57 -0000 Date: Sun, 28 Sep 2003 17:59:57 +0200 From: Erik Trulsson To: "Pedro F. Giffuni" Message-ID: <20030928155956.GA89851@falcon.midgard.homeip.net> Mail-Followup-To: "Pedro F. Giffuni" , freebsd-ports@FreeBSD.org References: <20030928071402.GA72957@falcon.midgard.homeip.net> <20030928153710.81198.qmail@web13407.mail.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030928153710.81198.qmail@web13407.mail.yahoo.com> User-Agent: Mutt/1.5.4i cc: freebsd-ports@FreeBSD.org Subject: Re: xview-clients port and the bento log X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 16:00:02 -0000 On Sun, Sep 28, 2003 at 08:37:10AM -0700, Pedro F. Giffuni wrote: > I see... (I did the last "cleaning" on that port years ago) Both the xview and xview-clients ports are showing their age somewhat. (The xview* source itself is even older and dustier and hasn't been changed for nearly a decade, but updating that to modern coding standards seems like a lot of work.) > > Your patch is an option, another one is merging xview-clients into xview. I > think the best would be to do something like ghostscript-x11 does, merge the > xview-clients patches into the xview port and add the Clients target from the > xview-clients port. Yes, that would probably be the best solution. My patch is more of a temporary workaround that can be used until somebody comes up with a proper fix. There can't be too many people around who use the xview port without also using the xview-clients port so merging the ports sounds like a good idea. > > Yeah, it's quite a job and it has to be done with some care. Indeed. I am not volunteering. :-) At least for the near future I don't have the time ncecessary to do it. -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 09:06: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 6EC1C16A4E7 for ; Sun, 28 Sep 2003 09:06:27 -0700 (PDT) Received: from arthur.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7ED343FF3 for ; Sun, 28 Sep 2003 09:06:26 -0700 (PDT) (envelope-from simon@arthur.nitro.dk) Received: by arthur.nitro.dk (Postfix, from userid 1000) id 1269410BF8C; Sun, 28 Sep 2003 18:06:25 +0200 (CEST) Date: Sun, 28 Sep 2003 18:06:24 +0200 From: "Simon L. Nielsen" To: ports@freebsd.org Message-ID: <20030928160623.GA393@FreeBSD.org> References: <20030928155434.GA770@galgenberg.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ew6BAiZeqk4r7MaW" Content-Disposition: inline In-Reply-To: <20030928155434.GA770@galgenberg.net> User-Agent: Mutt/1.5.4i Subject: Re: First attempt at unifying WITH_* options X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 16:06:27 -0000 --ew6BAiZeqk4r7MaW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2003.09.28 17:54:34 +0200, Ulrich Spoerlein wrote: > Hello all, >=20 > attached is a small patch to bsd.port.mk and a new file I dubbed The attachments didn't get throught.. They might have been stripped by the mailinglist software, due to their MIME content type. You can see at list of allowed MIME content types at: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/eresources.html#E= RESOURCES-MAILFILTERING --=20 Simon L. Nielsen FreeBSD Documentation Team --ew6BAiZeqk4r7MaW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD4DBQE/dwb/h9pcDSc1mlERAjPNAKC0fppn09LgpO0d4wcLmL8Xcd3AiACYvYxD Fgy5/QoddhVDFGd4a+KscQ== =xlWG -----END PGP SIGNATURE----- --ew6BAiZeqk4r7MaW-- From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 09:45: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 CC85E16A4B3 for ; Sun, 28 Sep 2003 09:45:28 -0700 (PDT) Received: from eagle.sharma-home.net (cpe-24-221-178-208.ca.sprintbbd.net [24.221.178.208]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07F804400D for ; Sun, 28 Sep 2003 09:45:26 -0700 (PDT) (envelope-from adsharma@eagle.sharma-home.net) Received: by eagle.sharma-home.net (Postfix, from userid 500) id E6697868A; Sun, 28 Sep 2003 09:48:17 -0700 (PDT) Date: Sun, 28 Sep 2003 09:48:17 -0700 From: Arun Sharma To: ports@freebsd.org Message-ID: <20030928164817.GA22684@sharma-home.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i Subject: Freetype2 and the byte code interpreter X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 16:45:28 -0000 Any comments on this post about turning it off by default ? http://www.bsd-india.org/hypermail/bsd-india/Sep 03/0759.html -Arun From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 10:00: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 59A5316A4B3 for ; Sun, 28 Sep 2003 10:00:36 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 707CB44020 for ; Sun, 28 Sep 2003 10:00:35 -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 h8SH0ZFY050052 for ; Sun, 28 Sep 2003 10:00:35 -0700 (PDT) (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h8SH0ZK4050051 for ports@freebsd.org; Sun, 28 Sep 2003 10:00:35 -0700 (PDT) (envelope-from fenner) Date: Sun, 28 Sep 2003 10:00:35 -0700 (PDT) From: Bill Fenner Message-Id: <200309281700.h8SH0ZK4050051@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: Sun, 28 Sep 2003 17:00:36 -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 Sun Sep 28 10:29: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 F276616A4B3; Sun, 28 Sep 2003 10:29:32 -0700 (PDT) Received: from prince.don.to (host217-44-166-211.range217-44.btcentralplus.com [217.44.166.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EBB84401F; Sun, 28 Sep 2003 10:29:30 -0700 (PDT) (envelope-from sumikawa@ebina.hitachi.co.jp) Received: from localhost (localhost [127.0.0.1]) by prince.don.to (8.12.9/8.11.6) with ESMTP id h8SHQ6lE000773; Sun, 28 Sep 2003 18:26:33 +0100 (BST) (envelope-from sumikawa@ebina.hitachi.co.jp) Date: Sun, 28 Sep 2003 18:26:03 +0100 (BST) Message-Id: <20030928.182603.11895072.sumikawa@ebina.hitachi.co.jp> To: pawmal-posting@freebsd.lublin.pl From: Munechika Sumikawa In-Reply-To: <20030928130038.GA92943@shellma.zin.lublin.pl> References: <20030928130038.GA92943@shellma.zin.lublin.pl> X-Mailer: xcite1.48> Mew version 4.0.58 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: sumikawa@freebsd.org cc: bms@freebsd.org cc: fuzzball@ipv6peer.net Subject: Re: quagga vs. zebra-pj X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 17:29:33 -0000 > It looks net/quagga and net/zebra-pj both are the same > ports for quagga, difference is that net/zebra-pj bases on quagga > snapshots and net/quagga uses a release one. How about renaming > net/zebra-pj to net/quagga-devel or something like that? I've just removed zebra-pj because zebra-pj was renamed to quagga. -- Sumikawa From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 10:30: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 EB6F916A4C0; Sun, 28 Sep 2003 10:30:54 -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 DD4CE4402F; Sun, 28 Sep 2003 10:30:52 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h8SHSZaw005100; Sun, 28 Sep 2003 13:28:36 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h8SHUfkB012641; Sun, 28 Sep 2003 13:30:41 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Arun Sharma In-Reply-To: <20030928164817.GA22684@sharma-home.net> References: <20030928164817.GA22684@sharma-home.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-AH3mx8X2Vgwko7JJlmDn" Organization: MarcusCom, Inc. Message-Id: <1064770249.35116.5.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Sun, 28 Sep 2003 13:30:49 -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: Freetype2 and the byte code interpreter X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 17:30:55 -0000 --=-AH3mx8X2Vgwko7JJlmDn Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sun, 2003-09-28 at 12:48, Arun Sharma wrote: > Any comments on this post about turning it off by default ? This is actually a good idea in the latest FontConfig release. You might want to run this by sobomax, the maintainer. Joe >=20 > http://www.bsd-india.org/hypermail/bsd-india/Sep 03/0759.html >=20 > -Arun > _______________________________________________ > 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 --=-AH3mx8X2Vgwko7JJlmDn 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/dxrJb2iPiv4Uz4cRAu32AJ9RkmXRfUmhz6sPGpdtmXqhHvepBACZAcXc cZ33zi1sP8oVE3oPPr3X/w0= =NWN9 -----END PGP SIGNATURE----- --=-AH3mx8X2Vgwko7JJlmDn-- From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 11:18: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 C875316A4B3 for ; Sun, 28 Sep 2003 11:18:53 -0700 (PDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 6A46F43F93 for ; Sun, 28 Sep 2003 11:18:52 -0700 (PDT) (envelope-from mue.da@gmx.de) Received: (qmail 24475 invoked by uid 65534); 28 Sep 2003 18:18:51 -0000 Received: from pD9E830F4.dip.t-dialin.net (EHLO gmx.de) (217.232.48.244) by mail.gmx.net (mp012) with SMTP; 28 Sep 2003 20:18:51 +0200 X-Authenticated: #6074742 Message-ID: <3F7725FE.1080902@gmx.de> Date: Sun, 28 Sep 2003 20:18:38 +0200 From: Daniel Mueller User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030701 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: znerd@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 8bit cc: ports@FreeBSD.org Subject: FreeBSD Port: apache-ant-1.5.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: Sun, 28 Sep 2003 18:18:53 -0000 Hi, only want to notice that apache-ant-manpage-20030908.tgz could not be fetched. Could you please fix it? THX Daniel Müller From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 11:38: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 B533916A4B3; Sun, 28 Sep 2003 11:38:57 -0700 (PDT) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id D230143FE3; Sun, 28 Sep 2003 11:38:56 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from ciam.ru (ppp129-204.dialup.mtu-net.ru [62.118.129.204]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id C55A5F941E; Sun, 28 Sep 2003 22:38:54 +0400 (MSD) (envelope-from sem@ciam.ru) Message-ID: <3F772AC3.5070109@ciam.ru> Date: Sun, 28 Sep 2003 22:38:59 +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: ports@FreeBSD.org, kde@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: minimal kde X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 18:38:57 -0000 I'd like to install KDE3 on my home desktop. So I need neither samba nor ldap. They are both not small packages. But it's looks like I can't to turn it down from build process of kdebase3? Any advices? ---- Sem. From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 13:09: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 4CE2016A4B3 for ; Sun, 28 Sep 2003 13:09:08 -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 5A17844014 for ; Sun, 28 Sep 2003 13:09:07 -0700 (PDT) (envelope-from richardcoleman@mindspring.com) Received: from c-24-98-233-138.atl.client2.attbi.com ([24.98.233.138] helo=mindspring.com) by firecrest.mail.pas.earthlink.net with asmtp (Exim 3.33 #1) id 1A3hqr-0006cd-00; Sun, 28 Sep 2003 13:09:05 -0700 Message-ID: <3F773FEB.6010809@mindspring.com> Date: Sun, 28 Sep 2003 16:09:15 -0400 From: Richard Coleman Organization: Critical Magic, Inc. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4) Gecko/20030624 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ulrich Spoerlein References: <20030928155434.GA770@galgenberg.net> In-Reply-To: <20030928155434.GA770@galgenberg.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-ELNK-Trace: 1ee258965991efcb0865379cdb43356e5e89bb4777695beb702e37df12b9c9ef4bb4a09ac9efe89cbf794a519515ce9f350badd9bab72f9c350badd9bab72f9c cc: ports@freebsd.org Subject: Re: First attempt at unifying WITH_* options X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: richardcoleman@mindspring.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 28 Sep 2003 20:09:08 -0000 I want to voice my support for adding this type of facility to the port system for FreeBSD. This is sorely needed. I haven't tried the patch yet. But from a brief glance, it apppears to be exactly what we need. We also need a place for the port maintainer to record a summary of the options, as well as any comment that is specific to that option and port. For instance, if each port had a file "pkg-options", this could print: make print-option WITH_TCL - Add tcl support. Currently experimental. WITH_TK - Add tk support. Currently broken. WITH_FOO - Add support for foo. Developers only. etc. Richard Coleman richardcoleman@mindspring.com Ulrich Spoerlein wrote: > Hello all, > > attached is a small patch to bsd.port.mk and a new file I dubbed > bsd.options.mk. I also included a diff against the QuakeForge port, > which shows how to use the new PROVIDE_OPTIONS and DEFAULT_OPTIONS > variables (sorry for the long diff, it was necessary because of the > PLIST_SUB) > > What this patch does is this: > > A port specifies PROVIDE_OPTIONS= sdl xmms. > A user can then lookup these options with 'make print-options' and set > them in the build process. There is also a print-options-recursive > target which prints all the options for the build/run depends. This > "fixes" one grief I always had with user-settable options. You want to > install some port, which depends on another port. This other port _can_ > use SDL for example. You have SDL installed and want the port to use > SDL. Now you can either watch the complete build process and interrupt, > when a dependancy get's pulled in which _can_ use additional software > you have installed, or you manually check all not-already-installed > dependancies and see if they can use additional components which you > would like them to use. > Of course you could set WITH_SDL=yes in /etc/make.conf, but maybe there > is port X which is broken when using SDL so you don't want that > particular port to be build with SDL. > Note: You can't use this with portupgrade, because it will not > pre-install dependancies when installing a new port. That means you can > have your MAKE_ARGS hash loaded with options, but when you install one > port, and the Make-Magic pulls in another Port, it's build flags are not > set (I hope you can follow me here :) > > bsd.options.mk then checks to see if either WITH_SDL=yes/WITHOUT_SDL=no > or WITH_SDL=no/WITHOUT_SDL=yes is specified. This allows for overriding > port-defaults set in DEFAULT_OPTIONS. > > An additional benefit of this centralized approach is, that all those > "shlib version bump chases" get vastly simplified. > > Implementing an interactive 'menuconfig' target is very easy (some > people have requested this...) > > Issues to resolve: > - Right now, a port can't use 'print-options' without pulling in all the > LIB_DEPENDS/CONF_ARGS stuff. So either another Variable is needed or the > stuff in bsd.options.mk has to be overrideable. > - I'm defaulting to LIB_DEPENDS right now, obviously this is only > correct if the port links agains libxmms for example. But there are > enough ports, that only run-depend on xmms (the binary). I'm not quite > sure how to fix this. > - I'm using tons of Variables right now (OPTIONS_xmms, OPTIONS_sdl, ...) > perhaps this should be changed to one variable, adding all the _set_ > options and removing the _unset_ options. Something like FLAVOR on > OpenBSD. > > Please try the patches and tell me what you think. > > Ulrich Spörlein From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 14:34: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 5202A16A4B3; Sun, 28 Sep 2003 14:34:01 -0700 (PDT) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7712E4402F; Sun, 28 Sep 2003 14:33:59 -0700 (PDT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 2240B65375; Sun, 28 Sep 2003 22:33:58 +0100 (BST) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 40818-01-4; Sun, 28 Sep 2003 22:33:57 +0100 (BST) Received: from saboteur.dek.spc.org (lardystuffer.demon.co.uk [212.228.40.202]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id A6095652EC; Sun, 28 Sep 2003 22:33:55 +0100 (BST) Received: by saboteur.dek.spc.org (Postfix, from userid 1001) id E7C2BBD; Sun, 28 Sep 2003 22:33:42 +0100 (BST) Date: Sun, 28 Sep 2003 22:33:42 +0100 From: Bruce M Simpson To: Pawel Malachowski Message-ID: <20030928213342.GA17996@saboteur.dek.spc.org> References: <20030928130038.GA92943@shellma.zin.lublin.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030928130038.GA92943@shellma.zin.lublin.pl> cc: ports@freebsd.org cc: sumikawa@FreeBSD.org cc: bms@freebsd.org cc: fuzzball@ipv6peer.net Subject: Re: quagga vs. zebra-pj X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 21:34:01 -0000 X-List-Received-Date: Sun, 28 Sep 2003 21:34:01 -0000 On Sun, Sep 28, 2003 at 03:00:38PM +0200, Pawel Malachowski wrote: > It looks net/quagga and net/zebra-pj both are the same > ports for quagga, difference is that net/zebra-pj bases on quagga > snapshots and net/quagga uses a release one. How about renaming > net/zebra-pj to net/quagga-devel or something like that? Good point -- I had been discussing this with Jean-Francois and he mentioned he would like to have a quagga-devel port. Shall we make the necessary changes (repo-copy, if necessary) etc ? BMS From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 14:34: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 2DF2516A4B3; Sun, 28 Sep 2003 14:34:26 -0700 (PDT) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 100ED43F93; Sun, 28 Sep 2003 14:34:25 -0700 (PDT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 4C0C0654DE; Sun, 28 Sep 2003 22:34:24 +0100 (BST) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 40818-01-6; Sun, 28 Sep 2003 22:34:23 +0100 (BST) Received: from saboteur.dek.spc.org (lardystuffer.demon.co.uk [212.228.40.202]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id 5E202654AE; Sun, 28 Sep 2003 22:34:22 +0100 (BST) Received: by saboteur.dek.spc.org (Postfix, from userid 1001) id 50C19C2; Sun, 28 Sep 2003 22:34:08 +0100 (BST) Date: Sun, 28 Sep 2003 22:34:08 +0100 From: Bruce M Simpson To: Munechika Sumikawa Message-ID: <20030928213408.GB17996@saboteur.dek.spc.org> References: <20030928130038.GA92943@shellma.zin.lublin.pl> <20030928.182603.11895072.sumikawa@ebina.hitachi.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030928.182603.11895072.sumikawa@ebina.hitachi.co.jp> cc: pawmal-posting@freebsd.lublin.pl cc: ports@freebsd.org cc: sumikawa@freebsd.org cc: bms@freebsd.org cc: fuzzball@ipv6peer.net Subject: Re: quagga vs. zebra-pj X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 21:34:26 -0000 On Sun, Sep 28, 2003 at 06:26:03PM +0100, Munechika Sumikawa wrote: > I've just removed zebra-pj because zebra-pj was renamed to quagga. Ok, that probably makes things easier for us :-) BMS From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 16:27: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 39F8616A4BF for ; Sun, 28 Sep 2003 16:27:33 -0700 (PDT) Received: from hellmouth5.gatech.edu (hellmouth5.gatech.edu [130.207.165.165]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8157744029 for ; Sun, 28 Sep 2003 16:27:29 -0700 (PDT) (envelope-from gte990t@mail.gatech.edu) Received: from hellmouth5.gatech.edu (localhost [127.0.0.1]) by hellmouth5.gatech.edu (Postfix) with SMTP id 108231D1ADB for ; Sun, 28 Sep 2003 19:27:29 -0400 (EDT) (envelope-from gte990t@mail.gatech.edu) Received: from webmail3.gatech.edu (webmail3.prism.gatech.edu [130.207.171.133]) by hellmouth5.gatech.edu (Postfix) with ESMTP id EA1381D1AB0 for ; Sun, 28 Sep 2003 19:27:28 -0400 (EDT) (envelope-from gte990t@mail.gatech.edu) Received: from localhost (localhost [127.0.0.1]) by webmail3.gatech.edu (Postfix) with ESMTP id B2C231D38 for ; Sun, 28 Sep 2003 19:27:28 -0400 (EDT) (envelope-from gte990t@mail.gatech.edu) Received: from 68.51.149.21 ( [68.51.149.21])with HTTP; Sun, 28 Sep 2003 19:27:28 -0400 Message-ID: <1064791648.3f776e6094725@webmail.mail.gatech.edu> Date: Sun, 28 Sep 2003 19:27:28 -0400 From: Jason Harmening To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.1 X-Originating-IP: 68.51.149.21 X-Authenticated-User: gte990t Subject: ghostscript hl1250 support? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 23:27:33 -0000 I recently bought a Brother HL-1850 laser printer for use with my FreeBSD 5.1 machine, and it works fine with the ljet4 ghostscript driver. However, I'd like to be able to use the higher resolution settings that are available through the hl1250 driver, and that driver doesn't seem to be supported in the FreeBSD ghostscript-gnu or ghostscript-afpl port. Is there any way to add this support to ghostscript-gnu, or is there a FreeBSD port of ESP ghostscript in the works? I've never written a FreeBSD port, but I'm an experienced C programmer and would be more than willing help with an espgs/hl1250 port/update if someone would point me in the right direction. Also, please let me know if there's some ghostscript-specific e-mail address or mailing list I should send this to. Thanks, Jason Harmening From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 16:39: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 8BA6B16A4B3 for ; Sun, 28 Sep 2003 16:39:59 -0700 (PDT) Received: from sccrmhc12.comcast.net (sccrmhc12.comcast.net [204.127.202.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7B0D43FE5 for ; Sun, 28 Sep 2003 16:39:58 -0700 (PDT) (envelope-from gsam@trini0.org) Received: from hivemind.trini0.org (trini0.org[68.39.114.118]) by comcast.net (sccrmhc12) with ESMTP id <20030928233957012007t2n1e>; Sun, 28 Sep 2003 23:39:57 +0000 Received: from trini0.org (gladiator.trini0.org [192.168.0.3]) by hivemind.trini0.org (Postfix) with ESMTP id 81BCD63 for ; Sun, 28 Sep 2003 19:39:57 -0400 (EDT) Message-ID: <3F77714D.3000403@trini0.org> Date: Sun, 28 Sep 2003 19:39:57 -0400 From: Gerard Samuel User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030701 X-Accept-Language: en, nl, ar, th, en-us MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Problems installing Gaim X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 23:39:59 -0000 Anyone having any problems insalling gaim (cvsupped this evening) It states, to edit /etc/ld.so.conf, but Im not sure if thats a generic or FreeBSD specific message. Any pointers would be helpful Thanks -- snip -- checking for GLIB - version >= 2.0.0... yes (version 2.2.1) checking for pkg-config... (cached) /usr/local/bin/pkg-config checking for GTK+ - version >= 2.0.0... no *** Could not run GTK+ test program, checking why... *** The test program compiled, but did not run. This usually means *** that the run-time linker is not finding GTK+ or finding the wrong *** version of GTK+. If it is not finding GTK+, you'll need to set your *** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point *** to the installed location Also, make sure you have run ldconfig if that *** is required on your system *** *** If you have an old version installed, it is best to remove it, although *** you may also be able to get things to work by modifying LD_LIBRARY_PATH configure: error: *** GTK+ 2.0 is required to build Gaim; please make sure you have the GTK+ *** development headers installed. The latest version of GTK+ is *** always available at http://www.gtk.org/. ===> Script "configure" failed unexpectedly. Please report the problem to marcus@FreeBSD.org [maintainer] and attach the "/usr/ports/net/gaim/work/gaim-0.69/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/net/gaim. -- snip -- -- snip -- gladiator# pkg_info gtk-2.2.1 Information for gtk-2.2.1: Comment: Gimp Toolkit for X11 GUI (current stable version) Required by: gtkspell2-2.0.2_2 Description: GTK is a library for creating graphical user interfaces similar to the Motif "look and feel". It is designed to be small and efficient, but still flexible enough to allow the programmer freedom in the interfaces created. GTK allows the programmer to use a variety of standard user interface widgets such as push, radio and check buttons, menus, lists and frames. It also provides several "container" widgets which can be used to control the layout of the user interface elements. GTK provides some unique features. (At least, I know of no other widget library which provides them). For example, a button does not contain a label, it contains a child widget, which in most instances will be a label. However, the child widget can also be a pixmap, image or any combination possible the programmer desires. This flexibility is adhered to throughout the library. GTK+-2.0 is a stable release, but many applications still require GTK+-1.2, the previous stable version. You can have the runtime and development environments for both GTK+-2.0 and GTK+-1.2 installed simultaneously on your computer. WWW: http://www.gtk.org/ -- snip -- From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 16:54: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 E665716A4B3 for ; Sun, 28 Sep 2003 16:54:08 -0700 (PDT) Received: from sccrmhc12.comcast.net (sccrmhc12.comcast.net [204.127.202.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 162AC4400E for ; Sun, 28 Sep 2003 16:54:08 -0700 (PDT) (envelope-from gsam@trini0.org) Received: from hivemind.trini0.org (trini0.org[68.39.114.118]) by comcast.net (sccrmhc12) with ESMTP id <20030928235407012007rrc7e>; Sun, 28 Sep 2003 23:54:07 +0000 Received: from trini0.org (gladiator.trini0.org [192.168.0.3]) by hivemind.trini0.org (Postfix) with ESMTP id 22E5A81 for ; Sun, 28 Sep 2003 19:54:07 -0400 (EDT) Message-ID: <3F77749F.3000807@trini0.org> Date: Sun, 28 Sep 2003 19:54:07 -0400 From: Gerard Samuel User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030701 X-Accept-Language: en, nl, ar, th, en-us MIME-Version: 1.0 To: ports@FreeBSD.org References: <3F77714D.3000403@trini0.org> In-Reply-To: <3F77714D.3000403@trini0.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Problems installing Gaim X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 Sep 2003 23:54:09 -0000 Gerard Samuel wrote: > Anyone having any problems insalling gaim (cvsupped this evening) > It states, to edit /etc/ld.so.conf, but Im not sure if thats a generic > or FreeBSD specific message. > Any pointers would be helpful > Thanks > > -- snip -- > checking for GLIB - version >= 2.0.0... yes (version 2.2.1) > checking for pkg-config... (cached) /usr/local/bin/pkg-config > checking for GTK+ - version >= 2.0.0... no > *** Could not run GTK+ test program, checking why... > *** The test program compiled, but did not run. This usually means > *** that the run-time linker is not finding GTK+ or finding the wrong > *** version of GTK+. If it is not finding GTK+, you'll need to set your > *** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to > point > *** to the installed location Also, make sure you have run ldconfig > if that > *** is required on your system > *** > *** If you have an old version installed, it is best to remove it, > although > *** you may also be able to get things to work by modifying > LD_LIBRARY_PATH > configure: error: > *** GTK+ 2.0 is required to build Gaim; please make sure you have the > GTK+ > *** development headers installed. The latest version of GTK+ is > *** always available at http://www.gtk.org/. > ===> Script "configure" failed unexpectedly. > Please report the problem to marcus@FreeBSD.org [maintainer] and > attach > the "/usr/ports/net/gaim/work/gaim-0.69/config.log" including the > output > of the failure of your make command. Also, it might be a good > idea to > provide an overview of all packages installed on your system > (e.g. an > `ls /var/db/pkg`). > *** Error code 1 > > Stop in /usr/ports/net/gaim. > -- snip -- > > -- snip -- > gladiator# pkg_info gtk-2.2.1 > Information for gtk-2.2.1: > > Comment: > Gimp Toolkit for X11 GUI (current stable version) > > > Required by: > gtkspell2-2.0.2_2 > > > Description: > GTK is a library for creating graphical user interfaces similar to > the Motif "look and feel". It is designed to be small and efficient, but > still flexible enough to allow the programmer freedom in the interfaces > created. GTK allows the programmer to use a variety of standard user > interface widgets such as push, radio and check buttons, menus, lists > and frames. It also provides several "container" widgets which can be > used to control the layout of the user interface elements. > > GTK provides some unique features. (At least, I know of no other > widget library which provides them). For example, a button does not > contain a label, it contains a child widget, which in most instances > will be a label. However, the child widget can also be a pixmap, image > or any combination possible the programmer desires. This flexibility is > adhered to throughout the library. > > GTK+-2.0 is a stable release, but many applications still require > GTK+-1.2, the previous stable version. You can have the runtime and > development environments for both GTK+-2.0 and GTK+-1.2 installed > simultaneously on your computer. > > WWW: http://www.gtk.org/ > -- snip -- Well, I updated gtk2 to the latest version, and the gaim installer seems to prefer that, so Im ok for now... Thanks From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 17:06: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 3008116A4D6; Sun, 28 Sep 2003 17:06:44 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 427B144017; Sun, 28 Sep 2003 17:06:42 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id E911C167779; Mon, 29 Sep 2003 02:06:40 +0200 (CEST) Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.9p1/8.12.9) with ESMTP id h8T06aIi003248 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 29 Sep 2003 02:06:39 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock Organization: FreeBSD To: Sergey Matveychuk , ports@FreeBSD.org, kde@FreeBSD.org Date: Mon, 29 Sep 2003 02:06:22 +0200 User-Agent: KMail/1.5.4 References: <3F772AC3.5070109@ciam.ru> In-Reply-To: <3F772AC3.5070109@ciam.ru> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_Ke3d/ohVVUBSotx"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200309290206.35559.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new Subject: Re: [kde-freebsd] minimal kde X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 00:06:44 -0000 --Boundary-02=_Ke3d/ohVVUBSotx Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Description: signed data Content-Disposition: inline On Sunday 28 September 2003 20:38, Sergey Matveychuk wrote: > I'd like to install KDE3 on my home desktop. > So I need neither samba nor ldap. They are both not small packages. But > it's looks like I can't to turn it down from build process of kdebase3? With the current version of the ports, you get samba-libsmbclient and=20 openldap-client, which are both (small) client-only packages (consisting=20 mostly of a shared lib). It's not going to get any smaller than that. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_Ke3d/ohVVUBSotx Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/d3eKXhc68WspdLARApN5AJwNhoUKE6qXHQTxgpzdmPy1nYHFIgCdGQrO HNmTX0FIhzEryuCOE9zhYkQ= =Y5y7 -----END PGP SIGNATURE----- --Boundary-02=_Ke3d/ohVVUBSotx-- From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 17:16: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 33A2E16A4B3 for ; Sun, 28 Sep 2003 17:16:26 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48F1044001 for ; Sun, 28 Sep 2003 17:16:25 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 8F98C16775F; Mon, 29 Sep 2003 02:16:24 +0200 (CEST) Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.9p1/8.12.9) with ESMTP id h8T0GNIi003425 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 29 Sep 2003 02:16:23 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock Organization: FreeBSD To: Jason Harmening , freebsd-ports@freebsd.org Date: Mon, 29 Sep 2003 02:16:22 +0200 User-Agent: KMail/1.5.4 References: <1064791648.3f776e6094725@webmail.mail.gatech.edu> In-Reply-To: <1064791648.3f776e6094725@webmail.mail.gatech.edu> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_Wn3d/T/0I+QcXjH"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200309290216.22954.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new Subject: Re: ghostscript hl1250 support? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 00:16:26 -0000 --Boundary-02=_Wn3d/T/0I+QcXjH Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Description: signed data Content-Disposition: inline On Monday 29 September 2003 01:27, Jason Harmening wrote: > I recently bought a Brother HL-1850 laser printer for use with my FreeBSD > 5.1 machine, and it works fine with the ljet4 ghostscript driver. Howeve= r, > I'd like to be able to use the higher resolution settings that are > available through the hl1250 driver, and that driver doesn't seem to be > supported in the FreeBSD ghostscript-gnu or ghostscript-afpl port. Is > there any way to add this support to ghostscript-gnu, or is there a FreeB= SD > port of ESP ghostscript in the works? A PR with a patch for ghostscript-gnu is already pending (=20 http://www.freebsd.org/cgi/query-pr.cgi?pr=3D57009 ), I'll look into commit= ting=20 and adapting it for ghostscript-afpl this week. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_Wn3d/T/0I+QcXjH Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/d3nWXhc68WspdLARAjgGAJ4480dsAbvKchvY1Mxu2eWB1xZt+wCglpvK pBgfcy5rFN8XAj+Er98NPxk= =j8sA -----END PGP SIGNATURE----- --Boundary-02=_Wn3d/T/0I+QcXjH-- From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 18:19: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 D969116A4B3 for ; Sun, 28 Sep 2003 18:19:08 -0700 (PDT) Received: from web14008.mail.yahoo.com (web14008.mail.yahoo.com [216.136.175.124]) by mx1.FreeBSD.org (Postfix) with SMTP id 3B2E144035 for ; Sun, 28 Sep 2003 18:19:06 -0700 (PDT) (envelope-from dcastro5@yahoo.com) Message-ID: <20030929011906.59540.qmail@web14008.mail.yahoo.com> Received: from [200.56.218.55] by web14008.mail.yahoo.com via HTTP; Sun, 28 Sep 2003 18:19:06 PDT Date: Sun, 28 Sep 2003 18:19:06 -0700 (PDT) From: Diego Castro To: Chuck Swiger , Enoch Chan In-Reply-To: <3F749D7B.4080907@mac.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: "freebsd-ports@FreeBSD.ORG" Subject: Re: imake not found error during installation of jdk 1.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Sep 2003 01:19:09 -0000 Enoch FreeBSD Foundation has released a package for that port, you can get the package from this url and install it. It's the same jdk1.3.1 from Sun. http://www.freebsdfoundation.org/press/20030825-java131.shtml --- Chuck Swiger wrote: > Enoch Chan wrote: > [ ... ] > > Stop in > /usr/ports/x11/XFree86-4-libraries/work/xc/lib. > > make: don't know how to make Makefiles. Stop > > making Makefiles in lib/XRes... > > imake: not found > > *** Error code 127 > > > > When I tried to look for imake (using "which > imake"), nothing returns. > > Then, I installed imake (under > /usr/ports/devel/imake) manually. When I > > looked under /var/db/pkg, I found two versions of > imake (namely imake-1.0 > > and imake-4.3.0_1). Still "which imake" returns > nothing. As you can tell > > by now, I am a newbie. Any suggestions are highly > appreciated! > > You need to add /usr/X11R6/bin to your $PATH; > something like this: > > PATH=$PATH:/usr/X11R6/bin > > ...for sh/bash/zsh. > > -- > -Chuck > > > _______________________________________________ > 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" __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 21:33: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 83D0516A4B3 for ; Sun, 28 Sep 2003 21:33:31 -0700 (PDT) Received: from mag.barnet.com.au (mag.barnet.com.au [218.185.88.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FB3D44025 for ; Sun, 28 Sep 2003 21:33:30 -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 A0D432A67; Mon, 29 Sep 2003 14:33:26 +1000 (EST) X-Viruscan-Id: <3F77B6160000B1EE01CF957F@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 A705D1E12; Mon, 29 Sep 2003 14:33:24 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 0703E6A7101; Mon, 29 Sep 2003 14:33:23 +1000 (EST) Date: Mon, 29 Sep 2003 14:33:22 +1000 From: Edwin Groothuis To: Michael Nottebrock Message-ID: <20030929043322.GH59397@k7.mavetju> References: <1064791648.3f776e6094725@webmail.mail.gatech.edu> <200309290216.22954.michaelnottebrock@gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200309290216.22954.michaelnottebrock@gmx.net> User-Agent: Mutt/1.4.1i cc: freebsd-ports@freebsd.org Subject: Re: ghostscript hl1250 support? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 04:33:31 -0000 On Mon, Sep 29, 2003 at 02:16:22AM +0200, Michael Nottebrock wrote: Content-Description: signed data > On Monday 29 September 2003 01:27, Jason Harmening wrote: > > I recently bought a Brother HL-1850 laser printer for use with my FreeBSD > > 5.1 machine, and it works fine with the ljet4 ghostscript driver. However, > > I'd like to be able to use the higher resolution settings that are > > available through the hl1250 driver, and that driver doesn't seem to be > > supported in the FreeBSD ghostscript-gnu or ghostscript-afpl port. Is > > there any way to add this support to ghostscript-gnu, or is there a FreeBSD > > port of ESP ghostscript in the works? > > A PR with a patch for ghostscript-gnu is already pending ( > http://www.freebsd.org/cgi/query-pr.cgi?pr=57009 ), I'll look into committing > and adapting it for ghostscript-afpl this week. It was closed last friday. 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 Sun Sep 28 22:13: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 6CCFF16A4B3 for ; Sun, 28 Sep 2003 22:13:06 -0700 (PDT) Received: from relay01.kbs.net.au (149.32.220.203.comindico.com.au [203.220.32.149]) by mx1.FreeBSD.org (Postfix) with ESMTP id F405043FF2 for ; Sun, 28 Sep 2003 22:13:02 -0700 (PDT) (envelope-from chriskl@familyhealth.com.au) Received: from [203.221.127.142] (helo=familyhealth.com.au) by relay01.kbs.net.au with esmtp (Exim 3.36 #1) id 1A3qLH-0000i9-00 for ports@FreeBSD.org; Mon, 29 Sep 2003 15:13:04 +1000 Message-ID: <3F77BF60.6000305@familyhealth.com.au> Date: Mon, 29 Sep 2003 13:13:04 +0800 From: Christopher Kings-Lynne User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5b) Gecko/20030901 Thunderbird/0.2 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: Please update the devel/bison 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: Mon, 29 Sep 2003 05:13:06 -0000 Hi guys, Bison 1.875 has been out for ages, but the ports still only has 1.75. I'm starting to find software that depends on the new version. Chris From owner-freebsd-ports@FreeBSD.ORG Sun Sep 28 22:25: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 56E3E16A4B3; Sun, 28 Sep 2003 22:25:14 -0700 (PDT) Received: from mag.barnet.com.au (mag.barnet.com.au [218.185.88.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B5D143FAF; Sun, 28 Sep 2003 22:25:10 -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 93B192B5B; Mon, 29 Sep 2003 15:25:08 +1000 (EST) X-Viruscan-Id: <3F77C2340000FC4901FCF7AE@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 22E6E1E14; Mon, 29 Sep 2003 15:25:07 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 960266A7101; Mon, 29 Sep 2003 15:25:05 +1000 (EST) Date: Mon, 29 Sep 2003 15:25:05 +1000 From: Edwin Groothuis To: Christopher Kings-Lynne Message-ID: <20030929052505.GI59397@k7.mavetju> References: <3F77BF60.6000305@familyhealth.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3F77BF60.6000305@familyhealth.com.au> User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org cc: arved@freebsd.org Subject: Re: Please update the devel/bison 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: Mon, 29 Sep 2003 05:25:14 -0000 On Mon, Sep 29, 2003 at 01:13:04PM +0800, Christopher Kings-Lynne wrote: > Bison 1.875 has been out for ages, but the ports still only has 1.75. > I'm starting to find software that depends on the new version. http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/47068 Arved, any news on this? 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 Sep 29 00:46: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 D885B16A4B3 for ; Mon, 29 Sep 2003 00:46:10 -0700 (PDT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3A2644013 for ; Mon, 29 Sep 2003 00:46:08 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id ADBE3167596; Mon, 29 Sep 2003 09:46:07 +0200 (CEST) Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.9p1/8.12.9) with ESMTP id h8T7jsWp006944 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 29 Sep 2003 09:46:03 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock Organization: FreeBSD To: Edwin Groothuis Date: Mon, 29 Sep 2003 09:45:51 +0200 User-Agent: KMail/1.5.4 References: <1064791648.3f776e6094725@webmail.mail.gatech.edu> <200309290216.22954.michaelnottebrock@gmx.net> <20030929043322.GH59397@k7.mavetju> In-Reply-To: <20030929043322.GH59397@k7.mavetju> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_yM+d/YGQ5Px3ije"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200309290945.54802.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: Jason Harmening cc: freebsd-ports@freebsd.org cc: KATO Tsuguru Subject: Re: ghostscript hl1250 support? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 07:46:11 -0000 --Boundary-02=_yM+d/YGQ5Px3ije Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Description: signed data Content-Disposition: inline On Monday 29 September 2003 06:33, Edwin Groothuis wrote: > Michael Nottebrock wrote: > > A PR with a patch for ghostscript-gnu is already pending ( > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D57009 ), I'll look into > > committing and adapting it for ghostscript-afpl this week. > It was closed last friday. On Monday 29 September 2003 04:06, KATO Tsuguru wrote: > The hl12x0 driver source has been removed from upstream > talball of AFPL release due to licensing issue. Duh. Nevermind then, everyone. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_yM+d/YGQ5Px3ije Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQA/d+MyXhc68WspdLARAp7pAJ4/Lb7YHuxu2WUx7dLOQoAjhDFBMwCfUAan cFBcbRvqbEqg4McQT0gr08c= =cLAe -----END PGP SIGNATURE----- --Boundary-02=_yM+d/YGQ5Px3ije-- From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 01:15: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 3A1E316A4B3; Mon, 29 Sep 2003 01:15:36 -0700 (PDT) Received: from lilith.bellavista.cz (lilith.bellavista.cz [213.235.167.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE45F44001; Mon, 29 Sep 2003 01:15:34 -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 9978132; Mon, 29 Sep 2003 10:15:33 +0200 (CEST) Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id 7FC9F2FDA0B; Mon, 29 Sep 2003 10:15:33 +0200 (CEST) Date: Mon, 29 Sep 2003 10:15:33 +0200 From: Roman Neuhauser To: Bill Fenner Message-ID: <20030929081533.GI11636@freepuppy.bellavista.cz> Mail-Followup-To: Bill Fenner , ports@freebsd.org References: <200309281700.h8SH0ZK4050051@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200309281700.h8SH0ZK4050051@freefall.freebsd.org> User-Agent: Mutt/1.5.4i cc: ports@freebsd.org Subject: Re: 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: Mon, 29 Sep 2003 08:15:36 -0000 # fenner@FreeBSD.org / 2003-09-28 10:00:35 -0700: > 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/ http://bento.freebsd.org/errorlogs/portsconcordance.html: "Report created on Wed Mar 19 03:53:22 2003" that's not particularly useful. :) -- 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 Mon Sep 29 01:20: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 1F3F816A4B3 for ; Mon, 29 Sep 2003 01:20:54 -0700 (PDT) Received: from meryl.it.uu.se (meryl.it.uu.se [130.238.12.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F84B44014 for ; Mon, 29 Sep 2003 01:20:52 -0700 (PDT) (envelope-from ertr1013@user.it.uu.se) Received: from hamberg.it.uu.se (daemon@hamberg.it.uu.se [130.238.9.198]) by meryl.it.uu.se (8.8.5/8.8.5) with ESMTP id KAA06080; Mon, 29 Sep 2003 10:20:50 +0200 (MET DST) Received: (from ertr1013@localhost) by hamberg.it.uu.se (8.12.9+Sun/8.12.9) id h8T8Kn0l015276; Mon, 29 Sep 2003 10:20:49 +0200 (MEST) Date: Mon, 29 Sep 2003 10:20:49 +0200 From: Erik Trulsson To: Christopher Kings-Lynne Message-ID: <20030929082049.GA14609@student.uu.se> References: <3F77BF60.6000305@familyhealth.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3F77BF60.6000305@familyhealth.com.au> User-Agent: Mutt/1.4i cc: ports@FreeBSD.org Subject: Re: Please update the devel/bison 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: Mon, 29 Sep 2003 08:20:54 -0000 On Mon, Sep 29, 2003 at 01:13:04PM +0800, Christopher Kings-Lynne wrote: > Hi guys, > > Bison 1.875 has been out for ages, but the ports still only has 1.75. > I'm starting to find software that depends on the new version. The ports system has both devel/bison (version 1.75) and devel/bison1875 (version 1.875) >From the commit message for bison1875: Add bison 1.875. Some grammars require the new version of Bison (such as PostgreSQL), however the new bison also breaks many many ports. Compromise with a new port. Installs as bison and _not_ bison1875 and should be mutually exclusive to the main bison port. Hopefully the bison authors will clean up their product and this port can disappear when the base bison port is updated in the future or enough ports are updated to work with newer versions of bison. -- Erik Trulsson ertr1013@student.uu.se From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 01:36:47 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 6D96216A4BF for ; Mon, 29 Sep 2003 01:36:47 -0700 (PDT) Received: from hotmail.com (bay2-f63.bay2.hotmail.com [65.54.247.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE7BD43FF5 for ; Mon, 29 Sep 2003 01:36:46 -0700 (PDT) (envelope-from yosephwk@hotmail.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Mon, 29 Sep 2003 01:36:46 -0700 Received: from 150.101.118.180 by by2fd.bay2.hotmail.msn.com with HTTP; Mon, 29 Sep 2003 08:36:46 GMT X-Originating-IP: [150.101.118.180] X-Originating-Email: [yosephwk@hotmail.com] From: "yoseph widjaya" To: ports@FreeBSD.org Date: Mon, 29 Sep 2003 08:36:46 +0000 Mime-Version: 1.0 Content-Type: text/plain; format=flowed Message-ID: X-OriginalArrivalTime: 29 Sep 2003 08:36:46.0866 (UTC) FILETIME=[D1A5C720:01C38664] Subject: asking about the ports collection X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 08:36:47 -0000 Dear maintainer I really wish that I could have all the ports collection which are 9XXX files in a couple CDs so I don't have to go to the internet. is there any place that I could buy or download all of them. I don't mind that leaving my dialup connection open for 1 weeks many thanks _________________________________________________________________ Tired of spam? Get advanced junk mail protection with MSN 8. http://join.msn.com/?page=features/junkmail From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 02:07: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 1E3A916A4B3; Mon, 29 Sep 2003 02:07:19 -0700 (PDT) Received: from lakemtao01.cox.net (lakemtao01.cox.net [68.1.17.244]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB59A43FEA; Mon, 29 Sep 2003 02:07:17 -0700 (PDT) (envelope-from A.J.Caines@halplant.com) Received: from mail.halplant.com ([68.98.167.210]) by lakemtao01.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20030929090717.FRPF29208.lakemtao01.cox.net@mail.halplant.com>; Mon, 29 Sep 2003 05:07:17 -0400 Received: by mail.halplant.com (Postfix, from userid 1001) id D54AE2D; Mon, 29 Sep 2003 05:07:16 -0400 (EDT) Date: Mon, 29 Sep 2003 05:07:16 -0400 From: Andrew J Caines To: marcus@FreeBSD.org Message-ID: <20030929090716.GH35537@hal9000.halplant.com> Mail-Followup-To: marcus@FreeBSD.org, FreeBSD ports Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Organization: H.A.L. Plant X-PGP-Fingerprint: C59A 2F74 1139 9432 B457 0B61 DDF2 AA61 67C3 18A1 X-Powered-by: FreeBSD 4.9-PRERELEASE X-URL: http://halplant.com:88/ X-Yahoo-Profile: AJ_Z0 Importance: Normal User-Agent: Mutt/1.5.4i cc: FreeBSD ports Subject: Patch to update to net/gaim to 0.70 with working Yahoo! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrew J Caines List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Sep 2003 09:07:19 -0000 Marcus, Below is the patch to update the port from gaim-0.69_1 to gaim-0.70. I'm logged into Yahoo! now, so it's looking good, but I've not tested anything else. Note that I've taken out the _jp.patch part out since it's for 0.69. I've not tested it to see if it applies to 0.70. You can get the port from my site[1]. ----8<---- diff -ruN gaim-0.69 gaim diff -ruN gaim-0.69/Makefile gaim/Makefile --- gaim-0.69/Makefile Sun Sep 28 23:10:26 2003 +++ gaim/Makefile Mon Sep 29 03:58:09 2003 @@ -5,15 +5,10 @@ # PORTNAME= gaim -PORTVERSION= 0.69 -PORTREVISION= 1 +PORTVERSION= 0.70 CATEGORIES?= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} - -PATCH_SITES= http://www.cc.rim.or.jp/~yaz/ -PATCHFILES= gaim-0.69_jp.patch.gz -PATCH_DIST_STRIP= -p1 MAINTAINER?= marcus@FreeBSD.org COMMENT= Gtk+-2.0 open-source 'clone' of AOL's Instant Messenger client diff -ruN gaim-0.69/distinfo gaim/distinfo --- gaim-0.69/distinfo Sun Sep 28 23:10:26 2003 +++ gaim/distinfo Mon Sep 29 03:55:58 2003 @@ -1,2 +1 @@ -MD5 (gaim-0.69.tar.bz2) = 29f018cc246dd6c7448c555f940aa009 -MD5 (gaim-0.69_jp.patch.gz) = a4c692fb7ef2615104323c8cce5cb1e3 +MD5 (gaim-0.70.tar.bz2) = 13ea95aa040ac5a58c3384709e495329 diff -ruN gaim-0.69/files/patch-configure gaim/files/patch-configure --- gaim-0.69/files/patch-configure Sun Sep 28 23:10:26 2003 +++ gaim/files/patch-configure Mon Sep 29 05:04:56 2003 @@ -1,5 +1,5 @@ ---- configure.orig Thu Sep 25 08:25:16 2003 -+++ configure Thu Sep 25 08:32:49 2003 +--- configure.old Mon Sep 29 04:01:57 2003 ++++ configure Mon Sep 29 04:02:53 2003 @@ -15962,7 +15962,7 @@ if test "x$prefix" != "xNONE"; then ----8<---- [1] http://halplant.com:88/software/FreeBSD/ports/gaim-0.70.tar -Andrew- -- _______________________________________________________________________ | -Andrew J. Caines- Unix Systems Engineer A.J.Caines@halplant.com | | "They that can give up essential liberty to obtain a little temporary | | safety deserve neither liberty nor safety" - Benjamin Franklin, 1759 | From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 02:09: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 C803D16A4B3; Mon, 29 Sep 2003 02:09:22 -0700 (PDT) Received: from smtp1.fre.skanova.net (smtp1.fre.skanova.net [195.67.227.94]) by mx1.FreeBSD.org (Postfix) with ESMTP id 589DA43FA3; Mon, 29 Sep 2003 02:09:21 -0700 (PDT) (envelope-from john@veidit.net) Received: from veidit.net (h230n1fls35o1000.telia.com [217.210.234.230]) h8T99Kjh029822; Mon, 29 Sep 2003 11:09:20 +0200 (CEST) Message-ID: <3F77F6BB.7030708@veidit.net> Date: Mon, 29 Sep 2003 11:09:15 +0200 From: John Angelmo User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20030916 X-Accept-Language: sv, en, en-us MIME-Version: 1.0 To: olgeni@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Virtuamin X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 09:09:22 -0000 Virtualmin is a virtual hosting management system written by Jamie Cameron, that integrates cleanly into the Webmin system administration tool. I think that virtuamin would fit nicly in with FreeBSD, is anyone intrested in helping me write a PR for this since I suck at creating ports ;) /John Webpage: http://www.swelltech.com/virtualmin/ Download: http://www.swelltech.com/virtualmin/virtual-server-1.4.wbm.gz From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 02:30: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 8D06B16A4B3 for ; Mon, 29 Sep 2003 02:30:12 -0700 (PDT) Received: from mail.caraldi.com (caraldi.com [62.212.102.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CF1043FDF for ; Mon, 29 Sep 2003 02:30:11 -0700 (PDT) (envelope-from jbq@caraldi.com) Received: from watt.intra.caraldi.com (watt.intra.caraldi.com [192.168.100.101]) by mail.caraldi.com (Postfix) with ESMTP id 90108209A for ; Mon, 29 Sep 2003 11:30:09 +0200 (CEST) Received: by watt.intra.caraldi.com (Postfix, from userid 1001) id DB75B2B; Mon, 29 Sep 2003 11:30:39 +0200 (CEST) Date: Mon, 29 Sep 2003 11:30:39 +0200 From: Jean-Baptiste Quenot To: FreeBSD ports Message-ID: <20030929093037.GA65884@watt.intra.caraldi.com> Mail-Followup-To: FreeBSD ports References: <20030929090716.GH35537@hal9000.halplant.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030929090716.GH35537@hal9000.halplant.com> User-Agent: Mutt/1.5.4i Subject: Re: Patch to update to net/gaim to 0.70 with working Yahoo! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 09:30:12 -0000 * Andrew J Caines: > Below is the patch to update the port from gaim-0.69_1 to > gaim-0.70. I'm logged into Yahoo! now, so it's looking good, but I've > not tested anything else. Thanks for your patch, indeed Yahoo accounts fail since last week. I hope this will get committed soon. Keep up the good work, -- Jean-Baptiste Quenot http://caraldi.com/jbq/ From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 03:08: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 E19D616A4B3 for ; Mon, 29 Sep 2003 03:08:18 -0700 (PDT) Received: from lakemtao04.cox.net (lakemtao04.cox.net [68.1.17.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5078343F75 for ; Mon, 29 Sep 2003 03:08:16 -0700 (PDT) (envelope-from A.J.Caines@halplant.com) Received: from mail.halplant.com ([68.98.167.210]) by lakemtao04.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20030929100815.WTTM29227.lakemtao04.cox.net@mail.halplant.com> for ; Mon, 29 Sep 2003 06:08:15 -0400 Received: by mail.halplant.com (Postfix, from userid 1001) id 988B020; Mon, 29 Sep 2003 06:08:13 -0400 (EDT) Date: Mon, 29 Sep 2003 06:08:13 -0400 From: Andrew J Caines To: FreeBSD ports Message-ID: <20030929100813.GJ35537@hal9000.halplant.com> Mail-Followup-To: FreeBSD ports References: <20030929090716.GH35537@hal9000.halplant.com> <20030929093037.GA65884@watt.intra.caraldi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030929093037.GA65884@watt.intra.caraldi.com> Organization: H.A.L. Plant X-PGP-Fingerprint: C59A 2F74 1139 9432 B457 0B61 DDF2 AA61 67C3 18A1 X-Powered-by: FreeBSD 4.9-PRERELEASE X-URL: http://halplant.com:88/ X-Yahoo-Profile: AJ_Z0 Importance: Normal User-Agent: Mutt/1.5.4i Subject: Re: Patch to update to net/gaim to 0.70 with working Yahoo! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrew J Caines List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Sep 2003 10:08:19 -0000 Jean-Baptiste, > Thanks for your patch, indeed Yahoo accounts fail since last week. Yahoo! changed the protocol, purportedly to combat spam, and released updated (but still out-of-date - they're for 4.5!) ymessenger clients[1] just at the last moment, but didn't do anything to help the other IM clients, AFAIK. The gaim folks[2] picked up some info from the people who make Trillian and it's possible to log on and message, but there may be problems logging off - I haven't tried it. > I hope this will get committed soon. There needs to be much more testing, since 0.70 has some non-trivial changes[3]. > Keep up the good work Thanks, but what I did was the easy bit: hang out on #gaim on FreeNode and do a trivial version update to the port. Credit goes to the port maintainer. [1] http://messenger.yahoo.com/messenger/download/unix.html#freebsd [2] http://gaim.sourceforge.net/ [3] http://gaim.sourceforge.net/ChangeLog -Andrew- -- _______________________________________________________________________ | -Andrew J. Caines- Unix Systems Engineer A.J.Caines@halplant.com | | "They that can give up essential liberty to obtain a little temporary | | safety deserve neither liberty nor safety" - Benjamin Franklin, 1759 | From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 03:37: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 C163416A4B3 for ; Mon, 29 Sep 2003 03:37:04 -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 0B0CD4400E for ; Mon, 29 Sep 2003 03:36: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 B601366D32; Mon, 29 Sep 2003 03:36:27 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id B7993B02; Mon, 29 Sep 2003 03:36:27 -0700 (PDT) Date: Mon, 29 Sep 2003 03:36:27 -0700 From: Kris Kennaway To: yoseph widjaya Message-ID: <20030929103627.GA1890@rot13.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LZvS9be/3tNcYl/X" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i cc: ports@FreeBSD.org Subject: Re: asking about the ports collection X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 10:37:04 -0000 --LZvS9be/3tNcYl/X Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Sep 29, 2003 at 08:36:46AM +0000, yoseph widjaya wrote: > Dear maintainer >=20 > I really wish that I could have all the ports collection which are 9XXX= =20 > files in a couple CDs so I don't have to go to the internet. is there any= =20 > place that I could buy or download all of them. I don't mind that leaving= =20 > my dialup connection open for 1 weeks ftp.freebsd.org/pub/FreeBSD/ports and mirror whatever you want. It will take several dozen CDs though. Kris --LZvS9be/3tNcYl/X Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/eAsrWry0BWjoQKURAsy2AKCeostIFzOTGUnbkyYnfSlA91JoogCg1wx7 sXdc2b4x/rtIhffKWdJJ+nI= =5Hcs -----END PGP SIGNATURE----- --LZvS9be/3tNcYl/X-- From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 03:46: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 4B56F16A4B3 for ; Mon, 29 Sep 2003 03:46:17 -0700 (PDT) Received: from mail.caraldi.com (caraldi.com [62.212.102.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5800643FF2 for ; Mon, 29 Sep 2003 03:46:15 -0700 (PDT) (envelope-from jbq@caraldi.com) Received: from watt.intra.caraldi.com (watt.intra.caraldi.com [192.168.100.101]) by mail.caraldi.com (Postfix) with ESMTP id 81E352177 for ; Mon, 29 Sep 2003 12:46:14 +0200 (CEST) Received: by watt.intra.caraldi.com (Postfix, from userid 1001) id 6505B2B; Mon, 29 Sep 2003 12:46:44 +0200 (CEST) Date: Mon, 29 Sep 2003 12:46:44 +0200 From: Jean-Baptiste Quenot To: freebsd-ports@freebsd.org Message-ID: <20030929104642.GA8813@watt.intra.caraldi.com> Mail-Followup-To: freebsd-ports@freebsd.org References: <20030909152452.GC10815@watt.intra.caraldi.com> <1063121517.50301.24.camel@jake> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1063121517.50301.24.camel@jake> User-Agent: Mutt/1.5.4i Subject: Re: New port: NumlockX X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 10:46:17 -0000 * Adam McLaurin: > On Tue, 2003-09-09 at 11:24, Jean-Baptiste Quenot wrote: > > > I submitted a new port that I would love to see in the ports > > collection: > > > > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/56638 > > > > This little thingy allows you to start X with NumLock turned on ( > > which is a feature that a lot of people seem to miss and nobody > > really knew how to achieve this ). > > Hey, thanks for this! I'll be installing it as soon as it gets > committed. I'm wondering why it always takes *ages* to change the ports tree. Either the committers are not interested, or they don't have spare time to handle such requests. Is someone interested? -- Jean-Baptiste Quenot http://caraldi.com/jbq/ From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 05: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 42D8716A4B3; Mon, 29 Sep 2003 05:24:56 -0700 (PDT) Received: from moon.zero.ne.jp (moon.zero.ne.jp [219.166.98.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3282643FE0; Mon, 29 Sep 2003 05:24:55 -0700 (PDT) (envelope-from takahiro@re-mix.org) Received: from localhost (p6fad74.okymnt01.ap.so-net.ne.jp [219.111.173.116]) by moon.zero.ne.jp (Postfix) with ESMTP id 2837F9587F; Mon, 29 Sep 2003 21:24:53 +0900 (JST) Sender: takahiro@re-mix.org Date: Mon, 29 Sep 2003 21:24:51 +0900 (JST) Message-Id: <20030929.212451.74754667.takahiro@falcon.next-generation.org> To: A.J.Caines@halplant.com From: Takahiro Morishita In-Reply-To: <20030929090716.GH35537@hal9000.halplant.com> References: <20030929090716.GH35537@hal9000.halplant.com> X-Mailer: Mew version 4.0.58 on Emacs 21.3 / Mule 5.0 =?iso-2022-jp?B?KBskQjgtTFobKEIp?= Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: marcus@FreeBSD.org cc: FreeBSD-Ports@FreeBSD.org Subject: Re: Patch to update to net/gaim to 0.70 with working Yahoo! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 12:24:56 -0000 From: Andrew J Caines Subject: Patch to update to net/gaim to 0.70 with working Yahoo! Date: Mon, 29 Sep 2003 05:07:16 -0400 > Marcus, > > Below is the patch to update the port from gaim-0.69_1 to gaim-0.70. I'm > logged into Yahoo! now, so it's looking good, but I've not tested anything > else. > > Note that I've taken out the _jp.patch part out since it's for 0.69. I've > not tested it to see if it applies to 0.70. > > You can get the port from my site[1]. New _jp patch released by original _jp patch author. http://www.cc.rim.or.jp/~yaz/gaim-0.70_jp.patch.gz Should I make patch from net/gaim and your patch? ---- Takahiro Morishita From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 06:27: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 BC6D416A4B3 for ; Mon, 29 Sep 2003 06:27:04 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 860B743FAF for ; Mon, 29 Sep 2003 06:27:01 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8TDR0GZ009394 for ; Mon, 29 Sep 2003 09:27:00 -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 h8TDR0Ll063225 for ports@FreeBSD.org; Mon, 29 Sep 2003 09:27:00 -0400 (EDT) (envelope-from kris) Date: Mon, 29 Sep 2003 09:27:00 -0400 (EDT) From: Kris Kennaway Message-Id: <200309291327.h8TDR0Ll063225@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, 29 Sep 2003 13:27:04 -0000 INDEX build failed with errors: jetspeed-1.4: "/vol/vol0/users/kris/ports.clean/devel/jakarta-ant" 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/pd/Makefile U audio/pd/distinfo U audio/pd/files/patch-src_s_freebsd.c U comms/java-commapi/Makefile U comms/java-commapi/pkg-plist U comms/java-commapi-freebsd/Makefile U comms/java-commapi-freebsd/pkg-plist U deskutils/gdesklets/Makefile U deskutils/gdesklets/distinfo ? 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 U java/Makefile U java/gj/Makefile U java/gj/distinfo U java/gj/pkg-descr U java/gj/pkg-plist U java/gj/files/gjc.in U java/linux-blackdown-jre11/Makefile U java/linux-blackdown-jre11/distinfo U java/linux-blackdown-jre11/pkg-descr U java/linux-blackdown-jre11/pkg-plist U java/linux-blackdown-jre11/files/patch-aa U java/linux-blackdown-jre11/files/patch-ab U lang/python/Makefile U lang/python/pkg-plist U lang/python/files/patch-configure U mail/exim/Makefile U mail/exim/distinfo U mail/exim/pkg-install U mail/exim/pkg-plist U mail/exim/files/POST-INSTALL-NOTES U mail/exim/files/patch-src::EDITME U mail/exim-ldap2/Makefile ? 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 U www/Makefile U www/jetspeed/Makefile U www/jetspeed/distinfo U www/jetspeed/pkg-descr U www/jetspeed/pkg-message U www/jetspeed/pkg-plist U www/mod_auth_mysql/Makefile U www/rt3/Makefile U www/rt3/distinfo ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 06:30: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 6A60C16A4B3 for ; Mon, 29 Sep 2003 06:30:14 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7261C43FA3 for ; Mon, 29 Sep 2003 06:30:13 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8TDUDGZ009403 for ; Mon, 29 Sep 2003 09:30:13 -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 h8TDTE9k036306 for ports@FreeBSD.org; Mon, 29 Sep 2003 09:29:14 -0400 (EDT) (envelope-from kris) Date: Mon, 29 Sep 2003 09:29:14 -0400 (EDT) From: Kris Kennaway Message-Id: <200309291329.h8TDTE9k036306@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, 29 Sep 2003 13:30:14 -0000 INDEX build failed with errors: jetspeed-1.4: "/vol/vol0/users/kris/ports.clean/devel/jakarta-ant" 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 ? x U audio/pd/Makefile U audio/pd/distinfo U audio/pd/files/patch-src_s_freebsd.c U comms/java-commapi/Makefile U comms/java-commapi/pkg-plist U comms/java-commapi-freebsd/Makefile U comms/java-commapi-freebsd/pkg-plist U deskutils/gdesklets/Makefile U deskutils/gdesklets/distinfo ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U java/Makefile U java/gj/Makefile U java/gj/distinfo U java/gj/pkg-descr U java/gj/pkg-plist U java/gj/files/gjc.in U java/linux-blackdown-jre11/Makefile U java/linux-blackdown-jre11/distinfo U java/linux-blackdown-jre11/pkg-descr U java/linux-blackdown-jre11/pkg-plist U java/linux-blackdown-jre11/files/patch-aa U java/linux-blackdown-jre11/files/patch-ab U lang/python/Makefile U lang/python/pkg-plist U lang/python/files/patch-configure ? mail/log U mail/exim/Makefile U mail/exim/distinfo U mail/exim/pkg-install U mail/exim/pkg-plist U mail/exim/files/POST-INSTALL-NOTES U mail/exim/files/patch-src::EDITME U mail/exim-ldap2/Makefile ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U www/Makefile U www/jetspeed/Makefile U www/jetspeed/distinfo U www/jetspeed/pkg-descr U www/jetspeed/pkg-message U www/jetspeed/pkg-plist U www/mod_auth_mysql/Makefile U www/rt3/Makefile U www/rt3/distinfo ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 06:31: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 0502E16A4C1; Mon, 29 Sep 2003 06:31:10 -0700 (PDT) Received: from moon.zero.ne.jp (moon.zero.ne.jp [219.166.98.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91CFF43FAF; Mon, 29 Sep 2003 06:31:08 -0700 (PDT) (envelope-from takahiro@next-generation.org) Received: from localhost (p6fad74.okymnt01.ap.so-net.ne.jp [219.111.173.116]) by moon.zero.ne.jp (Postfix) with ESMTP id B64979565B; Mon, 29 Sep 2003 22:31:06 +0900 (JST) Sender: takahiro@next-generation.org Date: Mon, 29 Sep 2003 22:31:04 +0900 (JST) Message-Id: <20030929.223104.41626841.takahiro@falcon.next-generation.org> To: A.J.Caines@halplant.com From: Takahiro Morishita In-Reply-To: <20030929.212451.74754667.takahiro@falcon.next-generation.org> References: <20030929090716.GH35537@hal9000.halplant.com> <20030929.212451.74754667.takahiro@falcon.next-generation.org> X-Mailer: Mew version 4.0.58 on Emacs 21.3 / Mule 5.0 =?iso-2022-jp?B?KBskQjgtTFobKEIp?= Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: marcus@FreeBSD.org cc: FreeBSD-Ports@FreeBSD.org Subject: Re: Patch to update to net/gaim to 0.70 with working Yahoo! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 13:31:10 -0000 From: Takahiro Morishita Subject: Re: Patch to update to net/gaim to 0.70 with working Yahoo! Date: Mon, 29 Sep 2003 21:24:51 +0900 (JST) > From: Andrew J Caines > Subject: Patch to update to net/gaim to 0.70 with working Yahoo! > Date: Mon, 29 Sep 2003 05:07:16 -0400 > > > Marcus, > > > > Below is the patch to update the port from gaim-0.69_1 to gaim-0.70. I'm > > logged into Yahoo! now, so it's looking good, but I've not tested anything > > else. > > > > Note that I've taken out the _jp.patch part out since it's for 0.69. I've > > not tested it to see if it applies to 0.70. > > > > You can get the port from my site[1]. > > New _jp patch released by original _jp patch author. > http://www.cc.rim.or.jp/~yaz/gaim-0.70_jp.patch.gz > > Should I make patch from net/gaim and your patch? I made patch besed on Andrew J Caines's patch. diff -ruN gaim.orig/Makefile gaim/Makefile --- gaim.orig/Makefile Mon Sep 29 19:44:31 2003 +++ gaim/Makefile Mon Sep 29 22:27:56 2003 @@ -5,14 +5,13 @@ # PORTNAME= gaim -PORTVERSION= 0.69 -PORTREVISION= 1 +PORTVERSION= 0.70 CATEGORIES?= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} PATCH_SITES= http://www.cc.rim.or.jp/~yaz/ -PATCHFILES= gaim-0.69_jp.patch.gz +PATCHFILES= gaim-0.70_jp.patch.gz PATCH_DIST_STRIP= -p1 MAINTAINER?= marcus@FreeBSD.org diff -ruN gaim.orig/distinfo gaim/distinfo --- gaim.orig/distinfo Mon Sep 29 19:44:31 2003 +++ gaim/distinfo Mon Sep 29 22:08:49 2003 @@ -1,2 +1,2 @@ -MD5 (gaim-0.69.tar.bz2) = 29f018cc246dd6c7448c555f940aa009 -MD5 (gaim-0.69_jp.patch.gz) = a4c692fb7ef2615104323c8cce5cb1e3 +MD5 (gaim-0.70.tar.bz2) = 13ea95aa040ac5a58c3384709e495329 +MD5 (gaim-0.70_jp.patch.gz) = 4bc71e35202426870bf37aaf9ee054bf diff -ruN gaim.orig/files/patch-configure gaim/files/patch-configure --- gaim.orig/files/patch-configure Mon Sep 29 19:44:31 2003 +++ gaim/files/patch-configure Mon Sep 29 20:17:38 2003 @@ -1,11 +1,11 @@ ---- configure.orig Thu Sep 25 08:25:16 2003 -+++ configure Thu Sep 25 08:32:49 2003 +--- configure.orig Mon Sep 29 13:36:20 2003 ++++ configure Mon Sep 29 20:15:57 2003 @@ -15962,7 +15962,7 @@ if test "x$prefix" != "xNONE"; then prefix=`eval echo $prefix` -- PERL_MM_PARAMS="INSTALLDIRS=perl PREFIX=$prefix" -+ PERL_MM_PARAMS="INSTALLDIRS=perl PREFIX=%%LOCALBASE%%" +- PERL_MM_PARAMS="INSTALLDIRS=vendor PREFIX=$prefix" ++ PERL_MM_PARAMS="INSTALLDIRS=vendor PREFIX=%%LOCALBASE%%" fi From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 06: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 3064C16A4B3 for ; Mon, 29 Sep 2003 06:36:43 -0700 (PDT) Received: from mag.barnet.com.au (mag.barnet.com.au [218.185.88.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FBBA43FB1 for ; Mon, 29 Sep 2003 06:36:42 -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 8FB5D2DCF for ; Mon, 29 Sep 2003 23:36:36 +1000 (EST) X-Viruscan-Id: <3F783564000071DA0155727E@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 12C081E0C for ; Mon, 29 Sep 2003 23:36:35 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id B7FB16A7101; Mon, 29 Sep 2003 23:36:33 +1000 (EST) Date: Mon, 29 Sep 2003 23:36:33 +1000 From: Edwin Groothuis To: ports@FreeBSD.org Message-ID: <20030929133633.GJ59397@k7.mavetju> References: <200309291327.h8TDR0Ll063225@9ball.rtp.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200309291327.h8TDR0Ll063225@9ball.rtp.freebsd.org> User-Agent: Mutt/1.4.1i 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, 29 Sep 2003 13:36:43 -0000 On Mon, Sep 29, 2003 at 09:27:00AM -0400, Kris Kennaway wrote: > INDEX build failed with errors: > jetspeed-1.4: "/vol/vol0/users/kris/ports.clean/devel/jakarta-ant" non-existent -- dependency list incomplete That's mine! That's mine! I got mentioned! Woohoo! 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 Sep 29 07:11: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 1054216A4B3 for ; Mon, 29 Sep 2003 07:11:59 -0700 (PDT) Received: from genua.rfc-networks.ie (genua.rfc-networks.ie [62.77.182.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECC3D43FEC for ; Mon, 29 Sep 2003 07:11:57 -0700 (PDT) (envelope-from philip.reynolds@rfc-networks.ie) Received: from tear.domain (unknown [10.0.1.254]) by genua.rfc-networks.ie (Postfix) with ESMTP id 33B4E54875 for ; Mon, 29 Sep 2003 15:11:55 +0100 (IST) Received: by tear.domain (Postfix, from userid 1000) id CCDAF21155; Mon, 29 Sep 2003 14:11:53 +0000 (GMT) Date: Mon, 29 Sep 2003 14:11:53 +0000 From: Philip Reynolds To: freebsd-ports@freebsd.org Message-ID: <20030929141153.GC94477@rfc-networks.ie> References: <20030928155434.GA770@galgenberg.net> <3F773FEB.6010809@mindspring.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3F773FEB.6010809@mindspring.com> X-Operating-System: FreeBSD 4.7-STABLE X-URL: http://www.rfc-networks.ie Subject: Re: First attempt at unifying WITH_* options X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: philip.reynolds@rfc-networks.ie List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Sep 2003 14:11:59 -0000 Richard Coleman 86 lines of wisdom included: > I want to voice my support for adding this type of facility to the port > system for FreeBSD. This is sorely needed. > > I haven't tried the patch yet. But from a brief glance, it apppears to > be exactly what we need. > > We also need a place for the port maintainer to record a summary of the > options, as well as any comment that is specific to that option and > port. For instance, if each port had a file "pkg-options", this could > print: > > make print-option > WITH_TCL - Add tcl support. Currently experimental. > WITH_TK - Add tk support. Currently broken. > WITH_FOO - Add support for foo. Developers only. I hate me too replies, but this seems like definately one of the biggest shortfalls I've seen with the ports system. It also means ports can be harder to batch build because they can ignore creating command-line options and merely allow options handed to the user by some GUI tool, like dialog(1). -- Philip Reynolds | RFC Networks Ltd. philip.reynolds@rfc-networks.ie | +353 (0)1 8832063 http://people.rfc-networks.ie/~phil | www.rfc-networks.ie From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 07:22: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 0442C16A4B3; Mon, 29 Sep 2003 07:22:50 -0700 (PDT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B2F243FE3; Mon, 29 Sep 2003 07:22:49 -0700 (PDT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 8990A14147; Mon, 29 Sep 2003 09:22:48 -0500 (CDT) Date: Mon, 29 Sep 2003 09:22:48 -0500 (CDT) From: Mark Linimon X-X-Sender: linimon@pancho To: Roman Neuhauser In-Reply-To: <20030929081533.GI11636@freepuppy.bellavista.cz> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@freebsd.org cc: Bill Fenner Subject: Re: 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: Mon, 29 Sep 2003 14:22:50 -0000 > http://bento.freebsd.org/errorlogs/portsconcordance.html: > > "Report created on Wed Mar 19 03:53:22 2003" > > that's not particularly useful. :) The project to create these reports continues under active development (in particular, the ability to generate reports on-the-fly has been added), but it's not rolled out onto bento yet. mcl From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 07: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 DC37816A4C0 for ; Mon, 29 Sep 2003 07:26: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 C975043FA3 for ; Mon, 29 Sep 2003 07:26:53 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8TEQqGZ009511 for ; Mon, 29 Sep 2003 10:26:52 -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 h8TEQqdK025286 for ports@FreeBSD.org; Mon, 29 Sep 2003 10:26:52 -0400 (EDT) (envelope-from kris) Date: Mon, 29 Sep 2003 10:26:52 -0400 (EDT) From: Kris Kennaway Message-Id: <200309291426.h8TEQqdK025286@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, 29 Sep 2003 14:26:56 -0000 INDEX build failed with errors: jetspeed-1.4: "/vol/vol0/users/kris/ports.clean/devel/jakarta-ant" 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 ? 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 Sep 29 07:30: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 CA44F16A4D5 for ; Mon, 29 Sep 2003 07:30:13 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id E36F343FDF for ; Mon, 29 Sep 2003 07:30:12 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8TEUCGZ009520 for ; Mon, 29 Sep 2003 10:30:12 -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 h8TETCMw098240 for ports@FreeBSD.org; Mon, 29 Sep 2003 10:29:12 -0400 (EDT) (envelope-from kris) Date: Mon, 29 Sep 2003 10:29:12 -0400 (EDT) From: Kris Kennaway Message-Id: <200309291429.h8TETCMw098240@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, 29 Sep 2003 14:30:13 -0000 INDEX build failed with errors: jetspeed-1.4: "/vol/vol0/users/kris/ports.clean/devel/jakarta-ant" 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 ? 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 Sep 29 08:27: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 2C3F016A4B3 for ; Mon, 29 Sep 2003 08:27:32 -0700 (PDT) Received: from tl.kom.tuwien.ac.at (tl.kom.tuwien.ac.at [128.131.34.148]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0359144017 for ; Mon, 29 Sep 2003 08:27:31 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from tl.kom.tuwien.ac.at (localhost [127.0.0.1]) by tl.kom.tuwien.ac.at (8.12.10/8.12.6) with ESMTP id h8TFRLUG003963; Mon, 29 Sep 2003 17:27:21 +0200 (CEST) (envelope-from arved@FreeBSD.org) Received: (from tilman@localhost) by tl.kom.tuwien.ac.at (8.12.9/8.12.6/Submit) id h8TFRHmr003962; Mon, 29 Sep 2003 17:27:17 +0200 (CEST) X-Authentication-Warning: tl.kom.tuwien.ac.at: tilman set sender to arved@FreeBSD.org using -f From: Tilman Linneweh To: Edwin Groothuis In-Reply-To: <20030929052505.GI59397@k7.mavetju> References: <3F77BF60.6000305@familyhealth.com.au> <20030929052505.GI59397@k7.mavetju> Content-Type: text/plain Content-Transfer-Encoding: 7bit Organization: FreeBSD.org Message-Id: <1064849237.21768.5.camel@tl.kom.tuwien.ac.at> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Mon, 29 Sep 2003 17:27:17 +0200 cc: ports@FreeBSD.org cc: Christopher Kings-Lynne Subject: Re: Please update the devel/bison 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: Mon, 29 Sep 2003 15:27:32 -0000 Am Mo, 2003-09-29 um 07.25 schrieb Edwin Groothuis: > On Mon, Sep 29, 2003 at 01:13:04PM +0800, Christopher Kings-Lynne wrote: > > Bison 1.875 has been out for ages, but the ports still only has 1.75. > > I'm starting to find software that depends on the new version. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/47068 > > Arved, any news on this? Since 1.875 was committed as a seperate port, there is no need to update devel/bison since a lot ports broke last time we tried it on bento. From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 09:25:00 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 BD8FC16A4B3 for ; Mon, 29 Sep 2003 09:25:00 -0700 (PDT) Received: from ms-smtp-01.southeast.rr.com (ms-smtp-01.southeast.rr.com [24.93.67.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id B46B843FBD for ; Mon, 29 Sep 2003 09:24:59 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h8TGHOA7002364; Mon, 29 Sep 2003 12:17:24 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h8TGOYkB022726; Mon, 29 Sep 2003 12:24:34 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: Takahiro Morishita In-Reply-To: <20030929.212451.74754667.takahiro@falcon.next-generation.org> References: <20030929090716.GH35537@hal9000.halplant.com> <20030929.212451.74754667.takahiro@falcon.next-generation.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-WdeiV5qIL3mzNP0pO+jA" Organization: FreeBSD, Inc. Message-Id: <1064852688.732.4.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Mon, 29 Sep 2003 12:24:49 -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: A.J.Caines@halplant.com cc: FreeBSD-Ports@FreeBSD.org Subject: Re: Patch to update to net/gaim to 0.70 with working Yahoo! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 16:25:00 -0000 --=-WdeiV5qIL3mzNP0pO+jA Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2003-09-29 at 08:24, Takahiro Morishita wrote: > From: Andrew J Caines > Subject: Patch to update to net/gaim to 0.70 with working Yahoo! > Date: Mon, 29 Sep 2003 05:07:16 -0400 >=20 > > Marcus, > >=20 > > Below is the patch to update the port from gaim-0.69_1 to gaim-0.70. I'= m > > logged into Yahoo! now, so it's looking good, but I've not tested anyth= ing > > else. > >=20 > > Note that I've taken out the _jp.patch part out since it's for 0.69. I'= ve > > not tested it to see if it applies to 0.70. > >=20 > > You can get the port from my site[1]. >=20 > New _jp patch released by original _jp patch author. > http://www.cc.rim.or.jp/~yaz/gaim-0.70_jp.patch.gz >=20 > Should I make patch from net/gaim and your patch? Not necessary. I'll merge it. Joe >=20 > ---- > Takahiro Morishita --=20 Joe Marcus Clarke FreeBSD GNOME Team :: marcus@FreeBSD.org gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-WdeiV5qIL3mzNP0pO+jA 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/eFzQb2iPiv4Uz4cRAhYpAJ9m/F4AjGwxctFUlPyBT1VmBQNyZgCgnHFd t36b55Nby/nQw/ffchncd2c= =msI9 -----END PGP SIGNATURE----- --=-WdeiV5qIL3mzNP0pO+jA-- From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 10:08: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 5D24416A4B3 for ; Mon, 29 Sep 2003 10:08:06 -0700 (PDT) Received: from mail.gmx.net (mail.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id F285D43FFD for ; Mon, 29 Sep 2003 10:08:04 -0700 (PDT) (envelope-from adam.mclaurin@gmx.net) Received: (qmail 14949 invoked by uid 65534); 29 Sep 2003 17:08:03 -0000 Received: from dsl-cust-145.openweb.ca (EHLO jake) (64.39.186.145) by mail.gmx.net (mp006) with SMTP; 29 Sep 2003 19:08:03 +0200 X-Authenticated: #19934200 Date: Mon, 29 Sep 2003 13:07:56 -0400 From: Adam McLaurin To: freebsd-ports@freebsd.org Message-Id: <20030929130756.59cfb046.adam.mclaurin@gmx.net> In-Reply-To: <20030929104642.GA8813@watt.intra.caraldi.com> References: <20030909152452.GC10815@watt.intra.caraldi.com> <1063121517.50301.24.camel@jake> <20030929104642.GA8813@watt.intra.caraldi.com> Organization: X-Mailer: Sylpheed version 0.9.5-gtk2-20030906 (GTK+ 2.2.4; i386-portbld-freebsd5.1) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="pgp-sha1"; boundary="=.kAaeCpTNqVp/yi" Subject: Re: New port: NumlockX X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 17:08:06 -0000 --=.kAaeCpTNqVp/yi Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7bit On Mon, 29 Sep 2003 12:46:44 +0200 Jean-Baptiste Quenot wrote: > I'm wondering why it always takes *ages* to change the ports > tree. > Either the committers are not interested, or they don't have spare > time > to handle such requests. According to the audit trail on http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/56638 , Ernst found many problems with the port when running it through portlint. Have you addressed these issues? Perhaps he needs to run it through again. -- Adam --=.kAaeCpTNqVp/yi Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/eGbxt+DSc2Q4lGYRAuh9AKC5sDCZNfy00AdHm20jU9N8VFVQ5QCfW+OA e3B6auwJo1LFEHDiIGCWRZg= =XQhX -----END PGP SIGNATURE----- --=.kAaeCpTNqVp/yi-- From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 10:20: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 08A8216A4B3 for ; Mon, 29 Sep 2003 10:20:21 -0700 (PDT) Received: from mail.caraldi.com (caraldi.com [62.212.102.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 572F543FE9 for ; Mon, 29 Sep 2003 10:20:19 -0700 (PDT) (envelope-from jbq@caraldi.com) Received: from watt.intra.caraldi.com (watt.intra.caraldi.com [192.168.100.101]) by mail.caraldi.com (Postfix) with ESMTP id 4BABC2177 for ; Mon, 29 Sep 2003 19:20:17 +0200 (CEST) Received: by watt.intra.caraldi.com (Postfix, from userid 1001) id 9C3A92B; Mon, 29 Sep 2003 19:20:45 +0200 (CEST) Date: Mon, 29 Sep 2003 19:20:45 +0200 From: Jean-Baptiste Quenot To: freebsd-ports@freebsd.org Message-ID: <20030929172043.GA54396@watt.intra.caraldi.com> Mail-Followup-To: freebsd-ports@freebsd.org References: <20030909152452.GC10815@watt.intra.caraldi.com> <1063121517.50301.24.camel@jake> <20030929104642.GA8813@watt.intra.caraldi.com> <20030929130756.59cfb046.adam.mclaurin@gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030929130756.59cfb046.adam.mclaurin@gmx.net> User-Agent: Mutt/1.5.4i Subject: Re: New port: NumlockX X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 17:20:21 -0000 * Adam McLaurin: > On Mon, 29 Sep 2003 12:46:44 +0200 Jean-Baptiste Quenot wrote: > > > I'm wondering why it always takes *ages* to change the ports tree. > > Either the committers are not interested, or they don't have spare > > time to handle such requests. > > According to the audit trail on ports/56638 , Ernst found many > problems with the port when running it through portlint. Ernst picked this PR today, and I thank him for having done so. > Have you addressed these issues? Perhaps he needs to run it through > again. I adressed these issues immediately, the updated port is available. -- Jean-Baptiste Quenot http://caraldi.com/jbq/ From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 11:03: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 9471A16A4B3 for ; Mon, 29 Sep 2003 11:03:10 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCFBB43FBD for ; Mon, 29 Sep 2003 11:03:03 -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 h8TI33FY028688 for ; Mon, 29 Sep 2003 11:03:03 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h8TI32D3028682 for freebsd-ports@freebsd.org; Mon, 29 Sep 2003 11:03:02 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 29 Sep 2003 11:03:02 -0700 (PDT) Message-Id: <200309291803.h8TI32D3028682@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, 29 Sep 2003 18:03:10 -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 o [2003/07/14] ports/54465 ports-bugs ipfm (/usr/ports/ipfm) destroys all accou 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/03] ports/56366 ports-bugs port freetype2-2.1.4_1 broken instalation o [2003/09/28] ports/57336 ports-bugs FrontPage publishing failure with mod_fro 11 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 f [2001/09/30] ports/30947 ports-bugs mail/mahogany fails to build, conflicts w o [2001/12/11] ports/32700 ports-bugs 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/20] ports/46399 ports-bugs libdvxencore permissions 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 f [2003/02/02] ports/47809 ports-bugs New port: Ukrainian accounting system. o [2003/02/08] ports/48091 ports-bugs port install fails on minimum system 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 f [2003/07/23] ports/54792 ports-bugs [patch] port lang/mozart unbreak and upda 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/03] ports/55219 ports-bugs devel/fam: NFS support broken 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/55928 ports-bugs vmware2 broken on -STABLE, presumably by o [2003/08/24] ports/55948 ports-bugs install of ports/emulators/linux_base fil o [2003/08/25] ports/55959 ports-bugs New port: anacron o [2003/08/26] ports/56011 ports-bugs bonnie++ doesn't do large files o [2003/08/27] ports/56035 ports-bugs New port: Toshctl, a command-line tool to o [2003/08/27] ports/56063 ports-bugs patch for net/lft o [2003/08/28] ports/56120 ports-bugs IMP3 port's dependancy test fails for cyr 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/03] ports/56363 ports-bugs The graphics/py-opengl port is broken o [2003/09/03] ports/56376 ports-bugs New port: VisualBoyAdvance o [2003/09/03] ports/56382 ports-bugs port uprgrade of mutt fails; 'old layout' 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 f [2003/09/08] ports/56607 ports-bugs Update port: emualtors/vba 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/56891 ports-bugs "portinstall mailman" fails 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/19] ports/57020 ports-bugs Patch for Xview Makefile on -current. Fix o [2003/09/23] ports/57126 ports-bugs molden port broken f [2003/09/24] ports/57163 ports-bugs [maintainer-update] Update sccmilter port o [2003/09/24] ports/57189 ports-bugs Update textproc/diffutils o [2003/09/25] ports/57222 ports-bugs krb5 port fails under RELENG_4_8 default o [2003/09/26] ports/57238 ports-bugs libgnugetopt conflict : nmap upgrade (3.3 o [2003/09/26] ports/57264 ports-bugs x11-toolkits/qt32 upgrade failes/header i o [2003/09/26] ports/57267 ports-bugs devel/stlport is broken under -current o [2003/09/27] ports/57282 ports-bugs pthread fix for audio/openal on -current o [2003/09/28] ports/57302 ports-bugs A serious FreeBSD-local patch lacks in po o [2003/09/29] ports/57353 ports-bugs [Maintainer Update] Port: www/mod_tsunami o [2003/09/29] ports/57355 ports-bugs [Maintainer Update] Port: www/turck-mmcac o [2003/09/29] ports/57365 ports-bugs New port: mail/spamd - Trapit in cooperat o [2003/09/29] ports/57368 ports-bugs forever cycled when building libtool 1.5 101 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 o [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/10] ports/37927 ports-bugs port to install linux Lahey Fortran 95 v6 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 f [2002/07/22] ports/40904 ports-bugs new port: www/tclcurl 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 f [2002/11/27] ports/45812 ports-bugs New port for print/mup o [2002/11/30] ports/45886 ports-bugs New ports: japanese/trr* o [2002/12/01] ports/45909 ports-bugs New port: Python DBI Sybase module 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 o [2002/12/07] ports/46063 ports-bugs New port: USB FM Radio Control utility o [2002/12/17] ports/46327 ports-bugs obsolete version of the Computer Modern f o [2002/12/20] ports/46394 ports-bugs New port: special purpose database applic 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/46602 ports-bugs new port devel/tkinspect o [2002/12/28] ports/46608 ports-bugs [NEW PORT] latest development track of ep o [2003/01/04] ports/46766 ports-bugs New port: kix-kmod : Syscons screen saver o [2003/01/04] ports/46774 ports-bugs New port: comms/lirc: Linux Infared Remot o [2003/01/07] ports/46847 ports-bugs new port: multimedia/nxtvepg (electronic o [2003/01/09] ports/46904 ports-bugs new port: mail/vqregister o [2003/01/13] ports/47026 ports-bugs New port: a small assembly to HTML conver 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/27] ports/47545 ports-bugs New port: jpegoptim is an command-line jp o [2003/01/27] ports/47571 ports-bugs new port: gnotime tracker o [2003/01/28] ports/47622 ports-bugs New Port: misc/gkrellshoot2 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/02/14] ports/48292 ports-bugs new port: print/epsonepl "Printer filter o [2003/02/17] ports/48404 ports-bugs gnuchess doesn't install the gnuchessx al o [2003/02/18] ports/48418 ports-bugs mail/teapop: 2 problems o [2003/02/18] ports/48422 ports-bugs New POrt: webstats o [2003/02/18] ports/48448 ports-bugs New port: orca text data grapher (uses rr o [2003/02/25] ports/48694 ports-bugs New port: Plan9 compatibility libraries o [2003/02/27] ports/48764 ports-bugs new port for mpexpr o [2003/03/01] ports/48812 ports-bugs New port: print/foomatic-db-engine 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/04] ports/48929 ports-bugs New port: JRTPLIB - RTP library in C++ o [2003/03/07] ports/49002 ports-bugs fix duplicated categories on a 34 slave p o [2003/03/07] ports/49003 ports-bugs New port: A virtual note-pad system for y o [2003/03/10] ports/49080 ports-bugs New port: emacs-chess, a chessboard for e o [2003/03/11] ports/49944 ports-bugs New Port: mail/pop-before-smtp - smtp aut o [2003/03/11] ports/49948 ports-bugs Port submission o [2003/03/12] ports/49961 ports-bugs [PATCH] Mega tree sweep for SITE_PERL usa o [2003/03/13] ports/49986 ports-bugs new port: myphpmoney o [2003/03/15] ports/50029 ports-bugs fix for "user stats" function in tkseti o [2003/03/17] ports/50068 ports-bugs New port: sybase_ase (Sybase ASE RDBMS) o [2003/03/17] ports/50072 ports-bugs New port: net/gkrellmwireless2 o [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/20] ports/50146 ports-bugs mount.app new port submission o [2003/03/23] ports/50230 ports-bugs grail don't work with Python 2.x. o [2003/03/25] ports/50291 ports-bugs FreeBSD Port Submission for "Destroy" a [2003/03/26] ports/50313 ports-bugs Upgrade emulators/linux_base's glibc o [2003/03/28] ports/50405 ports-bugs New port: x11-wm/fluxspace o [2003/03/29] ports/50443 ports-bugs New port for libirman 0.4.2 o [2003/03/31] ports/50473 ports-bugs amavis-perl is no longer supported (super o [2003/03/31] ports/50475 ports-bugs Port of rubber. 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/04] ports/50609 ports-bugs New port: russian/muttprint (pretty print o [2003/04/04] ports/50616 ports-bugs UPDATE-PORT: devel/linux-sdl12 update to o [2003/04/05] ports/50628 ports-bugs [PATCH] waimea port has missing run-depen o [2003/04/08] ports/50710 ports-bugs New port: misc/pxclient o [2003/04/08] bin/50724 ports-bugs [PATCH] pkg_fetch saves full filename o [2003/04/08] ports/50725 ports-bugs new port: russian/koi2koi o [2003/04/10] ports/50775 ports-bugs axel port failes to build o [2003/04/10] ports/50777 ports-bugs New port: lxsplit-0.1.1 o [2003/04/10] ports/50794 ports-bugs New port graphics/pho (version 0.9.1) 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 o [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/17] ports/51098 ports-bugs New port: Perl5 module to read and write o [2003/04/19] ports/51158 ports-bugs New port: sysutils/reoback o [2003/04/19] ports/51162 ports-bugs new port: misc/gkrellm-helium, Prague the o [2003/04/20] ports/51190 ports-bugs New port: emulators/extract-xiso 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/21] ports/51264 ports-bugs new port: mail/mls o [2003/04/23] ports/51320 ports-bugs NEW PORT: sysutils/adtool o [2003/04/27] ports/51456 ports-bugs adding new port: opencm o [2003/04/27] ports/51484 ports-bugs undefined reference in libobjc.so o [2003/04/28] ports/51543 ports-bugs New port: py-sybase 0.36 (Sybase DB modul o [2003/04/30] ports/51631 ports-bugs New port: hungarian/complexjogtar - Hunga o [2003/04/30] ports/51647 ports-bugs NEW PORT: pglod - inserts web logs into a 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 o [2003/05/13] ports/52176 ports-bugs new port: comms/gscmxx 0.4.1 - gtk-fronte o [2003/05/15] ports/52268 ports-bugs devel/picasm update to 1.12b o [2003/05/17] ports/52364 ports-bugs New Port: Common Lisp Parser Generator (C o [2003/05/17] ports/52368 ports-bugs New Port: Common Lisp portability package o [2003/05/17] ports/52372 ports-bugs New Port: Portable Perl-Compatible Regexp o [2003/05/17] ports/52376 ports-bugs New Port: Splitting Common Lisp sequences f [2003/05/17] ports/52380 ports-bugs Configure problem in libggi o [2003/05/18] ports/52393 ports-bugs New port: py-sourceview is a Python wrapp o [2003/05/18] ports/52402 ports-bugs New port: www/webcpp (converts code to hi o [2003/05/19] ports/52452 ports-bugs [PATCH] sysutils/afio mangles FIFOs 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/27] ports/52727 ports-bugs Add Apache2 support at graphics/phplot 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/02] ports/52881 ports-bugs New port: sysutils/clean; automatically r 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/04] ports/52955 ports-bugs Update port: sysutils/di: di-3.9 - disk i o [2003/06/06] ports/52997 ports-bugs NEW port CAD/admesh 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 o [2003/06/12] ports/53247 ports-bugs New port: gnome-ssh-askpass o [2003/06/12] ports/53256 ports-bugs update port: misc/pl-sms update patch res o [2003/06/12] ports/53266 ports-bugs ploticus should not require X11 (patch in f [2003/06/13] ports/53281 ports-bugs Port for LDAP servers access and KAddress o [2003/06/14] ports/53318 ports-bugs New port, proxychains 1.8.2 o [2003/06/14] ports/53319 ports-bugs New port: yaph 0.91 o [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/15] ports/53347 ports-bugs port-update: icu2 o [2003/06/18] ports/53444 ports-bugs comms/hamfax - sending and receiving facs f [2003/06/18] ports/53445 ports-bugs Patch to update www/mod_mp3 port to 0.40 s [2003/06/18] ports/53460 ports-bugs security/inflex port out-of-date o [2003/06/19] ports/53482 ports-bugs New Port: zabbix - Very advanced network o [2003/06/19] ports/53490 ports-bugs [New ports] linux-pam-docs o [2003/06/19] ports/53537 ports-bugs New port: mb2md - Converts mbox mailboxes 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/22] ports/53617 ports-bugs Update databases/mysql-jdbc-mm to mysql-c 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/53701 ports-bugs [NEW PORT] devel/skalibs: General purpose o [2003/06/24] ports/53702 ports-bugs Port upgrade: devel/directfb o [2003/06/25] ports/53722 ports-bugs [UPDATE] www/plone from 1.0.1 to 1.0.3 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 o [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/02] ports/54038 ports-bugs [new port] www/gforge: Open Source collab o [2003/07/03] ports/54055 ports-bugs new port: x11-toolkits/gtk-theme-switch2 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/54092 ports-bugs LCDd daemon from sysutils/lcdproc starts 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 o [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/06] ports/54152 ports-bugs New Port: x11-fonts/ppantsfonts o [2003/07/07] ports/54174 ports-bugs clean spaces behind variables out of port o [2003/07/08] ports/54245 ports-bugs [new port] sysutils/bubblemon2 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/54279 ports-bugs new port: sysutils/ucspi-ssl 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/10] ports/54356 ports-bugs [new port] textproc/sagasu o [2003/07/11] ports/54372 ports-bugs new port: FoilTeX - a collection of LaTeX o [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/15] ports/54530 ports-bugs [new port] deskutils/multi-backgrounds-da 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/17] ports/54583 ports-bugs adding Naken Chat to FreeBSD ports o [2003/07/18] ports/54617 ports-bugs New port: lang/freetxl o [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) o [2003/07/26] ports/54886 ports-bugs new port for ports tree (editors/zoinks) o [2003/07/26] ports/54887 ports-bugs [new port] mail/dbmail: An SQL database-b o [2003/07/27] ports/54912 ports-bugs New port: pkg_cutleaves - Perl script for 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 3. o [2003/08/17] ports/55669 ports-bugs emacs20 and emacs21 override each other a o [2003/08/17] ports/55672 ports-bugs New port: X window manager menu generatio o [2003/08/18] ports/55696 ports-bugs [update port]: devel/veepee (fix dependen o [2003/08/18] ports/55711 ports-bugs [patch] unbreak www/gn and make it respec o [2003/08/20] ports/55718 ports-bugs [NEW PORT] misc/gkrellmdnetc: Gkrelldnetc o [2003/08/20] ports/55730 ports-bugs use of the --with-trashquota configure op o [2003/08/20] ports/55750 ports-bugs mail/courier is broken f [2003/08/20] ports/55768 ports-bugs [NEW PORT] misc/gkrellmdnetc: Gkrelldnetc o [2003/08/20] ports/55797 ports-bugs New port for ELAN SC520 watchdog o [2003/08/20] ports/55816 ports-bugs New Port: k3b 0.9 a kde cd recording gui o [2003/08/21] ports/55834 ports-bugs New port: japanese/mailman o [2003/08/21] ports/55854 ports-bugs [patch] lang/treecc: Update to 0.2.6 o [2003/08/21] ports/55855 ports-bugs New port: www/wiliki - a lightweight Wiki o [2003/08/22] ports/55864 ports-bugs [PATCH] www/bozohttpd: basic http authent o [2003/08/22] ports/55872 ports-bugs Update port: net/linphone to 0.12.0 (fix o [2003/08/22] ports/55889 ports-bugs Extra patch in editors/ted cause make to o [2003/08/23] ports/55896 ports-bugs [NEWPORT] www/mozplugger o [2003/08/24] ports/55924 ports-bugs New port: ftp/proma toc conve o [2003/09/24] ports/57198 ports-bugs multimedia/xmms fix to work with CDDA und o [2003/09/24] ports/57199 ports-bugs port update: www/slash, chinese/metalist o [2003/09/25] ports/57203 ports-bugs a few files in the 1.1 lang/eiffel port h o [2003/09/25] ports/57224 ports-bugs [NEW PORT] port net/ldapc++: OpenLDAP C++ o [2003/09/25] ports/57226 ports-bugs audio/cdparanoia fix to work with cooked_ o [2003/09/25] ports/57227 ports-bugs audio/dagrab fix to work under -CURRENT o [2003/09/25] ports/57232 ports-bugs New port: net/hf6to4 (replaces net/6to4) o [2003/09/26] ports/57247 ports-bugs security/gnutls is unusable for loudmouth o [2003/09/26] ports/57251 ports-bugs security/sfs package broken o [2003/09/27] ports/57275 ports-bugs [patch] mark emulators/dlx as broken exce o [2003/09/27] ports/57283 ports-bugs Maintainer update: Update www/opera to Be o [2003/09/27] ports/57286 ports-bugs Update port: graphics/xzgv to 0.8 o [2003/09/27] ports/57289 ports-bugs teamspeak-server port is broken in 3 ways o [2003/09/27] ports/57290 ports-bugs New port: audio/yammi, a QT music manager o [2003/09/27] ports/57299 ports-bugs new port: multimedia/xmms-status-plugin a [2003/09/28] ports/57310 ports-bugs amavisd-new searches for SpamAssassin loc o [2003/09/28] ports/57329 ports-bugs [patch] mark games/tank as broken for 5.X o [2003/09/28] ports/57330 ports-bugs [patch] mark games/torcs as broken on amd o [2003/09/28] ports/57331 ports-bugs [patch] mark graphics/maverik as broken f o [2003/09/28] ports/57332 ports-bugs [patch] set x11-toolkits/paragui as broke o [2003/09/28] ports/57337 ports-bugs [patch] fix checksum for cad/slffea f [2003/09/29] ports/57342 ports-bugs New port: games/typespeed o [2003/09/29] ports/57354 ports-bugs Update port: editors/scite to 1.55 o [2003/09/29] ports/57356 ports-bugs Update port: graphics/aqsis to 0.8.0 o [2003/09/29] ports/57357 ports-bugs Update port: graphics/gifsicle to 1.40 o [2003/09/29] ports/57359 ports-bugs Update port: textproc/wv to 1.0.0 o [2003/09/29] ports/57361 ports-bugs Update port: www/amaya to 8.1b o [2003/09/29] ports/57364 ports-bugs maintainer update Mailman o [2003/09/29] ports/57366 ports-bugs [MAINTAINER] editors/leo: update to 4.0.b 469 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 13:00: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 ADE3216A4B3 for ; Mon, 29 Sep 2003 13:00:01 -0700 (PDT) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD7CC4400F for ; Mon, 29 Sep 2003 13:00:00 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from ciam.ru (ppp139-68.dialup.mtu-net.ru [62.118.139.68]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id 20345F85EA for ; Mon, 29 Sep 2003 23:59:58 +0400 (MSD) (envelope-from sem@ciam.ru) Message-ID: <3F788F45.2080801@ciam.ru> Date: Tue, 30 Sep 2003 00:00:05 +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: ports@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: PR/56544 - mysql++ patch for gcc3.3 and more X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 20:00:01 -0000 Please, take a look. The maintainer keeps a silence for about month. ---- Sem. From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 15:50: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 0795C16A4B3 for ; Mon, 29 Sep 2003 15:50:45 -0700 (PDT) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id AE0FD43FDD for ; Mon, 29 Sep 2003 15:50:43 -0700 (PDT) (envelope-from adamw@magnesium.net) Received: (qmail 685 invoked by uid 1252); 29 Sep 2003 22:50:43 -0000 Date: 29 Sep 2003 18:50:43 -0400 Date: Mon, 29 Sep 2003 18:50:43 -0400 From: Adam Weinberger To: yoseph widjaya Message-ID: <20030929225043.GR47415@toxic.magnesium.net> Mail-Followup-To: Adam Weinberger , yoseph widjaya , ports@FreeBSD.org References: <20030929103627.GA1890@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030929103627.GA1890@rot13.obsecurity.org> 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 Subject: Re: asking about the ports collection X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 22:50:45 -0000 >> (09.29.2003 @ 0636 PST): Kris Kennaway said, in 0.9K: << > On Mon, Sep 29, 2003 at 08:36:46AM +0000, yoseph widjaya wrote: > > Dear maintainer > > > > I really wish that I could have all the ports collection which are 9XXX > > files in a couple CDs so I don't have to go to the internet. is there any > > place that I could buy or download all of them. I don't mind that leaving > > my dialup connection open for 1 weeks > > ftp.freebsd.org/pub/FreeBSD/ports and mirror whatever you want. It > will take several dozen CDs though. > >> end of "Re: asking about the ports collection" from Kris Kennaway << Yoseph - FreeBSD is sold (see freebsdmall.com) as both CD-sets and DVDs. In addition to downloading the stuff that Kris mentioned above, both the CDs and DVDs contain the entire pre-built package sets, and the DVDs contain the source distfiles from which you can compile the ports yourself. # 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 Mon Sep 29 15:51: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 7050B16A4B3 for ; Mon, 29 Sep 2003 15:51:35 -0700 (PDT) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 582D54401F for ; Mon, 29 Sep 2003 15:51:34 -0700 (PDT) (envelope-from adamw@magnesium.net) Received: (qmail 768 invoked by uid 1252); 29 Sep 2003 22:51:34 -0000 Date: 29 Sep 2003 18:51:34 -0400 Date: Mon, 29 Sep 2003 18:51:34 -0400 From: Adam Weinberger To: Edwin Groothuis Message-ID: <20030929225134.GS47415@toxic.magnesium.net> Mail-Followup-To: Adam Weinberger , Edwin Groothuis , ports@FreeBSD.org References: <200309291327.h8TDR0Ll063225@9ball.rtp.freebsd.org> <20030929133633.GJ59397@k7.mavetju> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030929133633.GJ59397@k7.mavetju> 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 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, 29 Sep 2003 22:51:35 -0000 >> (09.29.2003 @ 0936 PST): Edwin Groothuis said, in 0.6K: << > On Mon, Sep 29, 2003 at 09:27:00AM -0400, Kris Kennaway wrote: > > INDEX build failed with errors: > > jetspeed-1.4: "/vol/vol0/users/kris/ports.clean/devel/jakarta-ant" non-existent -- dependency list incomplete > > That's mine! That's mine! I got mentioned! Woohoo! > > Edwin >> end of "Re: INDEX build failed" from Edwin Groothuis << Party hats all around!! And an extra big one for you ;;) # 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 Mon Sep 29 15:59: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 6861F16A4B3 for ; Mon, 29 Sep 2003 15:59:46 -0700 (PDT) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id A671B43FE1 for ; Mon, 29 Sep 2003 15:59:45 -0700 (PDT) (envelope-from adamw@magnesium.net) Received: (qmail 1664 invoked by uid 1252); 29 Sep 2003 22:59:45 -0000 Date: 29 Sep 2003 18:59:45 -0400 Date: Mon, 29 Sep 2003 18:59:45 -0400 From: Adam Weinberger To: freebsd-ports@freebsd.org Message-ID: <20030929225945.GT47415@toxic.magnesium.net> References: <20030909152452.GC10815@watt.intra.caraldi.com> <1063121517.50301.24.camel@jake> <20030929104642.GA8813@watt.intra.caraldi.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030929104642.GA8813@watt.intra.caraldi.com> 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 Subject: Re: New port: NumlockX X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 Sep 2003 22:59:46 -0000 >> (09.29.2003 @ 0646 PST): Jean-Baptiste Quenot said, in 0.9K: << > I'm wondering why it always takes *ages* to change the ports tree. > Either the committers are not interested, or they don't have spare time > to handle such requests. >> end of "Re: New port: NumlockX" from Jean-Baptiste Quenot << This is why: http://www.freebsd.org/cgi/query-pr-summary.cgi?category=ports&state=open&responsible=freebsd-ports-bugs # 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 Mon Sep 29 17:38: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 1796016A4B3; Mon, 29 Sep 2003 17:38:35 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86B8443FF3; Mon, 29 Sep 2003 17:38:34 -0700 (PDT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h8U0cYFY073205; Mon, 29 Sep 2003 17:38:34 -0700 (PDT) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h8U0cYGA073201; Mon, 29 Sep 2003 17:38:34 -0700 (PDT) (envelope-from edwin) Date: Mon, 29 Sep 2003 17:38:34 -0700 (PDT) From: Edwin Groothuis Message-Id: <200309300038.h8U0cYGA073201@freefall.freebsd.org> To: linimon@lonesome.com, edwin@FreeBSD.org, gnats-admin@FreeBSD.org, ports@FreeBSD.org Subject: Re: pending/57030: Re: port/27019: patch supplied in PR ports/26976 breaks linux_communicator X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 00:38:35 -0000 Synopsis: Re: port/27019: patch supplied in PR ports/26976 breaks linux_communicator State-Changed-From-To: open->closed State-Changed-By: edwin State-Changed-When: Mon Sep 29 17:37:27 PDT 2003 State-Changed-Why: Commited, thanks! Responsible-Changed-From-To: gnats-admin->ports Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 29 17:37:27 PDT 2003 Responsible-Changed-Why: Commited, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=57030 From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 17:40: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 8B77A16A4BF; Mon, 29 Sep 2003 17:40:09 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C465C44020; Mon, 29 Sep 2003 17:40:08 -0700 (PDT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h8U0e8FY073360; Mon, 29 Sep 2003 17:40:08 -0700 (PDT) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h8U0e8HW073356; Mon, 29 Sep 2003 17:40:08 -0700 (PDT) (envelope-from edwin) Date: Mon, 29 Sep 2003 17:40:08 -0700 (PDT) From: Edwin Groothuis Message-Id: <200309300040.h8U0e8HW073356@freefall.freebsd.org> To: edwin@FreeBSD.org, gnats-admin@FreeBSD.org, ports@FreeBSD.org Subject: Re: pending/57087: molden 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, 30 Sep 2003 00:40:09 -0000 Synopsis: molden port broken Responsible-Changed-From-To: gnats-admin->ports Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 29 17:39:42 PDT 2003 Responsible-Changed-Why: fix category http://www.freebsd.org/cgi/query-pr.cgi?pr=57087 From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 17:50: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 3D91716A4B3; Mon, 29 Sep 2003 17:50:33 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B283244001; Mon, 29 Sep 2003 17:50:32 -0700 (PDT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h8U0oWFY074608; Mon, 29 Sep 2003 17:50:32 -0700 (PDT) (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h8U0oWkA074604; Mon, 29 Sep 2003 17:50:32 -0700 (PDT) (envelope-from edwin) Date: Mon, 29 Sep 2003 17:50:32 -0700 (PDT) From: Edwin Groothuis Message-Id: <200309300050.h8U0oWkA074604@freefall.freebsd.org> To: edwin@FreeBSD.org, ports@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org Subject: Re: ports/57087: molden 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, 30 Sep 2003 00:50:33 -0000 Synopsis: molden port broken Responsible-Changed-From-To: ports->freebsd-ports-bugs Responsible-Changed-By: edwin Responsible-Changed-When: Mon Sep 29 17:50:16 PDT 2003 Responsible-Changed-Why: fx category http://www.freebsd.org/cgi/query-pr.cgi?pr=57087 From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 18:22: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 5E40916A4B3 for ; Mon, 29 Sep 2003 18:22:45 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49EAD44029 for ; Mon, 29 Sep 2003 18:22:44 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8U1MhGZ010716 for ; Mon, 29 Sep 2003 21:22:43 -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 h8U1MhR0073316 for ports@FreeBSD.org; Mon, 29 Sep 2003 21:22:43 -0400 (EDT) (envelope-from kris) Date: Mon, 29 Sep 2003 21:22:43 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300122.h8U1MhR0073316@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, 30 Sep 2003 01:22:45 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 U MOVED ? 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 U editors/Makefile ? graphics/gphoto2/make.core ? graphics/pstoedit/make.core U mail/Makefile U mail/spamd/Makefile U mail/spamd/distinfo U mail/spamd/pkg-descr U mail/spamd/pkg-install U mail/spamd/pkg-plist U mail/spamd/files/local-patch.sed U mail/spamd/files/spamd.sh.sample ? 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 U sysutils/Makefile U sysutils/adtool/Makefile U sysutils/adtool/distinfo U sysutils/adtool/pkg-descr U sysutils/adtool/pkg-plist U sysutils/adtool/files/patch-src::tools::Makefile.in U sysutils/afio/Makefile U sysutils/afio/files/patch-ab U sysutils/clean/Makefile U sysutils/clean/distinfo U sysutils/clean/pkg-descr U sysutils/clean/pkg-plist U sysutils/di/Makefile U sysutils/di/distinfo U sysutils/lcdproc/files/LCDd.sh.sample U sysutils/reoback/Makefile U sysutils/reoback/distinfo U sysutils/reoback/pkg-descr U sysutils/reoback/pkg-plist U sysutils/ucspi-ssl/Makefile U sysutils/ucspi-ssl/distinfo U sysutils/ucspi-ssl/pkg-descr U sysutils/ucspi-ssl/pkg-plist U www/opera/Makefile U www/opera/distinfo U www/opera/pkg-plist ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 18:25: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 C861916A4B3 for ; Mon, 29 Sep 2003 18:25: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 105B04401A for ; Mon, 29 Sep 2003 18:25:39 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8U1PcGZ010725 for ; Mon, 29 Sep 2003 21:25:38 -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 h8U1OX3X046340 for ports@FreeBSD.org; Mon, 29 Sep 2003 21:24:33 -0400 (EDT) (envelope-from kris) Date: Mon, 29 Sep 2003 21:24:33 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300124.h8U1OX3X046340@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, 30 Sep 2003 01:25:39 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 U MOVED ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U editors/Makefile U mail/Makefile ? mail/log U mail/spamd/Makefile U mail/spamd/distinfo U mail/spamd/pkg-descr U mail/spamd/pkg-install U mail/spamd/pkg-plist U mail/spamd/files/local-patch.sed U mail/spamd/files/spamd.sh.sample ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U sysutils/Makefile U sysutils/adtool/Makefile U sysutils/adtool/distinfo U sysutils/adtool/pkg-descr U sysutils/adtool/pkg-plist U sysutils/adtool/files/patch-src::tools::Makefile.in U sysutils/afio/Makefile U sysutils/afio/files/patch-ab U sysutils/clean/Makefile U sysutils/clean/distinfo U sysutils/clean/pkg-descr U sysutils/clean/pkg-plist U sysutils/di/Makefile U sysutils/di/distinfo U sysutils/lcdproc/files/LCDd.sh.sample U sysutils/reoback/Makefile U sysutils/reoback/distinfo U sysutils/reoback/pkg-descr U sysutils/reoback/pkg-plist U sysutils/ucspi-ssl/Makefile U sysutils/ucspi-ssl/distinfo U sysutils/ucspi-ssl/pkg-descr U sysutils/ucspi-ssl/pkg-plist U www/opera/Makefile U www/opera/distinfo U www/opera/pkg-plist ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 19:22: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 0F8A916A4B3 for ; Mon, 29 Sep 2003 19:22:38 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41EF344017 for ; Mon, 29 Sep 2003 19:22:37 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8U2MaGZ010816 for ; Mon, 29 Sep 2003 22:22: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 h8U2MaCG000242 for ports@FreeBSD.org; Mon, 29 Sep 2003 22:22:36 -0400 (EDT) (envelope-from kris) Date: Mon, 29 Sep 2003 22:22:36 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300222.h8U2MaCG000242@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, 30 Sep 2003 02:22:38 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 29 19:25: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 AA14D16A4B3 for ; Mon, 29 Sep 2003 19:25:44 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77F4A4400F for ; Mon, 29 Sep 2003 19:25:41 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8U2PeGZ010825 for ; Mon, 29 Sep 2003 22:25:40 -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 h8U2OY1o073162 for ports@FreeBSD.org; Mon, 29 Sep 2003 22:24:34 -0400 (EDT) (envelope-from kris) Date: Mon, 29 Sep 2003 22:24:34 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300224.h8U2OY1o073162@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, 30 Sep 2003 02:25:44 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 29 19:48: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 0885216A4B3 for ; Mon, 29 Sep 2003 19:48:28 -0700 (PDT) Received: from onion.ish.org (onion.ish.org [219.118.161.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id D647443FF2 for ; Mon, 29 Sep 2003 19:48:26 -0700 (PDT) (envelope-from ishizuka@ish.org) Received: from localhost (ishizuka@localhost [IPv6:::1]) h8U2mPF2078626 for ; Tue, 30 Sep 2003 11:48:25 +0900 (JST) (envelope-from ishizuka@ish.org) Date: Tue, 30 Sep 2003 11:48:25 +0900 (JST) Message-Id: <20030930.114825.71158211.ishizuka@ish.org> To: ports@freebsd.org From: Masachika ISHIZUKA In-Reply-To: <3F739E80.2020706@ciam.ru> References: <003001c38364$16e99180$455ac7d5@kingen> <20030925132552.GF96819@heechee.tobez.org> <3F739E80.2020706@ciam.ru> X-PGP-Fingerprint20: 276D 697A C2CB 1580 C683 8F18 DA98 1A4A 50D2 C4CB X-PGP-Fingerprint16: C6 DE 46 24 D7 9F 22 EB 79 E2 90 AB 1B 9A 35 2E X-PGP-Public-Key: http://www.ish.org/pgp-public-key.txt X-URL: http://www.ish.org/ X-Mailer: Mew version 3.3 on Emacs 21.2 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: FreeBSD Port: perl-5.8.0_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: Tue, 30 Sep 2003 02:48:28 -0000 >>>hi i just wanted to tell you that perl version 5.8.1 is out > > Any updates? When? Hi, this is ishizuka@ish.org. See http://www.perl.org/index.html and found that current release is 5.8.1. I'm waiting for ports of perl 5.8.1. -- ishizuka@ish.org From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 19:54: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 5B5BF16A4B3 for ; Mon, 29 Sep 2003 19:54:50 -0700 (PDT) Received: from globaldiagnostics.com (globaldiagnostics.com [64.56.239.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0A6F43FFB for ; Mon, 29 Sep 2003 19:54:49 -0700 (PDT) (envelope-from brandon@globaldiagnostics.com) Received: from cpe0080c8dd4916-cm014280006866.cpe.net.cable.rogers.com ([24.156.102.208] helo=cr236454a) by globaldiagnostics.com with smtp (Exim 4.20) id 1A4Af2-0005gk-RE for ports@freebsd.org; Mon, 29 Sep 2003 22:54:48 -0400 From: "Brandon Gale" To: Date: Mon, 29 Sep 2003 22:54:31 -0400 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) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Subject: MS Exchange X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 02:54:50 -0000 Does anyone know of a port or piece of software that emulates a MS Exchange server and interfaces with MS Outlook clients? I'm trying to provide an alternative to a potential client using Win2k simply for the only reason that they require the functionality of an MS Exchange server. My searches through the ports tree didn't dig up anything. (please cc me, I'm not subscribed to the list) Thanks, Brandon From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 19:59: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 3755416A4B3; Mon, 29 Sep 2003 19:59:12 -0700 (PDT) Received: from lakemtao04.cox.net (lakemtao04.cox.net [68.1.17.241]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86EF743FF5; Mon, 29 Sep 2003 19:59:10 -0700 (PDT) (envelope-from A.J.Caines@halplant.com) Received: from mail.halplant.com ([68.98.167.210]) by lakemtao04.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20030930025909.HFAU21398.lakemtao04.cox.net@mail.halplant.com>; Mon, 29 Sep 2003 22:59:09 -0400 Received: by mail.halplant.com (Postfix, from userid 1001) id B3F2E20; Mon, 29 Sep 2003 22:59:09 -0400 (EDT) Date: Mon, 29 Sep 2003 22:59:09 -0400 From: Andrew J Caines To: freebsd-gnats-submit@FreeBSD.org, ports@fsck.ch Message-ID: <20030930025909.GZ35537@hal9000.halplant.com> Mail-Followup-To: freebsd-gnats-submit@FreeBSD.org, ports@fsck.ch, FreeBSD ports , Adam Weinberger Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Organization: H.A.L. Plant X-PGP-Fingerprint: C59A 2F74 1139 9432 B457 0B61 DDF2 AA61 67C3 18A1 X-Powered-by: FreeBSD 4.9-PRERELEASE X-URL: http://halplant.com:88/ X-Yahoo-Profile: AJ_Z0 Importance: Normal User-Agent: Mutt/1.5.4i cc: FreeBSD ports Subject: ports/54055 - x11-toolkits/gtk-theme-switch2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrew J Caines List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Sep 2003 02:59:12 -0000 Tobias, It looks like we've both done the same work, though after asking on the list, I settled on a different name. Also you've picked x11-toolkits, whereas I thought that x11 (the same as gtk-theme-switch) was more appropriate. Anyway, you may want to see my PR[1] - ports/57039. Which PR should be closed and which comitted? I don't mind which, as long as it works. [1] http://www.freebsd.org/cgi/query-pr.cgi?pr=57039 -Andrew- -- _______________________________________________________________________ | -Andrew J. Caines- Unix Systems Engineer A.J.Caines@halplant.com | | "They that can give up essential liberty to obtain a little temporary | | safety deserve neither liberty nor safety" - Benjamin Franklin, 1759 | From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 20:22: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 8958516A4B3 for ; Mon, 29 Sep 2003 20:22:42 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id C99064402D for ; Mon, 29 Sep 2003 20:22:41 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8U3MfGZ010960 for ; Mon, 29 Sep 2003 23:22:41 -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 h8U3MfI5027099 for ports@FreeBSD.org; Mon, 29 Sep 2003 23:22:41 -0400 (EDT) (envelope-from kris) Date: Mon, 29 Sep 2003 23:22:41 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300322.h8U3MfI5027099@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, 30 Sep 2003 03:22:42 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core U Mk/bsd.sites.mk ? 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 U sysutils/Makefile U sysutils/bubblemon2/Makefile U sysutils/bubblemon2/distinfo U sysutils/bubblemon2/pkg-descr U sysutils/bubblemon2/pkg-plist U sysutils/bubblemon2/files/patch-src::gnome1-meter.c U sysutils/bubblemon2/files/patch-src::gnome1-netload.c U sysutils/gok/files/patch-gok::gok-scanner.c ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 20:25: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 CCC9716A4B3 for ; Mon, 29 Sep 2003 20:25: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 0DF4043FA3 for ; Mon, 29 Sep 2003 20:25:39 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8U3PcGZ010974 for ; Mon, 29 Sep 2003 23:25:38 -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 h8U3OWrZ099984 for ports@FreeBSD.org; Mon, 29 Sep 2003 23:24:32 -0400 (EDT) (envelope-from kris) Date: Mon, 29 Sep 2003 23:24:32 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300324.h8U3OWrZ099984@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, 30 Sep 2003 03:25:40 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x U Mk/bsd.sites.mk ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U sysutils/Makefile U sysutils/bubblemon2/Makefile U sysutils/bubblemon2/distinfo U sysutils/bubblemon2/pkg-descr U sysutils/bubblemon2/pkg-plist U sysutils/bubblemon2/files/patch-src::gnome1-meter.c U sysutils/bubblemon2/files/patch-src::gnome1-netload.c U sysutils/gok/files/patch-gok::gok-scanner.c ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 20:45: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 99B9316A4B3 for ; Mon, 29 Sep 2003 20:45:54 -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 17A914402F for ; Mon, 29 Sep 2003 20:45: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 4E36766D32; Mon, 29 Sep 2003 20:45:41 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 1C479B02; Mon, 29 Sep 2003 20:45:41 -0700 (PDT) Date: Mon, 29 Sep 2003 20:45:41 -0700 From: Kris Kennaway To: Kris Kennaway Message-ID: <20030930034540.GA5576@rot13.obsecurity.org> References: <200309300122.h8U1MhR0073316@9ball.rtp.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="xHFwDpU9dbj6ez1V" Content-Disposition: inline In-Reply-To: <200309300122.h8U1MhR0073316@9ball.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, 30 Sep 2003 03:45:54 -0000 --xHFwDpU9dbj6ez1V Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Mon, Sep 29, 2003 at 09:22:43PM -0400, Kris Kennaway wrote: > INDEX build failed with errors: > "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean Did someone add a port called 'clean' or something? Kris --xHFwDpU9dbj6ez1V Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/ePxkWry0BWjoQKURAtHsAKC9URgRWvHXKFw8S4z0PsV5Md0bxQCeOO9u 7jkA42e2GQ8fplqDDElXLXg= =6WeT -----END PGP SIGNATURE----- --xHFwDpU9dbj6ez1V-- From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 20:50: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 2976716A4B3 for ; Mon, 29 Sep 2003 20:50:59 -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 E941B44032 for ; Mon, 29 Sep 2003 20:50:55 -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 060BF66D32; Mon, 29 Sep 2003 20:50:51 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id DFECEB01; Mon, 29 Sep 2003 20:50:50 -0700 (PDT) Date: Mon, 29 Sep 2003 20:50:50 -0700 From: Kris Kennaway To: Kris Kennaway Message-ID: <20030930035050.GA5647@rot13.obsecurity.org> References: <200309300122.h8U1MhR0073316@9ball.rtp.freebsd.org> <20030930034540.GA5576@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dDRMvlgZJXvWKvBx" Content-Disposition: inline In-Reply-To: <20030930034540.GA5576@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: Tue, 30 Sep 2003 03:50:59 -0000 --dDRMvlgZJXvWKvBx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Sep 29, 2003 at 08:45:40PM -0700, Kris Kennaway wrote: > On Mon, Sep 29, 2003 at 09:22:43PM -0400, Kris Kennaway wrote: > > INDEX build failed with errors: > > "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Incon= sistent operator for clean >=20 > Did someone add a port called 'clean' or something? *looking suspiciously at edwin* Kris --dDRMvlgZJXvWKvBx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/eP2WWry0BWjoQKURAu4tAJwMEFAWGvFivvtL1plXHr6Ggo4K9ACfRKa7 iHzLmFCGFanqjLGOAvk1Yho= =qv7c -----END PGP SIGNATURE----- --dDRMvlgZJXvWKvBx-- From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 20:51: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 9520116A4B3 for ; Mon, 29 Sep 2003 20:51:08 -0700 (PDT) Received: from mx2.fillmore-labs.com (lima.fillmore-labs.com [62.138.193.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DF6143FE3 for ; Mon, 29 Sep 2003 20:51:07 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from pd958a504.dip.t-dialin.net ([217.88.165.4] helo=fillmore-labs.com ident=shhpyh9syrwt2nc8) by mx2.fillmore-labs.com with asmtp (TLSv1:AES256-SHA:256) (Exim 4.24; FreeBSD 4.9) id 1A4BXT-000Cds-3o; Tue, 30 Sep 2003 05:51:03 +0200 Message-ID: <3F78FD99.4060902@fillmore-labs.com> Date: Tue, 30 Sep 2003 05:50:49 +0200 From: Oliver Eikemeier MIME-Version: 1.0 To: Kris Kennaway References: <200309300122.h8U1MhR0073316@9ball.rtp.freebsd.org> <20030930034540.GA5576@rot13.obsecurity.org> In-Reply-To: <20030930034540.GA5576@rot13.obsecurity.org> 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 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: Tue, 30 Sep 2003 03:51:08 -0000 Kris Kennaway wrote: > On Mon, Sep 29, 2003 at 09:22:43PM -0400, Kris Kennaway wrote: > >>INDEX build failed with errors: >>"/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean > > Did someone add a port called 'clean' or something? http://www.freshports.org/sysutils/clean From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 20:53: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 3ADEE16A4B3 for ; Mon, 29 Sep 2003 20:53: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 29BF144003 for ; Mon, 29 Sep 2003 20:53:52 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h8U3pZaw005598; Mon, 29 Sep 2003 23:51:35 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h8U3rVkB028158; Mon, 29 Sep 2003 23:53:31 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Kris Kennaway In-Reply-To: <20030930035050.GA5647@rot13.obsecurity.org> References: <200309300122.h8U1MhR0073316@9ball.rtp.freebsd.org> <20030930034540.GA5576@rot13.obsecurity.org> <20030930035050.GA5647@rot13.obsecurity.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-c95sNe783T0njGOpMPc9" Organization: MarcusCom, Inc. Message-Id: <1064894027.45333.10.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Mon, 29 Sep 2003 23:53: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 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: Tue, 30 Sep 2003 03:53:53 -0000 --=-c95sNe783T0njGOpMPc9 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2003-09-29 at 23:50, Kris Kennaway wrote: > On Mon, Sep 29, 2003 at 08:45:40PM -0700, Kris Kennaway wrote: > > On Mon, Sep 29, 2003 at 09:22:43PM -0400, Kris Kennaway wrote: > > > INDEX build failed with errors: > > > "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inc= onsistent operator for clean > >=20 > > Did someone add a port called 'clean' or something? >=20 > *looking suspiciously at edwin* Good look :-). [ 16:23 edwin ] Original commit clean 3.2 sysutils New port: sysutils/clean; automatically remove unwanted files =20 New port: clean searches through the filesystem for "tempor= ary files" left behind by editors and the like which can be deleted. The pattern of regular expressions is controllabl= e via a ~/.cleanrc. =20 PR: ports/52881 Submitted by: Chuck Swiger Joe >=20 > Kris --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-c95sNe783T0njGOpMPc9 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/eP5Lb2iPiv4Uz4cRApoMAKCYIQ9qcijKj3d2pOuEyeLVkQg8YgCeM81/ fG8LLblriRSWr0zRC43fr58= =CTE8 -----END PGP SIGNATURE----- --=-c95sNe783T0njGOpMPc9-- From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 21: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 36C0A16A4B3 for ; Mon, 29 Sep 2003 21:01:28 -0700 (PDT) Received: from box.hayers.org (82-34-131-96.cable.ubr02.gray.blueyonder.co.uk [82.34.131.96]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D01844003 for ; Mon, 29 Sep 2003 21:01:27 -0700 (PDT) (envelope-from gary@hayers.org) Received: from bart (bart.hayers.org [192.168.0.3]) (authenticated bits=0) by box.hayers.org (8.12.9/8.12.9) with ESMTP id h8U41iGT097591 for ; Tue, 30 Sep 2003 05:01:44 +0100 (BST) (envelope-from gary@hayers.org) From: "Gary Hayers" To: Date: Tue, 30 Sep 2003 05:01:31 +0100 Organization: Hayers.org Message-ID: <000101c38707$8881e1c0$0300a8c0@hayers.org> 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.4510 Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-Spam-Checker-Version: SpamAssassin 2.70-cvs (2003-09-27-exp) on box.hayers.org X-Virus-Scanned: by Sophos for Unix (http://www.hayers.org/virus) X-Spam-Status: not spam, SpamAssassin (score=0, required 5) Subject: ircd-hybrid X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 04:01:28 -0000 ircd-hybrid-7.0 is out, will the port be updated to reflect this? Regards, Gary Hayers From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 21:17: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 3515616A4BF for ; Mon, 29 Sep 2003 21:17:59 -0700 (PDT) Received: from web13401.mail.yahoo.com (web13401.mail.yahoo.com [216.136.175.59]) by mx1.FreeBSD.org (Postfix) with SMTP id A133143F75 for ; Mon, 29 Sep 2003 21:17:58 -0700 (PDT) (envelope-from giffunip@yahoo.com) Message-ID: <20030930041758.39271.qmail@web13401.mail.yahoo.com> Received: from [200.91.194.207] by web13401.mail.yahoo.com via HTTP; Mon, 29 Sep 2003 21:17:58 PDT Date: Mon, 29 Sep 2003 21:17:58 -0700 (PDT) From: "Pedro F. Giffuni" To: freebsd-ports@FreeBSD.org In-Reply-To: <20030928155956.GA89851@falcon.midgard.homeip.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: xview-clients port and the bento log X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 04:17:59 -0000 I'll be working on cleaning the Xview mess and probably also merging xview and xview-clients. The other BSDs have done some level of cleaning, but I want to do more :). FWIW, if someone feels like working on this, there's a nice application that would look nice in the ports tree: Robot - a scientific open-source graph plotting and data analysis tool http://www.robotx.cx/ cheers, Pedro. --- Erik Trulsson wrote: > On Sun, Sep 28, 2003 at 08:37:10AM -0700, Pedro F. Giffuni wrote: ... > > > > Your patch is an option, another one is merging xview-clients into xview. I > > think the best would be to do something like ghostscript-x11 does, merge > the > > xview-clients patches into the xview port and add the Clients target from > the > > xview-clients port. > > Yes, that would probably be the best solution. My patch is more of a > temporary workaround that can be used until somebody comes up with a > proper fix. > > There can't be too many people around who use the xview port without > also using the xview-clients port so merging the ports sounds like a > good idea. > > > > > Yeah, it's quite a job and it has to be done with some care. > > Indeed. I am not volunteering. :-) At least for the near future I > don't have the time ncecessary to do it. > > > -- > > Erik Trulsson > ertr1013@student.uu.se __________________________________ Do you Yahoo!? The New Yahoo! Shopping - with improved product search http://shopping.yahoo.com From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 21:22: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 CD9F216A4C0 for ; Mon, 29 Sep 2003 21:22:38 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C5B844028 for ; Mon, 29 Sep 2003 21:22:36 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8U4MZGZ011079 for ; Tue, 30 Sep 2003 00:22:35 -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 h8U4MZ8S053929 for ports@FreeBSD.org; Tue, 30 Sep 2003 00:22:35 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 00:22:35 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300422.h8U4MZ8S053929@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, 30 Sep 2003 04:22:39 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 29 21:25: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 4CBDE16A4B3 for ; Mon, 29 Sep 2003 21:25:42 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57F0044037 for ; Mon, 29 Sep 2003 21:25:41 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8U4PeGZ011088 for ; Tue, 30 Sep 2003 00:25:40 -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 h8U4OXAo026931 for ports@FreeBSD.org; Tue, 30 Sep 2003 00:24:33 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 00:24:33 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300424.h8U4OXAo026931@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, 30 Sep 2003 04:25:42 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 29 22:22:47 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 3897D16A4B3 for ; Mon, 29 Sep 2003 22:22:47 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63C014400F for ; Mon, 29 Sep 2003 22:22:46 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8U5MjGZ024838 for ; Tue, 30 Sep 2003 01:22:45 -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 h8U5Mjjr080760 for ports@FreeBSD.org; Tue, 30 Sep 2003 01:22:45 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 01:22:45 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300522.h8U5Mjjr080760@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, 30 Sep 2003 05:22:47 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core U devel/gconf/Makefile U devel/gconf/files/patch-gconf::gconf-internals.c ? 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 U security/clamav-devel/Makefile U security/clamav-devel/distinfo U security/clamav-devel/pkg-install U security/clamav-devel/pkg-plist U security/clamav-devel/files/patch-ltmain.sh U www/gtkhtml/Makefile ? x11-fm/vide/sh.core U x11-toolkits/gtk--2/Makefile U x11-toolkits/gtk--2/distinfo U x11-toolkits/gtk--2/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 22:25: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 174D616A4B3 for ; Mon, 29 Sep 2003 22:25: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 5678C43FEC for ; Mon, 29 Sep 2003 22:25:38 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8U5PbGZ024847 for ; Tue, 30 Sep 2003 01:25:37 -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 h8U5OUjX053759 for ports@FreeBSD.org; Tue, 30 Sep 2003 01:24:30 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 01:24:30 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300524.h8U5OUjX053759@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, 30 Sep 2003 05:25:39 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x U devel/gconf/Makefile U devel/gconf/files/patch-gconf::gconf-internals.c ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U security/clamav-devel/Makefile U security/clamav-devel/distinfo U security/clamav-devel/pkg-install U security/clamav-devel/pkg-plist U security/clamav-devel/files/patch-ltmain.sh U www/gtkhtml/Makefile ? x11/gnome2/log U x11-toolkits/gtk--2/Makefile U x11-toolkits/gtk--2/distinfo U x11-toolkits/gtk--2/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 22:30: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 C012A16A4BF for ; Mon, 29 Sep 2003 22:30:38 -0700 (PDT) Received: from postfix3-2.free.fr (postfix3-2.free.fr [213.228.0.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DDEC4400F for ; Mon, 29 Sep 2003 22:30:37 -0700 (PDT) (envelope-from thierry@pompo.net) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by postfix3-2.free.fr (Postfix) with ESMTP id 96154C2F4 for ; Tue, 30 Sep 2003 07:30:36 +0200 (CEST) Received: by graf.pompo.net (Postfix, from userid 1001) id 1DE5C751E; Tue, 30 Sep 2003 07:27:59 +0200 (CEST) Date: Tue, 30 Sep 2003 07:27:59 +0200 From: Thierry Thomas To: ports@freebsd.org Message-ID: <20030930052759.GB77767@graf.pompo.net> Mail-Followup-To: ports@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.9-PRERELEASE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 Subject: Re: MS Exchange X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 05:30:38 -0000 Le Mar 30 sep 03 à 4:54:31 +0200, Brandon Gale écrivait : > Does anyone know of a port or piece of software that emulates a MS Exchange > server and interfaces with MS Outlook clients? I'm trying to provide an > alternative to a potential client using Win2k simply for the only reason > that they require the functionality of an MS Exchange server. Any IMAP server + a LDAP server could do. If your client run specific scripts (VB scripts), you'll have to rewrite them in another language (e.g. PHP). -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 22:49: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 C52EB16A4B3 for ; Mon, 29 Sep 2003 22:49:58 -0700 (PDT) Received: from mandarin.fruitsalad.org (pc117.net160.koping.net [81.16.160.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E9C743FF5 for ; Mon, 29 Sep 2003 22:49:58 -0700 (PDT) (envelope-from matt@fruitsalad.org) Received: from [192.168.15.71] (helo=Inbox) by mandarin.fruitsalad.org with smtp (Exim 4.14) id 1A4DOW-000PA5-Sr; Tue, 30 Sep 2003 07:49:57 +0200 From: "Matt Douhan" To: , Date: Tue, 30 Sep 2003 07:52:42 +0200 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft MimeOLE V5.00.1432.1 Message-Id: Subject: Re: MS Exchange X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 05:49:58 -0000 Kolab is a exchange full blown replacement project, it works very w ll = from what i hear but installation is a mess Rgds Matt Ps Sorry for topposting, but sending this from an ipaq on the road. Ds -----Original Message----- >From: "Thierry Thomas" >Sent: 9/30/03 7:27:59 AM >To: "ports@freebsd.org" >Subject: Re: MS Exchange > >Le Mar 30 sep 03 =E0 4:54:31 +0200, Brandon Gale = > =E9crivait : >> Does anyone know of a port or piece of software that emulates a MS = Exchange >> server and interfaces with MS Outlook clients? I'm trying to = provide an >> alternative to a potential client using Win2k simply for the only = reason >> that they require the functionality of an MS Exchange server. > >Any IMAP server + a LDAP server could do. If your client run = specific >scripts (VB scripts), you'll have to rewrite them in another = language >(e.g. PHP). >--=20 >Th. Thomas. >_______________________________________________ >freebsd-ports@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/freebsd-ports >To unsubscribe, send any mail to = "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Mon Sep 29 23:22: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 18E3616A4B3 for ; Mon, 29 Sep 2003 23:22: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 5B1F64401E for ; Mon, 29 Sep 2003 23:22:38 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8U6MbGZ024931 for ; Tue, 30 Sep 2003 02:22:37 -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 h8U6Mb2u007713 for ports@FreeBSD.org; Tue, 30 Sep 2003 02:22:37 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 02:22:37 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300622.h8U6Mb2u007713@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, 30 Sep 2003 06:22:39 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 29 23:25: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 AC3B616A4C1 for ; Mon, 29 Sep 2003 23:25:44 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6358844008 for ; Mon, 29 Sep 2003 23:25:43 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8U6PgGZ024940 for ; Tue, 30 Sep 2003 02:25:42 -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 h8U6OY3h080587 for ports@FreeBSD.org; Tue, 30 Sep 2003 02:24:34 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 02:24:34 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300624.h8U6OY3h080587@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, 30 Sep 2003 06:25:44 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 00:25:49 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 B579B16A4BF for ; Tue, 30 Sep 2003 00:25:49 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90D0244015 for ; Tue, 30 Sep 2003 00:25:48 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8U7PlGZ025435 for ; Tue, 30 Sep 2003 03:25: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 h8U7PlTF034832 for ports@FreeBSD.org; Tue, 30 Sep 2003 03:25:47 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 03:25:47 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300725.h8U7PlTF034832@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, 30 Sep 2003 07:25:49 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core U audio/speex/Makefile U audio/speex/distinfo ? 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 U print/freetype2/Makefile U print/freetype2/distinfo U print/freetype2/pkg-plist U print/freetype2/files/patch-builds::unix::freetype-config.in ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core U sysutils/dvd+rw-tools/Makefile U sysutils/dvd+rw-tools/pkg-plist U x11/xfree86_xkb_xml/Makefile U x11/xfree86_xkb_xml/distinfo U x11/xfree86_xkb_xml/pkg-plist U x11/xfree86_xkb_xml/files/patch-Makefile.in ? x11-fm/vide/sh.core U x11-toolkits/vte/Makefile U x11-toolkits/vte/files/patch-configure From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 00:28: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 34C3116A4B3 for ; Tue, 30 Sep 2003 00:28: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 70E3743FF5 for ; Tue, 30 Sep 2003 00:28:24 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8U7SNGZ025438 for ; Tue, 30 Sep 2003 03:28:24 -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 h8U7RFEh007796 for ports@FreeBSD.org; Tue, 30 Sep 2003 03:27:15 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 03:27:15 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300727.h8U7RFEh007796@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, 30 Sep 2003 07:28:25 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x U audio/speex/Makefile U audio/speex/distinfo ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U print/freetype2/Makefile U print/freetype2/distinfo U print/freetype2/pkg-plist U print/freetype2/files/patch-builds::unix::freetype-config.in U sysutils/dvd+rw-tools/Makefile U sysutils/dvd+rw-tools/pkg-plist ? x11/gnome2/log U x11/xfree86_xkb_xml/Makefile U x11/xfree86_xkb_xml/distinfo U x11/xfree86_xkb_xml/pkg-plist U x11/xfree86_xkb_xml/files/patch-Makefile.in U x11-toolkits/vte/Makefile U x11-toolkits/vte/files/patch-configure From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 01:19: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 E15BA16A4B3; Tue, 30 Sep 2003 01:19:33 -0700 (PDT) Received: from la-mail2.digilink.net (la2.digilink.net [205.147.0.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8E6644020; Tue, 30 Sep 2003 01:19:27 -0700 (PDT) (envelope-from metrol@metrol.net) Received: from metrol@metrol.net (mail.testequity.net [205.147.16.57]) by la-mail2.digilink.net (8.12.10/8.12.9) with ESMTP id h8U8JQpV009213 for ; Tue, 30 Sep 2003 01:19:27 -0700 (PDT) From: Michael Collette To: marcus@FreeBSD.org Date: Tue, 30 Sep 2003 01:15:05 -0700 User-Agent: KMail/1.5.4 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200309300115.05714.metrol@metrol.net> cc: FreeBSD Mailing Lists Subject: About that Freetype2 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: Tue, 30 Sep 2003 08:19:34 -0000 Marcus, The Freetype2 port itself worked quite nicely. Upgraded properly, no compile problems. I had been looking forward to seeing this get updated due to some visual problems with Scribus. Long story short, I uninstalled the new version and added the old one back in via a package. All of my TrueType fonts here got real jaggedy. They were readable, but the quality was seriously degraded. I run with a KDE desktop and no anti-aliasing, as this is a laptop. AA on an LCD screen just looks fuzzy. I should note that with AA turned on, the new Freetype2 does just fine. The not so subtle difference is when there isn't any AA help. I should also note that this was certainly no fix for Scribus. With the updated version of Freetype2 I wasn't able to even see any True Type fonts at all. Without doing any real investigative work, I'm leaning to one of three explanations here... 1. Something is goofy in this new version of Freetype2 2. Freetype2 reall wanted that byte code interpreter after all 3. I need to recompile the applications that depend on Freetype2 No major crisis here, as the old version seems to still be doing just fine. Thought I'd pass along what all I saw with this new one just the same. Later on, -- "In theory, there is no difference between theory and practice. In practice, there is." - Yogi Berra From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 01:22: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 AF7BA16A4B3 for ; Tue, 30 Sep 2003 01:22:23 -0700 (PDT) Received: from ms-smtp-02.southeast.rr.com (ms-smtp-02.southeast.rr.com [24.93.67.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FA8A43FF9 for ; Tue, 30 Sep 2003 01:22:22 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h8U8IQjC025089; Tue, 30 Sep 2003 04:18:26 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h8U8LvkB030122; Tue, 30 Sep 2003 04:21:57 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: Michael Collette In-Reply-To: <200309300115.05714.metrol@metrol.net> References: <200309300115.05714.metrol@metrol.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-bZdE5jz6LTnqcBVl1MOh" Organization: FreeBSD, Inc. Message-Id: <1064910135.48606.6.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Tue, 30 Sep 2003 04:22: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: FreeBSD Mailing Lists Subject: Re: About that Freetype2 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: Tue, 30 Sep 2003 08:22:23 -0000 --=-bZdE5jz6LTnqcBVl1MOh Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2003-09-30 at 04:15, Michael Collette wrote: > Marcus, >=20 > The Freetype2 port itself worked quite nicely. Upgraded properly, no com= pile=20 > problems. I had been looking forward to seeing this get updated due to s= ome=20 > visual problems with Scribus. >=20 > Long story short, I uninstalled the new version and added the old one bac= k in=20 > via a package. All of my TrueType fonts here got real jaggedy. They wer= e=20 > readable, but the quality was seriously degraded. >=20 > I run with a KDE desktop and no anti-aliasing, as this is a laptop. AA o= n an=20 > LCD screen just looks fuzzy. I should note that with AA turned on, the n= ew=20 > Freetype2 does just fine. The not so subtle difference is when there isn= 't=20 > any AA help. >=20 > I should also note that this was certainly no fix for Scribus. With the=20 > updated version of Freetype2 I wasn't able to even see any True Type font= s at=20 > all. >=20 > Without doing any real investigative work, I'm leaning to one of three=20 > explanations here... >=20 > 1. Something is goofy in this new version of Freetype2 > 2. Freetype2 reall wanted that byte code interpreter after all > 3. I need to recompile the applications that depend on Freetype2 >=20 > No major crisis here, as the old version seems to still be doing just fin= e. =20 > Thought I'd pass along what all I saw with this new one just the same. Everything here looks beautiful. You're free to test your assumptions above. If the byte-code interpreter helps, I can always add that back in as an option. Joe >=20 > Later on, --=20 Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-bZdE5jz6LTnqcBVl1MOh 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/eT03b2iPiv4Uz4cRAg/JAJ9DWxc7xb19blhO3oIqid+Dk6d12ACeLtZd tc5kjnfLZWTmrJS3so0dk5U= =dnPx -----END PGP SIGNATURE----- --=-bZdE5jz6LTnqcBVl1MOh-- From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 01:22: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 C5FE716A4B3 for ; Tue, 30 Sep 2003 01:22:40 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A01E43FF3 for ; Tue, 30 Sep 2003 01:22:37 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8U8MbGZ025573 for ; Tue, 30 Sep 2003 04:22:37 -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 h8U8MaLu061660 for ports@FreeBSD.org; Tue, 30 Sep 2003 04:22:36 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 04:22:36 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300822.h8U8MaLu061660@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, 30 Sep 2003 08:22:41 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 30 01:25: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 0943016A4B3 for ; Tue, 30 Sep 2003 01:25:44 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC5C043F93 for ; Tue, 30 Sep 2003 01:25:42 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8U8PgGZ025582 for ; Tue, 30 Sep 2003 04:25:42 -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 h8U8OXB8034621 for ports@FreeBSD.org; Tue, 30 Sep 2003 04:24:33 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 04:24:33 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300824.h8U8OXB8034621@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, 30 Sep 2003 08:25:44 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 01:26: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 2C0D216A4C0; Tue, 30 Sep 2003 01:26:13 -0700 (PDT) Received: from lilith.bellavista.cz (lilith.bellavista.cz [213.235.167.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A83943F3F; Tue, 30 Sep 2003 01:26:11 -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 8B86A2D; Tue, 30 Sep 2003 10:26:04 +0200 (CEST) Received: by freepuppy.bellavista.cz (Postfix, from userid 1001) id 6D8522FDA01; Tue, 30 Sep 2003 10:26:03 +0200 (CEST) Date: Tue, 30 Sep 2003 10:26:03 +0200 From: Roman Neuhauser To: Adam Weinberger Message-ID: <20030930082603.GN11636@freepuppy.bellavista.cz> Mail-Followup-To: Adam Weinberger , freebsd-ports@freebsd.org References: <20030909152452.GC10815@watt.intra.caraldi.com> <1063121517.50301.24.camel@jake> <20030929104642.GA8813@watt.intra.caraldi.com> <20030929225945.GT47415@toxic.magnesium.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030929225945.GT47415@toxic.magnesium.net> User-Agent: Mutt/1.5.4i cc: freebsd-ports@freebsd.org Subject: Re: New port: NumlockX X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 08:26:13 -0000 # adamw@FreeBSD.org / 2003-09-29 18:59:45 -0400: > >> (09.29.2003 @ 0646 PST): Jean-Baptiste Quenot said, in 0.9K: << > > I'm wondering why it always takes *ages* to change the ports tree. > > Either the committers are not interested, or they don't have spare time > > to handle such requests. > >> end of "Re: New port: NumlockX" from Jean-Baptiste Quenot << > > This is why: > http://www.freebsd.org/cgi/query-pr-summary.cgi?category=ports&state=open&responsible=freebsd-ports-bugs you're pointing at a problem and claiming that it's the cause of the problem. the huge number of unassigned port PRs is IMO result of FreeBSD having too few (active?) committers. the ports tree could use a lot more autonomous maintainers who don't have to beg or wait for long periods of time to have updates to their ports committed. don't the FreeBSD hacks to cvs(1) allow for ACL granularity to the directory level? (e. g. Alex Dupre could have commit in /usr/ports/databases/mysql[[:digit:]]+-(server|client)) -- If you cc me or remove the list(s) completely I'll most likely ignore your message. see http://www.eyrie.org./~eagle/faqs/questions.html From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 01:46: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 A5B4816A4B3 for ; Tue, 30 Sep 2003 01:46:43 -0700 (PDT) Received: from mag.barnet.com.au (mag.barnet.com.au [218.185.88.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id D868143F93 for ; Tue, 30 Sep 2003 01:46:42 -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 6ECE1359A; Tue, 30 Sep 2003 18:46:41 +1000 (EST) X-Viruscan-Id: <3F7942F1000079FD0177BD08@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 BD5441E13; Tue, 30 Sep 2003 18:46:39 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 53A156A7101; Tue, 30 Sep 2003 18:46:38 +1000 (EST) Date: Tue, 30 Sep 2003 18:46:38 +1000 From: Edwin Groothuis To: Kris Kennaway Message-ID: <20030930084638.GL59397@k7.mavetju> References: <200309300122.h8U1MhR0073316@9ball.rtp.freebsd.org> <20030930034540.GA5576@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030930034540.GA5576@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: Tue, 30 Sep 2003 08:46:43 -0000 On Mon, Sep 29, 2003 at 08:45:41PM -0700, Kris Kennaway wrote: > On Mon, Sep 29, 2003 at 09:22:43PM -0400, Kris Kennaway wrote: > > INDEX build failed with errors: > > "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean > > Did someone add a port called 'clean' or something? Yeah me. This requires cvsmeister intervention, even throwing out the ports files doesn't solve the problem. Asked them for help. 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 Tue Sep 30 02:07: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 D1FE216A4C0 for ; Tue, 30 Sep 2003 02:07:18 -0700 (PDT) Received: from amsfep16-int.chello.nl (amsfep16-int.chello.nl [213.46.243.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EE1844042 for ; Tue, 30 Sep 2003 02:07:16 -0700 (PDT) (envelope-from ernst.dehaan@nl.wanadoo.com) Received: from c104187.upc-c.chello.nl ([212.187.104.187]) by amsfep16-int.chello.nlESMTP <20030930090711.VQYY6291.amsfep16-int.chello.nl@c104187.upc-c.chello.nl>; Tue, 30 Sep 2003 11:07:11 +0200 From: Ernst de Haan Organization: Wanadoo Nederland B.V. To: Jean-Baptiste Quenot , freebsd-ports@freebsd.org Date: Tue, 30 Sep 2003 11:07:39 +0200 User-Agent: KMail/1.5.2 References: <20030909152452.GC10815@watt.intra.caraldi.com> <20030929130756.59cfb046.adam.mclaurin@gmx.net> <20030929172043.GA54396@watt.intra.caraldi.com> In-Reply-To: <20030929172043.GA54396@watt.intra.caraldi.com> X-Address: Muiderstraat 1, Amsterdam, Netherlands MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200309301107.39481.ernst.dehaan@nl.wanadoo.com> Subject: Re: New port: NumlockX X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 09:07:19 -0000 Jean-Baptiste, I won't be able tto handle your request today. I hope to have it done by tomorrow. Are you satisfied with the www/resin3 port? Could you please review your www/resin2 port (portlint and make install deinstall) and then send me a new tgz file? I'll commit it ASAP. Ernst Op maandag 29 september 2003 19:20, schreef Jean-Baptiste Quenot: > * Adam McLaurin: > > On Mon, 29 Sep 2003 12:46:44 +0200 Jean-Baptiste Quenot wrote: > > > I'm wondering why it always takes *ages* to change the ports tree. > > > Either the committers are not interested, or they don't have spare > > > time to handle such requests. > > > > According to the audit trail on ports/56638 , Ernst found many > > problems with the port when running it through portlint. > > Ernst picked this PR today, and I thank him for having done so. > > > Have you addressed these issues? Perhaps he needs to run it through > > again. > > I adressed these issues immediately, the updated port is available. From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 02:08: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 8D15116A4B3 for ; Tue, 30 Sep 2003 02:08:21 -0700 (PDT) Received: from genua.rfc-networks.ie (genua.rfc-networks.ie [62.77.182.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1730D44042 for ; Tue, 30 Sep 2003 02:08:20 -0700 (PDT) (envelope-from philip.reynolds@rfc-networks.ie) Received: from tear.domain (unknown [10.0.1.254]) by genua.rfc-networks.ie (Postfix) with ESMTP id 9FCBE548E7 for ; Tue, 30 Sep 2003 10:08:18 +0100 (IST) Received: by tear.domain (Postfix, from userid 1000) id 4C97421155; Tue, 30 Sep 2003 09:08:18 +0000 (GMT) Date: Tue, 30 Sep 2003 09:08:18 +0000 From: Philip Reynolds To: freebsd-ports@freebsd.org Message-ID: <20030930090818.GA17317@rfc-networks.ie> References: <200309300122.h8U1MhR0073316@9ball.rtp.freebsd.org> <20030930034540.GA5576@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030930034540.GA5576@rot13.obsecurity.org> X-Operating-System: FreeBSD 4.7-STABLE X-URL: http://www.rfc-networks.ie Subject: Re: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: philip.reynolds@rfc-networks.ie List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Sep 2003 09:08:21 -0000 Kris Kennaway 26 lines of wisdom included: > On Mon, Sep 29, 2003 at 09:22:43PM -0400, Kris Kennaway wrote: > > INDEX build failed with errors: > > "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean > > Did someone add a port called 'clean' or something? For the plebs amongst us, how does this cause a problem? Thanks, -- Philip Reynolds | RFC Networks Ltd. philip.reynolds@rfc-networks.ie | +353 (0)1 8832063 http://people.rfc-networks.ie/~phil | www.rfc-networks.ie From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 02:29:00 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 D79B216A4B3 for ; Tue, 30 Sep 2003 02:29:00 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24BBB43F85 for ; Tue, 30 Sep 2003 02:29:00 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8U9SxGZ001561 for ; Tue, 30 Sep 2003 05:28:59 -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 h8U9Sx0q088494 for ports@FreeBSD.org; Tue, 30 Sep 2003 05:28:59 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 05:28:59 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300928.h8U9Sx0q088494@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, 30 Sep 2003 09:29:01 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core U devel/dcons/Makefile U devel/dcons/distinfo ? devel/glade2/make.core ? devel/gnomedebug/make.core U devel/libglademm/Makefile U devel/libglademm/distinfo U devel/libglademm/pkg-plist ? 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 U net/liveMedia/Makefile U net/liveMedia/distinfo ? net/powerdns/Makefile.inc ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core U www/mod_tsunami/Makefile U www/mod_tsunami/distinfo U www/turck-mmcache/Makefile U www/turck-mmcache/distinfo U www/turck-mmcache/pkg-message ? x11-fm/vide/sh.core U x11-toolkits/gtk--2/Makefile U x11-toolkits/gtk--2/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 02:32: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 DF43216A4B3 for ; Tue, 30 Sep 2003 02:32: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 2C97044031 for ; Tue, 30 Sep 2003 02:32:23 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8U9WMGZ001579 for ; Tue, 30 Sep 2003 05:32:22 -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 h8U9VCJo084756 for ports@FreeBSD.org; Tue, 30 Sep 2003 05:31:12 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 05:31:12 -0400 (EDT) From: Kris Kennaway Message-Id: <200309300931.h8U9VCJo084756@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, 30 Sep 2003 09:32:24 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x U devel/dcons/Makefile U devel/dcons/distinfo U devel/libglademm/Makefile U devel/libglademm/distinfo U devel/libglademm/pkg-plist ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? mail/log ? net/bind9-dlz/Makefile.inc U net/liveMedia/Makefile U net/liveMedia/distinfo ? net/powerdns/Makefile.inc U www/mod_tsunami/Makefile U www/mod_tsunami/distinfo U www/turck-mmcache/Makefile U www/turck-mmcache/distinfo U www/turck-mmcache/pkg-message ? x11/gnome2/log U x11-toolkits/gtk--2/Makefile U x11-toolkits/gtk--2/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 03:27: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 50D1D16A4B3 for ; Tue, 30 Sep 2003 03:27: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 7EE2243FAF for ; Tue, 30 Sep 2003 03:27:56 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8UARtGZ028688 for ; Tue, 30 Sep 2003 06:27:55 -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 h8UARt2x015444 for ports@FreeBSD.org; Tue, 30 Sep 2003 06:27:55 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 06:27:55 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301027.h8UARt2x015444@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, 30 Sep 2003 10:27:57 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 30 03:29: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 5779E16A4B3 for ; Tue, 30 Sep 2003 03:29:44 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6931743F93 for ; Tue, 30 Sep 2003 03:29:43 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8UAThGZ037615 for ; Tue, 30 Sep 2003 06:29:43 -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 h8UASWEv011696 for ports@FreeBSD.org; Tue, 30 Sep 2003 06:28:32 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 06:28:32 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301028.h8UASWEv011696@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, 30 Sep 2003 10:29:44 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 04:27: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 47FE816A4B3 for ; Tue, 30 Sep 2003 04:27:32 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84EEE43FA3 for ; Tue, 30 Sep 2003 04:27:31 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8UBRVGZ061134 for ; Tue, 30 Sep 2003 07:27:31 -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 h8UBRUFU042271 for ports@FreeBSD.org; Tue, 30 Sep 2003 07:27:30 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 07:27:30 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301127.h8UBRUFU042271@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, 30 Sep 2003 11:27:32 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 U graphics/gthumb2/Makefile U graphics/gthumb2/pkg-plist ? graphics/pstoedit/make.core U lang/perl5/Makefile U lang/perl5/files/patch-CGI.pm U lang/perl5.8/Makefile U lang/perl5.8/files/patch-CGI.pm U mail/vpopmail/Makefile ? misc/flyway/make.core U multimedia/gstreamer/files/patch-configure U multimedia/gstreamer-plugins/Makefile U multimedia/gstreamer-plugins/files/patch-ext_esd_esdsink.c ? 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/Makefile U sysutils/apachetop/Makefile U sysutils/apachetop/distinfo U sysutils/apachetop/pkg-descr U sysutils/apachetop/pkg-plist ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 04:29: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 8CAA716A4B3 for ; Tue, 30 Sep 2003 04:29:18 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFEFF43FF5 for ; Tue, 30 Sep 2003 04:29:17 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8UBTHGZ061137 for ; Tue, 30 Sep 2003 07:29:17 -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 h8UBS6NK038518 for ports@FreeBSD.org; Tue, 30 Sep 2003 07:28:06 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 07:28:06 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301128.h8UBS6NK038518@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, 30 Sep 2003 11:29:18 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 U graphics/gthumb2/Makefile U graphics/gthumb2/pkg-plist U lang/perl5/Makefile U lang/perl5/files/patch-CGI.pm U lang/perl5.8/Makefile U lang/perl5.8/files/patch-CGI.pm ? mail/log U mail/vpopmail/Makefile U multimedia/gstreamer/files/patch-configure U multimedia/gstreamer-plugins/Makefile U multimedia/gstreamer-plugins/files/patch-ext_esd_esdsink.c ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U sysutils/Makefile U sysutils/apachetop/Makefile U sysutils/apachetop/distinfo U sysutils/apachetop/pkg-descr U sysutils/apachetop/pkg-plist ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 04:58: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 62C2616A4B3 for ; Tue, 30 Sep 2003 04:58:09 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B25243FB1 for ; Tue, 30 Sep 2003 04:58:08 -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 h8UBvlw07333; Tue, 30 Sep 2003 04:57:48 -0700 From: Kent Stewart To: Edwin Groothuis , Kris Kennaway Date: Tue, 30 Sep 2003 04:57:47 -0700 User-Agent: KMail/1.5.4 References: <200309300122.h8U1MhR0073316@9ball.rtp.freebsd.org> <20030930034540.GA5576@rot13.obsecurity.org> <20030930084638.GL59397@k7.mavetju> In-Reply-To: <20030930084638.GL59397@k7.mavetju> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200309300457.47416.kstewart@owt.com> 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, 30 Sep 2003 11:58:09 -0000 On Tuesday 30 September 2003 01:46 am, Edwin Groothuis wrote: > On Mon, Sep 29, 2003 at 08:45:41PM -0700, Kris Kennaway wrote: > > On Mon, Sep 29, 2003 at 09:22:43PM -0400, Kris Kennaway wrote: > > > INDEX build failed with errors: > > > "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: > > > Inconsistent operator for clean > > > > Did someone add a port called 'clean' or something? > > Yeah me. > > This requires cvsmeister intervention, even throwing out the ports > files doesn't solve the problem. > > Asked them for help. FWIW, for people trying to generate INDEX, if they delete the "SUBDIR += clean" in /usr/ports/sysutils/Makefile and then run "make index", they are back to 9285 ports instead of 7245. This isn't a fix for the problem but a temporary work around for people trying cvsup ports-all and then create an almost complete new INDEX. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 05:22: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 64F9B16A4BF for ; Tue, 30 Sep 2003 05:22:44 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id A72A743F3F for ; Tue, 30 Sep 2003 05:22:43 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8UCMhGZ061213 for ; Tue, 30 Sep 2003 08:22:43 -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 h8UCMhIL069093 for ports@FreeBSD.org; Tue, 30 Sep 2003 08:22:43 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 08:22:43 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301222.h8UCMhIL069093@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, 30 Sep 2003 12:22:44 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 30 05:25:47 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 041BC16A4B3 for ; Tue, 30 Sep 2003 05:25:47 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CDF643F75 for ; Tue, 30 Sep 2003 05:25:46 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8UCPjGZ061222 for ; Tue, 30 Sep 2003 08:25:45 -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 h8UCOYKe065337 for ports@FreeBSD.org; Tue, 30 Sep 2003 08:24:34 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 08:24:34 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301224.h8UCOYKe065337@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, 30 Sep 2003 12:25:47 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 06:22: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 49F5916A4B3 for ; Tue, 30 Sep 2003 06:22: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 A923644008 for ; Tue, 30 Sep 2003 06:22:41 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8UDMfGZ061333 for ; Tue, 30 Sep 2003 09:22:41 -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 h8UDMecE095919 for ports@FreeBSD.org; Tue, 30 Sep 2003 09:22:40 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 09:22:40 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301322.h8UDMecE095919@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, 30 Sep 2003 13:22:43 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 U lang/php4/Makefile U lang/php4/distinfo U lang/php4/pkg-plist U lang/php4/files/patch-configure U lang/php4/scripts/configure.php U lang/php4/scripts/php4_options ? 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 U sysutils/Makefile U sysutils/ldap-account-manager/Makefile U sysutils/ldap-account-manager/distinfo U sysutils/ldap-account-manager/pkg-descr U sysutils/ldap-account-manager/pkg-plist ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 06:25: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 615BA16A4B3 for ; Tue, 30 Sep 2003 06:25: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 A298943FB1 for ; Tue, 30 Sep 2003 06:25:42 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8UDPgGZ061342 for ; Tue, 30 Sep 2003 09:25:42 -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 h8UDOUMZ092159 for ports@FreeBSD.org; Tue, 30 Sep 2003 09:24:30 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 09:24:30 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301324.h8UDOUMZ092159@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, 30 Sep 2003 13:25:43 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 U lang/php4/Makefile U lang/php4/distinfo U lang/php4/pkg-plist U lang/php4/files/patch-configure U lang/php4/scripts/configure.php U lang/php4/scripts/php4_options ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U sysutils/Makefile U sysutils/ldap-account-manager/Makefile U sysutils/ldap-account-manager/distinfo U sysutils/ldap-account-manager/pkg-descr U sysutils/ldap-account-manager/pkg-plist ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 07:22: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 A92B516A4B3 for ; Tue, 30 Sep 2003 07:22:42 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id D45E243FFD for ; Tue, 30 Sep 2003 07:22:41 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8UEMfGZ061440 for ; Tue, 30 Sep 2003 10:22:41 -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 h8UEMeZR022868 for ports@FreeBSD.org; Tue, 30 Sep 2003 10:22:40 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 10:22:40 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301422.h8UEMeZR022868@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, 30 Sep 2003 14:22:42 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 30 07:25: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 BEA0F16A4B3 for ; Tue, 30 Sep 2003 07:25: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 D1E1143FF7 for ; Tue, 30 Sep 2003 07:25:49 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8UEPnGZ061449 for ; Tue, 30 Sep 2003 10:25: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 h8UEOaiL019102 for ports@FreeBSD.org; Tue, 30 Sep 2003 10:24:36 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 10:24:36 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301424.h8UEOaiL019102@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, 30 Sep 2003 14:25:51 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 08:09: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 53AF416A4B3; Tue, 30 Sep 2003 08:09:03 -0700 (PDT) Received: from sv02.webonaut.com (kirk.webonaut.com [212.41.243.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id B92CA44025; Tue, 30 Sep 2003 08:09:01 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from localhost (localhost [127.0.0.1]) by sv02.webonaut.com (Postfix) with ESMTP id 49C9D76456; Tue, 30 Sep 2003 17:08:59 +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 96360-08; Tue, 30 Sep 2003 17:08:57 +0200 (CEST) Received: from [192.168.0.9] (sisko.webonaut.com [212.41.243.28]) by sv02.webonaut.com (Postfix) with ESMTP id 2398D76454; Tue, 30 Sep 2003 17:08:57 +0200 (CEST) From: Franz Klammer To: Joe Marcus Clarke In-Reply-To: <1064910135.48606.6.camel@shumai.marcuscom.com> References: <200309300115.05714.metrol@metrol.net> <1064910135.48606.6.camel@shumai.marcuscom.com> Content-Type: text/plain Message-Id: <1064934538.46705.13.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Tue, 30 Sep 2003 17:08:59 +0200 Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at webonaut.com cc: Michael Collette cc: FreeBSD Mailing Lists Subject: Re: About that Freetype2 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: Tue, 30 Sep 2003 15:09:03 -0000 Am Di, den 30.09.2003 schrieb Joe Marcus Clarke um 10:22: > On Tue, 2003-09-30 at 04:15, Michael Collette wrote: > > Marcus, > > > > The Freetype2 port itself worked quite nicely. Upgraded properly, no compile > > problems. I had been looking forward to seeing this get updated due to some > > visual problems with Scribus. > > > > Long story short, I uninstalled the new version and added the old one back in > > via a package. All of my TrueType fonts here got real jaggedy. They were > > readable, but the quality was seriously degraded. > > > > I run with a KDE desktop and no anti-aliasing, as this is a laptop. AA on an > > LCD screen just looks fuzzy. I should note that with AA turned on, the new > > Freetype2 does just fine. The not so subtle difference is when there isn't > > any AA help. > > > > I should also note that this was certainly no fix for Scribus. With the > > updated version of Freetype2 I wasn't able to even see any True Type fonts at > > all. > > > > Without doing any real investigative work, I'm leaning to one of three > > explanations here... > > > > 1. Something is goofy in this new version of Freetype2 > > 2. Freetype2 reall wanted that byte code interpreter after all > > 3. I need to recompile the applications that depend on Freetype2 > > > > No major crisis here, as the old version seems to still be doing just fine. > > Thought I'd pass along what all I saw with this new one just the same. > > Everything here looks beautiful. You're free to test your assumptions > above. If the byte-code interpreter helps, I can always add that back > in as an option. > i had the a problem with blur font display after upgrading to the latest version. adding back bytecode solves it. here some screenshots with and without bytcode enabled: http://webonaut.com/temp/bytecode/ franz. > Joe > > > > > Later on, -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 08:22: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 C4F1716A4B3 for ; Tue, 30 Sep 2003 08:22: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 D313D43FE1 for ; Tue, 30 Sep 2003 08:22:38 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8UFMcGZ061561 for ; Tue, 30 Sep 2003 11:22:38 -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 h8UFMb4c049693 for ports@FreeBSD.org; Tue, 30 Sep 2003 11:22:37 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 11:22:37 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301522.h8UFMb4c049693@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, 30 Sep 2003 15:22:40 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core U archivers/lha/Makefile ? 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 U mail/imp3/Makefile ? misc/flyway/make.core U misc/kdeutils3/Makefile ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core U net/lft/Makefile U net/lft/files/patch-lft.c ? net/powerdns/Makefile.inc ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core U sysutils/Makefile U sysutils/userneu/Makefile U sysutils/userneu/distinfo U sysutils/userneu/pkg-descr U sysutils/userneu/pkg-plist U www/rt3/pkg-plist ? x11-fm/vide/sh.core U x11-fonts/intlfonts/Makefile U x11-fonts/intlfonts/distinfo U x11-fonts/intlfonts/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 08:25: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 2177516A4BF for ; Tue, 30 Sep 2003 08:25:45 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDA054400B for ; Tue, 30 Sep 2003 08:25:43 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8UFPhGZ061570 for ; Tue, 30 Sep 2003 11:25:43 -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 h8UFOUWB045924 for ports@FreeBSD.org; Tue, 30 Sep 2003 11:24:30 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 11:24:30 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301524.h8UFOUWB045924@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, 30 Sep 2003 15:25:45 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x U archivers/lha/Makefile ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? mail/log U mail/imp3/Makefile U misc/kdeutils3/Makefile ? net/bind9-dlz/Makefile.inc U net/lft/Makefile U net/lft/files/patch-lft.c ? net/powerdns/Makefile.inc U sysutils/Makefile U sysutils/userneu/Makefile U sysutils/userneu/distinfo U sysutils/userneu/pkg-descr U sysutils/userneu/pkg-plist U www/rt3/pkg-plist ? x11/gnome2/log U x11-fonts/intlfonts/Makefile U x11-fonts/intlfonts/distinfo U x11-fonts/intlfonts/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 08:28: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 95D6816A4B3; Tue, 30 Sep 2003 08:28:21 -0700 (PDT) Received: from gateway.lefort.net (213.189.162.78.brutele.be [213.189.162.78]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BADF44031; Tue, 30 Sep 2003 08:27:54 -0700 (PDT) (envelope-from jylefort@brutele.be) Received: from jsite.lefort.net (jsite.lefort.net [192.168.1.2]) by gateway.lefort.net (Postfix) with ESMTP id 05CF454E2; Tue, 30 Sep 2003 17:26:46 +0200 (CEST) Received: from jsite.lefort.net (localhost [127.0.0.1]) by jsite.lefort.net (Postfix) with SMTP id 98BCE22E1B; Tue, 30 Sep 2003 17:26:46 +0200 (CEST) Date: Tue, 30 Sep 2003 17:26:29 +0200 From: Jean-Yves Lefort To: Edwin Groothuis , freebsd-ports Message-Id: <20030930172629.55939e5e.jylefort@brutele.be> In-Reply-To: <200309300010.h8U0A99p071503@freefall.freebsd.org> References: <200309300010.h8U0A99p071503@freefall.freebsd.org> X-Mailer: Sylpheed running on FreeBSD Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="pgp-sha1"; boundary="Signature=_Tue__30_Sep_2003_17_26_29_+0200_HVd=+q0VF2W/LrkY" Subject: Re: ports/56970: Adds MASTER_SITE_SAVANNAH to bsd.sites.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Sep 2003 15:28:21 -0000 --Signature=_Tue__30_Sep_2003_17_26_29_+0200_HVd=+q0VF2W/LrkY Content-Type: multipart/mixed; boundary="Multipart=_Tue__30_Sep_2003_17_26_29_+0200_KpnPonEe2yktfvTF" --Multipart=_Tue__30_Sep_2003_17_26_29_+0200_KpnPonEe2yktfvTF Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7bit On Mon, 29 Sep 2003 17:10:09 -0700 (PDT) Edwin Groothuis wrote: > Synopsis: Adds MASTER_SITE_SAVANNAH to bsd.sites.mk > > State-Changed-From-To: open->closed > State-Changed-By: edwin > State-Changed-When: Mon Sep 29 17:09:02 PDT 2003 > State-Changed-Why: > Commited, thanks! > Could you also please submit a patch of ports which can use this now? 42 ports were using savannah.nongnu.org: patch attached. Note that ftp.gnu.org should be removed from MASTER_SITE_SAVANNAH, as it is already listed in MASTER_SITE_GNU (it seems to be a GNU repository rather than a Savannah one -- my bad). Greetings, Jean-Yves Lefort -- Jean-Yves Lefort jylefort@brutele.be http://lefort.be.eu.org/ --Multipart=_Tue__30_Sep_2003_17_26_29_+0200_KpnPonEe2yktfvTF Content-Type: application/octet-stream; name="savannah-ports.diff" Content-Disposition: attachment; filename="savannah-ports.diff" Content-Transfer-Encoding: base64 LS0tIGF1ZGlvL211c2UvTWFrZWZpbGUub3JpZwlUdWUgU2VwIDMwIDE2OjE4OjIzIDIwMDMKKysr IGF1ZGlvL211c2UvTWFrZWZpbGUJVHVlIFNlcCAzMCAxNjoyMTo1MiAyMDAzCkBAIC0xMCw4ICsx MCw5IEBACiBQT1JUVkVSU0lPTj0JMC44LjEKIFBPUlRSRVZJU0lPTj0JMQogQ0FURUdPUklFUz0J YXVkaW8KLU1BU1RFUl9TSVRFUz0JaHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93bmxvYWQv bXVzZS8gXAorTUFTVEVSX1NJVEVTPQkke01BU1RFUl9TSVRFX1NBVkFOTkFIfSBcCiAJCWh0dHA6 Ly9tdXNlLmR5bmUub3JnL3JlbGVhc2VzLworTUFTVEVSX1NJVEVfU1VCRElSPQltdXNlCiBESVNU TkFNRT0JTXVTRS0ke1BPUlRWRVJTSU9OfQogCiBNQUlOVEFJTkVSPQlwb3J0c0BGcmVlQlNELm9y ZwotLS0gYXVkaW8vc3RyZWFtdHVuZXItbG9jYWwvTWFrZWZpbGUub3JpZwlUdWUgU2VwIDMwIDE2 OjE4OjIzIDIwMDMKKysrIGF1ZGlvL3N0cmVhbXR1bmVyLWxvY2FsL01ha2VmaWxlCVR1ZSBTZXAg MzAgMTY6MjY6MDIgMjAwMwpAQCAtOCw3ICs4LDggQEAKIFBPUlROQU1FPQkJbG9jYWwKIFBPUlRW RVJTSU9OPQkJMC4yLjEKIENBVEVHT1JJRVM9CQlhdWRpbyB3d3cKLU1BU1RFUl9TSVRFUz0JCWh0 dHA6Ly9zYXZhbm5haC5ub25nbnUub3JnL2Rvd25sb2FkL3N0cmVhbXR1bmVyL3N0cmVhbXR1bmVy LWxvY2FsLnBrZy8ke1BPUlRWRVJTSU9OfS8KK01BU1RFUl9TSVRFUz0JCSR7TUFTVEVSX1NJVEVf U0FWQU5OQUh9CitNQVNURVJfU0lURV9TVUJESVI9CXN0cmVhbXR1bmVyLyR7UEtHTkFNRVBSRUZJ WH0ke1BPUlROQU1FfS5wa2cvJHtQT1JUVkVSU0lPTn0KIFBLR05BTUVQUkVGSVg9CQlzdHJlYW10 dW5lci0KIERJU1ROQU1FPQkJJHtQS0dOQU1FUFJFRklYfSR7UE9SVE5BTUV9LSR7UE9SVFZFUlNJ T059CiAKLS0tIGF1ZGlvL3N0cmVhbXR1bmVyLXB5dGhvbi9NYWtlZmlsZS5vcmlnCVR1ZSBTZXAg MzAgMTY6MTg6MjMgMjAwMworKysgYXVkaW8vc3RyZWFtdHVuZXItcHl0aG9uL01ha2VmaWxlCVR1 ZSBTZXAgMzAgMTY6MjU6NDIgMjAwMwpAQCAtOCw3ICs4LDggQEAKIFBPUlROQU1FPQkJcHl0aG9u CiBQT1JUVkVSU0lPTj0JCTAuMC4yCiBDQVRFR09SSUVTPQkJYXVkaW8gd3d3Ci1NQVNURVJfU0lU RVM9CQlodHRwOi8vc2F2YW5uYWgubm9uZ251Lm9yZy9kb3dubG9hZC9zdHJlYW10dW5lci9zdHJl YW10dW5lci1weXRob24ucGtnLyR7UE9SVFZFUlNJT059LworTUFTVEVSX1NJVEVTPQkJJHtNQVNU RVJfU0lURV9TQVZBTk5BSH0KK01BU1RFUl9TSVRFX1NVQkRJUj0Jc3RyZWFtdHVuZXIvJHtQS0dO QU1FUFJFRklYfSR7UE9SVE5BTUV9LnBrZy8ke1BPUlRWRVJTSU9OfQogUEtHTkFNRVBSRUZJWD0J CXN0cmVhbXR1bmVyLQogRElTVE5BTUU9CQkke1BLR05BTUVQUkVGSVh9JHtQT1JUTkFNRX0tJHtQ T1JUVkVSU0lPTn0KIAotLS0gYXVkaW8vc3RyZWFtdHVuZXIvTWFrZWZpbGUub3JpZwlUdWUgU2Vw IDMwIDE2OjE4OjIzIDIwMDMKKysrIGF1ZGlvL3N0cmVhbXR1bmVyL01ha2VmaWxlCVR1ZSBTZXAg MzAgMTY6MjI6MjYgMjAwMwpAQCAtOCw3ICs4LDggQEAKIFBPUlROQU1FPQkJc3RyZWFtdHVuZXIK IFBPUlRWRVJTSU9OPQkJMC4xMC4xCiBDQVRFR09SSUVTPQkJYXVkaW8gd3d3Ci1NQVNURVJfU0lU RVM9CQlodHRwOi8vc2F2YW5uYWgubm9uZ251Lm9yZy9kb3dubG9hZC9zdHJlYW10dW5lci9zdHJl YW10dW5lci5wa2cvJHtQT1JUVkVSU0lPTn0vCitNQVNURVJfU0lURVM9CQkke01BU1RFUl9TSVRF X1NBVkFOTkFIfQorTUFTVEVSX1NJVEVfU1VCRElSPQkke1BPUlROQU1FfS8ke1BPUlROQU1FfS5w a2cvJHtQT1JUVkVSU0lPTn0KIAogTUFJTlRBSU5FUj0JCWp5bGVmb3J0QGJydXRlbGUuYmUKIENP TU1FTlQ9CQlBIEdUSysgc3RyZWFtIGRpcmVjdG9yeSBicm93c2VyCi0tLSBkZXZlbC9hdnItbGli Yy9NYWtlZmlsZS5vcmlnCVR1ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgZGV2ZWwvYXZyLWxp YmMvTWFrZWZpbGUJVHVlIFNlcCAzMCAxNjoyNjo1NyAyMDAzCkBAIC05LDcgKzksOCBAQAogUE9S VFZFUlNJT049CTIwMDMuMDkuMDkKIENBVEVHT1JJRVM9CWRldmVsCiAjIEN1cnJlbnRseSBzdGls bCBzbmFwc2hvdHMsIG5vdCB5ZXQgb2ZmaWNpYWxseSByZWxlYXNlZCBhZ2Fpbi4KLSNNQVNURVJf U0lURVM9CWh0dHA6Ly9zYXZhbm5haC5ub25nbnUub3JnL2Rvd25sb2FkL2F2ci1saWJjLworI01B U1RFUl9TSVRFUz0JJHtNQVNURVJfU0lURV9TQVZBTk5BSH0KKyNNQVNURVJfU0lURV9TVUJESVI9 CSR7UE9SVE5BTUV9CiBNQVNURVJfU0lURVM9CWh0dHA6Ly9wZW9wbGUuZnJlZWJzZC5vcmcvfmpv ZXJnLwogCiBNQUlOVEFJTkVSPQlqb2VyZ0BmcmVlYnNkLm9yZwotLS0gZGV2ZWwvYXZyZHVkZS9N YWtlZmlsZS5vcmlnCVR1ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgZGV2ZWwvYXZyZHVkZS9N YWtlZmlsZQlUdWUgU2VwIDMwIDE2OjI3OjM4IDIwMDMKQEAgLTgsNyArOCw4IEBACiBQT1JUTkFN RT0JYXZyZHVkZQogUE9SVFZFUlNJT049CTQuMi4wCiBDQVRFR09SSUVTPQlkZXZlbAotTUFTVEVS X1NJVEVTPQlodHRwOi8vc2F2YW5uYWgubm9uZ251Lm9yZy9kb3dubG9hZC9hdnJkdWRlL3N0YWJs ZS5wa2cvNC4yLjAvCitNQVNURVJfU0lURVM9CSR7TUFTVEVSX1NJVEVfU0FWQU5OQUh9CitNQVNU RVJfU0lURV9TVUJESVI9CSR7UE9SVE5BTUV9L3N0YWJsZS5wa2cvJHtQT1JUVkVSU0lPTn0KIAog TUFJTlRBSU5FUj0JYnNkQEZyZWVCU0Qub3JnCiBDT01NRU5UPQlQcm9ncmFtIGZvciBwcm9ncmFt bWluZyB0aGUgb24tY2hpcCBtZW1vcnkgb2YgQXRtZWwgQVZSIENQVXMKLS0tIGRldmVsL2JuZi9N YWtlZmlsZS5vcmlnCVR1ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgZGV2ZWwvYm5mL01ha2Vm aWxlCVR1ZSBTZXAgMzAgMTY6Mjg6MTAgMjAwMwpAQCAtOCw3ICs4LDggQEAKIFBPUlROQU1FPQli bmYKIFBPUlRWRVJTSU9OPQkxLjYuOQogQ0FURUdPUklFUz0JZGV2ZWwKLU1BU1RFUl9TSVRFUz0J aHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93bmxvYWQvYm5mLworTUFTVEVSX1NJVEVTPQkk e01BU1RFUl9TSVRFX1NBVkFOTkFIfQorTUFTVEVSX1NJVEVfU1VCRElSPQkke1BPUlROQU1FfQog CiBNQUlOVEFJTkVSPQlwb3J0c0BGcmVlQlNELm9yZwogQ09NTUVOVD0JR2VuZXJhdGUgQyBwYXJz ZXIgZ2l2ZW4gYSBncmFtbWFyIGluIEJORiBub3RhdGlvbgotLS0gZGV2ZWwvcnVieS1jYWNoZS9N YWtlZmlsZS5vcmlnCVR1ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgZGV2ZWwvcnVieS1jYWNo ZS9NYWtlZmlsZQlUdWUgU2VwIDMwIDE2OjI5OjMxIDIwMDMKQEAgLTgsNyArOCw4IEBACiBQT1JU TkFNRT0JY2FjaGUKIFBPUlRWRVJTSU9OPQkwLjMKIENBVEVHT1JJRVM9CWRldmVsIHJ1YnkKLU1B U1RFUl9TSVRFUz0JaHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93bmxvYWQvcHVwYS9ydWJ5 LWNhY2hlLnBrZy8ke1BPUlRWRVJTSU9OfS8KK01BU1RFUl9TSVRFUz0JJHtNQVNURVJfU0lURV9T QVZBTk5BSH0KK01BU1RFUl9TSVRFX1NVQkRJUj0JcHVwYS9ydWJ5LWNhY2hlLnBrZy8ke1BPUlRW RVJTSU9OfQogUEtHTkFNRVBSRUZJWD0JJHtSVUJZX1BLR05BTUVQUkVGSVh9CiBESVNUTkFNRT0J cnVieS0ke1BPUlROQU1FfS0ke1BPUlRWRVJTSU9OfQogRElTVF9TVUJESVI9CXJ1YnkKLS0tIGRl dmVsL3NpbXVsYXZyL01ha2VmaWxlLm9yaWcJVHVlIFNlcCAzMCAxNjoxODoyMyAyMDAzCisrKyBk ZXZlbC9zaW11bGF2ci9NYWtlZmlsZQlUdWUgU2VwIDMwIDE2OjI5OjUzIDIwMDMKQEAgLTgsNyAr OCw4IEBACiBQT1JUTkFNRT0Jc2ltdWxhdnIKIFBPUlRWRVJTSU9OPQkwLjEuMQogQ0FURUdPUklF Uz0JZGV2ZWwKLU1BU1RFUl9TSVRFUz0JaHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93bmxv YWQvc2ltdWxhdnIvCitNQVNURVJfU0lURVM9CSR7TUFTVEVSX1NJVEVfU0FWQU5OQUh9CitNQVNU RVJfU0lURV9TVUJESVI9CSR7UE9SVE5BTUV9CiAKIE1BSU5UQUlORVI9CWpvZXJnQEZyZWVCU0Qu b3JnCiBDT01NRU5UPQlBIHNpbXVsYXRvciBmb3IgQVZSIG1pY3JvY29udHJvbGxlcnMKLS0tIGRl dmVsL3RpbnlxL01ha2VmaWxlLm9yaWcJVHVlIFNlcCAzMCAxNjoxODoyMyAyMDAzCisrKyBkZXZl bC90aW55cS9NYWtlZmlsZQlUdWUgU2VwIDMwIDE2OjMwOjA3IDIwMDMKQEAgLTEyLDcgKzEyLDgg QEAKIFBPUlRSRVZJU0lPTj0JMAogUE9SVEVQT0NIPQkwCiBDQVRFR09SSUVTPQlkZXZlbCBrZGUK LU1BU1RFUl9TSVRFUz0JaHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93bmxvYWQvdGlueXEv CitNQVNURVJfU0lURVM9CSR7TUFTVEVSX1NJVEVfU0FWQU5OQUh9CitNQVNURVJfU0lURV9TVUJE SVI9CSR7UE9SVE5BTUV9CiAKIE1BSU5UQUlORVI9CWtkZUBmcmVlYnNkLm9yZwogQ09NTUVOVD0J QSBzdHJpcHBlZCBkb3duIHZlcnNpb24gb2YgUXQgMyBmb3IgdXNlIGFzIGEgdXRpbGl0eSBsaWJy YXJ5Ci0tLSBkZXZlbC91aXNwL01ha2VmaWxlLm9yaWcJVHVlIFNlcCAzMCAxNjoxODoyMyAyMDAz CisrKyBkZXZlbC91aXNwL01ha2VmaWxlCVR1ZSBTZXAgMzAgMTY6MzA6MTUgMjAwMwpAQCAtOCw3 ICs4LDggQEAKIFBPUlROQU1FPQl1aXNwCiBQT1JUVkVSU0lPTj0JMjAwMjA2MjYKIENBVEVHT1JJ RVM9CWRldmVsCi1NQVNURVJfU0lURVM9CWh0dHA6Ly9zYXZhbm5haC5ub25nbnUub3JnL2Rvd25s b2FkL3Vpc3AvCitNQVNURVJfU0lURVM9CSR7TUFTVEVSX1NJVEVfU0FWQU5OQUh9CitNQVNURVJf U0lURV9TVUJESVI9CSR7UE9SVE5BTUV9CiAKIE1BSU5UQUlORVI9CWJydW5vQHRpbmtlcmJveC5v cmcKIENPTU1FTlQ9CUEgdmVyc2F0aWxlIHByb2dyYW1tZXIgZm9yIGF0bWVsIEFWUiBtaWNyb2Nv bnRyb2xsZXJzCi0tLSBkbnMvem9uZWNoZWNrL01ha2VmaWxlLm9yaWcJVHVlIFNlcCAzMCAxNjox ODoyMyAyMDAzCisrKyBkbnMvem9uZWNoZWNrL01ha2VmaWxlCVR1ZSBTZXAgMzAgMTY6MzA6MjUg MjAwMwpAQCAtOCw3ICs4LDggQEAKIFBPUlROQU1FPQl6b25lY2hlY2sKIFBPUlRWRVJTSU9OPQky LjAuMGI3CiBDQVRFR09SSUVTPQlkbnMgaXB2NiBydWJ5Ci1NQVNURVJfU0lURVM9CWh0dHA6Ly9z YXZhbm5haC5ub25nbnUub3JnL2Rvd25sb2FkL3pvbmVjaGVjay8KK01BU1RFUl9TSVRFUz0JJHtN QVNURVJfU0lURV9TQVZBTk5BSH0KK01BU1RFUl9TSVRFX1NVQkRJUj0JJHtQT1JUTkFNRX0KIEVY VFJBQ1RfU1VGWD0JLnRnegogCiBNQUlOVEFJTkVSPQlqYW5vcy5tb2hhY3NpQGJzZC5odQotLS0g ZWRpdG9ycy9iZWF2ZXIvTWFrZWZpbGUub3JpZwlUdWUgU2VwIDMwIDE2OjE4OjIzIDIwMDMKKysr IGVkaXRvcnMvYmVhdmVyL01ha2VmaWxlCVR1ZSBTZXAgMzAgMTY6MzA6NDYgMjAwMwpAQCAtOSw3 ICs5LDggQEAKIFBPUlRWRVJTSU9OPQkJMC4zLjEKIFBPUlRSRVZJU0lPTj0JCTEKIENBVEVHT1JJ RVM9CQllZGl0b3JzCi1NQVNURVJfU0lURVM9CQlodHRwOi8vc2F2YW5uYWgubm9uZ251Lm9yZy9k b3dubG9hZC9iZWF2ZXIvCitNQVNURVJfU0lURVM9CQkke01BU1RFUl9TSVRFX1NBVkFOTkFIfQor TUFTVEVSX1NJVEVfU1VCRElSPQkke1BPUlROQU1FfQogCiBNQUlOVEFJTkVSPQkJanlsZWZvcnRA YnJ1dGVsZS5iZQogQ09NTUVOVD0JCUEgcHJvZ3JhbW1lcidzIHRleHQgZWRpdG9yIGZvciBHVEsr IDIuMAotLS0gZnRwL211ZGRsZWZ0cGQvTWFrZWZpbGUub3JpZwlUdWUgU2VwIDMwIDE2OjE4OjIz IDIwMDMKKysrIGZ0cC9tdWRkbGVmdHBkL01ha2VmaWxlCVR1ZSBTZXAgMzAgMTY6MzE6MDIgMjAw MwpAQCAtOSw3ICs5LDggQEAKIFBPUlROQU1FPQltdWRkbGVmdHBkCiBQT1JUVkVSU0lPTj0JMS4z LjEyLjEKIENBVEVHT1JJRVM9CWZ0cAotTUFTVEVSX1NJVEVTPQlodHRwOi8vc2F2YW5uYWgubm9u Z251Lm9yZy9kb3dubG9hZC9tdWRkbGVmdHBkLworTUFTVEVSX1NJVEVTPQkke01BU1RFUl9TSVRF X1NBVkFOTkFIfQorTUFTVEVSX1NJVEVfU1VCRElSPQkke1BPUlROQU1FfQogCiBNQUlOVEFJTkVS PQlwb3J0c0BGcmVlQlNELm9yZwogQ09NTUVOVD0JQSBuZXcgZnRwIHNlcnZlciB0aGF0IGNhbiBw ZXJmb3JtIGEgdmFyaWV0eSBvZiBmdHAgdGFza3MKLS0tIGdhbWVzL2FkZ2FsaS9NYWtlZmlsZS5v cmlnCVR1ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgZ2FtZXMvYWRnYWxpL01ha2VmaWxlCVR1 ZSBTZXAgMzAgMTY6MzI6MDcgMjAwMwpAQCAtOSw3ICs5LDcgQEAKIFBPUlROQU1FPQlhZGdhbGkK IFBPUlRWRVJTSU9OPQkwLjIuMwogQ0FURUdPUklFUz0JZ2FtZXMgZGV2ZWwKLU1BU1RFUl9TSVRF Uz0JaHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93bmxvYWQvYWRnYWxpLworTUFTVEVSX1NJ VEVTPQkke01BU1RFUl9TSVRFX1NBVkFOTkFIfQogTUFTVEVSX1NJVEVfU1VCRElSPQkke1BPUlRO QU1FfQogCiBNQUlOVEFJTkVSPQlwb3J0c0BGcmVlQlNELm9yZwotLS0gZ2FtZXMvYWRvbnRoZWxs L01ha2VmaWxlLm9yaWcJVHVlIFNlcCAzMCAxNjoxODoyMyAyMDAzCisrKyBnYW1lcy9hZG9udGhl bGwvTWFrZWZpbGUJVHVlIFNlcCAzMCAxNjozMjoyNCAyMDAzCkBAIC04LDcgKzgsOCBAQAogUE9S VE5BTUU9CWFkb250aGVsbAogUE9SVFZFUlNJT049CTAuMy4zCiBDQVRFR09SSUVTPQlnYW1lcwot TUFTVEVSX1NJVEVTPQlodHRwOi8vc2F2YW5uYWgubm9uZ251Lm9yZy9kb3dubG9hZC8ke1BPUlRO QU1FfS9zcmMvCitNQVNURVJfU0lURVM9CSR7TUFTVEVSX1NJVEVfU0FWQU5OQUh9CitNQVNURVJf U0lURV9TVUJESVI9CSR7UE9SVE5BTUV9L3NyYwogRElTVEZJTEVTPQkke1BPUlROQU1FfS0ke1BP UlRWRVJTSU9OfSR7RVhUUkFDVF9TVUZYfSBcCiAJICAgCXdhc3Rlc2VkZ2UtJHtQT1JUVkVSU0lP Tn0ke0VYVFJBQ1RfU1VGWH0KIAotLS0gZ2FtZXMvZW5pZ21hL01ha2VmaWxlLm9yaWcJVHVlIFNl cCAzMCAxNjoxODoyMyAyMDAzCisrKyBnYW1lcy9lbmlnbWEvTWFrZWZpbGUJVHVlIFNlcCAzMCAx NjozMjozMyAyMDAzCkBAIC04LDcgKzgsOCBAQAogUE9SVE5BTUU9CWVuaWdtYQogUE9SVFZFUlNJ T049CTAuNzAKIENBVEVHT1JJRVM9CWdhbWVzCi1NQVNURVJfU0lURVM9CWh0dHA6Ly9zYXZhbm5h aC5ub25nbnUub3JnL2Rvd25sb2FkL2VuaWdtYS8KK01BU1RFUl9TSVRFUz0JJHtNQVNURVJfU0lU RV9TQVZBTk5BSH0KK01BU1RFUl9TSVRFX1NVQkRJUj0JJHtQT1JUTkFNRX0KIAogTUFJTlRBSU5F Uj0JZWR3aW5AbWF2ZXRqdS5vcmcKIENPTU1FTlQ9CUVuaWdtYSBpcyBhIHJlaW1wbGVtZW50YXRp b24gb2YgT3h5ZCwgYSBwdXp6bGUgZ2FtZQotLS0gZ2FtZXMvc3BhY2VodWxrL01ha2VmaWxlLm9y aWcJVHVlIFNlcCAzMCAxNjoxODoyMyAyMDAzCisrKyBnYW1lcy9zcGFjZWh1bGsvTWFrZWZpbGUJ VHVlIFNlcCAzMCAxNjozMzo0MiAyMDAzCkBAIC04LDcgKzgsOCBAQAogUE9SVFZFUlNJT049CTEu NC41CiBQT1JUUkVWSVNJT049CTEKIENBVEVHT1JJRVM9CWdhbWVzIGtkZQotTUFTVEVSX1NJVEVT PQlodHRwOi8vc2F2YW5uYWgubm9uZ251Lm9yZy9kb3dubG9hZC8ke1BPUlROQU1FfS9tYWluLnBr Zy8ke1BPUlRWRVJTSU9OfS8KK01BU1RFUl9TSVRFUz0JJHtNQVNURVJfU0lURV9TQVZBTk5BSH0K K01BU1RFUl9TSVRFX1NVQkRJUj0JJHtQT1JUTkFNRX0vbWFpbi5wa2cvJHtQT1JUVkVSU0lPTn0K IAogTUFJTlRBSU5FUj0Ja3Jpb25ARnJlZUJTRC5vcmcKIENPTU1FTlQ9CVNjaWVuY2UtZmljdGlv biBib2FyZCBnYW1lIGluIHRoZSB3b3JsZCBvZiBXYXJoYW1tZXIgNDAwMDAKLS0tIGdhbWVzL3hi dWJibGUvTWFrZWZpbGUub3JpZwlUdWUgU2VwIDMwIDE2OjE4OjIzIDIwMDMKKysrIGdhbWVzL3hi dWJibGUvTWFrZWZpbGUJVHVlIFNlcCAzMCAxNjozNDoxMCAyMDAzCkBAIC03LDcgKzcsOCBAQAog UE9SVE5BTUU9CQl4YnViYmxlCiBQT1JUVkVSU0lPTj0JCTAuMgogQ0FURUdPUklFUz0JCWdhbWVz Ci1NQVNURVJfU0lURVM9CQlodHRwOi8vc2F2YW5uYWgubm9uZ251Lm9yZy9kb3dubG9hZC94YnVi YmxlLworTUFTVEVSX1NJVEVTPQkJJHtNQVNURVJfU0lURV9TQVZBTk5BSH0KK01BU1RFUl9TSVRF X1NVQkRJUj0JJHtQT1JUTkFNRX0KIAogTUFJTlRBSU5FUj0JCWtsYXVzLmdvZ2VyQHJlZmxleC5h dAogQ09NTUVOVD0JQnVzdC1BLU1vdmUvUHV6emxlIEJ1YmJsZSBjbG9uZQotLS0gZ3JhcGhpY3Mv T3BlbkVYUi9NYWtlZmlsZS5vcmlnCVR1ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgZ3JhcGhp Y3MvT3BlbkVYUi9NYWtlZmlsZQlUdWUgU2VwIDMwIDE2OjQwOjEzIDIwMDMKQEAgLTksNyArOSw4 IEBACiBQT1JUVkVSU0lPTj0JMS4wLjUKIFBPUlRSRVZJU0lPTj0JMwogQ0FURUdPUklFUz0JZ3Jh cGhpY3MgZGV2ZWwKLU1BU1RFUl9TSVRFUz0JaHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93 bmxvYWQvb3BlbmV4ci8ke1BPUlROQU1FfS5wa2cvJHtQT1JUVkVSU0lPTn0vCitNQVNURVJfU0lU RVM9CSR7TUFTVEVSX1NJVEVfU0FWQU5OQUh9CitNQVNURVJfU0lURV9TVUJESVI9CW9wZW5leHIv JHtQT1JUTkFNRX0ucGtnLyR7UE9SVFZFUlNJT059CiAKIE1BSU5UQUlORVI9CW5vcmtARnJlZUJT RC5vcmcKIENPTU1FTlQ9CU9wZW5FWFIsIGEgaGlnaCBkeW5hbWljLXJhbmdlIChIRFIpIGltYWdl IGZpbGUgZm9ybWF0IGRldmVsb3BlZCBieSBJTE0KLS0tIGdyYXBoaWNzL2tpbWFnZW1hcGVkaXRv ci9NYWtlZmlsZS5vcmlnCVR1ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgZ3JhcGhpY3Mva2lt YWdlbWFwZWRpdG9yL01ha2VmaWxlCVR1ZSBTZXAgMzAgMTY6NDA6MzYgMjAwMwpAQCAtNyw3ICs3 LDggQEAKIFBPUlROQU1FPQlraW1hZ2VtYXBlZGl0b3IKIFBPUlRWRVJTSU9OPQkxLjAKIENBVEVH T1JJRVM9CWdyYXBoaWNzIGtkZQotTUFTVEVSX1NJVEVTPQlodHRwOi8vc2F2YW5uYWgubm9uZ251 Lm9yZy9kb3dubG9hZC9raW1hZ2VtYXAvCitNQVNURVJfU0lURVM9CSR7TUFTVEVSX1NJVEVfU0FW QU5OQUh9CitNQVNURVJfU0lURV9TVUJESVI9CWtpbWFnZW1hcAogCiBNQUlOVEFJTkVSPQlrcmlv bkBGcmVlQlNELm9yZwogQ09NTUVOVD0JS0RFLWJhc2VkIGVkaXRvciBmb3IgSFRNTCBpbWFnZSBt YXBzCi0tLSBpcmMvYm9ib3QrKy9NYWtlZmlsZS5vcmlnCVR1ZSBTZXAgMzAgMTY6MTg6MjMgMjAw MworKysgaXJjL2JvYm90KysvTWFrZWZpbGUJVHVlIFNlcCAzMCAxNjo0MToyMiAyMDAzCkBAIC05 LDcgKzksOCBAQAogUE9SVE5BTUU9CWJvYm90KysKIFBPUlRWRVJTSU9OPQkxLjk5LjIKIENBVEVH T1JJRVM9CWlyYwotTUFTVEVSX1NJVEVTPQlodHRwOi8vc2F2YW5uYWgubm9uZ251Lm9yZy9kb3du bG9hZC9ib2JvdHBwL3N0YWJsZS5wa2cvJHtQT1JUVkVSU0lPTn0vCitNQVNURVJfU0lURVM9CSR7 TUFTVEVSX1NJVEVfU0FWQU5OQUh9CitNQVNURVJfU0lURV9TVUJESVI9CWJvYm90cHAvc3RhYmxl LnBrZy8ke1BPUlRWRVJTSU9OfQogRElTVE5BTUU9CUJvYm90KystJHtQT1JUVkVSU0lPTn0KIAog TUFJTlRBSU5FUj0JcG9ydHNARnJlZUJTRC5vcmcKLS0tIG1haWwvZ290bWFpbC9NYWtlZmlsZS5v cmlnCVR1ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgbWFpbC9nb3RtYWlsL01ha2VmaWxlCVR1 ZSBTZXAgMzAgMTY6NDM6MjAgMjAwMwpAQCAtOCw3ICs4LDggQEAKIFBPUlROQU1FPQlnb3RtYWls CiBQT1JUVkVSU0lPTj0JMC43LjEwCiBDQVRFR09SSUVTPQltYWlsIHBlcmw1Ci1NQVNURVJfU0lU RVM9CWh0dHA6Ly9zYXZhbm5haC5ub25nbnUub3JnL2Rvd25sb2FkL2dvdG1haWwvc3RhYmxlLnBr Zy8ke1BPUlRWRVJTSU9OfS8KK01BU1RFUl9TSVRFUz0JJHtNQVNURVJfU0lURV9TQVZBTk5BSH0K K01BU1RFUl9TSVRFX1NVQkRJUj0JJHtQT1JUTkFNRX0vc3RhYmxlLnBrZy8ke1BPUlRWRVJTSU9O fQogRElTVE5BTUU9CSR7UE9SVE5BTUV9XyR7UE9SVFZFUlNJT059CiAKIE1BSU5UQUlORVI9CWVy d2luQEZyZWVCU0Qub3JnCi0tLSBtYWlsL2lmaWxlL01ha2VmaWxlLm9yaWcJVHVlIFNlcCAzMCAx NjoxODoyMyAyMDAzCisrKyBtYWlsL2lmaWxlL01ha2VmaWxlCVR1ZSBTZXAgMzAgMTY6NDM6MzYg MjAwMwpAQCAtOSw3ICs5LDggQEAKIFBPUlRWRVJTSU9OPQkxLjMuMgogUE9SVFJFVklTSU9OPQkx CiBDQVRFR09SSUVTPQltYWlsIHRleHRwcm9jCi1NQVNURVJfU0lURVM9CWh0dHA6Ly9zYXZhbm5h aC5ub25nbnUub3JnL2Rvd25sb2FkL2lmaWxlL2RlZmF1bHQucGtnLyR7UE9SVFZFUlNJT059Lwor TUFTVEVSX1NJVEVTPQkke01BU1RFUl9TSVRFX1NBVkFOTkFIfQorTUFTVEVSX1NJVEVfU1VCRElS PQkke1BPUlROQU1FfS9kZWZhdWx0LnBrZy8ke1BPUlRWRVJTSU9OfQogCiBNQUlOVEFJTkVSPQlk YXZpZCtwb3J0c0BidXNob25nLm5ldAogQ09NTUVOVD0JQW4gYXBwbGljYXRpb24gb2YgbWFjaGlu ZSBsZWFybmluZyB0byBlLW1haWwgZmlsdGVyaW5nCi0tLSBtYWlsL3NtdHBtYWlsL01ha2VmaWxl Lm9yaWcJVHVlIFNlcCAzMCAxNjoxODoyMyAyMDAzCisrKyBtYWlsL3NtdHBtYWlsL01ha2VmaWxl CVR1ZSBTZXAgMzAgMTY6NDQ6MjMgMjAwMwpAQCAtOCw4ICs4LDkgQEAKIFBPUlROQU1FPQlzbXRw bWFpbAogUE9SVFZFUlNJT049CTAuNC4yCiBDQVRFR09SSUVTPQltYWlsCi1NQVNURVJfU0lURVM9 CWh0dHA6Ly9zYXZhbm5haC5ub25nbnUub3JnL2Rvd25sb2FkLyR7UE9SVE5BTUV9L3NtdHBtYWls LnBrZy8wLjQuMi8gXAorTUFTVEVSX1NJVEVTPQkke01BU1RFUl9TSVRFX1NBVkFOTkFIfSBcCiAJ CWh0dHA6Ly92b29kb28ub2Jlcm9uLm5ldC8KK01BU1RFUl9TSVRFX1NVQkRJUj0JJHtQT1JUTkFN RX0vJHtQT1JUTkFNRX0ucGtnLyR7UE9SVFZFUlNJT059CiAKIE1BSU5UQUlORVI9CWtyaW9uQEZy ZWVCU0Qub3JnCiBDT01NRU5UPQlUb29sIHRvIHNlbmQgdGhlIG1haWxzIG92ZXIgcmVtb3RlIHNt dHAgc2VydmVyCi0tLSBtYWlsL3NwYW1hc3MtbWlsdGVyL01ha2VmaWxlLm9yaWcJVHVlIFNlcCAz MCAxNjoxODoyMyAyMDAzCisrKyBtYWlsL3NwYW1hc3MtbWlsdGVyL01ha2VmaWxlCVR1ZSBTZXAg MzAgMTY6NDU6MDkgMjAwMwpAQCAtOCw3ICs4LDggQEAKIFBPUlROQU1FPQlzcGFtYXNzLW1pbHRl cgogUE9SVFZFUlNJT049CTAuMi4wCiBDQVRFR09SSUVTPQltYWlsCi1NQVNURVJfU0lURVM9CWh0 dHA6Ly9zYXZhbm5haC5ub25nbnUub3JnL2Rvd25sb2FkL3NwYW1hc3MtbWlsdC8KK01BU1RFUl9T SVRFUz0JJHtNQVNURVJfU0lURV9TQVZBTk5BSH0KK01BU1RFUl9TSVRFX1NVQkRJUj0Jc3BhbWFz cy1taWx0CiAKIE1BSU5UQUlORVI9CWFiQGFzdHJhbGJsdWUubmV0CiBDT01NRU5UPQlTZW5kbWFp bCBNaWx0ZXIgKG1haWwgZmlsdGVyKSBmb3IgU3BhbUFzc2Fzc2luCi0tLSBtaXNjL2d0a3RhbG9n L01ha2VmaWxlLm9yaWcJVHVlIFNlcCAzMCAxNjoxODoyMyAyMDAzCisrKyBtaXNjL2d0a3RhbG9n L01ha2VmaWxlCVR1ZSBTZXAgMzAgMTY6NDU6NTYgMjAwMwpAQCAtOCw3ICs4LDggQEAKIFBPUlRO QU1FPQlndGt0YWxvZwogUE9SVFZFUlNJT049CTEuMC4wCiBDQVRFR09SSUVTPQltaXNjCi1NQVNU RVJfU0lURVM9CWh0dHA6Ly9zYXZhbm5haC5ub25nbnUub3JnL2Rvd25sb2FkL2d0a3RhbG9nL2d0 a3RhbG9nLnBrZy8xLjAuMC8KK01BU1RFUl9TSVRFUz0JJHtNQVNURVJfU0lURV9TQVZBTk5BSH0K K01BU1RFUl9TSVRFX1NVQkRJUj0JJHtQT1JUTkFNRX0vJHtQT1JUTkFNRX0ucGtnLyR7UE9SVFZF UlNJT059CiAKIE1BSU5UQUlORVI9CXJhZWxAdmVjdG9yc3Rhci5uZXQKIENPTU1FTlQ9CUdUS3Rh bG9nIGlzIGEgdG9vbCB0byBtYWtlIGRpc2sgY2F0YWxvZ3MKLS0tIG11bHRpbWVkaWEvc2xpZGVz aG93L01ha2VmaWxlLm9yaWcJVHVlIFNlcCAzMCAxNjoxODoyMyAyMDAzCisrKyBtdWx0aW1lZGlh L3NsaWRlc2hvdy9NYWtlZmlsZQlUdWUgU2VwIDMwIDE2OjQ3OjAzIDIwMDMKQEAgLTgsNyArOCw4 IEBACiBQT1JUTkFNRT0Jc2xpZGVzaG93CiBQT1JUVkVSU0lPTj0JMC44LjAucDUKIENBVEVHT1JJ RVM9CW11bHRpbWVkaWEKLU1BU1RFUl9TSVRFUz0JaHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcv ZG93bmxvYWQvJHtQT1JUTkFNRX0vJHtQT1JUTkFNRX0ucGtnLyR7UE9SVFZFUlNJT046Uy8ucC8t cHJlL30vCitNQVNURVJfU0lURVM9CSR7TUFTVEVSX1NJVEVfU0FWQU5OQUh9CitNQVNURVJfU0lU RV9TVUJESVI9CSR7UE9SVE5BTUV9LyR7UE9SVE5BTUV9LnBrZy8ke1BPUlRWRVJTSU9OOlMvLnAv LXByZS99CiBESVNUTkFNRT0JJHtQT1JUTkFNRX0tJHtQT1JUVkVSU0lPTjpTLy5wLy1wcmUvfQog CiBNQUlOVEFJTkVSPQlzdGVmYW5AZmFmb2UubmFyZi5hdAotLS0gbmV0L2ttbGRvbmtleS9NYWtl ZmlsZS5vcmlnCVR1ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgbmV0L2ttbGRvbmtleS9NYWtl ZmlsZQlUdWUgU2VwIDMwIDE2OjQ4OjEzIDIwMDMKQEAgLTgsOCArOCw4IEBACiBQT1JUTkFNRT0J a21sZG9ua2V5CiBQT1JUVkVSU0lPTj0JMC45LjEKIENBVEVHT1JJRVM9CW5ldCBrZGUKLU1BU1RF Ul9TSVRFUz0JaHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93bmxvYWQva21sZG9ua2V5L3Vu c3RhYmxlLnBrZy8lU1VCRElSJS8KLU1BU1RFUl9TSVRFX1NVQkRJUj0JJHtQT1JUVkVSU0lPTn0K K01BU1RFUl9TSVRFUz0JJHtNQVNURVJfU0lURV9TQVZBTk5BSH0KK01BU1RFUl9TSVRFX1NVQkRJ Uj0JJHtQT1JUTkFNRX0vdW5zdGFibGUucGtnLyR7UE9SVFZFUlNJT059CiAKIE1BSU5UQUlORVI9 CWxpb3V4QEZyZWVCU0Qub3JnCiBDT01NRU5UPQlLREUgaW50ZWdyYXRpb24gZm9yIE1MRG9ua2V5 IGVEb25rZXkgUDJQIGNsaWVudAotLS0gbmV0L21sZG9ua2V5L01ha2VmaWxlLm9yaWcJVHVlIFNl cCAzMCAxNjoxODoyMyAyMDAzCisrKyBuZXQvbWxkb25rZXkvTWFrZWZpbGUJVHVlIFNlcCAzMCAx Njo0OTo0MCAyMDAzCkBAIC04LDcgKzgsOCBAQAogUE9SVE5BTUU9CW1sZG9ua2V5CiBQT1JUVkVS U0lPTj0JMi41LjMKIENBVEVHT1JJRVM9CW5ldAotTUFTVEVSX1NJVEVTPQlodHRwOi8vc2F2YW5u YWgubm9uZ251Lm9yZy9kb3dubG9hZC9tbGRvbmtleS9yZWxlYXNlLSR7UE9SVFZFUlNJT046Qy9c LiguKSQvLVwxL30vb2ZmaWNpYWwvCitNQVNURVJfU0lURVM9CSR7TUFTVEVSX1NJVEVfU0FWQU5O QUh9CitNQVNURVJfU0lURV9TVUJESVI9CSR7UE9SVE5BTUV9L3JlbGVhc2UtJHtQT1JUVkVSU0lP TjpDL1wuKC4pJC8tXDEvfS9vZmZpY2lhbAogRElTVE5BTUU9CSR7UE9SVE5BTUV9LSR7UE9SVFZF UlNJT046Qy9cLiguKSQvLVwxL30uc291cmNlcwogCiBNQUlOVEFJTkVSPQlob2xnZXJAZS1naXR0 Lm5ldAotLS0gbmV0L3B5LXJyZHRvb2xfbGdwbC9NYWtlZmlsZS5vcmlnCVR1ZSBTZXAgMzAgMTY6 MTg6MjMgMjAwMworKysgbmV0L3B5LXJyZHRvb2xfbGdwbC9NYWtlZmlsZQlUdWUgU2VwIDMwIDE2 OjUwOjE0IDIwMDMKQEAgLTcsNyArNyw4IEBACiBQT1JUTkFNRT0JcnJkdG9vbF9sZ3BsCiBQT1JU VkVSU0lPTj0JMC4yLjEKIENBVEVHT1JJRVM9CW5ldCBweXRob24KLU1BU1RFUl9TSVRFUz0JaHR0 cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93bmxvYWQvcHktcnJkdG9vbC9weS1ycmR0b29sLnBr Zy8ke1BPUlRWRVJTSU9OfS8KK01BU1RFUl9TSVRFUz0JJHtNQVNURVJfU0lURV9TQVZBTk5BSH0K K01BU1RFUl9TSVRFX1NVQkRJUj0JcHktcnJkdG9vbC9weS1ycmR0b29sLnBrZy8ke1BPUlRWRVJT SU9OfQogUEtHTkFNRVBSRUZJWD0JJHtQWVRIT05fUEtHTkFNRVBSRUZJWH0KIERJU1ROQU1FPQlw eS1ycmR0b29sLSR7UE9SVFZFUlNJT059CiAKLS0tIG5ldC90cmFtcC9NYWtlZmlsZS5vcmlnCVR1 ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgbmV0L3RyYW1wL01ha2VmaWxlCVR1ZSBTZXAgMzAg MTY6NTE6NDAgMjAwMwpAQCAtOCw3ICs4LDggQEAKIFBPUlROQU1FPQl0cmFtcAogUE9SVFZFUlNJ T049CTIuMC4zNgogQ0FURUdPUklFUz0JbmV0IGVsaXNwCi1NQVNURVJfU0lURVM9CWh0dHA6Ly9z YXZhbm5haC5ub25nbnUub3JnL2Rvd25sb2FkL3RyYW1wLworTUFTVEVSX1NJVEVTPQkke01BU1RF Ul9TSVRFX1NBVkFOTkFIfQorTUFTVEVSX1NJVEVfU1VCRElSPQkke1BPUlROQU1FfQogUEtHTkFN RVNVRkZJWD0JLSR7RU1BQ1NfUE9SVF9OQU1FfQogCiBNQUlOVEFJTkVSPQl5b2ljaGlARnJlZUJT RC5vcmcKLS0tIHByaW50L2F1Y3RleC9NYWtlZmlsZS5vcmlnCVR1ZSBTZXAgMzAgMTY6MTg6MjMg MjAwMworKysgcHJpbnQvYXVjdGV4L01ha2VmaWxlCVR1ZSBTZXAgMzAgMTY6NTI6NDkgMjAwMwpA QCAtOCw5ICs4LDEwIEBACiBQT1JUTkFNRT0JCWF1Y3RleAogUE9SVFZFUlNJT049CQkxMS4xMwog Q0FURUdPUklFUz0JCXByaW50IGVsaXNwCi1NQVNURVJfU0lURVM9CQlodHRwOi8vc2F2YW5uYWgu bm9uZ251Lm9yZy9kb3dubG9hZC9hdWN0ZXgvc3RhYmxlLnBrZy8ke1BPUlRWRVJTSU9OfS8gXAor TUFTVEVSX1NJVEVTPQkJJHtNQVNURVJfU0lURV9TQVZBTk5BSH0gXAogCQkJaHR0cDovL3d1YXJj aGl2ZS53dXN0bC5lZHUvbWlycm9ycy9nbnUvYXVjdGV4LyBcCiAJCQlodHRwOi8vbWlycm9yLnRl bGVudGVudGUuY29tL3B1Yi9nbnUvYXVjdGV4LworTUFTVEVSX1NJVEVfU1VCRElSPQkke1BPUlRO QU1FfS9zdGFibGUucGtnLyR7UE9SVFZFUlNJT059CiAKIE1BSU5UQUlORVI9CQlwb3J0c0BGcmVl QlNELm9yZwogQ09NTUVOVD0JSW50ZWdyYXRlZCBlbnZpcm9ubWVudCBmb3Igd3JpdGluZyBMYVRl WCB1c2luZyBHTlUgRW1hY3MKLS0tIHNjaWVuY2UvZ2NoZW1wYWludC9NYWtlZmlsZS5vcmlnCVR1 ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgc2NpZW5jZS9nY2hlbXBhaW50L01ha2VmaWxlCVR1 ZSBTZXAgMzAgMTY6NTM6NDMgMjAwMwpAQCAtNyw3ICs3LDggQEAKIFBPUlROQU1FPQlnY2hlbXBh aW50CiBQT1JUVkVSU0lPTj0JMC4zLjUKIENBVEVHT1JJRVM9CXNjaWVuY2UKLU1BU1RFUl9TSVRF Uz0JaHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93bmxvYWQvZ2NoZW1wYWludC91bnN0YWJs ZS5wa2cvJHtQT1JUVkVSU0lPTn0vCitNQVNURVJfU0lURVM9CSR7TUFTVEVSX1NJVEVfU0FWQU5O QUh9CitNQVNURVJfU0lURV9TVUJESVI9CSR7UE9SVE5BTUV9L3Vuc3RhYmxlLnBrZy8ke1BPUlRW RVJTSU9OfQogCiBNQUlOVEFJTkVSPQlwYXZAb29vay5jegogQ09NTUVOVD0JMkQgY2hlbWljYWwg c3RydWN0dXJlcyBlZGl0b3IgZm9yIEdOT01FIDIKLS0tIHNjaWVuY2UvZ2NoZW11dGlscy9NYWtl ZmlsZS5vcmlnCVR1ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgc2NpZW5jZS9nY2hlbXV0aWxz L01ha2VmaWxlCVR1ZSBTZXAgMzAgMTY6NTQ6MjMgMjAwMwpAQCAtNyw3ICs3LDggQEAKIFBPUlRO QU1FPQlnY2hlbXV0aWxzCiBQT1JUVkVSU0lPTj0JMC4xLjcKIENBVEVHT1JJRVM9CXNjaWVuY2UK LU1BU1RFUl9TSVRFUz0JaHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93bmxvYWQvZ2NoZW11 dGlscy91bnN0YWJsZS5wa2cvJHtQT1JUVkVSU0lPTn0vCitNQVNURVJfU0lURVM9CSR7TUFTVEVS X1NJVEVfU0FWQU5OQUh9CitNQVNURVJfU0lURV9TVUJESVI9CSR7UE9SVE5BTUV9L3Vuc3RhYmxl LnBrZy8ke1BPUlRWRVJTSU9OfQogRElTVE5BTUU9CWdub21lLWNoZW1pc3RyeS11dGlscy0ke1BP UlRWRVJTSU9OfQogCiBNQUlOVEFJTkVSPQlwYXZAb29vay5jegotLS0gc2VjdXJpdHkvcnVieS1v cGVuc3NsL01ha2VmaWxlLm9yaWcJVHVlIFNlcCAzMCAxNjoxODoyMyAyMDAzCisrKyBzZWN1cml0 eS9ydWJ5LW9wZW5zc2wvTWFrZWZpbGUJVHVlIFNlcCAzMCAxNjo1NDo0MSAyMDAzCkBAIC04LDcg KzgsOCBAQAogUE9SVE5BTUU9CW9wZW5zc2wKIFBPUlRWRVJTSU9OPQkwLjIuMC5wMgogQ0FURUdP UklFUz0Jc2VjdXJpdHkgcnVieQotTUFTVEVSX1NJVEVTPQlodHRwOi8vc2F2YW5uYWgubm9uZ251 Lm9yZy9kb3dubG9hZC9ydWJ5cGtpLworTUFTVEVSX1NJVEVTPQkke01BU1RFUl9TSVRFX1NBVkFO TkFIfQorTUFTVEVSX1NJVEVfU1VCRElSPQlydWJ5cGtpCiBQS0dOQU1FUFJFRklYPQkke1JVQllf UEtHTkFNRVBSRUZJWH0KIERJU1ROQU1FPQlvc3NsLSR7UE9SVFZFUlNJT046Uy8ucC8tcHJlL30K IEVYVFJBQ1RfU1VGWD0JLnRnegotLS0gc3lzdXRpbHMvZHVwbGljaXR5L01ha2VmaWxlLm9yaWcJ VHVlIFNlcCAzMCAxNjoxODoyMyAyMDAzCisrKyBzeXN1dGlscy9kdXBsaWNpdHkvTWFrZWZpbGUJ VHVlIFNlcCAzMCAxNjo1NDo1MyAyMDAzCkBAIC04LDcgKzgsOCBAQAogUE9SVE5BTUU9CWR1cGxp Y2l0eQogUE9SVFZFUlNJT049CTAuNC4wCiBDQVRFR09SSUVTPQlzeXN1dGlscwotTUFTVEVSX1NJ VEVTPQlodHRwOi8vc2F2YW5uYWgubm9uZ251Lm9yZy9kb3dubG9hZC9kdXBsaWNpdHkvCitNQVNU RVJfU0lURVM9CSR7TUFTVEVSX1NJVEVfU0FWQU5OQUh9CitNQVNURVJfU0lURV9TVUJESVI9CSR7 UE9SVE5BTUV9CiBESVNUTkFNRT0JJHtQT1JUTkFNRX0tJHtQT1JUVkVSU0lPTn0KIAogTUFJTlRB SU5FUj0JZ2hAZ2hhZXJpbmcuZGUKLS0tIHd3dy9ndXJsY2hlY2tlci9NYWtlZmlsZS5vcmlnCVR1 ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgd3d3L2d1cmxjaGVja2VyL01ha2VmaWxlCVR1ZSBT ZXAgMzAgMTY6NTU6NDAgMjAwMwpAQCAtOCw3ICs4LDggQEAKIFBPUlROQU1FPQlndXJsY2hlY2tl cgogUE9SVFZFUlNJT049CTAuNi4xCiBDQVRFR09SSUVTPQl3d3cgZ25vbWUKLU1BU1RFUl9TSVRF Uz0JaHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93bmxvYWQvZ3VybGNoZWNrZXIvc3RhYmxl LzAuNi8KK01BU1RFUl9TSVRFUz0JJHtNQVNURVJfU0lURV9TQVZBTk5BSH0KK01BU1RFUl9TSVRF X1NVQkRJUj0JJHtQT1JUTkFNRX0vc3RhYmxlLzAuNgogCiBNQUlOVEFJTkVSPQllaW5la29haUBj aGVsbG8ubmwKIENPTU1FTlQ9CUEgR25vbWUgcHJvZ3JhbSB0byBjaGVjayBhIHBhZ2Uvd2Vic2l0 ZSBmb3IgYnJva2VuIGxpbmtzCi0tLSB4MTEtdG9vbGtpdHMvZ3VpbGUtZ29iamVjdC9NYWtlZmls ZS5vcmlnCVR1ZSBTZXAgMzAgMTY6MTg6MjMgMjAwMworKysgeDExLXRvb2xraXRzL2d1aWxlLWdv YmplY3QvTWFrZWZpbGUJVHVlIFNlcCAzMCAxNjo1NTo1MyAyMDAzCkBAIC05LDcgKzksOCBAQAog UE9SVFZFUlNJT049CTAuNC4wCiBQT1JUUkVWSVNJT049CTEKIENBVEVHT1JJRVM9CXgxMS10b29s a2l0cyBzY2hlbWUKLU1BU1RFUl9TSVRFUz0JaHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93 bmxvYWQvZ3VpbGUtZ3RrLworTUFTVEVSX1NJVEVTPQkke01BU1RFUl9TSVRFX1NBVkFOTkFIfQor TUFTVEVSX1NJVEVfU1VCRElSPQlndWlsZS1ndGsKIAogTUFJTlRBSU5FUj0JZ25vbWVARnJlZUJT RC5vcmcKIENPTU1FTlQ9CUd1aWxlIGJpbmRpbmdzIGZvciBjb3JlIEdOT01FIDIgbGlicmFyaWVz Ci0tLSB4MTEtdG9vbGtpdHMvZ3VpbGUtZ3RrL01ha2VmaWxlLm9yaWcJVHVlIFNlcCAzMCAxNjox ODoyMyAyMDAzCisrKyB4MTEtdG9vbGtpdHMvZ3VpbGUtZ3RrL01ha2VmaWxlCVR1ZSBTZXAgMzAg MTY6NTY6MDUgMjAwMwpAQCAtOCw3ICs4LDggQEAKIFBPUlROQU1FPQlndWlsZS1ndGsKIFBPUlRW RVJTSU9OPQkwLjMxCiBDQVRFR09SSUVTPQl4MTEtdG9vbGtpdHMgc2NoZW1lCi1NQVNURVJfU0lU RVM9CWh0dHA6Ly9zYXZhbm5haC5ub25nbnUub3JnL2Rvd25sb2FkL2d1aWxlLWd0ay8KK01BU1RF Ul9TSVRFUz0JJHtNQVNURVJfU0lURV9TQVZBTk5BSH0KK01BU1RFUl9TSVRFX1NVQkRJUj0JJHtQ T1JUTkFNRX0KIERJU1ROQU1FPQkke1BPUlROQU1FfS0xLjItJHtQT1JUVkVSU0lPTn0KIAogTUFJ TlRBSU5FUj0JZ25vbWVARnJlZUJTRC5vcmcKLS0tIHgxMS10b29sa2l0cy9wYXJhZ3VpL01ha2Vm aWxlLm9yaWcJVHVlIFNlcCAzMCAxNjoxODoyMyAyMDAzCisrKyB4MTEtdG9vbGtpdHMvcGFyYWd1 aS9NYWtlZmlsZQlUdWUgU2VwIDMwIDE2OjU2OjQ0IDIwMDMKQEAgLTEwLDcgKzEwLDggQEAKIFBP UlRWRVJTSU9OPQkxLjAuNAogUE9SVFJFVklTSU9OPQkwCiBDQVRFR09SSUVTPQl4MTEtdG9vbGtp dHMKLU1BU1RFUl9TSVRFUz0JaHR0cDovL3NhdmFubmFoLm5vbmdudS5vcmcvZG93bmxvYWQvcGFy YWd1aS9zdGFibGUucGtnLyR7UE9SVFZFUlNJT059LworTUFTVEVSX1NJVEVTPQkke01BU1RFUl9T SVRFX1NBVkFOTkFIfQorTUFTVEVSX1NJVEVfU1VCRElSPQkke1BPUlROQU1FfS9zdGFibGUucGtn LyR7UE9SVFZFUlNJT059CiAKIE1BSU5UQUlORVI9CXBvcnRzQEZyZWVCU0Qub3JnCiBDT01NRU5U PQlDcm9zcy1wbGF0Zm9ybSBoaWdoLWxldmVsIGFwcGxpY2F0aW9uIGZyYW1ld29yayBhbmQgR1VJ IGxpYnJhcnkKLS0tIHgxMS10b29sa2l0cy94Zm9ybXMvTWFrZWZpbGUub3JpZwlUdWUgU2VwIDMw IDE2OjE4OjIzIDIwMDMKKysrIHgxMS10b29sa2l0cy94Zm9ybXMvTWFrZWZpbGUJVHVlIFNlcCAz MCAxNzowMjoyOCAyMDAzCkBAIC0xMCw5ICsxMCwxMCBAQAogUE9SVFJFVklTSU9OPQkzCiBQT1JU RVBPQ0g9CTEKIENBVEVHT1JJRVM9CXgxMS10b29sa2l0cyBncmFwaGljcwotTUFTVEVSX1NJVEVT PQlodHRwOi8vc2F2YW5uYWgubm9uZ251Lm9yZy9kb3dubG9hZC94Zm9ybXMvc3RhYmxlLnBrZy8x LjAvIFwKK01BU1RFUl9TSVRFUz0JJHtNQVNURVJfU0lURV9TQVZBTk5BSH0gXAogCQkke01BU1RF Ul9TSVRFX0xPQ0FMfQotTUFTVEVSX1NJREVfU1VCRElSPQltaWtlaAorTUFTVEVSX1NJVEVfU1VC RElSPQkke1BPUlROQU1FfS9zdGFibGUucGtnLyR7UE9SVFZFUlNJT059IFwKKwkJCW1pa2VoCiBV U0VfUkVJTlBMQUNFPQl5ZXMKIFJFSU5QTEFDRV9BUkdTPQktaSAiIgogCg== --Multipart=_Tue__30_Sep_2003_17_26_29_+0200_KpnPonEe2yktfvTF-- --Signature=_Tue__30_Sep_2003_17_26_29_+0200_HVd=+q0VF2W/LrkY Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE/eaC2yzD7UaO4AGoRApnSAJ0TjZ3ldMtygE2scoVDakVQ6argGwCeL9IZ aJ2aT26R11o01F2VjJZdgRI= =BV/2 -----END PGP SIGNATURE----- --Signature=_Tue__30_Sep_2003_17_26_29_+0200_HVd=+q0VF2W/LrkY-- From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 09:00: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 82A5316A514 for ; Tue, 30 Sep 2003 09:00:31 -0700 (PDT) Received: from www.safe-mail.net (tapuz.safe-mail.net [212.68.149.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA2CE43FBD for ; Tue, 30 Sep 2003 09:00:28 -0700 (PDT) (envelope-from drvince@SAFe-mail.net) Received: from drvince@SAFe-mail.net by www.safe-mail.net with SAFe-mail (Exim 4.20) id 1A4MvI-00035G-Vp for freebsd-ports@freebsd.org; Tue, 30 Sep 2003 19:00:24 +0300 Received: from pc ([216.239.88.168]) by mail.SAFe-mail.net Date: Tue, 30 Sep 2003 12:00:24 -0400 From: drvince@SAFe-mail.net To: freebsd-ports@freebsd.org X-SMType: Regular X-SMRef: N1-aFophz_X Message-Id: MIME-Version: 1.0 Content-Type: text/plain Content-Transfer-Encoding: 7bit Subject: linux_nwndata and linux_nwnclient ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: drvince@users.sourceforge.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Sep 2003 16:00:31 -0000 Hi, I've been trying to make the linux_nwndata and linux_nwnclient ports work with very little success. First, the linux_nwndata port doesn't recognise the distfile. I had to change ${DISTNAME}${EXTRACT_SUFX} and ${DISTNAME}.tar.gz to ${DISTFILES} then it worked. Then, with much mingling, I got to this point: /compat/linux/usr/games/nwn> ./nwn Error Some infos: /compat/linux/usr/games/nwn> ldd nwmain nwmain: libm.so.6 => /lib/libm.so.6 (0x285db000) libpthread.so.0 => /lib/libpthread.so.0 (0x285fd000) libGL.so.1 => /compat/linux/usr/X11R6/lib/libGL.so.1 (0x28614000) libGLU.so.1 => /compat/linux/usr/X11R6/lib/libGLU.so.1 (0x28680000) libmss.so.6 => not found libSDL-1.2.so.0 => /usr/lib/libSDL-1.2.so.0 (0x286fe000) libc.so.6 => /lib/libc.so.6 (0x2876f000) libXext.so.6 => /compat/linux/usr/X11R6/lib/libXext.so.6 (0x288a5000) libX11.so.6 => /compat/linux/usr/X11R6/lib/libX11.so.6 (0x288b3000) libdl.so.2 => /lib/libdl.so.2 (0x28993000) libstdc++-libc6.1-2.so.3 => /usr/lib/libstdc++-libc6.1-2.so.3 (0x28997000) /lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x285c2000) /compat/linux/usr/games/nwn> uname -a FreeBSD Devon.ath.cx 5.1-CURRENT FreeBSD 5.1-CURRENT #1: Sun Sep 21 03:50:49 EDT 2003 root@Devon.ath.cx:/usr/obj/usr/src/sys/vincey i386 /var/db/pkg/linux_base-7.1_5/ /var/db/pkg/linux_dri-4.3.0_1/ /var/db/pkg/linux-sdl-1.2.2.1/ /compat/linux/usr/games/nwn> fixinstall Checking for required files [...] You are ready to run Neverwinter Nights. Thanks for any insights, DrVince From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 09:02:40 2003 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81ABF16A4BF; Tue, 30 Sep 2003 09:02:40 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 076AA43FEC; Tue, 30 Sep 2003 09:02:39 -0700 (PDT) (envelope-from ache@FreeBSD.org) Received: from freefall.freebsd.org (ache@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h8UG2cFY022673; Tue, 30 Sep 2003 09:02:38 -0700 (PDT) (envelope-from ache@freefall.freebsd.org) Received: (from ache@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h8UG2caa022669; Tue, 30 Sep 2003 09:02:38 -0700 (PDT) (envelope-from ache) Date: Tue, 30 Sep 2003 09:02:38 -0700 (PDT) From: "Andrey A. Chernov" Message-Id: <200309301602.h8UG2caa022669@freefall.freebsd.org> To: ache@FreeBSD.org, ache@FreeBSD.org, freebsd-ports@FreeBSD.org Subject: Re: ports/57319: archivers/lha has a newer version X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 16:02:40 -0000 Synopsis: archivers/lha has a newer version Responsible-Changed-From-To: ache->freebsd-ports Responsible-Changed-By: ache Responsible-Changed-When: Tue Sep 30 09:02:06 PDT 2003 Responsible-Changed-Why: I not maintain this port anymore http://www.freebsd.org/cgi/query-pr.cgi?pr=57319 From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 09:26: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 660B216A4B3 for ; Tue, 30 Sep 2003 09:26:24 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96F3443FFD for ; Tue, 30 Sep 2003 09:26:23 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8UGQMGZ076753 for ; Tue, 30 Sep 2003 12:26:22 -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 h8UGQMGG076521 for ports@FreeBSD.org; Tue, 30 Sep 2003 12:26:22 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 12:26:22 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301626.h8UGQMGG076521@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, 30 Sep 2003 16:26:24 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 30 09:28: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 27DB516A4BF for ; Tue, 30 Sep 2003 09:28:08 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC60C43FFD for ; Tue, 30 Sep 2003 09:28:06 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8UGS6GZ085069 for ; Tue, 30 Sep 2003 12:28:06 -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 h8UGQqoA072749 for ports@FreeBSD.org; Tue, 30 Sep 2003 12:26:52 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 12:26:52 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301626.h8UGQqoA072749@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, 30 Sep 2003 16:28:08 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 10:27: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 59F1916A4B3 for ; Tue, 30 Sep 2003 10:27:09 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 813F543FF9 for ; Tue, 30 Sep 2003 10:27:08 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8UHR7GZ027750 for ; Tue, 30 Sep 2003 13:27:07 -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 h8UHR7BU003500 for ports@FreeBSD.org; Tue, 30 Sep 2003 13:27:07 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 13:27:07 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301727.h8UHR7BU003500@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, 30 Sep 2003 17:27:09 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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/cue2toc/Makefile U audio/cue2toc/distinfo U audio/cue2toc/pkg-descr U audio/cue2toc/pkg-plist ? devel/glade2/make.core ? devel/gnomedebug/make.core ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U graphics/Makefile ? graphics/gphoto2/make.core ? graphics/pstoedit/make.core U graphics/xd3d/Makefile U graphics/xd3d/distinfo U graphics/xd3d/pkg-descr U graphics/xd3d/pkg-plist U graphics/xd3d/files/RULES.FreeBSD ? misc/flyway/make.core ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core U net/ipfm/pkg-plist ? net/powerdns/Makefile.inc ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core U sysutils/Makefile U sysutils/pkg_cutleaves/Makefile U sysutils/pkg_cutleaves/pkg-descr U sysutils/pkg_cutleaves/pkg-plist U sysutils/pkg_cutleaves/src/pkg_cutleaves U sysutils/pkg_cutleaves/src/pkg_cutleaves.1 U sysutils/webmin/Makefile U sysutils/webmin/distinfo ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 10:28: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 BC4FC16A4B3 for ; Tue, 30 Sep 2003 10:28:53 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECB9344005 for ; Tue, 30 Sep 2003 10:28:52 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8UHSqGZ028699 for ; Tue, 30 Sep 2003 13:28:52 -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 h8UHRchC099603 for ports@FreeBSD.org; Tue, 30 Sep 2003 13:27:38 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 13:27:38 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301727.h8UHRchC099603@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, 30 Sep 2003 17:28:54 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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/cue2toc/Makefile U audio/cue2toc/distinfo U audio/cue2toc/pkg-descr U audio/cue2toc/pkg-plist ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U graphics/Makefile U graphics/xd3d/Makefile U graphics/xd3d/distinfo U graphics/xd3d/pkg-descr U graphics/xd3d/pkg-plist U graphics/xd3d/files/RULES.FreeBSD ? mail/log ? net/bind9-dlz/Makefile.inc U net/ipfm/pkg-plist ? net/powerdns/Makefile.inc U sysutils/Makefile U sysutils/pkg_cutleaves/Makefile U sysutils/pkg_cutleaves/pkg-descr U sysutils/pkg_cutleaves/pkg-plist U sysutils/pkg_cutleaves/src/pkg_cutleaves U sysutils/pkg_cutleaves/src/pkg_cutleaves.1 U sysutils/webmin/Makefile U sysutils/webmin/distinfo ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 10:46:15 2003 Return-Path: Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0140816A4B3; Tue, 30 Sep 2003 10:46:15 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70C7A43FF2; Tue, 30 Sep 2003 10:46:14 -0700 (PDT) (envelope-from nork@FreeBSD.org) Received: from freefall.freebsd.org (nork@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h8UHkEFY033857; Tue, 30 Sep 2003 10:46:14 -0700 (PDT) (envelope-from nork@freefall.freebsd.org) Received: (from nork@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h8UHkE7V033853; Tue, 30 Sep 2003 10:46:14 -0700 (PDT) (envelope-from nork) Date: Tue, 30 Sep 2003 10:46:14 -0700 (PDT) From: Norikatsu Shigemura Message-Id: <200309301746.h8UHkE7V033853@freefall.freebsd.org> To: nork@FreeBSD.org, freebsd-ports@FreeBSD.org, nork@FreeBSD.org Subject: Re: ports/57319: archivers/lha has a newer version X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 17:46:15 -0000 Synopsis: archivers/lha has a newer version Responsible-Changed-From-To: freebsd-ports->nork Responsible-Changed-By: nork Responsible-Changed-When: Tue Sep 30 10:46:02 PDT 2003 Responsible-Changed-Why: I'll handle this. http://www.freebsd.org/cgi/query-pr.cgi?pr=57319 From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 10:57: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 A35C416A4DA; Tue, 30 Sep 2003 10:57:13 -0700 (PDT) Received: from holly.xtaz.co.uk (82-32-29-13.cable.ubr04.azte.blueyonder.co.uk [82.32.29.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 728EA43F93; Tue, 30 Sep 2003 10:57:12 -0700 (PDT) (envelope-from matt@xtaz.co.uk) Received: from xtaz.co.uk (heather [10.0.0.2]) by holly.xtaz.co.uk (Postfix) with ESMTP id E86478FC68; Tue, 30 Sep 2003 18:57:08 +0100 (BST) Message-ID: <3F79C3F4.2010609@xtaz.co.uk> Date: Tue, 30 Sep 2003 18:57:08 +0100 From: Matt User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030928 X-Accept-Language: en-us, en MIME-Version: 1.0 To: marcus@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: About that Freetype2 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: Tue, 30 Sep 2003 17:57:13 -0000 Various people said: > > Everything here looks beautiful. You're free to test your assumptions > above. If the byte-code interpreter helps, I can always add that back > in as an option. > > > i had the a problem with blur font display after upgrading > to the latest version. adding back bytecode solves it. > > here some screenshots with and without bytcode enabled: > > http://webonaut.com/temp/bytecode/ > > franz. Apologies for writing a new email and not including the old message ID etc but I'm reading this news group via the web archive and not actual email. I would just like to say that I have also got the blurred fonts and so it is a general problem. I uncommented the #define for the bytecode and recompiled and then my fonts are back to normal. So unless it is a bug I think we need an option in the port to use this. Matt. From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 11:27: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 1A72A16A4B3 for ; Tue, 30 Sep 2003 11:27: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 3868D43FAF for ; Tue, 30 Sep 2003 11:27:45 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8UIRiGZ097084 for ; Tue, 30 Sep 2003 14:27: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 h8UIRixv030359 for ports@FreeBSD.org; Tue, 30 Sep 2003 14:27:44 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 14:27:44 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301827.h8UIRixv030359@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, 30 Sep 2003 18:27:46 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 30 11:29: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 B4C5C16A4B3 for ; Tue, 30 Sep 2003 11:29:32 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id AACAA43FBD for ; Tue, 30 Sep 2003 11:29:29 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8UITTGZ097087 for ; Tue, 30 Sep 2003 14:29:29 -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 h8UISE5A026578 for ports@FreeBSD.org; Tue, 30 Sep 2003 14:28:14 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 14:28:14 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301828.h8UISE5A026578@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, 30 Sep 2003 18:29:32 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 12:21: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 90C3D16A4B3 for ; Tue, 30 Sep 2003 12:21:15 -0700 (PDT) Received: from smtpout.mac.com (A17-250-248-89.apple.com [17.250.248.89]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7A1D43F85 for ; Tue, 30 Sep 2003 12:21:14 -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 h8UJLE9D029031; Tue, 30 Sep 2003 12:21:14 -0700 (PDT) Received: from mac.com (dpvc-68-161-244-25.ny325.east.verizon.net [68.161.244.25]) (authenticated bits=0)h8UJLCA1022029; Tue, 30 Sep 2003 12:21:13 -0700 (PDT) Date: Tue, 30 Sep 2003 15:21:12 -0400 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) To: ports@freebsd.org From: Charles Swiger In-Reply-To: <1064894027.45333.10.camel@shumai.marcuscom.com> Message-Id: <40C5B5F6-F37B-11D7-A7E8-003065ABFD92@mac.com> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.552) 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, 30 Sep 2003 19:21:15 -0000 On Monday, September 29, 2003, at 11:53 PM, Joe Marcus Clarke wrote: >>> Did someone add a port called 'clean' or something? >> >> *looking suspiciously at edwin* > > Good look :-). > > [ 16:23 edwin ] Original commit > clean 3.2 sysutils > New port: sysutils/clean; automatically remove unwanted files > > New port: clean searches through the filesystem for > "temporary > files" left behind by editors and the like which can be > deleted. The pattern of regular expressions is > controllable > via a ~/.cleanrc. > > PR: ports/52881 > Submitted by: Chuck Swiger /usr/ports/devel/patch doesn't seem to conflict with the existence of a "make patch" target; I don't believe that the ports system should forbid a port named "clean", or "install", if /usr/bin/install was a port rather than part of the base system. Regardless of my opinion, however, I do apologize for any inconvenience that may have resulted. At the time I submitted the port, I asked about the name on this list and received no feedback or objections since June. Should the port be renamed? -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 12:22: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 1A37016A4BF for ; Tue, 30 Sep 2003 12:22: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 865C044015 for ; Tue, 30 Sep 2003 12:22:48 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8UJMmGZ097207 for ; Tue, 30 Sep 2003 15:22:48 -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 h8UJMmj9057229 for ports@FreeBSD.org; Tue, 30 Sep 2003 15:22:48 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 15:22:48 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301922.h8UJMmj9057229@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, 30 Sep 2003 19:22:50 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core U chinese/ttfm/Makefile U chinese/ttfm/distinfo U chinese/ttfm/pkg-plist ? devel/glade2/make.core ? devel/gnomedebug/make.core U devel/p5-Set-Infinite/Makefile U devel/p5-Set-Infinite/distinfo ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U emulators/linux_base/Makefile U emulators/linux_base/distinfo.alpha U emulators/linux_base/distinfo.i386 U emulators/linux_base/pkg-plist.alpha U emulators/linux_base/pkg-plist.i386 ? graphics/gphoto2/make.core ? graphics/pstoedit/make.core U misc/Makefile ? misc/flyway/make.core U misc/libhome/Makefile U misc/libhome/distinfo U misc/libhome/pkg-descr U misc/libhome/pkg-plist U multimedia/gstreamer-plugins/files/patch-ffmpeg::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 security/openssl/Makefile U security/openssl/distinfo U security/openssl/files/patch-doc-crypto-EVP_BytesToKey.pod U security/openssl/files/patch-doc-crypto-EVP_DigestInit.pod U security/openssl/files/patch-doc-crypto-des_modes.pod U security/openssl/files/patch-doc-crypto-ui.pod U security/openssl-beta/Makefile U security/openssl-beta/distinfo U security/openssl-beta/files/patch-doc-crypto-EVP_BytesToKey.pod U security/openssl-beta/files/patch-doc-crypto-EVP_DigestInit.pod U security/openssl-beta/files/patch-doc-crypto-des_modes.pod U security/openssl-beta/files/patch-doc-crypto-ui.pod U sysutils/cdrtools-devel/Makefile U sysutils/cdrtools-devel/distinfo U sysutils/cdrtools-devel/pkg-plist U sysutils/cdrtools-devel/files/patch-cdrecord::cdrecord.1 U sysutils/cdrtools-devel/files/patch-conf::configure U sysutils/cdrtools-devel/files/patch-mkisofs::mkisofs.8 U sysutils/cdrtools-devel/files/patch-readcd::readcd.1 U sysutils/cdrtools-devel/files/patch-scgcheck::scgcheck.1 U textproc/wv2/Makefile U textproc/wv2/pkg-plist U textproc/wv2/files/patch-configure ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 12:25: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 028DF16A4BF for ; Tue, 30 Sep 2003 12:25: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 38FA843F93 for ; Tue, 30 Sep 2003 12:25:49 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8UJPmGZ097216 for ; Tue, 30 Sep 2003 15:25: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 h8UJOXiN053445 for ports@FreeBSD.org; Tue, 30 Sep 2003 15:24:33 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 15:24:33 -0400 (EDT) From: Kris Kennaway Message-Id: <200309301924.h8UJOXiN053445@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, 30 Sep 2003 19:25:50 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x U chinese/ttfm/Makefile U chinese/ttfm/distinfo U chinese/ttfm/pkg-plist U devel/p5-Set-Infinite/Makefile U devel/p5-Set-Infinite/distinfo ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U emulators/linux_base/Makefile U emulators/linux_base/distinfo.alpha U emulators/linux_base/distinfo.i386 U emulators/linux_base/pkg-plist.alpha U emulators/linux_base/pkg-plist.i386 ? mail/log U misc/Makefile U misc/libhome/Makefile U misc/libhome/distinfo U misc/libhome/pkg-descr U misc/libhome/pkg-plist U multimedia/gstreamer-plugins/files/patch-ffmpeg::configure ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U security/openssl/Makefile U security/openssl/distinfo U security/openssl/files/patch-doc-crypto-EVP_BytesToKey.pod U security/openssl/files/patch-doc-crypto-EVP_DigestInit.pod U security/openssl/files/patch-doc-crypto-des_modes.pod U security/openssl/files/patch-doc-crypto-ui.pod U security/openssl-beta/Makefile U security/openssl-beta/distinfo U security/openssl-beta/files/patch-doc-crypto-EVP_BytesToKey.pod U security/openssl-beta/files/patch-doc-crypto-EVP_DigestInit.pod U security/openssl-beta/files/patch-doc-crypto-des_modes.pod U security/openssl-beta/files/patch-doc-crypto-ui.pod U sysutils/cdrtools-devel/Makefile U sysutils/cdrtools-devel/distinfo U sysutils/cdrtools-devel/pkg-plist U sysutils/cdrtools-devel/files/patch-cdrecord::cdrecord.1 U sysutils/cdrtools-devel/files/patch-conf::configure U sysutils/cdrtools-devel/files/patch-mkisofs::mkisofs.8 U sysutils/cdrtools-devel/files/patch-readcd::readcd.1 U sysutils/cdrtools-devel/files/patch-scgcheck::scgcheck.1 U textproc/wv2/Makefile U textproc/wv2/pkg-plist U textproc/wv2/files/patch-configure ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 12:29: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 E91A816A4B3 for ; Tue, 30 Sep 2003 12:29:46 -0700 (PDT) Received: from TheWorld.com (pcls1.std.com [192.74.137.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 000BC43FCB for ; Tue, 30 Sep 2003 12:29:42 -0700 (PDT) (envelope-from kwc@shell.TheWorld.com) Received: from shell.TheWorld.com (root@shell01.theworld.com [192.74.137.71]) by TheWorld.com (8.12.8p1/8.12.8) with ESMTP id h8UJTZi4009841; Tue, 30 Sep 2003 15:29:35 -0400 Received: (from kwc@localhost) by shell.TheWorld.com (8.9.3/8.9.3) id PAA522670; Tue, 30 Sep 2003 15:29:31 -0400 (EDT) Date: Tue, 30 Sep 2003 15:29:31 -0400 (EDT) From: Kenneth W Cochran Message-Id: <200309301929.PAA522670@shell.TheWorld.com> To: freebsd-ports@freebsd.org Subject: cvsup - refuse not honoring selections X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 19:29:47 -0000 Hello -ports: I have in my refuse file ports/hungarian and ports/polish, but I still get those directories when I cvsup. Any idea what is (not?) happening or what might be wrong? Thanks, -kc From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 12:45:38 2003 Return-Path: Delivered-To: freebsd-ports@www.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5B9516A4B3 for ; Tue, 30 Sep 2003 12:45:38 -0700 (PDT) Received: from hsys.msk.ru (cave-fxp0.tnc.ru [81.211.38.202]) by mx1.FreeBSD.org (Postfix) with SMTP id 03E9E43FBD for ; Tue, 30 Sep 2003 12:45:37 -0700 (PDT) (envelope-from alexm@hsys.msk.ru) Received: (qmail 3368 invoked by uid 1000); 30 Sep 2003 19:45:35 -0000 To: freebsd-ports@lists.freebsd.org From: Alexey Mahotkin Date: Tue, 30 Sep 2003 23:45:35 +0400 Message-ID: <87k77qukkg.fsf@192.168.10.23> Lines: 19 User-Agent: Gnus/5.090006 (Oort Gnus v0.06) XEmacs/21.4 (Common Lisp, i386-debian-linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Port of checkpassword-pam X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 19:45:38 -0000 Hello, I'd be grateful if somebody would do a FreeBSD port of my checkpassword-pam package and put it into main archive. Project homepage is at http://checkpasswd-pam.sourceforge.net/. I've just released 0.98 version and it seems to be rather stable. This package is of interest mostly to users running qmail, however there are some other packages interoperating with it. Feel free to contact me if you need any advice. I am not subscribed to freebsd-ports, so please keep me in Cc: list. Thank you, --alexm From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 12:55: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 A312F16A4B3 for ; Tue, 30 Sep 2003 12:55:25 -0700 (PDT) Received: from be-well.ilk.org (lowellg.ne.client2.attbi.com [66.30.200.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8940D43FFD for ; Tue, 30 Sep 2003 12:55:22 -0700 (PDT) (envelope-from freebsd-ports-local@be-well.ilk.org) Received: by be-well.ilk.org (Postfix, from userid 1147) id EB6343AF4; Tue, 30 Sep 2003 15:55:21 -0400 (EDT) Sender: lowell@be-well.ilk.org To: Kenneth W Cochran References: <200309301929.PAA522670@shell.TheWorld.com> From: Lowell Gilbert Date: 30 Sep 2003 15:55:21 -0400 In-Reply-To: <200309301929.PAA522670@shell.TheWorld.com> Message-ID: <441xtyoxue.fsf@be-well.ilk.org> Lines: 12 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" cc: freebsd-ports@freebsd.org Subject: Re: cvsup - refuse not honoring selections X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 19:55:25 -0000 --=-=-= Kenneth W Cochran writes: > I have in my refuse file ports/hungarian and ports/polish, but > I still get those directories when I cvsup. > Any idea what is (not?) happening or what might be wrong? Hard to say. You're probably putting the supfile in the wrong place, which is /usr/sup/ports-all/refuse, for my supfile (with base=/usr and ports-all for the collection): --=-=-= Content-Type: application/octet-stream Content-Disposition: attachment; filename=my-ports-supfile Content-Description: ports supfile # $FreeBSD: src/share/examples/cvsup/stable-supfile,v 1.19.2.6 2002/08/06 08:24:46 blackend Exp $ # # This file contains all of the "CVSup collections" that make up the # FreeBSD-stable source tree. # # CVSup (CVS Update Protocol) allows you to download the latest CVS # tree (or any branch of development therefrom) to your system easily # and efficiently (far more so than with sup, which CVSup is aimed # at replacing). If you're running CVSup interactively, and are # currently using an X display server, you should run CVSup as follows # to keep your CVS tree up-to-date: # # cvsup stable-supfile # # If not running X, or invoking cvsup from a non-interactive script, then # run it as follows: # # cvsup -g -L 2 stable-supfile # # You may wish to change some of the settings in this file to better # suit your system: # # host=CHANGE_THIS.FreeBSD.org # This specifies the server host which will supply the # file updates. You must change it to one of the CVSup # mirror sites listed in the FreeBSD Handbook at # http://www.freebsd.org/doc/handbook/mirrors.html. # You can override this setting on the command line # with cvsup's "-h host" option. # # base=/usr # This specifies the root where CVSup will store information # about the collections you have transferred to your system. # A setting of "/usr" will generate this information in # /usr/sup. Even if you are CVSupping a large number of # collections, you will be hard pressed to generate more than # ~1MB of data in this directory. You can override the # "base" setting on the command line with cvsup's "-b base" # option. This directory must exist in order to run CVSup. # # prefix=/usr # This specifies where to place the requested files. A # setting of "/usr" will place all of the files requested # in "/usr/src" (e.g., "/usr/src/bin", "/usr/src/lib"). # The prefix directory must exist in order to run CVSup. # ############################################################################### # # DANGER! WARNING! LOOK OUT! VORSICHT! # # If you add any of the ports or doc collections to this file, be sure to # specify them with a "tag" value set to ".", like this: # # ports-all tag=. # doc-all tag=. # # If you leave out the "tag=." portion, CVSup will delete all of # the files in your ports or doc tree. That is because the ports and doc # collections do not use the same tags as the main part of the FreeBSD # source tree. # ############################################################################### # Defaults that apply to all the collections # # IMPORTANT: Change the next line to use one of the CVSup mirror sites # listed at http://www.freebsd.org/doc/handbook/mirrors.html. *default host=cvsup3.FreeBSD.org *default base=/usr *default prefix=/usr # The following line is for 4-stable. If you want 3-stable or 2.2-stable, # change "RELENG_4" to "RELENG_3" or "RELENG_2_2" respectively. *default release=cvs tag=RELENG_4 *default delete use-rel-suffix # If your network link is a T1 or faster, comment out the following line. *default compress ports-all tag=. # These are the individual collections that make up "src-all". If you # use these, be sure to comment out "src-all" above. #src-base #src-bin #src-contrib #src-etc #src-games #src-gnu #src-include #src-kerberos5 #src-kerberosIV #src-lib #src-libexec #src-release #src-sbin #src-share #src-sys #src-tools #src-usrbin #src-usrsbin # These are the individual collections that make up FreeBSD's crypto # collection. They are no longer export-restricted and are a part of # src-all #src-crypto #src-eBones #src-secure #src-sys-crypto --=-=-=-- From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 13:02:15 2003 Return-Path: Delivered-To: freebsd-ports@www.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A25216A4B3 for ; Tue, 30 Sep 2003 13:02:15 -0700 (PDT) Received: from cultdeadsheep.org (charon.cultdeadsheep.org [80.65.226.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAC9D4400E for ; Tue, 30 Sep 2003 13:02:11 -0700 (PDT) (envelope-from sheepkiller@cultdeadsheep.org) Received: (qmail 35246 invoked by uid 85); 30 Sep 2003 22:02:10 +0200 Received: from sheepkiller@cultdeadsheep.org by goofy.cultdeadsheep.org by uid 82 with qmail-scanner-1.20rc2 ( Clear:RC:1:. Processed in 0.038837 secs); 30 Sep 2003 20:02:10 -0000 Received: from lucifer.cultdeadsheep.org (192.168.0.2) by goofy.cultdeadsheep.org with AES256-SHA encrypted SMTP; 30 Sep 2003 22:02:09 +0200 Date: Tue, 30 Sep 2003 22:02:10 +0200 From: Clement Laforet To: Alexey Mahotkin Message-Id: <20030930220210.76c3aa86.sheepkiller@cultdeadsheep.org> In-Reply-To: <87k77qukkg.fsf@192.168.10.23> References: <87k77qukkg.fsf@192.168.10.23> Organization: tH3 cUlt 0f tH3 d3@d sH33p X-Mailer: Sylpheed version 0.9.6 (GTK+ 1.2.10; i386-portbld-freebsd5.1) X-Face: ._cVVRDn#-2((lnfi^P7CoD4htI$4+#G/G)!w|,}H5yK~%(3-C.JlEYbOjJGFwJkt*7N^%z jYeu[;}]}F"3}l5R'l"X0HbvT^D\Q&%deCo)MayY`);TO Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-ports@lists.freebsd.org Subject: Re: Port of checkpassword-pam X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 20:02:15 -0000 On Tue, 30 Sep 2003 23:45:35 +0400 Alexey Mahotkin wrote: > > Hello, > > I'd be grateful if somebody would do a FreeBSD port of my checkpassword-pam > package and put it into main archive. done :-) Do you want to maintain it ? if no, I give it to ports@FreeBSD.org. regards, clem From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 13:07:02 2003 Return-Path: Delivered-To: freebsd-ports@www.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E129F16A4B3 for ; Tue, 30 Sep 2003 13:07:02 -0700 (PDT) Received: from hsys.msk.ru (cave-fxp0.tnc.ru [81.211.38.202]) by mx1.FreeBSD.org (Postfix) with SMTP id 6773544027 for ; Tue, 30 Sep 2003 13:06:59 -0700 (PDT) (envelope-from alexm@hsys.msk.ru) Received: (qmail 3576 invoked by uid 1000); 30 Sep 2003 20:06:58 -0000 X-Comment-To: Clement Laforet To: Clement Laforet References: <87k77qukkg.fsf@192.168.10.23> <20030930220210.76c3aa86.sheepkiller@cultdeadsheep.org> From: Alexey Mahotkin Date: Wed, 01 Oct 2003 00:06:58 +0400 In-Reply-To: <20030930220210.76c3aa86.sheepkiller@cultdeadsheep.org> (Clement Laforet's message of "Tue, 30 Sep 2003 22:02:10 +0200") Message-ID: <873ceeujkt.fsf@192.168.10.23> Lines: 18 User-Agent: Gnus/5.090006 (Oort Gnus v0.06) XEmacs/21.4 (Common Lisp, i386-debian-linux) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-ports@www.freebsd.org Subject: Re: Port of checkpassword-pam X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 20:07:03 -0000 >>>>> "CL" == Clement Laforet writes: >> I'd be grateful if somebody would do a FreeBSD port of my >> checkpassword-pam package and put it into main archive. CL> done :-) Huh? In less than 15 minutes? Where is it now? CL> Do you want to maintain it ? if no, I give it to ports@FreeBSD.org. I do not use FreeBSD, unfortunately :) Thank you! --alexm From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 13:15:51 2003 Return-Path: Delivered-To: freebsd-ports@www.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F66816A4B3 for ; Tue, 30 Sep 2003 13:15:51 -0700 (PDT) Received: from cultdeadsheep.org (charon.cultdeadsheep.org [80.65.226.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E33244022 for ; Tue, 30 Sep 2003 13:15:47 -0700 (PDT) (envelope-from sheepkiller@cultdeadsheep.org) Received: (qmail 36475 invoked by uid 85); 30 Sep 2003 22:15:45 +0200 Received: from sheepkiller@cultdeadsheep.org by goofy.cultdeadsheep.org by uid 82 with qmail-scanner-1.20rc2 ( Clear:RC:1:. Processed in 0.040535 secs); 30 Sep 2003 20:15:45 -0000 Received: from lucifer.cultdeadsheep.org (192.168.0.2) by goofy.cultdeadsheep.org with AES256-SHA encrypted SMTP; 30 Sep 2003 22:15:45 +0200 Date: Tue, 30 Sep 2003 22:15:45 +0200 From: Clement Laforet To: Alexey Mahotkin Message-Id: <20030930221545.489c8e91.sheepkiller@cultdeadsheep.org> In-Reply-To: <873ceeujkt.fsf@192.168.10.23> References: <87k77qukkg.fsf@192.168.10.23> <20030930220210.76c3aa86.sheepkiller@cultdeadsheep.org> <873ceeujkt.fsf@192.168.10.23> Organization: tH3 cUlt 0f tH3 d3@d sH33p X-Mailer: Sylpheed version 0.9.6 (GTK+ 1.2.10; i386-portbld-freebsd5.1) X-Face: ._cVVRDn#-2((lnfi^P7CoD4htI$4+#G/G)!w|,}H5yK~%(3-C.JlEYbOjJGFwJkt*7N^%z jYeu[;}]}F"3}l5R'l"X0HbvT^D\Q&%deCo)MayY`);TO Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-ports@www.freebsd.org Subject: Re: Port of checkpassword-pam X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 20:15:51 -0000 On Wed, 01 Oct 2003 00:06:58 +0400 Alexey Mahotkin wrote: > Huh? In less than 15 minutes? Where is it now? on my computer waiting for a PR :) [root@goofy|(686)| clem]# du checkpassword-pam.shar 2 checkpassword-pam.shar [root@goofy|(687)| clem]# head checkpassword-pam/Makefile # New ports collection makefile for: checkpassword-pam # Date created: 30 september 2003 # Whom: Clement Laforet # # $FreeBSD$ # PORTNAME= checkpassword-pam PORTVERSION= 0.98 CATEGORIES= security > CL> Do you want to maintain it ? if no, I give it to ports@FreeBSD.org. > > I do not use FreeBSD, unfortunately :) Ok, one more orphaned port ;) I'll send a PR. > Thank you! you're welcome :-) Now you have to wait for a committer ;-) regards, clem PS: please notify me for new release until someone take maintainership of this port. From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 13:17: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 18BD916A4B3 for ; Tue, 30 Sep 2003 13:17:52 -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 9BD1743FDF for ; Tue, 30 Sep 2003 13:17:48 -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 0BCCC66E3D; Tue, 30 Sep 2003 13:17:43 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id F00AAB02; Tue, 30 Sep 2003 13:17:42 -0700 (PDT) Date: Tue, 30 Sep 2003 13:17:42 -0700 From: Kris Kennaway To: Charles Swiger Message-ID: <20030930201742.GB9478@rot13.obsecurity.org> References: <1064894027.45333.10.camel@shumai.marcuscom.com> <40C5B5F6-F37B-11D7-A7E8-003065ABFD92@mac.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1UWUbFP1cBYEclgG" Content-Disposition: inline In-Reply-To: <40C5B5F6-F37B-11D7-A7E8-003065ABFD92@mac.com> 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, 30 Sep 2003 20:17:52 -0000 --1UWUbFP1cBYEclgG Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Sep 30, 2003 at 03:21:12PM -0400, Charles Swiger wrote: > On Monday, September 29, 2003, at 11:53 PM, Joe Marcus Clarke wrote: > >>>Did someone add a port called 'clean' or something? > >> > >>*looking suspiciously at edwin* > > > >Good look :-). > > > >[ 16:23 edwin ] Original commit > >clean 3.2 sysutils > > New port: sysutils/clean; automatically remove unwanted files > > > > New port: clean searches through the filesystem for=20 > >"temporary > > files" left behind by editors and the like which can be > > deleted. The pattern of regular expressions is=20 > >controllable > > via a ~/.cleanrc. > > > > PR: ports/52881 > > Submitted by: Chuck Swiger >=20 > /usr/ports/devel/patch doesn't seem to conflict with the existence of a= =20 > "make patch" target; I don't believe that the ports system should=20 > forbid a port named "clean", or "install", if /usr/bin/install was a=20 > port rather than part of the base system. The reason is that the patch target is not used by bsd.port.subdir.mk, but the others are, and that file also defines targets for each entry in SUBDIR. Both of these features are in use by the ports collection, so neither can simply be removed. > Should the port be renamed? It looks like that's the only way to handle it. Kris --1UWUbFP1cBYEclgG Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/eeTmWry0BWjoQKURAooaAJ929tAOS9araim/naJL4njiL1DgtgCg37Kt MtwgdosCmVM6OZGIeIepoQc= =JYBA -----END PGP SIGNATURE----- --1UWUbFP1cBYEclgG-- From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 13:27: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 892B616A4B3 for ; Tue, 30 Sep 2003 13:27:01 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D8DB43FE3 for ; Tue, 30 Sep 2003 13:27:00 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8UKQxGZ097306 for ; Tue, 30 Sep 2003 16:26:59 -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 h8UKQxgo084105 for ports@FreeBSD.org; Tue, 30 Sep 2003 16:26:59 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 16:26:59 -0400 (EDT) From: Kris Kennaway Message-Id: <200309302026.h8UKQxgo084105@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, 30 Sep 2003 20:27:01 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 30 13:28: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 AE91016A4B3 for ; Tue, 30 Sep 2003 13:28:45 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3F4444014 for ; Tue, 30 Sep 2003 13:28:44 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8UKSiGZ097309 for ; Tue, 30 Sep 2003 16:28: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 h8UKRSKQ080318 for ports@FreeBSD.org; Tue, 30 Sep 2003 16:27:28 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 16:27:28 -0400 (EDT) From: Kris Kennaway Message-Id: <200309302027.h8UKRSKQ080318@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, 30 Sep 2003 20:28:45 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 14:19: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 5DE2916A4B3 for ; Tue, 30 Sep 2003 14:19:30 -0700 (PDT) Received: from mx2.fillmore-labs.com (lima.fillmore-labs.com [62.138.193.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 473CE43FAF for ; Tue, 30 Sep 2003 14:19:29 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from p5080bceb.dip.t-dialin.net ([80.128.188.235] helo=fillmore-labs.com ident=41b4ir576fjz2khs) by mx2.fillmore-labs.com with asmtp (TLSv1:AES256-SHA:256) (Exim 4.24; FreeBSD 4.9) id 1A4Ru2-000GaE-Ua; Tue, 30 Sep 2003 23:19:27 +0200 Message-ID: <3F79F35C.2090600@fillmore-labs.com> Date: Tue, 30 Sep 2003 23:19:24 +0200 From: Oliver Eikemeier MIME-Version: 1.0 To: Kris Kennaway References: <1064894027.45333.10.camel@shumai.marcuscom.com> <40C5B5F6-F37B-11D7-A7E8-003065ABFD92@mac.com> <20030930201742.GB9478@rot13.obsecurity.org> In-Reply-To: <20030930201742.GB9478@rot13.obsecurity.org> 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 cc: Charles Swiger 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, 30 Sep 2003 21:19:30 -0000 Kris Kennaway wrote: > On Tue, Sep 30, 2003 at 03:21:12PM -0400, Charles Swiger wrote: > >>On Monday, September 29, 2003, at 11:53 PM, Joe Marcus Clarke wrote: >> >>>>>Did someone add a port called 'clean' or something? >>>> >>>>*looking suspiciously at edwin* >>> >>>Good look :-). >>> >>>[ 16:23 edwin ] Original commit >>>clean 3.2 sysutils >>> New port: sysutils/clean; automatically remove unwanted files >>> >>> New port: clean searches through the filesystem for >>>"temporary >>> files" left behind by editors and the like which can be >>> deleted. The pattern of regular expressions is >>>controllable >>> via a ~/.cleanrc. >>> >>> PR: ports/52881 >>> Submitted by: Chuck Swiger >> >>/usr/ports/devel/patch doesn't seem to conflict with the existence of a >>"make patch" target; I don't believe that the ports system should >>forbid a port named "clean", or "install", if /usr/bin/install was a >>port rather than part of the base system. > > The reason is that the patch target is not used by bsd.port.subdir.mk, > but the others are, and that file also defines targets for each entry > in SUBDIR. Both of these features are in use by the ports collection, > so neither can simply be removed. > >>Should the port be renamed? > > It looks like that's the only way to handle it. How about something like: --- bsd.port.subdir.mk.patch begins here --- diff -u -r1.49 bsd.port.subdir.mk --- bsd.port.subdir.mk 6 Jul 2003 23:57:41 -0000 1.49 +++ bsd.port.subdir.mk 30 Sep 2003 20:59:38 -0000 @@ -99,7 +99,7 @@ .for __target in ${TARGETS} .if !target(${__target}) .if defined(SUBDIR) && !empty(SUBDIR) -${__target}: ${SUBDIR:S/$/.${__target}/} +${__target}: ${SUBDIR:S/^/_/:S/$/.${__target}/} .else ${__target}: .endif @@ -109,18 +109,18 @@ .if defined(SUBDIR) && !empty(SUBDIR) .for __target in ${TARGETS} checksubdirs readmes -${SUBDIR:S/$/.${__target}/}: _SUBDIRUSE +${SUBDIR:S/^/_/:S/$/.${__target}/}: _SUBDIRUSE .endfor _SUBDIRUSE: .USE - @OK=""; sub=${.TARGET:R}; \ + @OK=""; sub=${.TARGET:S/^_//:R}; \ for dud in $$DUDS; do \ if [ $${dud} = $$sub ]; then \ OK="false"; \ ${ECHO_MSG} "===> ${DIRPRFX}$$sub skipped"; \ fi; \ done; \ - if test -d ${.CURDIR}/${.TARGET:R}.${MACHINE_ARCH}; then \ + if test -d ${.CURDIR}/${sub}.${MACHINE_ARCH}; then \ edir=$${sub}.${MACHINE_ARCH}; \ elif test -d ${.CURDIR}/$${sub}; then \ edir=$${sub}; \ @@ -135,7 +135,7 @@ DIRPRFX=${DIRPRFX}$$edir/; \ fi -.for _subdir in ${SUBDIR} +.for _subdir in ${SUBDIR:S/^/_/} ${_subdir}:: ${_subdir:S/$/.all/} .endfor @@ -150,14 +150,14 @@ .endif install: afterinstall afterinstall: realinstall -realinstall: beforeinstall ${SUBDIR:S/$/.realinstall/} +realinstall: beforeinstall ${SUBDIR:S/^/_/:S/$/.realinstall/} .endif IGNOREDIR= CVS Mk Templates Tools distfiles packages pkg .if !target(checksubdirs) .if defined(PORTSTOP) -checksubdirs: checksubdir ${SUBDIR:S/$/.checksubdirs/} +checksubdirs: checksubdir ${SUBDIR:S/^/_/:S/$/.checksubdirs/} .else checksubdirs: checksubdir .endif @@ -187,7 +187,7 @@ .endif .if !target(readmes) -readmes: readme ${SUBDIR:S/$/.readmes/} +readmes: readme ${SUBDIR:S/^/_/:S/$/.readmes/} .endif .if !target(readme) --- bsd.port.subdir.mk.patch ends here --- It's a quick hack and needs review, but it is a start and build the INDEX: # awk '/^clean-[0-9._,]+\|/ { print }' INDEX clean-3.2|/usr/ports/sysutils/clean|/usr/local|Automatically remove unwanted files|/usr/ports/sysutils/clean/pkg-descr|chuck@pkix.net|sysutils|||http://sourceforge.net/projects/clean From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 14: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 BCAAA16A4B3 for ; Tue, 30 Sep 2003 14:26:15 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 076BA43FFB for ; Tue, 30 Sep 2003 14:26:15 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8ULQEGZ097426 for ; Tue, 30 Sep 2003 17:26:14 -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 h8ULQEgd011145 for ports@FreeBSD.org; Tue, 30 Sep 2003 17:26:14 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 17:26:14 -0400 (EDT) From: Kris Kennaway Message-Id: <200309302126.h8ULQEgd011145@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, 30 Sep 2003 21:26:15 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 U mail/Makefile U mail/lmtpd/Makefile U mail/lmtpd/distinfo U mail/lmtpd/pkg-descr U mail/lmtpd/pkg-plist ? misc/flyway/make.core U multimedia/gstreamer-plugins/Makefile ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core U net/p5-Net-Daemon/Makefile U net/p5-Net-Daemon/distinfo U net/p5-Net-Daemon/pkg-plist ? net/powerdns/Makefile.inc U net/samba-libsmbclient/Makefile U net/samba-libsmbclient/distinfo ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core U security/clamav-devel/Makefile U security/clamav-devel/distinfo U www/mnogosearch/Makefile ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 14:26: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 43CA216A504 for ; Tue, 30 Sep 2003 14:26:52 -0700 (PDT) Received: from mail.dada.it (mail4.dada.it [195.110.100.4]) by mx1.FreeBSD.org (Postfix) with SMTP id C7F904400B for ; Tue, 30 Sep 2003 14:26:47 -0700 (PDT) (envelope-from ale@unixmania.net) Received: (qmail 20912 invoked from network); 30 Sep 2003 21:26:40 -0000 Received: from unknown (HELO libero.sunshine.ale) (195.110.114.252) by mail.dada.it with SMTP; 30 Sep 2003 21:26:40 -0000 Received: by libero.sunshine.ale (Postfix, from userid 1001) id 143695F7D; Tue, 30 Sep 2003 23:26:40 +0200 (CEST) Date: Tue, 30 Sep 2003 23:26:40 +0200 From: Alessandro de Manzano To: lioux@freebsd.org Message-ID: <20030930232640.A6704@libero.sunshine.ale> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline User-Agent: Mutt/1.2.5.1i X-Operating-System: FreeBSD 4.7-STABLE cc: ports@freebsd.org Subject: a little qpopper port's patch X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alessandro de Manzano List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Sep 2003 21:26:53 -0000 --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Hello, I'ld just submit you a tiny patch for QPopper 4.x's port I think would be useful for other sysadmins ;) Feel free to commit it if you think it's valuable :-) Many thanks anyway! -- bye! Ale ale@unixmania.net --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=shypatch --- Makefile Thu May 1 04:01:14 2003 +++ Makefile.ale Tue Sep 30 23:22:25 2003 @@ -90,6 +90,8 @@ @${ECHO_MSG} "WITH_Y_OPTION=yes enables daemon command line option" @${ECHO_MSG} " -y which allows the user to specify a different" @${ECHO_MSG} " logging facility" + @${ECHO_MSG} "WITH_SHY_ENABLED=yes enables shy mode, don't present" + @${ECHO_MSG} " version number in banner" # If WITH_APOP_ONLY variable present in the environment, qpopper builds # with APOP authentication only. @@ -143,6 +145,12 @@ # different logging facility .if defined(WITH_Y_OPTION) EXTRA_PATCHES+= ${FILESDIR}/extra-patch-popper::pop_init.c +.endif + +# If WITH_SHY_ENABLED variable present in the enviornment, qpopper builds +# with shy mode enabled, without presenting its version in the POP3 session +.if defined(WITH_SHY_ENABLED) +CONFIGURE_ARGS+= --enable-shy .endif .if exists(/usr/lib/libssl.a) && exists(/usr/lib/libcrypto.a) --h31gzZEtNLTqOjlF-- From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 14:28: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 1F23E16A4B3 for ; Tue, 30 Sep 2003 14:28:15 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id D72C043FEC for ; Tue, 30 Sep 2003 14:28:13 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8ULSDGZ097429 for ; Tue, 30 Sep 2003 17:28:13 -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 h8ULQvUc007325 for ports@FreeBSD.org; Tue, 30 Sep 2003 17:26:57 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 17:26:57 -0400 (EDT) From: Kris Kennaway Message-Id: <200309302126.h8ULQvUc007325@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, 30 Sep 2003 21:28:15 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 U mail/Makefile ? mail/log U mail/lmtpd/Makefile U mail/lmtpd/distinfo U mail/lmtpd/pkg-descr U mail/lmtpd/pkg-plist U multimedia/gstreamer-plugins/Makefile ? net/bind9-dlz/Makefile.inc U net/p5-Net-Daemon/Makefile U net/p5-Net-Daemon/distinfo U net/p5-Net-Daemon/pkg-plist ? net/powerdns/Makefile.inc U net/samba-libsmbclient/Makefile U net/samba-libsmbclient/distinfo U security/clamav-devel/Makefile U security/clamav-devel/distinfo U www/mnogosearch/Makefile ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 15:26: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 5A77716A4B3 for ; Tue, 30 Sep 2003 15:26:43 -0700 (PDT) Received: from magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with SMTP id 3B5B543FFD for ; Tue, 30 Sep 2003 15:26:41 -0700 (PDT) (envelope-from adamw@magnesium.net) Received: (qmail 34456 invoked by uid 1252); 30 Sep 2003 22:26:40 -0000 Date: 30 Sep 2003 18:26:40 -0400 Date: Tue, 30 Sep 2003 18:26:40 -0400 From: Adam Weinberger To: Kent Stewart Message-ID: <20030930222640.GW47415@toxic.magnesium.net> Mail-Followup-To: Adam Weinberger , Kent Stewart , Edwin Groothuis , Kris Kennaway , ports@freebsd.org References: <200309300122.h8U1MhR0073316@9ball.rtp.freebsd.org> <20030930034540.GA5576@rot13.obsecurity.org> <20030930084638.GL59397@k7.mavetju> <200309300457.47416.kstewart@owt.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200309300457.47416.kstewart@owt.com> 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: 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: Tue, 30 Sep 2003 22:26:43 -0000 >> (09.30.2003 @ 0757 PST): Kent Stewart said, in 1.1K: << > FWIW, for people trying to generate INDEX, if they delete the > "SUBDIR += clean" > in /usr/ports/sysutils/Makefile and then run "make index", they are back > to 9285 ports instead of 7245. >> end of "Re: INDEX build failed" from Kent Stewart << For right now, can clean please be removed from sysutils/Makefile? # 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 Tue Sep 30 15:27: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 3262616A4B3 for ; Tue, 30 Sep 2003 15:27: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 71EC844022 for ; Tue, 30 Sep 2003 15:27:54 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8UMRrGZ097521 for ; Tue, 30 Sep 2003 18:27:53 -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 h8UMRr5D038065 for ports@FreeBSD.org; Tue, 30 Sep 2003 18:27:53 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 18:27:53 -0400 (EDT) From: Kris Kennaway Message-Id: <200309302227.h8UMRr5D038065@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, 30 Sep 2003 22:27:55 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 30 15:29: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 066EA16A4B3 for ; Tue, 30 Sep 2003 15:29: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 03F4343FB1 for ; Tue, 30 Sep 2003 15:29:38 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8UMTbGZ097524 for ; Tue, 30 Sep 2003 18:29:37 -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 h8UMSKUH034211 for ports@FreeBSD.org; Tue, 30 Sep 2003 18:28:20 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 18:28:20 -0400 (EDT) From: Kris Kennaway Message-Id: <200309302228.h8UMSKUH034211@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, 30 Sep 2003 22:29:39 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 15:32: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 87EC916A4B3; Tue, 30 Sep 2003 15:32:56 -0700 (PDT) Received: from pimout2-ext.prodigy.net (pimout2-ext.prodigy.net [207.115.63.101]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C33143FE9; Tue, 30 Sep 2003 15:32:55 -0700 (PDT) (envelope-from metrol@metrol.net) Received: from adsl-67-121-60-9.dsl.anhm01.pacbell.net (adsl-67-121-60-9.dsl.anhm01.pacbell.net [67.121.60.9]) h8UMWoIN145498; Tue, 30 Sep 2003 18:32:51 -0400 From: Michael Collette To: Jeremy Messenger , Joe Marcus Clarke Date: Tue, 30 Sep 2003 15:28:36 -0700 User-Agent: KMail/1.5.4 References: <200309300115.05714.metrol@metrol.net> <1064910135.48606.6.camel@shumai.marcuscom.com> In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200309301528.36177.metrol@metrol.net> cc: FreeBSD Mailing Lists Subject: Re: About that Freetype2 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: Tue, 30 Sep 2003 22:32:56 -0000 On Tuesday 30 September 2003 02:32 pm, Jeremy Messenger wrote: > On Tue, 30 Sep 2003 04:22:15 -0400, Joe Marcus Clarke > wrote: > > > > > Everything here looks beautiful. You're free to test your assumptions > > above. If the byte-code interpreter helps, I can always add that back > > in as an option. > > Here too, everything looks so good now.. It looks much more darker and > curve.. Also, it looks much much better when it is black background with > white font. > > Cheers, > Mezz > > > Joe With that byte-code thingy turned on, my fonts look as they did with the old version of Freetype2, quite nice. It's been a LONG time since I had font complaints about FreeBSD... up until this byte code thing anyway. What in the wide wide world of sports is different about my setup?? Okay, rhetorical question. I just hate having to manually patch stuff up to get things stable here. Later on, -- "In theory, there is no difference between theory and practice. In practice, there is." - Yogi Berra From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 15:41: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 A7F5616A4B3 for ; Tue, 30 Sep 2003 15:41:56 -0700 (PDT) Received: from TheWorld.com (pcls2.std.com [192.74.137.142]) by mx1.FreeBSD.org (Postfix) with ESMTP id 730FF43F3F for ; Tue, 30 Sep 2003 15:41:55 -0700 (PDT) (envelope-from kwc@shell.TheWorld.com) Received: from shell.TheWorld.com (pip1-5.std.com [192.74.137.185]) by TheWorld.com (8.12.8p1/8.12.8) with ESMTP id h8UMfouY018058; Tue, 30 Sep 2003 18:41:50 -0400 Received: (from kwc@localhost) by shell.TheWorld.com (8.9.3/8.9.3) id SAA535783; Tue, 30 Sep 2003 18:41:40 -0400 (EDT) Date: Tue, 30 Sep 2003 18:41:40 -0400 (EDT) From: Kenneth W Cochran Message-Id: <200309302241.SAA535783@shell.TheWorld.com> To: Lowell Gilbert References: <200309301929.PAA522670@shell.TheWorld.com> cc: freebsd-ports@freebsd.org Subject: Re: cvsup - refuse not honoring selections X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 Sep 2003 22:41:56 -0000 >To: Kenneth W Cochran >Cc: freebsd-ports@freebsd.org >Subject: Re: cvsup - refuse not honoring selections >From: Lowell Gilbert >Date: 30 Sep 2003 15:55:21 -0400 > >--=-=-= > >Kenneth W Cochran writes: > >> I have in my refuse file ports/hungarian and ports/polish, but >> I still get those directories when I cvsup. >> Any idea what is (not?) happening or what might be wrong? > >Hard to say. You're probably putting the supfile in the wrong place, >which is /usr/sup/ports-all/refuse, for my supfile (with base=/usr and >ports-all for the collection): Oops, I was in a hurry & should have added some more detail... The refuse file is /usr/sup/refuse (as per cvsup documentation). It happily refuses all kinds of other things, e.g. various bits of doc/, src/release/doc/, and ports/ - most of the non-English docs & ports. Of these, only ports/hungarian and ports/polish don't "obey" the refuse file. Wierd. -kc From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 15:52: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 34A9216A4B3 for ; Tue, 30 Sep 2003 15:52:01 -0700 (PDT) Received: from mag.barnet.com.au (mag.barnet.com.au [218.185.88.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 156F043FD7 for ; Tue, 30 Sep 2003 15:52:00 -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 D473F378A; Wed, 1 Oct 2003 08:51:56 +1000 (EST) X-Viruscan-Id: <3F7A090C00006F560197557A@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 4A1791E1D; Wed, 1 Oct 2003 08:51:54 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id BE5BB6A7101; Wed, 1 Oct 2003 08:51:52 +1000 (EST) Date: Wed, 1 Oct 2003 08:51:52 +1000 From: Edwin Groothuis To: Charles Swiger Message-ID: <20030930225152.GN59349@k7.mavetju> References: <1064894027.45333.10.camel@shumai.marcuscom.com> <40C5B5F6-F37B-11D7-A7E8-003065ABFD92@mac.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <40C5B5F6-F37B-11D7-A7E8-003065ABFD92@mac.com> 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, 30 Sep 2003 22:52:01 -0000 On Tue, Sep 30, 2003 at 03:21:12PM -0400, Charles Swiger wrote: > On Monday, September 29, 2003, at 11:53 PM, Joe Marcus Clarke wrote: > >>>Did someone add a port called 'clean' or something? > >> > >>*looking suspiciously at edwin* > > > >Good look :-). > > > >[ 16:23 edwin ] Original commit > >clean 3.2 sysutils > > New port: sysutils/clean; automatically remove unwanted files > > > > New port: clean searches through the filesystem for > >"temporary > > files" left behind by editors and the like which can be > > deleted. The pattern of regular expressions is > >controllable > > via a ~/.cleanrc. > > > > PR: ports/52881 > > Submitted by: Chuck Swiger > > /usr/ports/devel/patch doesn't seem to conflict with the existence of a > "make patch" target; I don't believe that the ports system should > forbid a port named "clean", or "install", if /usr/bin/install was a > port rather than part of the base system. That's because you will never do "make patch" in a category-directory, but always in a port-directory. And "make clean" is something that is called from the ports-root directory and it will dive into the category directories from there. > Regardless of my opinion, however, I do apologize for any inconvenience > that may have resulted. At the time I submitted the port, I asked > about the name on this list and received no feedback or objections > since June. > > Should the port be renamed? I have asked cvs@ to rename it to "clean_" so that this problem will be away, but haven't heard anything from them. 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 Tue Sep 30 16:03: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 15AB916A4BF; Tue, 30 Sep 2003 16:03:52 -0700 (PDT) Received: from lakemtao07.cox.net (lakemtao07.cox.net [68.1.17.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1BE344014; Tue, 30 Sep 2003 16:03:46 -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 <20030930230344.PCBG7289.lakemtao07.cox.net@mezz.mezzweb.com>; Tue, 30 Sep 2003 19:03:44 -0400 To: Michael Collette References: <200309300115.05714.metrol@metrol.net> <1064910135.48606.6.camel@shumai.marcuscom.com> <200309301528.36177.metrol@metrol.net> Message-ID: From: Jeremy Messenger Content-Type: text/plain; format=flowed; charset=utf-8 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Tue, 30 Sep 2003 18:02:30 -0500 In-Reply-To: <200309301528.36177.metrol@metrol.net> User-Agent: Opera7.20/Linux M2 build 468 cc: Joe Marcus Clarke cc: FreeBSD Mailing Lists Subject: Re: About that Freetype2 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: Tue, 30 Sep 2003 23:03:52 -0000 On Tue, 30 Sep 2003 15:28:36 -0700, Michael Collette wrote: > On Tuesday 30 September 2003 02:32 pm, Jeremy Messenger wrote: >> On Tue, 30 Sep 2003 04:22:15 -0400, Joe Marcus Clarke >> >> wrote: >> >> >> >> > Everything here looks beautiful. You're free to test your assumptions >> > above. If the byte-code interpreter helps, I can always add that back >> > in as an option. >> >> Here too, everything looks so good now.. It looks much more darker and >> curve.. Also, it looks much much better when it is black background with >> white font. >> >> Cheers, >> Mezz >> >> > Joe > > With that byte-code thingy turned on, my fonts look as they did with the > old > version of Freetype2, quite nice. It's been a LONG time since I had font > complaints about FreeBSD... up until this byte code thing anyway. > > What in the wide wide world of sports is different about my setup?? > Okay, > rhetorical question. I just hate having to manually patch stuff up to > get > things stable here. I have sent to PR[1] to add WITH_BYTECODE_INTERPRETER define, because I rather to have the bytecode interpreter enable now.. After using it with disable for a while, I get headache and many bold fonts look awful. I switched back to bytecode interpreter enable and the headache is starting to go away.. [1] http://www.freebsd.org/cgi/query-pr.cgi?pr=57433 Cheers, Mezz > Later on, -- bsdforums.org 's moderator, mezz. From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 16:26: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 2E89D16A4BF for ; Tue, 30 Sep 2003 16:26:19 -0700 (PDT) Received: from smtpout.mac.com (A17-250-248-85.apple.com [17.250.248.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A02D44005 for ; Tue, 30 Sep 2003 16:26:17 -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 h8UNPpKk005884; Tue, 30 Sep 2003 16:25:51 -0700 (PDT) Received: from mac.com (dpvc-68-161-244-25.ny325.east.verizon.net [68.161.244.25]) (authenticated bits=0)h8UNPnQ4010507; Tue, 30 Sep 2003 16:25:50 -0700 (PDT) Date: Tue, 30 Sep 2003 19:25:43 -0400 Content-Type: text/plain; delsp=yes; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) To: ports@freebsd.org From: Charles Swiger In-Reply-To: <3F79F35C.2090600@fillmore-labs.com> Message-Id: <69895B34-F39D-11D7-9FB3-000A27D851E6@mac.com> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.552) cc: Oliver Eikemeier 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, 30 Sep 2003 23:26:19 -0000 On Tuesday, September 30, 2003, at 05:19 PM, Oliver Eikemeier wrote: > How about something like: > > --- bsd.port.subdir.mk.patch begins here --- > [ ...patch snipped... ] > It's a quick hack and needs review, but it is a start and build the > INDEX: > > # awk '/^clean-[0-9._,]+\|/ { print }' INDEX > clean-3.2|/usr/ports/sysutils/clean|/usr/local|Automatically remove > unwanted > files|/usr/ports/sysutils/clean/pkg- > descr|chuck@pkix.net|sysutils|||http://sourceforge.net/projects/clean Thank you, Oliver, for looking into this and perhaps offering a solution-- I appreciate your time and effort. Patch didn't like the diff: patching file bsd.port.subdir.mk patch: **** malformed patch at line 4: .for __target in ${TARGETS} ...but I applied it by hand and confirm that I can rebuild the INDEX successfully via "portsdb -uU". Also thank you, Kris and Edwin, for the explanations that you've offered. On Tuesday, September 30, 2003, at 06:51 PM, Edwin Groothuis wrote: >> Should the port be renamed? > > I have asked cvs@ to rename it to "clean_" so that this problem > will be away, but haven't heard anything from them. At one point-- about a dozen years ago-- this utility was named "niftyclean". If the powers-that-be wish to avoid a port named "clean" rather than spend the time testing Oliver's patch, please update the PR or otherwise let me know, and I'll re-do the port under a different name. -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 16:28: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 7BBE616A4B3 for ; Tue, 30 Sep 2003 16:28:18 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD3CD43F75 for ; Tue, 30 Sep 2003 16:28:17 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h8UNSHGZ097636 for ; Tue, 30 Sep 2003 19:28:17 -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 h8UNSHrY064954 for ports@FreeBSD.org; Tue, 30 Sep 2003 19:28:17 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 19:28:17 -0400 (EDT) From: Kris Kennaway Message-Id: <200309302328.h8UNSHrY064954@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, 30 Sep 2003 23:28:18 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 U games/oneko-sakura/Makefile ? graphics/gphoto2/make.core ? graphics/pstoedit/make.core ? misc/flyway/make.core U multimedia/gstreamer-plugins/Makefile U multimedia/gstreamer-plugins/files/ia64-patch-ffmpeg::configure ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core U net/ipsvd/Makefile U net/ipsvd/distinfo U net/ipsvd/files/patch-ipsvd_scan.c ? net/powerdns/Makefile.inc U net/pyslsk/Makefile U net/pyslsk/distinfo ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core U sysutils/runit/Makefile U sysutils/runit/distinfo U sysutils/runit/pkg-plist U x11/gnomeapplets2/pkg-plist ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 16: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 B46B816A4B3 for ; Tue, 30 Sep 2003 16:30:02 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA56543FE5 for ; Tue, 30 Sep 2003 16:30:01 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h8UNU1GZ097645 for ; Tue, 30 Sep 2003 19:30:01 -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 h8UNSh7T061097 for ports@FreeBSD.org; Tue, 30 Sep 2003 19:28:43 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 19:28:43 -0400 (EDT) From: Kris Kennaway Message-Id: <200309302328.h8UNSh7T061097@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, 30 Sep 2003 23:30:02 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 U games/oneko-sakura/Makefile ? mail/log U multimedia/gstreamer-plugins/Makefile U multimedia/gstreamer-plugins/files/ia64-patch-ffmpeg::configure ? net/bind9-dlz/Makefile.inc U net/ipsvd/Makefile U net/ipsvd/distinfo U net/ipsvd/files/patch-ipsvd_scan.c ? net/powerdns/Makefile.inc U net/pyslsk/Makefile U net/pyslsk/distinfo U sysutils/runit/Makefile U sysutils/runit/distinfo U sysutils/runit/pkg-plist ? x11/gnome2/log U x11/gnomeapplets2/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 16:31: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 DD5AC16A4B3 for ; Tue, 30 Sep 2003 16:31:18 -0700 (PDT) Received: from mx2.fillmore-labs.com (lima.fillmore-labs.com [62.138.193.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id D4FAD44003 for ; Tue, 30 Sep 2003 16:31:13 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from p5080bceb.dip.t-dialin.net ([80.128.188.235] helo=fillmore-labs.com ident=qazxcqmk5eo1oe4e) by mx2.fillmore-labs.com with asmtp (TLSv1:AES256-SHA:256) (Exim 4.24; FreeBSD 4.9) id 1A4TxY-000GjK-0J; Wed, 01 Oct 2003 01:31:12 +0200 Message-ID: <3F7A123A.9000506@fillmore-labs.com> Date: Wed, 01 Oct 2003 01:31:06 +0200 From: Oliver Eikemeier MIME-Version: 1.0 To: Charles Swiger References: <69895B34-F39D-11D7-9FB3-000A27D851E6@mac.com> In-Reply-To: <69895B34-F39D-11D7-9FB3-000A27D851E6@mac.com> 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: 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, 30 Sep 2003 23:31:19 -0000 Charles Swiger wrote: > On Tuesday, September 30, 2003, at 05:19 PM, Oliver Eikemeier wrote: > >> How about something like: >> >> --- bsd.port.subdir.mk.patch begins here --- >> [ ...patch snipped... ] >> It's a quick hack and needs review, but it is a start and build the >> INDEX: >> >> # awk '/^clean-[0-9._,]+\|/ { print }' INDEX >> clean-3.2|/usr/ports/sysutils/clean|/usr/local|Automatically remove >> unwanted files|/usr/ports/sysutils/clean/pkg- >> descr|chuck@pkix.net|sysutils|||http://sourceforge.net/projects/clean > > > Thank you, Oliver, for looking into this and perhaps offering a > solution-- I appreciate your time and effort. Patch didn't like the > diff: > > patching file bsd.port.subdir.mk > patch: **** malformed patch at line 4: .for __target in ${TARGETS} You have to copy the patch from the source of the mail, (something like command-option-E, or was it U?), otherwise MIME handling will kill essential formating. There has to be a space in from of the .for From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 16:37: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 5162016A4B3 for ; Tue, 30 Sep 2003 16:37:24 -0700 (PDT) Received: from mx2.fillmore-labs.com (lima.fillmore-labs.com [62.138.193.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3105143FEA for ; Tue, 30 Sep 2003 16:37:23 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from p5080bceb.dip.t-dialin.net ([80.128.188.235] helo=fillmore-labs.com ident=99cemovocqziu9ai) by mx2.fillmore-labs.com with asmtp (TLSv1:AES256-SHA:256) (Exim 4.24; FreeBSD 4.9) id 1A4U3W-000Gjs-BT for ports@freebsd.org; Wed, 01 Oct 2003 01:37:22 +0200 Message-ID: <3F7A13AF.3070000@fillmore-labs.com> Date: Wed, 01 Oct 2003 01:37:19 +0200 From: Oliver Eikemeier MIME-Version: 1.0 To: ports@freebsd.org References: <1064894027.45333.10.camel@shumai.marcuscom.com> <40C5B5F6-F37B-11D7-A7E8-003065ABFD92@mac.com> <20030930201742.GB9478@rot13.obsecurity.org> <3F79F35C.2090600@fillmore-labs.com> In-Reply-To: <3F79F35C.2090600@fillmore-labs.com> 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 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, 30 Sep 2003 23:37:24 -0000 Oliver Eikemeier wrote: > Kris Kennaway wrote: > >> On Tue, Sep 30, 2003 at 03:21:12PM -0400, Charles Swiger wrote: >> >>> [...] >>> Should the port be renamed? >> >> It looks like that's the only way to handle it. > > How about something like: > > --- bsd.port.subdir.mk.patch begins here --- > [...] > --- bsd.port.subdir.mk.patch ends here --- Sorry, I forgot a short description: This patch prepends `_' before every submake target, so that the `make index' does indirectly call `make _clean', not 'make clean' Tested so far: `make index' works `make readmes' work `make checksubdirs' work Perhaps its better to fix bsd.port.subdir than to work around the bug. The next time a port will be named `install' ;-) Regards Oliver From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 16:59: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 7E5A616A4B3; Tue, 30 Sep 2003 16:59:28 -0700 (PDT) Received: from mta11.adelphia.net (mta11.adelphia.net [68.168.78.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 067ED43FFB; Tue, 30 Sep 2003 16:59:27 -0700 (PDT) (envelope-from parv_fm@mailsent.net) Received: from moo.holy.cow ([68.67.226.33]) by mta11.adelphia.net (InterMail vM.5.01.05.32 201-253-122-126-132-20030307) with ESMTP id <20030930235928.YRBV10023.mta11.adelphia.net@moo.holy.cow>; Tue, 30 Sep 2003 19:59:28 -0400 Received: by moo.holy.cow (Postfix, from userid 1001) id 83CF5AC71; Tue, 30 Sep 2003 20:02:45 -0400 (EDT) Date: Tue, 30 Sep 2003 20:02:45 -0400 From: parv To: Franz Klammer Message-ID: <20031001000245.GA360@moo.holy.cow> Mail-Followup-To: Franz Klammer , Joe Marcus Clarke , Michael Collette , FreeBSD Mailing Lists References: <200309300115.05714.metrol@metrol.net> <1064910135.48606.6.camel@shumai.marcuscom.com> <1064934538.46705.13.camel@sisko.webonaut.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1064934538.46705.13.camel@sisko.webonaut.com> cc: Michael Collette cc: Joe Marcus Clarke cc: FreeBSD Mailing Lists Subject: Re: About that Freetype2 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: Tue, 30 Sep 2003 23:59:28 -0000 in message <1064934538.46705.13.camel@sisko.webonaut.com>, wrote Franz Klammer thusly... > > i had the a problem with blur font display after upgrading to the > latest version. adding back bytecode solves it. > > here some screenshots with and without bytcode enabled: > > http://webonaut.com/temp/bytecode/ Interesting! I had only seen[0] the fuzzier version of an anti-aliased font (as seen in "*without_bytecode*" images), believing it to be the "feature" of anti aliasing. That, the fuzziness, was highly distracting, so i have been using plain olde UN-anti-aliased(?) fonts. Now i know better. Thanks everybody. [0] I saw fuzziness in fvwm 2.5.x, xterm, and Mozilla, all running w/ help of XFree86 4.2.0. I did not note the whether the version of freetype. - Parv -- From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 17:17:33 2003 Return-Path: Delivered-To: freebsd-ports@www.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D110316A4B3 for ; Tue, 30 Sep 2003 17:17:33 -0700 (PDT) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC9C243FDD for ; Tue, 30 Sep 2003 17:17:32 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from ciam.ru (ppp128-97.dialup.mtu-net.ru [62.118.128.97]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id 22BEAFEEF9; Wed, 1 Oct 2003 04:15:35 +0400 (MSD) (envelope-from sem@ciam.ru) Message-ID: <3F7A1C9F.9040608@ciam.ru> Date: Wed, 01 Oct 2003 04:15: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: Alexey Mahotkin References: <87k77qukkg.fsf@192.168.10.23> <20030930220210.76c3aa86.sheepkiller@cultdeadsheep.org> <873ceeujkt.fsf@192.168.10.23> In-Reply-To: <873ceeujkt.fsf@192.168.10.23> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@www.freebsd.org cc: Clement Laforet Subject: Re: Port of checkpassword-pam X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 00:17:33 -0000 Alexey Mahotkin wrote: >>>>>>"CL" == Clement Laforet writes: > > > >> I'd be grateful if somebody would do a FreeBSD port of my > >> checkpassword-pam package and put it into main archive. > > CL> done :-) > > Huh? In less than 15 minutes? Where is it now? It's not too hard :) > > CL> Do you want to maintain it ? if no, I give it to ports@FreeBSD.org. > > I do not use FreeBSD, unfortunately :) I'm interested for this port. So if there are no objections, I can take supporting it. -- Sem. From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 17:22:45 2003 Return-Path: Delivered-To: freebsd-ports@www.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C2A916A4BF for ; Tue, 30 Sep 2003 17:22:45 -0700 (PDT) Received: from cultdeadsheep.org (charon.cultdeadsheep.org [80.65.226.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9908743FEA for ; Tue, 30 Sep 2003 17:22:38 -0700 (PDT) (envelope-from sheepkiller@cultdeadsheep.org) Received: (qmail 60222 invoked by uid 85); 1 Oct 2003 02:22:33 +0200 Received: from sheepkiller@cultdeadsheep.org by goofy.cultdeadsheep.org by uid 82 with qmail-scanner-1.20rc2 ( Clear:RC:1:. Processed in 0.042691 secs); 01 Oct 2003 00:22:33 -0000 Received: from lucifer.cultdeadsheep.org (192.168.0.2) by goofy.cultdeadsheep.org with AES256-SHA encrypted SMTP; 1 Oct 2003 02:22:33 +0200 Date: Wed, 1 Oct 2003 02:22:33 +0200 From: Clement Laforet To: Sergey Matveychuk Message-Id: <20031001022233.1dd3c99d.sheepkiller@cultdeadsheep.org> In-Reply-To: <3F7A1C9F.9040608@ciam.ru> References: <87k77qukkg.fsf@192.168.10.23> <20030930220210.76c3aa86.sheepkiller@cultdeadsheep.org> <873ceeujkt.fsf@192.168.10.23> <3F7A1C9F.9040608@ciam.ru> Organization: tH3 cUlt 0f tH3 d3@d sH33p X-Mailer: Sylpheed version 0.9.6 (GTK+ 1.2.10; i386-portbld-freebsd5.1) X-Face: ._cVVRDn#-2((lnfi^P7CoD4htI$4+#G/G)!w|,}H5yK~%(3-C.JlEYbOjJGFwJkt*7N^%z jYeu[;}]}F"3}l5R'l"X0HbvT^D\Q&%deCo)MayY`);TO Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-ports@www.freebsd.org cc: alexm@hsys.msk.ru Subject: Re: Port of checkpassword-pam X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 00:22:45 -0000 On Wed, 01 Oct 2003 04:15:27 +0400 Sergey Matveychuk wrote: Hi Sergey ! > I'm interested for this port. So if there are no objections, I can take > supporting it. Great ! No problem ! :-) Just add a follow-up to PR to take maintainership (since it's set to ports@) Thanks ! clem From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 17: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 0686816A4C0 for ; Tue, 30 Sep 2003 17:24:43 -0700 (PDT) Received: from mta7.adelphia.net (mta7.adelphia.net [68.168.78.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9646B43FF5 for ; Tue, 30 Sep 2003 17:24:41 -0700 (PDT) (envelope-from parv_fm@mailsent.net) Received: from moo.holy.cow ([68.67.226.33]) by mta7.adelphia.net (InterMail vM.5.01.05.32 201-253-122-126-132-20030307) with ESMTP id <20031001002443.JZBX18847.mta7.adelphia.net@moo.holy.cow>; Tue, 30 Sep 2003 20:24:43 -0400 Received: by moo.holy.cow (Postfix, from userid 1001) id 63A10AC71; Tue, 30 Sep 2003 20:06:01 -0400 (EDT) Date: Tue, 30 Sep 2003 20:06:01 -0400 From: parv To: Kent Stewart Message-ID: <20031001000601.GB360@moo.holy.cow> Mail-Followup-To: Kent Stewart , ports@freebsd.org References: <200309300122.h8U1MhR0073316@9ball.rtp.freebsd.org> <20030930034540.GA5576@rot13.obsecurity.org> <20030930084638.GL59397@k7.mavetju> <200309300457.47416.kstewart@owt.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200309300457.47416.kstewart@owt.com> 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: Wed, 01 Oct 2003 00:24:43 -0000 in message <200309300457.47416.kstewart@owt.com>, wrote Kent Stewart thusly... > > FWIW, for people trying to generate INDEX, if they delete the > "SUBDIR += clean" in /usr/ports/sysutils/Makefile and then run > "make index", they are back to 9285 ports instead of 7245. Kent. My type of guy. > This isn't a fix for the problem but a temporary work around for > people trying cvsup ports-all and then create an almost complete > new INDEX. Thanks much for the workaround. - Parv -- From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 17:27: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 138C416A4B3 for ; Tue, 30 Sep 2003 17:27: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 95BFC43F3F for ; Tue, 30 Sep 2003 17:27:55 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h910RtGZ097733 for ; Tue, 30 Sep 2003 20:27:55 -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 h910RsOZ091843 for ports@FreeBSD.org; Tue, 30 Sep 2003 20:27:54 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 20:27:54 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010027.h910RsOZ091843@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: Wed, 01 Oct 2003 00:27:57 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 30 17:29: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 C30CE16A4D7 for ; Tue, 30 Sep 2003 17:29:37 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id D07E743FAF for ; Tue, 30 Sep 2003 17:29:36 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h910TaGZ097736 for ; Tue, 30 Sep 2003 20:29:36 -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 h910SIIC087983 for ports@FreeBSD.org; Tue, 30 Sep 2003 20:28:18 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 20:28:18 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010028.h910SIIC087983@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: Wed, 01 Oct 2003 00:29:38 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 18:01: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 4C3BE16A4B3 for ; Tue, 30 Sep 2003 18:01:52 -0700 (PDT) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7125843F75 for ; Tue, 30 Sep 2003 18:01:51 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from ciam.ru (ppp128-97.dialup.mtu-net.ru [62.118.128.97]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id E9AA713482F for ; Wed, 1 Oct 2003 05:01:49 +0400 (MSD) (envelope-from sem@ciam.ru) Message-ID: <3F7A2789.2050601@ciam.ru> Date: Wed, 01 Oct 2003 05:02:01 +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: ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: mysql40 port is broken on -CURRENT X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 01:01:52 -0000 Please, commit PR/56925 from maintainer! -- Sem. From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 18:12: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 D914316A4C0; Tue, 30 Sep 2003 18:12:05 -0700 (PDT) Received: from mx2.fillmore-labs.com (lima.fillmore-labs.com [62.138.193.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCF4543FBF; Tue, 30 Sep 2003 18:12:04 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from p5080bceb.dip.t-dialin.net ([80.128.188.235] helo=fillmore-labs.com ident=ujqe13jup5ljt6lh) by mx2.fillmore-labs.com with asmtp (TLSv1:AES256-SHA:256) (Exim 4.24; FreeBSD 4.9) id 1A4VX5-000MX2-KI; Wed, 01 Oct 2003 03:11:59 +0200 Message-ID: <3F7A29DD.4070403@fillmore-labs.com> Date: Wed, 01 Oct 2003 03:11:57 +0200 From: Oliver Eikemeier MIME-Version: 1.0 To: FreeBSD ports References: <1064894027.45333.10.camel@shumai.marcuscom.com> <40C5B5F6-F37B-11D7-A7E8-003065ABFD92@mac.com> <20030930201742.GB9478@rot13.obsecurity.org> <3F79F35C.2090600@fillmore-labs.com> In-Reply-To: <3F79F35C.2090600@fillmore-labs.com> 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: Charles Swiger cc: Kris Kennaway Subject: Re: INDEX build failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: FreeBSD ports List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2003 01:12:06 -0000 Sorry, I found a small bug in the patch (even though it should have no effect): The line + if test -d ${.CURDIR}/${sub}.${MACHINE_ARCH}; then \ should read + if test -d ${.CURDIR}/$${sub}.${MACHINE_ARCH}; then \ A corrected patch is in PR 57438: http://www.freebsd.org/cgi/query-pr.cgi?pr=57438 From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 18:22:49 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 44D9316A4B3 for ; Tue, 30 Sep 2003 18:22:49 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E6DD43FB1 for ; Tue, 30 Sep 2003 18:22:48 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h911MlGZ097859 for ; Tue, 30 Sep 2003 21:22: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 h911Mlbs018867 for ports@FreeBSD.org; Tue, 30 Sep 2003 21:22:47 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 21:22:47 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010122.h911Mlbs018867@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: Wed, 01 Oct 2003 01:22:49 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core U Mk/bsd.sites.mk ? 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 U java/linux-sun-jdk14/Makefile ? misc/flyway/make.core U multimedia/totem/Makefile U multimedia/totem/distinfo U multimedia/totem/pkg-plist ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core ? net/powerdns/Makefile.inc U polish/Makefile U polish/webalizer2/Makefile ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core U sysutils/adtool/Makefile U sysutils/ldap-account-manager/Makefile U www/mnogosearch/Makefile ? x11-fm/vide/sh.core U x11-toolkits/gnome-themes-extras/Makefile U x11-toolkits/gnome-themes-extras/distinfo U x11-toolkits/gnome-themes-extras/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 18:25: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 AC0DE16A4B3 for ; Tue, 30 Sep 2003 18:25: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 341CD44014 for ; Tue, 30 Sep 2003 18:25:54 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h911PrGZ097868 for ; Tue, 30 Sep 2003 21:25: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 h911OZB2015003 for ports@FreeBSD.org; Tue, 30 Sep 2003 21:24:35 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 21:24:35 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010124.h911OZB2015003@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: Wed, 01 Oct 2003 01:25:55 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x U Mk/bsd.sites.mk ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U java/linux-sun-jdk14/Makefile ? mail/log U multimedia/totem/Makefile U multimedia/totem/distinfo U multimedia/totem/pkg-plist ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U polish/Makefile U polish/webalizer2/Makefile U sysutils/adtool/Makefile U sysutils/ldap-account-manager/Makefile U www/mnogosearch/Makefile ? x11/gnome2/log U x11-toolkits/gnome-themes-extras/Makefile U x11-toolkits/gnome-themes-extras/distinfo U x11-toolkits/gnome-themes-extras/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 19:27: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 1CE0316A4B3 for ; Tue, 30 Sep 2003 19:27:52 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D1A943FF5 for ; Tue, 30 Sep 2003 19:27:51 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h912RoGZ097957 for ; Tue, 30 Sep 2003 22:27:50 -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 h912Rokp045777 for ports@FreeBSD.org; Tue, 30 Sep 2003 22:27:50 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 22:27:50 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010227.h912Rokp045777@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: Wed, 01 Oct 2003 02:27:52 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 30 19:29: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 E7F4716A4B3 for ; Tue, 30 Sep 2003 19:29:36 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E3DF44001 for ; Tue, 30 Sep 2003 19:29:36 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h912TZGZ097960 for ; Tue, 30 Sep 2003 22:29:35 -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 h912SG8X041909 for ports@FreeBSD.org; Tue, 30 Sep 2003 22:28:16 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 22:28:16 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010228.h912SG8X041909@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: Wed, 01 Oct 2003 02:29:37 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 20:27: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 EF4C316A4B3 for ; Tue, 30 Sep 2003 20:27:45 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1913243F3F for ; Tue, 30 Sep 2003 20:27:45 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h913RiGZ098082 for ; Tue, 30 Sep 2003 23:27: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 h913Riee072706 for ports@FreeBSD.org; Tue, 30 Sep 2003 23:27:44 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 23:27:44 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010327.h913Riee072706@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: Wed, 01 Oct 2003 03:27:46 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core U deskutils/Makefile U deskutils/gnomeblog/Makefile U deskutils/gnomeblog/distinfo U deskutils/gnomeblog/pkg-descr U deskutils/gnomeblog/pkg-plist ? 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 U print/freetype2/Makefile ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core U x11/Makefile U x11/fluxbg/Makefile U x11/fluxbg/distinfo U x11/fluxbg/pkg-descr U x11/fluxbg/pkg-message U x11/fluxbg/pkg-plist U x11/fluxbg/files/patch-src::fluxbg_conf.cc U x11/fluxbg/files/patch-src::fluxbgd.c ? x11-fm/vide/sh.core From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 20:29: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 862B716A4B3 for ; Tue, 30 Sep 2003 20:29: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 A82E843FF9 for ; Tue, 30 Sep 2003 20:29:28 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h913TRGZ098085 for ; Tue, 30 Sep 2003 23:29: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 h913S8kY068835 for ports@FreeBSD.org; Tue, 30 Sep 2003 23:28:08 -0400 (EDT) (envelope-from kris) Date: Tue, 30 Sep 2003 23:28:08 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010328.h913S8kY068835@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: Wed, 01 Oct 2003 03:29:29 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 Most recent CVS update was: U INDEX U INDEX-5 ? 1 ? cvs.log ? index.errs ? index.out ? log ? perl.core ? x U deskutils/Makefile U deskutils/gnomeblog/Makefile U deskutils/gnomeblog/distinfo U deskutils/gnomeblog/pkg-descr U deskutils/gnomeblog/pkg-plist ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc ? mail/log ? net/bind9-dlz/Makefile.inc ? net/powerdns/Makefile.inc U print/freetype2/Makefile U x11/Makefile U x11/fluxbg/Makefile U x11/fluxbg/distinfo U x11/fluxbg/pkg-descr U x11/fluxbg/pkg-message U x11/fluxbg/pkg-plist U x11/fluxbg/files/patch-src::fluxbg_conf.cc U x11/fluxbg/files/patch-src::fluxbgd.c ? x11/gnome2/log From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 04:53:47 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 C257216A4B3; Tue, 30 Sep 2003 04:53:47 -0700 (PDT) Received: from mx1.fillmore-labs.com (nuuk.fillmore-labs.com [62.138.193.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3AB643FE0; Tue, 30 Sep 2003 04:53:41 -0700 (PDT) (envelope-from owner-freebsd-ports-bugs@freebsd.org) Received: from root (helo=FreeBSD-gnats-submit) by mx1.fillmore-labs.com with local-esmtp (Exim 4.24; FreeBSD 4.9) id 1A4J2U-000E3Y-Q6; Tue, 30 Sep 2003 13:52:34 +0200 Message-Id: Date: Tue, 30 Sep 2003 13:17:40 +0200 From: Oliver Eikemeier To: FreeBSD-gnats-submit@FreeBSD.org User-Agent: KMail/1.5.9 Organization: Fillmore Labs GmbH X-Complaints-To: abuse@fillmore-labs.com X-Mailman-Approved-At: Tue, 30 Sep 2003 20:51:38 -0700 Subject: ports/57402: mark port net/openldap12 as broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: FreeBSD-gnats-submit@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 30 Sep 2003 11:53:47 -0000 >Number: 57402 >Category: ports >Synopsis: mark port net/openldap12 as broken >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: update >Submitter-Id: current-users >Arrival-Date: Tue Sep 30 04:20:03 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Oliver Eikemeier >Release: FreeBSD 4.8-STABLE i386 >Organization: Fillmore Labs - http://www.fillmore-labs.com >Environment: System: FreeBSD nuuk.fillmore-labs.com 4.8-STABLE >Description: OpenLDAP 1.2 is ancient, unsupported by the OpenLDAP development team and has potential security issues: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2002-1378 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2002-1379 http://www.securityfocus.com/bid/6328 Port net/openldap12 should be marked as BROKEN and scheduled for removal. Feedback I got on my email from 2003-09-24 http://lists.freebsd.org/pipermail/freebsd-ports/2003-September/004860.html net/openldap12 Lachlan O'Dea : > Any objections? Not from me. I haven't used OpenLDAP 1.2 in a long long while ... mail/exim-ldap Sheldon Hearn : port deleted mail/qmail-ldap Mário Sérgio Fujikawa Ferreira : No objections from my part mail/qmail-ldap can work with both openldap12 and openldap2 and http://www.nrg4u.com/qmail/QLDAPINSTALL says: 3. You need the following compiled and installed - OpenLDAP 2.x or higher (others might also work) OpenLDAP releases < 2.0 should no longer be used (you have been warned). mail/smunge Domas Mituzas : no feedback http://www.i2pi.com/smunge/ says: smunge has been out of active development for quite some time now. net/eudc-emacs20 FreeBSD Ports : no feedback net/py-ldap1 FreeBSD Ports : no feedback, but we have net/py-ldap2 www/web500gw Karl Dietz : SMTP error from remote mailer after RCPT TO:: host smtp.netsurf.de [194.195.64.36]: 550 That e-mail address does not exist (#5.7.1) >How-To-Repeat: >Fix: mark port net/openldap12 as BROKEN="ancient, unsupported, potential security issues" >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-ports@FreeBSD.ORG Tue Sep 30 21:29: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 BFFA916A4B3 for ; Tue, 30 Sep 2003 21:29:19 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C49F43FEC for ; Tue, 30 Sep 2003 21:29:19 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h914TIGZ019798 for ; Wed, 1 Oct 2003 00:29:18 -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 h914TIo9099641 for ports@FreeBSD.org; Wed, 1 Oct 2003 00:29:18 -0400 (EDT) (envelope-from kris) Date: Wed, 1 Oct 2003 00:29:18 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010429.h914TIo9099641@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: Wed, 01 Oct 2003 04:29:20 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 30 21:31: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 8C34816A4B3 for ; Tue, 30 Sep 2003 21:31:01 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8749143FA3 for ; Tue, 30 Sep 2003 21:31:00 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h914V0GZ028509 for ; Wed, 1 Oct 2003 00:31:00 -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 h914TdLN095766 for ports@FreeBSD.org; Wed, 1 Oct 2003 00:29:39 -0400 (EDT) (envelope-from kris) Date: Wed, 1 Oct 2003 00:29:39 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010429.h914TdLN095766@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: Wed, 01 Oct 2003 04:31:01 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 22:27: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 E980816A4B3 for ; Tue, 30 Sep 2003 22:27:17 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D7C843FB1 for ; Tue, 30 Sep 2003 22:27:14 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h915REGZ068482 for ; Wed, 1 Oct 2003 01:27:14 -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 h915RDuh026700 for ports@FreeBSD.org; Wed, 1 Oct 2003 01:27:13 -0400 (EDT) (envelope-from kris) Date: Wed, 1 Oct 2003 01:27:13 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010527.h915RDuh026700@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: Wed, 01 Oct 2003 05:27:18 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 30 22:28: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 0387516A4B3 for ; Tue, 30 Sep 2003 22:28:58 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2025243FBD for ; Tue, 30 Sep 2003 22:28:57 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h915SuGZ071518 for ; Wed, 1 Oct 2003 01:28: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 h915RaVf022819 for ports@FreeBSD.org; Wed, 1 Oct 2003 01:27:36 -0400 (EDT) (envelope-from kris) Date: Wed, 1 Oct 2003 01:27:36 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010527.h915RaVf022819@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: Wed, 01 Oct 2003 05:28:58 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 23:25: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 71C7016A4B3 for ; Tue, 30 Sep 2003 23:25:16 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35CD04400D for ; Tue, 30 Sep 2003 23:25:15 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h916PEGZ047365 for ; Wed, 1 Oct 2003 02:25:14 -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 h916PEWG053635 for ports@FreeBSD.org; Wed, 1 Oct 2003 02:25:14 -0400 (EDT) (envelope-from kris) Date: Wed, 1 Oct 2003 02:25:14 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010625.h916PEWG053635@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: Wed, 01 Oct 2003 06:25:16 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Sep 30 23:27: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 DB84516A4B3 for ; Tue, 30 Sep 2003 23:27:22 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE6CD43FDD for ; Tue, 30 Sep 2003 23:27:21 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h916RLGZ047368 for ; Wed, 1 Oct 2003 02:27:21 -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 h916Q0rF049751 for ports@FreeBSD.org; Wed, 1 Oct 2003 02:26:00 -0400 (EDT) (envelope-from kris) Date: Wed, 1 Oct 2003 02:26:00 -0400 (EDT) From: Kris Kennaway Message-Id: <200310010626.h916Q0rF049751@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: Wed, 01 Oct 2003 06:27:23 -0000 INDEX build failed with errors: "/vol/vol0/users/kris/ports.clean/Mk/bsd.port.subdir.mk", line 1: Inconsistent operator for clean make: fatal errors encountered -- cannot continue 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: calcoo-1.3.15: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: gkrellmearth-0.3: no entry for /usr/ports/sysutils/gkrellm make_index: gkrellmearth-0.3: no entry for /usr/ports/x11-toolkits/gtk12 make_index: gkrellmearth-0.3: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple make_index: p5-Test-Pod-0.95: no entry for /usr/ports/textproc/p5-Pod-Simple [...] make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11/kdelibs3 make_index: eo-koffice-i18n-1.2.1: no entry for /usr/ports/x11-toolkits/qt32 make_index: eo-koffice-i18n-1.2.1: 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/www/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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: 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 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 Tue Sep 30 23:37: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 327A716A4B3 for ; Tue, 30 Sep 2003 23:37:10 -0700 (PDT) Received: from gateway.nixsys.be (gateway.nixsys.be [195.144.77.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3666844005 for ; Tue, 30 Sep 2003 23:37:09 -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 78458C12D for ; Wed, 1 Oct 2003 08:37:08 +0200 (CEST) Received: by hermes.nixsys.be (Postfix, from userid 1001) id E672956; Wed, 1 Oct 2003 08:37:07 +0200 (CEST) Date: Wed, 1 Oct 2003 08:37:07 +0200 From: Philip Paeps To: ports@freebsd.org Message-ID: <20031001063707.GA656@hermes.nixsys.be> Mail-Followup-To: ports@freebsd.org, Brandon Gale References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Date-in-Rome: Kalendis Octobribus 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 cc: Brandon Gale Subject: Re: MS Exchange X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 06:37:10 -0000 On 2003-09-29 22:54:31 (-0400), Brandon Gale wrote: > Does anyone know of a port or piece of software that emulates a MS Exchange > server and interfaces with MS Outlook clients? The only thing I can think of is SuSE's 'OpenExchange'. I've never used it myself (I prefer just plain IMAP and LDAP, and particularly doing away with lookout and that so-called 'operating system' on which is it said to 'run'), but it comes highly recommended by a friend of mine. That could mean I should find other friends though :-) > I'm trying to provide an alternative to a potential client using Win2k > simply for the only reason that they require the functionality of an MS > Exchange server. Which functionality do they require? - Philip -- Philip Paeps Please don't CC me, I am subscribed to the list. If you just try long enough and hard enough, you can always manage to boot yourself in the posterior. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 02:52:49 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 2799B16A4B3 for ; Wed, 1 Oct 2003 02:52:49 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF02A43FEC for ; Wed, 1 Oct 2003 02:52:47 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 81762 invoked from network); 1 Oct 2003 09:52:46 -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 ; 1 Oct 2003 09:52:46 -0000 Message-ID: <3F7AA3ED.1040707@liwing.de> Date: Wed, 01 Oct 2003 09:52:45 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030928 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: FreeBSD Ports Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Problems with make package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 09:52:49 -0000 Hi, I tried to set up a build machine which should build kernel, world and ports (packages) for all machines in my network. Kernel and world works fine, but with the package creation I run into 2 problems: 1) With some ports the 'make package-links' fails when I use 'make package' or 'portinstall -pR port'. When I switch to the ports directory and execute the 'make package-links' by hand, it creates the link fine. 2) The created packages seems to have no dependency information, eg. on the new machine I executed 'pkg_add mc*' and pkg_add installs the Midnight Commander only, no dependend packages as gettext or libslang. All other packages the same. Where can I start research to resolve the problems? The 2nd is more important to me. Thanks in advance, Jens From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 03:21: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 25C5B16A4B3 for ; Wed, 1 Oct 2003 03:21:17 -0700 (PDT) Received: from shellma.zin.lublin.pl (shellma.zin.lublin.pl [212.182.126.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A00843F85 for ; Wed, 1 Oct 2003 03:21:15 -0700 (PDT) (envelope-from pawmal-posting@freebsd.lublin.pl) Received: by shellma.zin.lublin.pl (Postfix, from userid 1018) id 765435F103; Wed, 1 Oct 2003 12:24:26 +0200 (CEST) Date: Wed, 1 Oct 2003 12:24:26 +0200 From: Pawel Malachowski To: freebsd-ports@freebsd.org Message-ID: <20031001102426.GA34415@shellma.zin.lublin.pl> References: <200309301929.PAA522670@shell.TheWorld.com> <200309302241.SAA535783@shell.TheWorld.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200309302241.SAA535783@shell.TheWorld.com> User-Agent: Mutt/1.4.1i Subject: Re: cvsup - refuse not honoring selections X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 10:21:17 -0000 On Tue, Sep 30, 2003 at 06:41:40PM -0400, Kenneth W Cochran wrote: > The refuse file is /usr/sup/refuse (as per cvsup documentation). > It happily refuses all kinds of other things, e.g. various > bits of doc/, src/release/doc/, and ports/ - most of the non-English > docs & ports. Of these, only ports/hungarian and ports/polish > don't "obey" the refuse file. Wierd. % grep hungarian /usr/sup/refuse ports/hungarian works just fine for me. i'm using default cvsup file. -- Pawe³ Ma³achowski From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 06:42: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 4180316A4BF for ; Wed, 1 Oct 2003 06:42:50 -0700 (PDT) Received: from mx2.fillmore-labs.com (lima.fillmore-labs.com [62.138.193.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41C8743F75 for ; Wed, 1 Oct 2003 06:42:49 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from p5080b409.dip.t-dialin.net ([80.128.180.9] helo=fillmore-labs.com ident=2fqhtgwr0oarpgnj) by mx2.fillmore-labs.com with asmtp (TLSv1:AES256-SHA:256) (Exim 4.24; FreeBSD 4.9) id 1A4hFf-0000GW-Qq; Wed, 01 Oct 2003 15:42:48 +0200 Message-ID: <3F7AD9D5.9010303@fillmore-labs.com> Date: Wed, 01 Oct 2003 15:42:45 +0200 From: Oliver Eikemeier MIME-Version: 1.0 To: Jens Rehsack References: <3F7AA3ED.1040707@liwing.de> In-Reply-To: <3F7AA3ED.1040707@liwing.de> 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: FreeBSD Ports Subject: Re: Problems with make package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 13:42:50 -0000 Jens Rehsack wrote: > Hi, > > I tried to set up a build machine which should build kernel, world > and ports (packages) for all machines in my network. Kernel and world > works fine, but with the package creation I run into 2 problems: > > 1) With some ports the 'make package-links' fails when I use > 'make package' or 'portinstall -pR port'. When I switch to > the ports directory and execute the 'make package-links' by > hand, it creates the link fine. > 2) The created packages seems to have no dependency information, > eg. on the new machine I executed 'pkg_add mc*' and pkg_add > installs the Midnight Commander only, no dependend packages > as gettext or libslang. All other packages the same. > > Where can I start research to resolve the problems? The 2nd > is more important to me. Can you send me the output of pkg_info -qf mc* and tar ztvf mc* (or tar jtvf if it is a .tbz) From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 07:45: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 DC75316A4B3 for ; Wed, 1 Oct 2003 07:45:06 -0700 (PDT) Received: from exuma.irbs.com (exuma.irbs.com [216.86.160.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40C7D43F93 for ; Wed, 1 Oct 2003 07:45:06 -0700 (PDT) (envelope-from jc@irbs.com) Received: by exuma.irbs.com (Postfix, from userid 2500) id 3D57F17415; Wed, 1 Oct 2003 10:45:05 -0400 (EDT) Date: Wed, 1 Oct 2003 10:45:05 -0400 From: John Capo To: Brandon Gale Message-ID: <20031001144505.GA11562@exuma.irbs.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: MS Exchange X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: jc@irbs.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2003 14:45:07 -0000 Quoting Brandon Gale (brandon@globaldiagnostics.com): > Does anyone know of a port or piece of software that emulates a MS Exchange > server and interfaces with MS Outlook clients? I'm trying to provide an > alternative to a potential client using Win2k simply for the only reason > that they require the functionality of an MS Exchange server. > It pretty Linux centric but there are a few people that have managed to compile it on BSD boxen: http://opengroupware.org/ John Capo IRBS Engineering, Inc. Email Hosting From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 07:54: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 773D316A4BF for ; Wed, 1 Oct 2003 07:54:37 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4792B43FF3 for ; Wed, 1 Oct 2003 07:54:32 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 53702 invoked from network); 1 Oct 2003 14:54:30 -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 ; 1 Oct 2003 14:54:30 -0000 Message-ID: <3F7AEAA6.2050105@liwing.de> Date: Wed, 01 Oct 2003 14:54:30 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030928 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Oliver Eikemeier References: <3F7AA3ED.1040707@liwing.de> <3F7AD9D5.9010303@fillmore-labs.com> In-Reply-To: <3F7AD9D5.9010303@fillmore-labs.com> Content-Type: multipart/mixed; boundary="------------090604030807000704010008" cc: FreeBSD Ports Subject: Re: Problems with make package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 14:54:37 -0000 This is a multi-part message in MIME format. --------------090604030807000704010008 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Oliver Eikemeier wrote: > Jens Rehsack wrote: > >> Hi, >> >> I tried to set up a build machine which should build kernel, world >> and ports (packages) for all machines in my network. Kernel and world >> works fine, but with the package creation I run into 2 problems: >> >> 1) With some ports the 'make package-links' fails when I use >> 'make package' or 'portinstall -pR port'. When I switch to >> the ports directory and execute the 'make package-links' by >> hand, it creates the link fine. >> 2) The created packages seems to have no dependency information, >> eg. on the new machine I executed 'pkg_add mc*' and pkg_add >> installs the Midnight Commander only, no dependend packages >> as gettext or libslang. All other packages the same. >> >> Where can I start research to resolve the problems? The 2nd >> is more important to me. > > > Can you send me the output of Yes, I can (and I do :-)) # pkg_add mc-4.6.0_5.tbz > pkg_info -qf mc* attached. > and > > tar ztvf mc* > > (or tar jtvf if it is a .tbz) attached, too. Jens --------------090604030807000704010008 Content-Type: text/plain; name="pkg_info -qf.out" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="pkg_info -qf.out" @comment PKG_FORMAT_REVISION:1.1 @name mc-4.6.0_5 @comment ORIGIN:misc/mc @cwd /usr/local man/es/man1/mc.1.gz @comment MD5:f035d4893f0013348b3d2ee3de2c39f6 man/hu/man1/mc.1.gz @comment MD5:a74ab662f07b1a53be45a5dcc3d1245b man/it/man1/mc.1.gz @comment MD5:0b63e680cb004cd0bc42eae660692271 man/pl/man1/mc.1.gz @comment MD5:2ec11d5ea16f436524470e44f2f81c00 man/ru.KOI8-R/man1/mc.1.gz @comment MD5:30b6f58a61d31e252fa7c80800dc7056 man/man1/mc.1.gz @comment MD5:491e40f2b852707086bc2acf8bcec939 man/man1/mcedit.1.gz @comment MD5:4e00ffa962bf4aa12b291fc993bf641f man/man1/mcview.1.gz @comment MD5:94e9809342e0fbe02c4a2aec16443a70 @unexec rm -f %D/man/es/cat1/mc.1 %D/man/es/cat1/mc.1.gz @unexec rm -f %D/man/hu/cat1/mc.1 %D/man/hu/cat1/mc.1.gz @unexec rm -f %D/man/it/cat1/mc.1 %D/man/it/cat1/mc.1.gz @unexec rm -f %D/man/pl/cat1/mc.1 %D/man/pl/cat1/mc.1.gz @unexec rm -f %D/man/ru.KOI8-R/cat1/mc.1 %D/man/ru.KOI8-R/cat1/mc.1.gz @unexec rm -f %D/man/cat1/mc.1 %D/man/cat1/mc.1.gz @unexec rm -f %D/man/cat1/mcedit.1 %D/man/cat1/mcedit.1.gz @unexec rm -f %D/man/cat1/mcview.1 %D/man/cat1/mcview.1.gz bin/mcmfmt @comment MD5:d732de30bac5a17dbfebefb861ca7b6a bin/mc @comment MD5:fb752205e484c2ad96e4182fbfc1590b bin/mcedit @comment MD5:d6fd0924e324f50669ae0295adf59567 bin/mcview @comment MD5:d6fd0924e324f50669ae0295adf59567 bin/midc @comment MD5:d6fd0924e324f50669ae0295adf59567 share/locale/az/LC_MESSAGES/mc.mo @comment MD5:a72f4f44384a95947a2fd0cf9dc51529 share/locale/be/LC_MESSAGES/mc.mo @comment MD5:5318e6db90c4ef0a05d622f7456ad40b share/locale/bg/LC_MESSAGES/mc.mo @comment MD5:318d9349ac296bbd1fff66a05290f24b share/locale/ca/LC_MESSAGES/mc.mo @comment MD5:f149162034785067b202ee44dbd47047 share/locale/cs/LC_MESSAGES/mc.mo @comment MD5:9343412609ca466c13abb81828df676e share/locale/da/LC_MESSAGES/mc.mo @comment MD5:4c03775c0cb1f8a7ca68d051b46b8ccf share/locale/de/LC_MESSAGES/mc.mo @comment MD5:f7b63aa52d02600a6b78674da078d523 share/locale/el/LC_MESSAGES/mc.mo @comment MD5:d06df8087f2e9a4de51fbbd7bc5fa7af share/locale/es/LC_MESSAGES/mc.mo @comment MD5:366dc7a252854bcb52bd5a9198d60e4c share/locale/eu/LC_MESSAGES/mc.mo @comment MD5:f784cf44c86bddd3d0ff29ce013b068b share/locale/fi/LC_MESSAGES/mc.mo @comment MD5:78c4dd4b5bcd718a9b4c26319243651f share/locale/fr/LC_MESSAGES/mc.mo @comment MD5:820a1087085c17d136483655c5623450 share/locale/hu/LC_MESSAGES/mc.mo @comment MD5:604184fa75c2dc7acdf3196bcc577b54 share/locale/it/LC_MESSAGES/mc.mo @comment MD5:a962babbc220fe45dc2446f16460f7cc share/locale/ja/LC_MESSAGES/mc.mo @comment MD5:3a696687656b7826c0222843bce00d46 share/locale/ko/LC_MESSAGES/mc.mo @comment MD5:6485e3a1718f4dacc9acb02e7cfede43 share/locale/lv/LC_MESSAGES/mc.mo @comment MD5:0f82f17256cc8abdcf199c1aa62c9105 share/locale/nl/LC_MESSAGES/mc.mo @comment MD5:37507539d82230e9774edcaaff33d7d8 share/locale/no/LC_MESSAGES/mc.mo @comment MD5:87a4aa079b2a5215cc0066e558205c8c share/locale/pl/LC_MESSAGES/mc.mo @comment MD5:2a6534d8a206d5403450baedb010e712 share/locale/pt/LC_MESSAGES/mc.mo @comment MD5:820e7b0ef5bd15499242505d6863ed17 share/locale/pt_BR/LC_MESSAGES/mc.mo @comment MD5:872838049d7477828934ecf490c57418 share/locale/ro/LC_MESSAGES/mc.mo @comment MD5:958eb7686bf1001d632bac5e27bde13e share/locale/ru/LC_MESSAGES/mc.mo @comment MD5:4c7fa510df4adc8a240fe1447a38fdf2 share/locale/sk/LC_MESSAGES/mc.mo @comment MD5:7a42dd3ae2e500328822984bf4a87398 share/locale/sl/LC_MESSAGES/mc.mo @comment MD5:95345059783be16dd78ee33628ae98fa share/locale/sv/LC_MESSAGES/mc.mo @comment MD5:8bc272b121be94e0e83a46cc932f5f34 share/locale/ta/LC_MESSAGES/mc.mo @comment MD5:ef5840f0fa87840436732a5903b56802 share/locale/tr/LC_MESSAGES/mc.mo @comment MD5:27ac1f01f6708ed57ed87ed9f3f65d89 share/locale/uk/LC_MESSAGES/mc.mo @comment MD5:31e0d18d8a85d5adf0b6e9cb0548ec01 share/locale/wa/LC_MESSAGES/mc.mo @comment MD5:ae865c1381865656a8edd33549dec3fa share/locale/zh_CN/LC_MESSAGES/mc.mo @comment MD5:337d1e50e4e4d4a826fb48c0f63802a9 share/locale/zh_TW/LC_MESSAGES/mc.mo @comment MD5:1834d422f67acf67e7d10fbff1ae136d share/mc/bin/mc-wrapper.csh @comment MD5:88ca901dfadf66134ddc35d33d5ef7e8 share/mc/bin/mc-wrapper.sh @comment MD5:10139091945e54caeced731930f7ad9c share/mc/bin/mc.csh @comment MD5:caca46a59de9d9ee9becb72b515b42f1 share/mc/bin/mc.sh @comment MD5:4deb0f91fd8ef03bcdf19f73bef2b14d share/mc/cedit.menu @comment MD5:c3829ac4f659e3c4296f6cb96d21d621 share/mc/edit.indent.rc @comment MD5:04694ad45174169f9c49df9c1bb1ceed share/mc/edit.spell.rc @comment MD5:6c46bc0859a452b43f4fa7fb435b1325 share/mc/extfs/README @comment MD5:ccd7337dabff9ff69e5a9a33abb8def5 share/mc/extfs/a @comment MD5:b03f7c39d5124c494ecee303e7c1186d share/mc/extfs/apt @comment MD5:5afb5dee5a4984445c2bf2be7de470ba share/mc/extfs/audio @comment MD5:94c0c381d122789ee1ea86961cc79143 share/mc/extfs/bpp @comment MD5:887606313fc18206eeccb2b3b55219b3 share/mc/extfs/deb @comment MD5:123dfe2d5b33af6ee687b72d68d8729f share/mc/extfs/deba @comment MD5:705b5924f8324f789f7c18fbab5f81ef share/mc/extfs/debd @comment MD5:4cca466e7d6e083da7e060e76cff54c6 share/mc/extfs/dpkg @comment MD5:471dab148f54eccac06570ae5a4ccc0d share/mc/extfs/extfs.ini @comment MD5:6b9be9842e790b43a63745bc4a892a88 share/mc/extfs/hp48 @comment MD5:6cc1c9a1ef71c6d60ba35437ccccff0b share/mc/extfs/lslR @comment MD5:e18f0187b63f128a68e22f3cdb4a95b2 share/mc/extfs/mailfs @comment MD5:2ad9ce038a2805e609c8fb2a9c419263 share/mc/extfs/patchfs @comment MD5:7bd6c92bba9dad9ca5ba09a2a6e6b6e0 share/mc/extfs/rpm @comment MD5:b600324907749100526ef29aaf80c16e share/mc/extfs/rpms @comment MD5:fa7ac7e1a9af1ee53eac50926e2cfaa5 share/mc/extfs/sfs.ini @comment MD5:86ea857e2c6b37ee8f3042710d5bd3c6 share/mc/extfs/trpm @comment MD5:80750b2c4db19eeb44a9a4938f033060 share/mc/extfs/uar @comment MD5:b5c6e307e14a7884001ab3a0d7dcee84 share/mc/extfs/uarj @comment MD5:a92fed3ddd647d764549f8bafe7a9a70 share/mc/extfs/uha @comment MD5:ec843513d9d0b0f90d54cdc185284562 share/mc/extfs/ulha @comment MD5:1f59bccf0e8e114f7f15985b14558b4e share/mc/extfs/urar @comment MD5:f7f970e8fe826c5e6a3f172bc4d5fa25 share/mc/extfs/uzip @comment MD5:1a5de0ef0c287ada00a0796a83dff083 share/mc/extfs/uzoo @comment MD5:5396ddb49b1acd2984daf3e774a70ce9 share/mc/mc.charsets @comment MD5:7ce100acb38aa56f3a385ef3bfc14a44 share/mc/mc.ext @comment MD5:c57eab39f58ee84fad43c83da0ec2663 share/mc/mc.hint @comment MD5:61a2074952129c8ba799bdc360b68e85 share/mc/mc.hint.cs @comment MD5:249502b29d56d91ee08672903152d4d4 share/mc/mc.hint.es @comment MD5:38e18a5b11827000f3e078bca42b0b55 share/mc/mc.hint.hu @comment MD5:4764c6025c0d33873762b53bc2df8ae2 share/mc/mc.hint.it @comment MD5:c0fca0f64a217289bff740e68234e901 share/mc/mc.hint.nl @comment MD5:77128f8fd83627adf2d622c5652c2570 share/mc/mc.hint.pl @comment MD5:9f4f7f217afd26cbe7e999ca34efac72 share/mc/mc.hint.ru @comment MD5:cd7adb84ffae7c75e3fa1448524f704b share/mc/mc.hint.uk @comment MD5:58057e8c70e720a8529d8fe34e1e20d0 share/mc/mc.hint.zh @comment MD5:3fde01a9ec071c0585d313495c292615 share/mc/mc.hlp @comment MD5:592fea204a17c2140daebb7e0ac40957 share/mc/mc.hlp.es @comment MD5:e8f45f785a7a49ca5d077432427608f3 share/mc/mc.hlp.hu @comment MD5:f615632bd3c41e36b2c52a2284bc2195 share/mc/mc.hlp.it @comment MD5:7e66b2e99d2e4c1247510877fbf47b99 share/mc/mc.hlp.pl @comment MD5:5a4b4360ef410ce10b997a1a7c97c9d3 share/mc/mc.hlp.ru @comment MD5:559af6e39ae4e94fae3a5f4a4eefa7da share/mc/mc.lib @comment MD5:dea776bc6ae2130e3e40fed7c49ce467 share/mc/mc.menu @comment MD5:49fb8f6a8cc2927e1ebffc9e17b53f9f share/mc/syntax/Syntax @comment MD5:945864d01fae624b740f6e3b0e6248a0 share/mc/syntax/ada95.syntax @comment MD5:f7eda63302f9eca97efec1e208a33f83 share/mc/syntax/c.syntax @comment MD5:3f2b1f40766767f47f5ec73cf9bb2fe3 share/mc/syntax/changelog.syntax @comment MD5:e66f356fd4329978ff1501d58429b4aa share/mc/syntax/diff.syntax @comment MD5:df2bfa648467e70e50ed6044639670bf share/mc/syntax/dos.syntax @comment MD5:7e28ae554af556a5562535cb1d424c48 share/mc/syntax/fortran.syntax @comment MD5:8991ca19140e3ced80a16e34fafe8573 share/mc/syntax/html.syntax @comment MD5:62e82012f9d3b5fd9615628abe646997 share/mc/syntax/java.syntax @comment MD5:92de27321807d4bef5d1521d13a579d8 share/mc/syntax/js.syntax @comment MD5:647075717c9f8f22d6ee1c9766b637e5 share/mc/syntax/latex.syntax @comment MD5:07c5a49ed58c7e369dfc48a3016ec716 share/mc/syntax/lisp.syntax @comment MD5:fa412ef7049675461f654a19cbf248ed share/mc/syntax/lsm.syntax @comment MD5:9b7db7fe86d6d76427d5c38588eb4a2f share/mc/syntax/m4.syntax @comment MD5:52c7731115a0fa252d0786070e4ff401 share/mc/syntax/mail.syntax @comment MD5:20f3fe91bd6d8c673134db4a8fe516f4 share/mc/syntax/makefile.syntax @comment MD5:1a09d6c620b45effc07ce2ee7e8a7435 share/mc/syntax/ml.syntax @comment MD5:98b81a337485f4913001b4a705843238 share/mc/syntax/nroff.syntax @comment MD5:a926562cff61fa77e7bfb04d6e971e72 share/mc/syntax/octave.syntax @comment MD5:68e46cf5dcbc1a4a4e6a1e8e35483f80 share/mc/syntax/pascal.syntax @comment MD5:29c91b54661b8436b1595308f72f31d8 share/mc/syntax/perl.syntax @comment MD5:a12e49cad62adcd252a88f61fafad180 share/mc/syntax/php.syntax @comment MD5:1da3954e5133f189019f27189844df0d share/mc/syntax/po.syntax @comment MD5:e86c21623e1a12d14dec02edb7a6fa35 share/mc/syntax/python.syntax @comment MD5:f14278ec8806d650f01fe35dc6aa291f share/mc/syntax/sh.syntax @comment MD5:39e5e9f157c20c41daa0df5af8746b8d share/mc/syntax/slang.syntax @comment MD5:6039fbd1acdcd90fdd3a9f0fc3cbef50 share/mc/syntax/smalltalk.syntax @comment MD5:9c9f815d2e0356a78f7a34fb168356de share/mc/syntax/spec.syntax @comment MD5:95f36d3c28e95c66983684cdb5aa95b9 share/mc/syntax/sql.syntax @comment MD5:24007d0b4d43d1dc02c566734085256c share/mc/syntax/swig.syntax @comment MD5:ea8bfccd3fab2e6b3fdddd2bc618c5ac share/mc/syntax/syntax.syntax @comment MD5:b59ef6209e664dbb12e77a124b53b293 share/mc/syntax/tcl.syntax @comment MD5:838d0bc631c1f13d39272d22eb239121 share/mc/syntax/texinfo.syntax @comment MD5:774f2a7b3a1c2cfbbe60171a485c87f8 share/mc/syntax/unknown.syntax @comment MD5:5f0893aa488ac008ce83476ae73e505e share/mc/syntax/xml.syntax @comment MD5:1b9bfbdd957ce4747a918eb832bd1a11 share/mc/term/README.xterm @comment MD5:e1aa6a19ac501764a4ce7f2b5d9b1b9d share/mc/term/ansi.ti @comment MD5:079c1c59f4cb0c59074679307c4741f7 share/mc/term/linux.ti @comment MD5:0f450cfa4e093df6c58942f92c60ba13 share/mc/term/vt100.ti @comment MD5:7533a5f32be54b73ed179d3f5759dd68 share/mc/term/xterm.ad @comment MD5:8a54c233b45a217dd5ec47f7fc7f8289 share/mc/term/xterm.tcap @comment MD5:41b925645f2a13be4d2abf018d98be2b share/mc/term/xterm.ti @comment MD5:37ca885bd8a6a8c9cb30e615bad0ee67 @dirrm share/mc/syntax @dirrm share/mc/term @dirrm share/mc/extfs @dirrm share/mc/bin @dirrm share/mc @unexec rmdir %D/share/locale/wa/LC_MESSAGES 2>/dev/null || true @unexec rmdir %D/share/locale/wa 2>/dev/null || true @unexec rmdir %D/share/locale/hu/LC_MESSAGES 2>/dev/null || true @unexec rmdir %D/share/locale/hu 2>/dev/null || true @unexec rmdir %D/man/es/man1 2>/dev/null || true @unexec rmdir %D/man/es/cat1 2>/dev/null || true @unexec rmdir %D/man/es 2>/dev/null || true @unexec rmdir %D/man/hu/man1 2>/dev/null || true @unexec rmdir %D/man/hu/cat1 2>/dev/null || true @unexec rmdir %D/man/hu 2>/dev/null || true @unexec rmdir %D/man/it/man1 2>/dev/null || true @unexec rmdir %D/man/it/cat1 2>/dev/null || true @unexec rmdir %D/man/it 2>/dev/null || true @unexec rmdir %D/man/pl/man1 2>/dev/null || true @unexec rmdir %D/man/pl/cat1 2>/dev/null || true @unexec rmdir %D/man/pl 2>/dev/null || true @unexec if [ -f %D/info/dir ]; then if sed -e '1,/Menu:/d' %D/info/dir | grep -q '^[*] '; then true; else rm %D/info/dir; fi; fi @cwd . +COMMENT +DESC +MTREE_DIRS @mtree +MTREE_DIRS --------------090604030807000704010008 Content-Type: text/plain; name="tar tvyf.out" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="tar tvyf.out" -rw-r--r-- root/wheel 11659 Sep 29 10:18 2003 +CONTENTS -rw-r--r-- root/wheel 50 Sep 29 10:18 2003 +COMMENT -rw-r--r-- root/wheel 401 Sep 29 10:18 2003 +DESC -r--r--r-- root/wheel 8200 Sep 29 10:18 2003 +MTREE_DIRS -r--r--r-- root/wheel 38264 Sep 29 10:18 2003 man/es/man1/mc.1.gz -r--r--r-- root/wheel 37925 Sep 29 10:18 2003 man/hu/man1/mc.1.gz -r--r--r-- root/wheel 35776 Sep 29 10:18 2003 man/it/man1/mc.1.gz -r--r--r-- root/wheel 38404 Sep 29 10:18 2003 man/pl/man1/mc.1.gz -r--r--r-- root/wheel 46855 Sep 29 10:18 2003 man/ru.KOI8-R/man1/mc.1.gz -r--r--r-- root/wheel 34124 Sep 29 10:18 2003 man/man1/mc.1.gz -r--r--r-- root/wheel 6495 Sep 29 10:18 2003 man/man1/mcedit.1.gz -r--r--r-- root/wheel 1247 Sep 29 10:18 2003 man/man1/mcview.1.gz -r-xr-xr-x root/wheel 3692 Sep 29 10:18 2003 bin/mcmfmt -r-xr-xr-x root/wheel 970348 Sep 29 10:18 2003 bin/mc lrwxr-xr-x root/wheel 0 Sep 29 10:18 2003 bin/mcedit -> mc lrwxr-xr-x root/wheel 0 Sep 29 10:18 2003 bin/mcview -> mc lrwxr-xr-x root/wheel 0 Sep 29 10:18 2003 bin/midc -> mc -r--r--r-- root/wheel 67935 Sep 29 10:18 2003 share/locale/az/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 65511 Sep 29 10:18 2003 share/locale/be/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 80542 Sep 29 10:18 2003 share/locale/bg/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 68515 Sep 29 10:18 2003 share/locale/ca/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 67608 Sep 29 10:18 2003 share/locale/cs/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 63857 Sep 29 10:18 2003 share/locale/da/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 66375 Sep 29 10:18 2003 share/locale/de/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 8586 Sep 29 10:18 2003 share/locale/el/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 69036 Sep 29 10:18 2003 share/locale/es/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 67642 Sep 29 10:18 2003 share/locale/eu/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 22011 Sep 29 10:18 2003 share/locale/fi/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 69162 Sep 29 10:18 2003 share/locale/fr/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 68960 Sep 29 10:18 2003 share/locale/hu/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 68970 Sep 29 10:18 2003 share/locale/it/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 65024 Sep 29 10:18 2003 share/locale/ja/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 64910 Sep 29 10:18 2003 share/locale/ko/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 64575 Sep 29 10:18 2003 share/locale/lv/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 67920 Sep 29 10:18 2003 share/locale/nl/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 65526 Sep 29 10:18 2003 share/locale/no/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 68699 Sep 29 10:18 2003 share/locale/pl/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 66902 Sep 29 10:18 2003 share/locale/pt/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 62653 Sep 29 10:18 2003 share/locale/pt_BR/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 68894 Sep 29 10:18 2003 share/locale/ro/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 68995 Sep 29 10:18 2003 share/locale/ru/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 69745 Sep 29 10:18 2003 share/locale/sk/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 68954 Sep 29 10:18 2003 share/locale/sl/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 66956 Sep 29 10:18 2003 share/locale/sv/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 9337 Sep 29 10:18 2003 share/locale/ta/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 64218 Sep 29 10:18 2003 share/locale/tr/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 68846 Sep 29 10:18 2003 share/locale/uk/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 51145 Sep 29 10:18 2003 share/locale/wa/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 61164 Sep 29 10:18 2003 share/locale/zh_CN/LC_MESSAGES/mc.mo -r--r--r-- root/wheel 57855 Sep 29 10:18 2003 share/locale/zh_TW/LC_MESSAGES/mc.mo -r-xr-xr-x root/wheel 340 Sep 29 10:18 2003 share/mc/bin/mc-wrapper.csh -r-xr-xr-x root/wheel 276 Sep 29 10:18 2003 share/mc/bin/mc-wrapper.sh -r-xr-xr-x root/wheel 57 Sep 29 10:18 2003 share/mc/bin/mc.csh -r-xr-xr-x root/wheel 51 Sep 29 10:18 2003 share/mc/bin/mc.sh -r--r--r-- root/wheel 11986 Sep 29 10:18 2003 share/mc/cedit.menu -r--r--r-- root/wheel 810 Sep 29 10:18 2003 share/mc/edit.indent.rc -r--r--r-- root/wheel 247 Sep 29 10:18 2003 share/mc/edit.spell.rc -r--r--r-- root/wheel 7458 Sep 29 10:18 2003 share/mc/extfs/README -r-xr-xr-x root/wheel 2885 Sep 29 10:18 2003 share/mc/extfs/a -r-xr-xr-x root/wheel 9443 Sep 29 10:18 2003 share/mc/extfs/apt -r-xr-xr-x root/wheel 1308 Sep 29 10:18 2003 share/mc/extfs/audio -r-xr-xr-x root/wheel 1205 Sep 29 10:18 2003 share/mc/extfs/bpp -r-xr-xr-x root/wheel 4908 Sep 29 10:18 2003 share/mc/extfs/deb -r-xr-xr-x root/wheel 4373 Sep 29 10:18 2003 share/mc/extfs/deba -r-xr-xr-x root/wheel 10144 Sep 29 10:18 2003 share/mc/extfs/debd -r-xr-xr-x root/wheel 8823 Sep 29 10:18 2003 share/mc/extfs/dpkg -r--r--r-- root/wheel 825 Sep 29 10:18 2003 share/mc/extfs/extfs.ini -r-xr-xr-x root/wheel 2521 Sep 29 10:18 2003 share/mc/extfs/hp48 -r-xr-xr-x root/wheel 1005 Sep 29 10:18 2003 share/mc/extfs/lslR -r-xr-xr-x root/wheel 3441 Sep 29 10:18 2003 share/mc/extfs/mailfs -r-xr-xr-x root/wheel 6459 Sep 29 10:18 2003 share/mc/extfs/patchfs -r-xr-xr-x root/wheel 8048 Sep 29 10:18 2003 share/mc/extfs/rpm -r-xr-xr-x root/wheel 1509 Sep 29 10:18 2003 share/mc/extfs/rpms -r--r--r-- root/wheel 649 Sep 29 10:18 2003 share/mc/extfs/sfs.ini -r-xr-xr-x root/wheel 6866 Sep 29 10:18 2003 share/mc/extfs/trpm -r-xr-xr-x root/wheel 811 Sep 29 10:18 2003 share/mc/extfs/uar -r-xr-xr-x root/wheel 1639 Sep 29 10:18 2003 share/mc/extfs/uarj -r-xr-xr-x root/wheel 951 Sep 29 10:18 2003 share/mc/extfs/uha -r-xr-xr-x root/wheel 4047 Sep 29 10:18 2003 share/mc/extfs/ulha -r-xr-xr-x root/wheel 2551 Sep 29 10:18 2003 share/mc/extfs/urar -r-xr-xr-x root/wheel 12802 Sep 29 10:18 2003 share/mc/extfs/uzip -r-xr-xr-x root/wheel 1407 Sep 29 10:18 2003 share/mc/extfs/uzoo -r--r--r-- root/wheel 213 Sep 29 10:18 2003 share/mc/mc.charsets -r--r--r-- root/wheel 12189 Sep 29 10:18 2003 share/mc/mc.ext -r--r--r-- root/wheel 3100 Sep 29 10:18 2003 share/mc/mc.hint -r--r--r-- root/wheel 3018 Sep 29 10:18 2003 share/mc/mc.hint.cs -r--r--r-- root/wheel 3286 Sep 29 10:18 2003 share/mc/mc.hint.es -r--r--r-- root/wheel 3424 Sep 29 10:18 2003 share/mc/mc.hint.hu -r--r--r-- root/wheel 3265 Sep 29 10:18 2003 share/mc/mc.hint.it -r--r--r-- root/wheel 3261 Sep 29 10:18 2003 share/mc/mc.hint.nl -r--r--r-- root/wheel 3309 Sep 29 10:18 2003 share/mc/mc.hint.pl -r--r--r-- root/wheel 3328 Sep 29 10:18 2003 share/mc/mc.hint.ru -r--r--r-- root/wheel 3393 Sep 29 10:18 2003 share/mc/mc.hint.uk -r--r--r-- root/wheel 2525 Sep 29 10:18 2003 share/mc/mc.hint.zh -r--r--r-- root/wheel 125147 Sep 29 10:18 2003 share/mc/mc.hlp -r--r--r-- root/wheel 159034 Sep 29 10:18 2003 share/mc/mc.hlp.es -r--r--r-- root/wheel 128979 Sep 29 10:18 2003 share/mc/mc.hlp.hu -r--r--r-- root/wheel 131632 Sep 29 10:18 2003 share/mc/mc.hlp.it -r--r--r-- root/wheel 147174 Sep 29 10:18 2003 share/mc/mc.hlp.pl -r--r--r-- root/wheel 175477 Sep 29 10:18 2003 share/mc/mc.hlp.ru -r--r--r-- root/wheel 1851 Sep 29 10:18 2003 share/mc/mc.lib -r--r--r-- root/wheel 7853 Sep 29 10:18 2003 share/mc/mc.menu -r--r--r-- root/wheel 2607 Sep 29 10:18 2003 share/mc/syntax/Syntax -r--r--r-- root/wheel 1604 Sep 29 10:18 2003 share/mc/syntax/ada95.syntax -r--r--r-- root/wheel 3867 Sep 29 10:18 2003 share/mc/syntax/c.syntax -r--r--r-- root/wheel 936 Sep 29 10:18 2003 share/mc/syntax/changelog.syntax -r--r--r-- root/wheel 1151 Sep 29 10:18 2003 share/mc/syntax/diff.syntax -r--r--r-- root/wheel 3080 Sep 29 10:18 2003 share/mc/syntax/dos.syntax -r--r--r-- root/wheel 8604 Sep 29 10:18 2003 share/mc/syntax/fortran.syntax -r--r--r-- root/wheel 369 Sep 29 10:18 2003 share/mc/syntax/html.syntax -r--r--r-- root/wheel 4558 Sep 29 10:18 2003 share/mc/syntax/java.syntax -r--r--r-- root/wheel 4802 Sep 29 10:18 2003 share/mc/syntax/js.syntax -r--r--r-- root/wheel 8970 Sep 29 10:18 2003 share/mc/syntax/latex.syntax -r--r--r-- root/wheel 2191 Sep 29 10:18 2003 share/mc/syntax/lisp.syntax -r--r--r-- root/wheel 1253 Sep 29 10:18 2003 share/mc/syntax/lsm.syntax -r--r--r-- root/wheel 2898 Sep 29 10:18 2003 share/mc/syntax/m4.syntax -r--r--r-- root/wheel 2958 Sep 29 10:18 2003 share/mc/syntax/mail.syntax -r--r--r-- root/wheel 1305 Sep 29 10:18 2003 share/mc/syntax/makefile.syntax -r--r--r-- root/wheel 7955 Sep 29 10:18 2003 share/mc/syntax/ml.syntax -r--r--r-- root/wheel 8141 Sep 29 10:18 2003 share/mc/syntax/nroff.syntax -r--r--r-- root/wheel 10770 Sep 29 10:18 2003 share/mc/syntax/octave.syntax -r--r--r-- root/wheel 3812 Sep 29 10:18 2003 share/mc/syntax/pascal.syntax -r--r--r-- root/wheel 10823 Sep 29 10:18 2003 share/mc/syntax/perl.syntax -r--r--r-- root/wheel 39420 Sep 29 10:18 2003 share/mc/syntax/php.syntax -r--r--r-- root/wheel 2318 Sep 29 10:18 2003 share/mc/syntax/po.syntax -r--r--r-- root/wheel 8356 Sep 29 10:18 2003 share/mc/syntax/python.syntax -r--r--r-- root/wheel 9117 Sep 29 10:18 2003 share/mc/syntax/sh.syntax -r--r--r-- root/wheel 3426 Sep 29 10:18 2003 share/mc/syntax/slang.syntax -r--r--r-- root/wheel 5277 Sep 29 10:18 2003 share/mc/syntax/smalltalk.syntax -r--r--r-- root/wheel 6047 Sep 29 10:18 2003 share/mc/syntax/spec.syntax -r--r--r-- root/wheel 15522 Sep 29 10:18 2003 share/mc/syntax/sql.syntax -r--r--r-- root/wheel 5562 Sep 29 10:18 2003 share/mc/syntax/swig.syntax -r--r--r-- root/wheel 1919 Sep 29 10:18 2003 share/mc/syntax/syntax.syntax -r--r--r-- root/wheel 4016 Sep 29 10:18 2003 share/mc/syntax/tcl.syntax -r--r--r-- root/wheel 9087 Sep 29 10:18 2003 share/mc/syntax/texinfo.syntax -r--r--r-- root/wheel 31 Sep 29 10:18 2003 share/mc/syntax/unknown.syntax -r--r--r-- root/wheel 1054 Sep 29 10:18 2003 share/mc/syntax/xml.syntax -r--r--r-- root/wheel 5365 Sep 29 10:18 2003 share/mc/term/README.xterm -r--r--r-- root/wheel 833 Sep 29 10:18 2003 share/mc/term/ansi.ti -r--r--r-- root/wheel 2316 Sep 29 10:18 2003 share/mc/term/linux.ti -r--r--r-- root/wheel 1035 Sep 29 10:18 2003 share/mc/term/vt100.ti -r--r--r-- root/wheel 3874 Sep 29 10:18 2003 share/mc/term/xterm.ad -r--r--r-- root/wheel 1934 Sep 29 10:18 2003 share/mc/term/xterm.tcap -r--r--r-- root/wheel 3227 Sep 29 10:18 2003 share/mc/term/xterm.ti --------------090604030807000704010008-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 08:52: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 0D8AA16A4B3 for ; Wed, 1 Oct 2003 08:52:55 -0700 (PDT) Received: from mail.lovett.com (sentinel.ranger.supernews.net [216.168.1.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 591D543FB1 for ; Wed, 1 Oct 2003 08:52:54 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: from 44ba06102.mdfrd.or.charter.com ([68.186.6.102] helo=FreeBSD.org) by mail.lovett.com with asmtp (Exim 4.22) id 1A4jHa-000PEP-1b; Wed, 01 Oct 2003 15:52:54 +0000 Date: Wed, 1 Oct 2003 08:52:38 -0700 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) To: Jens Rehsack From: Ade Lovett In-Reply-To: <3F7AEAA6.2050105@liwing.de> Message-Id: <488591F8-F427-11D7-91F1-000A956B6386@FreeBSD.org> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.552) cc: FreeBSD Ports cc: Oliver Eikemeier Subject: Re: Problems with make package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 15:52:55 -0000 On Wednesday, Oct 1, 2003, at 07:54 US/Pacific, Jens Rehsack wrote: > [packaging tales of woe snipped] Jens, Do you perchance have WRKDIRPREFIX set in /etc/make.conf (or elsewhere)? There are a bunch of references to make, ${MAKE} et al. inside bsd.port.mk that need to be converted over to '${MAKE} -C ${.CURDIR}' to be WRKDIRPREFIX-safe. -aDe From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 08:59: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 3B2AB16A4B3 for ; Wed, 1 Oct 2003 08:59:31 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02D9843FB1 for ; Wed, 1 Oct 2003 08:59:30 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 69208 invoked from network); 1 Oct 2003 15:59:27 -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 ; 1 Oct 2003 15:59:26 -0000 Message-ID: <3F7AF9DE.6090304@liwing.de> Date: Wed, 01 Oct 2003 15:59:26 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030928 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Ade Lovett References: <488591F8-F427-11D7-91F1-000A956B6386@FreeBSD.org> In-Reply-To: <488591F8-F427-11D7-91F1-000A956B6386@FreeBSD.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD Ports cc: Oliver Eikemeier Subject: Re: Problems with make package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 15:59:31 -0000 Ade Lovett wrote: > > On Wednesday, Oct 1, 2003, at 07:54 US/Pacific, Jens Rehsack wrote: > >> [packaging tales of woe snipped] > > > Jens, > > Do you perchance have WRKDIRPREFIX set in /etc/make.conf (or > elsewhere)? There are a bunch of references to make, ${MAKE} et al. Yes, I did. > inside bsd.port.mk that need to be converted over to '${MAKE} -C > ${.CURDIR}' to be WRKDIRPREFIX-safe. Can I do sth. to resove this or do I need to wait for a fix of you? > -aDe Jens From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 09:02: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 2973E16A4BF for ; Wed, 1 Oct 2003 09:02:48 -0700 (PDT) Received: from mx2.fillmore-labs.com (lima.fillmore-labs.com [62.138.193.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59DC443FE1 for ; Wed, 1 Oct 2003 09:02:47 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from atlantis.development.fillmore-labs.com ([192.168.130.182] helo=fillmore-labs.com) by mx2.fillmore-labs.com with asmtp (TLSv1:AES256-SHA:256) (Exim 4.24; FreeBSD 4.9) id 1A4jR8-0000RH-8J; Wed, 01 Oct 2003 18:02:46 +0200 Message-ID: <3F7AFAA5.8070207@fillmore-labs.com> Date: Wed, 01 Oct 2003 18:02:45 +0200 From: Oliver Eikemeier MIME-Version: 1.0 To: Jens Rehsack , FreeBSD Ports References: <488591F8-F427-11D7-91F1-000A956B6386@FreeBSD.org> In-Reply-To: <488591F8-F427-11D7-91F1-000A956B6386@FreeBSD.org> 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 Subject: Re: Problems with make package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ade Lovett , FreeBSD Ports List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2003 16:02:48 -0000 Ade Lovett wrote: > On Wednesday, Oct 1, 2003, at 07:54 US/Pacific, Jens Rehsack wrote: > >> [packaging tales of woe snipped] > > Jens, > > Do you perchance have WRKDIRPREFIX set in /etc/make.conf (or > elsewhere)? There are a bunch of references to make, ${MAKE} et al. > inside bsd.port.mk that need to be converted over to '${MAKE} -C > ${.CURDIR}' to be WRKDIRPREFIX-safe. This should be PR 56096: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/56096 Does the proposed fix work? From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 09:24: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 74A2B16A4BF for ; Wed, 1 Oct 2003 09:24:11 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A53143FDD for ; Wed, 1 Oct 2003 09:24:09 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 75104 invoked from network); 1 Oct 2003 16:24:08 -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 ; 1 Oct 2003 16:24:08 -0000 Message-ID: <3F7AFFA7.2050308@liwing.de> Date: Wed, 01 Oct 2003 16:24:07 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030928 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Ade Lovett , FreeBSD Ports References: <488591F8-F427-11D7-91F1-000A956B6386@FreeBSD.org> <3F7AFAA5.8070207@fillmore-labs.com> In-Reply-To: <3F7AFAA5.8070207@fillmore-labs.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: Problems with make package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 16:24:11 -0000 Oliver Eikemeier wrote: > Ade Lovett wrote: > >> On Wednesday, Oct 1, 2003, at 07:54 US/Pacific, Jens Rehsack wrote: >> >>> [packaging tales of woe snipped] >> >> >> Jens, >> >> Do you perchance have WRKDIRPREFIX set in /etc/make.conf (or >> elsewhere)? There are a bunch of references to make, ${MAKE} et al. >> inside bsd.port.mk that need to be converted over to '${MAKE} -C >> ${.CURDIR}' to be WRKDIRPREFIX-safe. > > > This should be PR 56096: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/56096 > > Does the proposed fix work? Can't really test, because # portupgrade -pRf m ... ===> Building package for mc-4.6.0_5 Creating package /usr/packages/All/mc-4.6.0_5.tbz Registering depends: expat-1.95.6_1 gettext-0.12.1 glib-2.2.3 libiconv-1.9.1_1 libslang-1.4.9 perl-5.8.0_8 pkgconfig-0.15.0. Creating bzip'd tar ball in '/usr/packages/All/mc-4.6.0_5.tbz' make: don't know how to make package-links. Stop *** Error code 2 Stop in /usr/ports/misc/mc. But for mc it seems to work, because all relevant packages are installed. Thanks, Jens From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 09: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 4269416A4BF for ; Wed, 1 Oct 2003 09:28:14 -0700 (PDT) Received: from mail.lovett.com (sentinel.ranger.supernews.net [216.168.1.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FD3D43FE5 for ; Wed, 1 Oct 2003 09:28:13 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: from 44ba06102.mdfrd.or.charter.com ([68.186.6.102] helo=FreeBSD.org) by mail.lovett.com with asmtp (Exim 4.22) id 1A4jpl-000PN1-91; Wed, 01 Oct 2003 16:28:13 +0000 Date: Wed, 1 Oct 2003 09:28:12 -0700 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) To: FreeBSD Ports From: Ade Lovett In-Reply-To: <3F7AFAA5.8070207@fillmore-labs.com> Message-Id: <4029A580-F42C-11D7-91F1-000A956B6386@FreeBSD.org> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.552) Subject: Re: Problems with make package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 16:28:14 -0000 On Wednesday, Oct 1, 2003, at 09:02 US/Pacific, Oliver Eikemeier wrote: > This should be PR 56096: > http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/56096 That PR doesn't cover all the cases, but is a good start. I'll dig out my patch once my testbox has finished rebuilding world and a few other bits and pieces. -aDe From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 10:04:49 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 7CC8216A4B3 for ; Wed, 1 Oct 2003 10:04:49 -0700 (PDT) Received: from globaldiagnostics.com (globaldiagnostics.com [64.56.239.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id D589543F75 for ; Wed, 1 Oct 2003 10:04:48 -0700 (PDT) (envelope-from brandon@globaldiagnostics.com) Received: from cpe0080c8dd4916-cm014280006866.cpe.net.cable.rogers.com ([24.156.102.208] helo=cr236454a) by globaldiagnostics.com with smtp (Exim 4.20) id 1A4kP8-000B0t-B6; Wed, 01 Oct 2003 13:04:46 -0400 From: "Brandon Gale" To: "Philip Paeps" , Date: Wed, 1 Oct 2003 13:04:05 -0400 Message-ID: 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 IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 In-Reply-To: <20031001063707.GA656@hermes.nixsys.be> Importance: Normal Subject: RE: MS Exchange X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 17:04:49 -0000 > -----Original Message----- > From: Philip Paeps [mailto:philip+freebsd@paeps.cx] > Sent: Wednesday, October 01, 2003 2:37 AM > To: ports@freebsd.org > Cc: Brandon Gale > Subject: Re: MS Exchange > > > On 2003-09-29 22:54:31 (-0400), Brandon Gale > wrote: > > Does anyone know of a port or piece of software that emulates a > MS Exchange > > server and interfaces with MS Outlook clients? > > The only thing I can think of is SuSE's 'OpenExchange'. I've > never used it > myself (I prefer just plain IMAP and LDAP, and particularly doing > away with > lookout and that so-called 'operating system' on which is it said > to 'run'), > but it comes highly recommended by a friend of mine. That could > mean I should > find other friends though :-) Do you have a link to the homepage for OpenExchange? > > > I'm trying to provide an alternative to a potential client using Win2k > > simply for the only reason that they require the functionality of an MS > > Exchange server. > > Which functionality do they require? The main functionality is centralized email access, centralized calendar sharing and centralized address book sharing, all done through their familiar Outlook interface. I'm trying to convince the client that running a Win2k3 server is going to be much more costly than running a FreeBSD server. They agree in principal, but the three capabilities listed above are the sticking point in the decision, which leads to MS Exchange server and the ship is sunk. I'm also considering pitching a fully web based groupware system, but haven't found many options for that. In the ports tree all I could find was "phpGroupWare" which I'm not sure is still undergoing active development. Thanks, Brandon From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 10:10: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 0577916A4B3 for ; Wed, 1 Oct 2003 10:10:59 -0700 (PDT) Received: from lakemtao06.cox.net (lakemtao06.cox.net [68.1.17.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DC1E43FF5 for ; Wed, 1 Oct 2003 10:10:57 -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 <20031001171056.XFHV26456.lakemtao06.cox.net@mezz.mezzweb.com>; Wed, 1 Oct 2003 13:10:56 -0400 Date: Wed, 01 Oct 2003 12:09:53 -0500 To: Brandon Gale References: 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: User-Agent: Opera7.20/Linux M2 build 468 cc: ports@freebsd.org Subject: Re: MS Exchange X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 17:10:59 -0000 On Wed, 1 Oct 2003 13:04:05 -0400, Brandon Gale wrote: >> -----Original Message----- >> From: Philip Paeps [mailto:philip+freebsd@paeps.cx] >> Sent: Wednesday, October 01, 2003 2:37 AM >> To: ports@freebsd.org >> Cc: Brandon Gale >> Subject: Re: MS Exchange >> >> >> On 2003-09-29 22:54:31 (-0400), Brandon Gale >> wrote: >> > Does anyone know of a port or piece of software that emulates a >> MS Exchange >> > server and interfaces with MS Outlook clients? >> >> The only thing I can think of is SuSE's 'OpenExchange'. I've >> never used it >> myself (I prefer just plain IMAP and LDAP, and particularly doing >> away with >> lookout and that so-called 'operating system' on which is it said >> to 'run'), >> but it comes highly recommended by a friend of mine. That could >> mean I should >> find other friends though :-) > > Do you have a link to the homepage for OpenExchange? http://www.google.com/search?q=OpenExchange Google is your friend.. ;-) Anyway, you also can try to check at http://atmail.com/ , I haven't use it but I saw demo and it looks nice... Cheers, Mezz >> > I'm trying to provide an alternative to a potential client using Win2k >> > simply for the only reason that they require the functionality of an >> MS >> > Exchange server. >> >> Which functionality do they require? > > The main functionality is centralized email access, centralized calendar > sharing and centralized address book sharing, all done through their > familiar Outlook interface. > > I'm trying to convince the client that running a Win2k3 server is going > to > be much more costly than running a FreeBSD server. They agree in > principal, > but the three capabilities listed above are the sticking point in the > decision, which leads to MS Exchange server and the ship is sunk. > > I'm also considering pitching a fully web based groupware system, but > haven't found many options for that. In the ports tree all I could find > was > "phpGroupWare" which I'm not sure is still undergoing active development. > > Thanks, > Brandon > > > _______________________________________________ > 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" -- bsdforums.org 's moderator, mezz. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 10:12: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 1E70B16A4B3 for ; Wed, 1 Oct 2003 10:12:11 -0700 (PDT) Received: from globaldiagnostics.com (globaldiagnostics.com [64.56.239.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB23143FF9 for ; Wed, 1 Oct 2003 10:12:09 -0700 (PDT) (envelope-from brandon@globaldiagnostics.com) Received: from cpe0080c8dd4916-cm014280006866.cpe.net.cable.rogers.com ([24.156.102.208] helo=cr236454a) by globaldiagnostics.com with smtp (Exim 4.20) id 1A4kWH-000B24-5d; Wed, 01 Oct 2003 13:12:09 -0400 From: "Brandon Gale" To: Date: Wed, 1 Oct 2003 13:11:28 -0400 Message-ID: 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 IMO, Build 9.0.6604 (9.0.2911.0) X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 In-Reply-To: <20031001144505.GA11562@exuma.irbs.com> Importance: Normal cc: ports@freebsd.org Subject: RE: MS Exchange X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 17:12:11 -0000 > -----Original Message----- > From: John Capo [mailto:jc@irbs.com] > Sent: Wednesday, October 01, 2003 10:45 AM > To: Brandon Gale > Cc: ports@freebsd.org > Subject: Re: MS Exchange > > > Quoting Brandon Gale (brandon@globaldiagnostics.com): > > Does anyone know of a port or piece of software that emulates a > MS Exchange > > server and interfaces with MS Outlook clients? I'm trying to provide an > > alternative to a potential client using Win2k simply for the only reason > > that they require the functionality of an MS Exchange server. > > > > It pretty Linux centric but there are a few people that have managed > to compile it on BSD boxen: > > http://opengroupware.org/ John, I think that would do the job, but I doubt I have the skills necessary to futz with source code and makefiles and get it to install on FreeBSD (from what I can tell reading the archived mail). On the website they say a FreeBSD port is coming soon, maybe it will available in time. I wonder if any of the four people listed as working on the port could post an ETA or status update on that work? Thanks, Brandon From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 10:42: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 50FF516A4BF for ; Wed, 1 Oct 2003 10:42:31 -0700 (PDT) Received: from underfoot.windborne.net (underfoot.windborne.net [66.100.81.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9860D44001 for ; Wed, 1 Oct 2003 10:42:27 -0700 (PDT) (envelope-from branson@windborne.net) Received: by underfoot.windborne.net (Postfix, from userid 10652) id 76AFA1324A; Wed, 1 Oct 2003 13:42:26 -0400 (EDT) Date: Wed, 1 Oct 2003 13:42:26 -0400 From: Branson Matheson To: sysadmin@alexdupre.com Message-ID: <20031001134226.A99669@underfoot.windborne.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i cc: gjp@bsdnet.org cc: freebsd-ports@freebsd.org cc: moon@wistful.net Subject: PHP4 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Branson Matheson List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2003 17:42:31 -0000 Hey, I have two issues for ya: - in the current port CVS'd as of last night.. you're missing the define for OPENSSLBASE in the Makefile.. so it will not build properly with out this being set if OPENSSL is selected from the menu. - As a suggestion it may be more proper to mark "Release Canidates" as such in the ports tree. Much in the same way the nessus port has nessus .. and then nessus-devel. That way people aren't installing bleeding edge software off the cuff. Thanks! -branson From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 10:50: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 8142216A4B3 for ; Wed, 1 Oct 2003 10:50:50 -0700 (PDT) Received: from relay.gufi.org (civetta.gufi.org [212.110.23.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EDA043FF5 for ; Wed, 1 Oct 2003 10:50:49 -0700 (PDT) (envelope-from sysadmin@alexdupre.com) Received: from server.alexdupre.com (host245-49.pool8288.interbusiness.it [82.88.49.245]) by relay.gufi.org (Postfix) with ESMTP id DBCD020F1C for ; Wed, 1 Oct 2003 19:50:47 +0200 (CEST) Received: from thunder.alexdupre.com (thunder.alexdupre.com [192.168.0.101]) h91HoKwj009758; Wed, 1 Oct 2003 19:50:20 +0200 (CEST) (envelope-from sysadmin@alexdupre.com) Date: Wed, 1 Oct 2003 19:50:19 +0200 From: Alex Dupre X-Mailer: The Bat! (v1.60q) Message-ID: <175297454757.20031001195019@alexdupre.com> To: Branson Matheson In-Reply-To: <20031001134226.A99669@underfoot.windborne.net> References: <20031001134226.A99669@underfoot.windborne.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: gjp@bsdnet.org cc: freebsd-ports@freebsd.org cc: moon@wistful.net Subject: Re: PHP4 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alex Dupre List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2003 17:50:50 -0000 Wednesday, October 1, 2003, 7:42:26 PM, you wrote: BM> - in the current port CVS'd as of last night.. you're missing the define BM> for OPENSSLBASE in the Makefile.. so it will not build properly with BM> out this being set if OPENSSL is selected from the menu. The fix is already in the cvs. BM> - As a suggestion it may be more proper to mark "Release Canidates" as BM> such in the ports tree. Much in the same way the nessus port has BM> nessus .. and then nessus-devel. That way people aren't installing BM> bleeding edge software off the cuff. 4.3.4RC1 is only a bugfix release, as stable as 4.3.3. The openssl issue is another story. This RC fixes some problems with FreeBSD. -- Alex Dupre sysadmin@alexdupre.com http://www.alexdupre.com/ alex@sm.FreeBSD.org Today's excuse: OS swapped to disk From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 10:58: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 4DA0916A4B3 for ; Wed, 1 Oct 2003 10:58:06 -0700 (PDT) Received: from globaldiagnostics.com (globaldiagnostics.com [64.56.239.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D77243FAF for ; Wed, 1 Oct 2003 10:58:05 -0700 (PDT) (envelope-from brandon@globaldiagnostics.com) Received: from cpe0080c8dd4916-cm014280006866.cpe.net.cable.rogers.com ([24.156.102.208] helo=cr236454a) by globaldiagnostics.com with smtp (Exim 4.20) id 1A4lEi-000B8D-DX; Wed, 01 Oct 2003 13:58:04 -0400 From: "Brandon Gale" To: "Jeremy Messenger" Date: Wed, 1 Oct 2003 13:57:24 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable 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 In-Reply-To: Importance: Normal cc: ports@freebsd.org Subject: RE: MS Exchange X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 17:58:06 -0000 > -----Original Message----- > From: Jeremy Messenger [mailto:mezz7@cox.net] > Sent: Wednesday, October 01, 2003 1:10 PM > To: Brandon Gale > Cc: Philip Paeps; ports@freebsd.org > Subject: Re: MS Exchange >=20 >=20 > On Wed, 1 Oct 2003 13:04:05 -0400, Brandon Gale=20 > wrote: >=20 > >> -----Original Message----- > >> From: Philip Paeps [mailto:philip+freebsd@paeps.cx] > >> Sent: Wednesday, October 01, 2003 2:37 AM > >> To: ports@freebsd.org > >> Cc: Brandon Gale > >> Subject: Re: MS Exchange > >> > >> > >> On 2003-09-29 22:54:31 (-0400), Brandon Gale > >> wrote: > >> > Does anyone know of a port or piece of software that emulates a > >> MS Exchange > >> > server and interfaces with MS Outlook clients? > >> > >> The only thing I can think of is SuSE's 'OpenExchange'. I've > >> never used it > >> myself (I prefer just plain IMAP and LDAP, and particularly doing > >> away with > >> lookout and that so-called 'operating system' on which is it said > >> to 'run'), > >> but it comes highly recommended by a friend of mine. That could > >> mean I should > >> find other friends though :-) > > > > Do you have a link to the homepage for OpenExchange? >=20 > http://www.google.com/search?q=3DOpenExchange >=20 > Google is your friend.. ;-) Yeah, I just wasn't quite sure if I was looking at the right page since = OpenExchange sounds free, but what I was looking at cost $$ :) >=20 > Anyway, you also can try to check at http://atmail.com/ , I=20 > haven't use it=20 > but I saw demo and it looks nice... Yes, the interface is certainly very well done. I don't think it quite = is up to par in the global calendar section. I'm currently = investigating phpGroupWare in more detail. Thanks everyone for the responses. Brandon From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 12:25: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 B81FC16A4B3 for ; Wed, 1 Oct 2003 12:25:25 -0700 (PDT) Received: from materialised.hopto.org (cpc1-stoc3-6-0-cust112.midd.cable.ntl.com [80.6.222.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id 483FA43FE3 for ; Wed, 1 Oct 2003 12:25:24 -0700 (PDT) (envelope-from mick@materialised.hopto.org) Received: from [80.6.222.112] (cpc1-stoc3-6-0-cust112.midd.cable.ntl.com [80.6.222.112])h91JPJ02002681 for ; Wed, 1 Oct 2003 20:25:20 +0100 (BST) (envelope-from mick@materialised.hopto.org) From: Mick Walker To: freebsd-ports@freebsd.org Content-Type: text/plain Message-Id: <1065036318.92446.2.camel@materialised.hopto.org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Wed, 01 Oct 2003 20:25:18 +0100 Content-Transfer-Encoding: 7bit Subject: mozilla-gtk2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 19:25:25 -0000 After installing mozilla from the ports tree, I have the following issue. It works fine as root but when I try to run it as a user I get the following. bash-2.05b$ mozilla /usr/X11R6/bin/mozilla: ./mozilla: Permission denied exec: ./mozilla: Permission denied Obviously it is a permissions issue, but after changing permission on /usr/X11R6/bin/mozilla I still get the same error. Anyone know of a workaround? Thanks in advance Mick From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 12:56: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 0140716A4BF for ; Wed, 1 Oct 2003 12:56:09 -0700 (PDT) Received: from lakemtao02.cox.net (lakemtao02.cox.net [68.1.17.243]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93FFC43F93 for ; Wed, 1 Oct 2003 12:56:07 -0700 (PDT) (envelope-from A.J.Caines@halplant.com) Received: from mail.halplant.com ([68.98.167.210]) by lakemtao02.cox.net (InterMail vM.5.01.06.05 201-253-122-130-105-20030824) with ESMTP id <20031001195607.LFOC3302.lakemtao02.cox.net@mail.halplant.com> for ; Wed, 1 Oct 2003 15:56:07 -0400 Received: by mail.halplant.com (Postfix, from userid 1001) id 59F38A3; Wed, 1 Oct 2003 15:56:06 -0400 (EDT) Date: Wed, 1 Oct 2003 15:56:06 -0400 From: Andrew J Caines To: freebsd-ports@freebsd.org Message-ID: <20031001195606.GT30185@hal9000.halplant.com> Mail-Followup-To: freebsd-ports@freebsd.org References: <1065036318.92446.2.camel@materialised.hopto.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1065036318.92446.2.camel@materialised.hopto.org> Organization: H.A.L. Plant X-PGP-Fingerprint: C59A 2F74 1139 9432 B457 0B61 DDF2 AA61 67C3 18A1 X-Powered-by: FreeBSD 4.9-PRERELEASE X-URL: http://halplant.com:88/ X-Yahoo-Profile: AJ_Z0 Importance: Normal X-ICQ: 283813972 User-Agent: Mutt/1.5.4i Subject: Re: mozilla-gtk2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrew J Caines List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 01 Oct 2003 19:56:09 -0000 Mick, > /usr/X11R6/bin/mozilla: ./mozilla: Permission denied > exec: ./mozilla: Permission denied > Obviously it is a permissions issue, but after changing permission on > /usr/X11R6/bin/mozilla I still get the same error. If you had to change permissions on that file, then there's a good chance many other files don't have right permissions. Did you install with an unusually righteous umask? Did you check the target, ie. /usr/X11R6/lib/mozilla/mozilla? Look through all of /usr/X11R6/lib/mozilla{,-devel} and find all the files which have missing `other' perms, either with find's -perm or something a bit more legible like.. # find /usr/X11R6/lib/mozilla -ls | awk '/\-\-\-/{print $3,$NF}' I've found that sometimes extensions will install with oddly restrictive permissions which prevent them from being used by users. -Andrew- -- _______________________________________________________________________ | -Andrew J. Caines- Unix Systems Engineer A.J.Caines@halplant.com | | "They that can give up essential liberty to obtain a little temporary | | safety deserve neither liberty nor safety" - Benjamin Franklin, 1759 | From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 13:52: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 3D72916A4B3 for ; Wed, 1 Oct 2003 13:52:55 -0700 (PDT) Received: from postfix3-1.free.fr (postfix3-1.free.fr [213.228.0.44]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6063543FFB for ; Wed, 1 Oct 2003 13:52:53 -0700 (PDT) (envelope-from thierry@pompo.net) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by postfix3-1.free.fr (Postfix) with ESMTP id 88C86CB7D for ; Wed, 1 Oct 2003 21:30:00 +0200 (CEST) Received: by graf.pompo.net (Postfix, from userid 1001) id D4A447521; Wed, 1 Oct 2003 21:26:29 +0200 (CEST) Date: Wed, 1 Oct 2003 21:26:29 +0200 From: Thierry Thomas To: ports@freebsd.org Message-ID: <20031001192629.GA78971@graf.pompo.net> Mail-Followup-To: ports@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.9-PRERELEASE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 Subject: Re: MS Exchange X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 20:52:55 -0000 Le Mer 1 oct 03 à 19:57:24 +0200, Brandon Gale écrivait : > Yes, the interface is certainly very well done. I don't think it quite is up to par in the global calendar section. I'm currently investigating phpGroupWare in more detail. Turba + IMP + Kronolith could suit your needs. They are in the ports tree, but since you need shared calendars, you'll have to use the -HEAD version (from CVS, not in ports). Regards, -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 15:41: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 8CEAB16A4F0 for ; Wed, 1 Oct 2003 15:41:42 -0700 (PDT) Received: from epsb.ca (relay.epsb.ca [198.161.119.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id E69FE440B3 for ; Wed, 1 Oct 2003 15:40:53 -0700 (PDT) (envelope-from Sean.Page@epsb.ca) Received: from exchange03.epsb.ca (exchange03.epsb.ca [10.0.5.11]) by epsb.ca (8.11.3/8.11.3) with ESMTP id h91Meqv39436 for ; Wed, 1 Oct 2003 16:40:52 -0600 (MDT) (envelope-from Sean.Page@epsb.ca) Received: by exchange03.epsb.ca with Internet Mail Service (5.5.2653.19) id ; Wed, 1 Oct 2003 16:42:45 -0600 Message-ID: From: Sean Page To: "'freebsd-ports@freebsd.org'" Date: Wed, 1 Oct 2003 16:35:45 -0600 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2653.19) Content-Type: text/plain Subject: RE: PHP4 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 01 Oct 2003 22:41:43 -0000 Just wondering if I have stumbled on a similar error. When I try to complile up mod_php4 (php-4.3.4RC1 Just cvs'd 5 min ago) I get this error: checking for LDAP support... yes configure: error: Cannot find ldap.h But it is there... # locate ldap.h /usr/local/include/ldap.h At the risk of sounding uneducated, is there a quick way for me to fix this? Thanks, Sean. -----Original Message----- From: Alex Dupre [mailto:sysadmin@alexdupre.com] Sent: October 1, 2003 11:50 AM To: Branson Matheson Cc: gjp@bsdnet.org; freebsd-ports@freebsd.org; moon@wistful.net Subject: Re: PHP4 Wednesday, October 1, 2003, 7:42:26 PM, you wrote: BM> - in the current port CVS'd as of last night.. you're missing the define BM> for OPENSSLBASE in the Makefile.. so it will not build properly with BM> out this being set if OPENSSL is selected from the menu. The fix is already in the cvs. BM> - As a suggestion it may be more proper to mark "Release Canidates" as BM> such in the ports tree. Much in the same way the nessus port has BM> nessus .. and then nessus-devel. That way people aren't installing BM> bleeding edge software off the cuff. 4.3.4RC1 is only a bugfix release, as stable as 4.3.3. The openssl issue is another story. This RC fixes some problems with FreeBSD. -- Alex Dupre sysadmin@alexdupre.com http://www.alexdupre.com/ alex@sm.FreeBSD.org Today's excuse: OS swapped to disk _______________________________________________ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 18:36: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 F261D16A4B3 for ; Wed, 1 Oct 2003 18:36:24 -0700 (PDT) Received: from mta9.adelphia.net (mta9.adelphia.net [68.168.78.199]) by mx1.FreeBSD.org (Postfix) with ESMTP id 235B843FBF for ; Wed, 1 Oct 2003 18:36:20 -0700 (PDT) (envelope-from parv_fm@mailsent.net) Received: from moo.holy.cow ([68.67.226.33]) by mta9.adelphia.net (InterMail vM.5.01.05.32 201-253-122-126-132-20030307) with ESMTP id <20031002013516.YMPF20786.mta9.adelphia.net@moo.holy.cow>; Wed, 1 Oct 2003 21:35:16 -0400 Received: by moo.holy.cow (Postfix, from userid 1001) id B91FDBAE6; Sun, 28 Sep 2003 07:22:17 -0400 (EDT) Date: Sun, 28 Sep 2003 07:22:17 -0400 From: parv To: Steve Wingate Message-ID: <20030928112217.GA9375@moo.holy.cow> Mail-Followup-To: Steve Wingate , FreeBSD Ports Mail list References: <20030927191930.M4565@daemon.g-e-e-k.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030927191930.M4565@daemon.g-e-e-k.net> cc: FreeBSD Ports Mail list Subject: Re: mplayer-skins X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 01:36:25 -0000 in message <20030927191930.M4565@daemon.g-e-e-k.net>, wrote Steve Wingate thusly... > > Who is the knucklehead behind the mplayer-skins port asking you 2-3 which > skins you want? Man, that's irritating. # cd ${PORTSDIR:-/usr/ports}/multimedia/mplayer-skins && make maintainer -- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 18:58: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 CE1DC16A4B3 for ; Wed, 1 Oct 2003 18:58:29 -0700 (PDT) Received: from qubix.ca (d57-127-238.home.cgocable.net [24.57.127.238]) by mx1.FreeBSD.org (Postfix) with ESMTP id 417D843FBD for ; Wed, 1 Oct 2003 18:58:26 -0700 (PDT) (envelope-from mo@qubix.ca) Received: from localhost (unknown [127.0.0.1]) by qubix.ca (Postfix) with ESMTP id 06A4545074; Wed, 1 Oct 2003 21:58:15 -0400 (EDT) Received: from qubix.ca ([127.0.0.1]) by localhost (qubix.ca [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 00619-03; Wed, 1 Oct 2003 21:56:59 -0400 (EDT) Received: from qubix.ca (lan [192.168.1.1]) by qubix.ca (Postfix) with ESMTP id 97E1145043; Wed, 1 Oct 2003 21:56:59 -0400 (EDT) Message-ID: <3F7B85E0.2070009@qubix.ca> Date: Wed, 01 Oct 2003 21:56:48 -0400 From: Mo User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20030924 Thunderbird/0.3 X-Accept-Language: en-us, en MIME-Version: 1.0 To: sysadmin@alexdupre.com Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at qubix.ca cc: ports@FreeBSD.org Subject: FreeBSD Port: mod_php4-4.3.3.r1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 01:58:29 -0000 I received this error after compiling mod_php4 with the additional options of gettext and openssl (the defaults were left checked). # apachectl start Syntax error on line 237 of /usr/local/etc/apache/httpd.conf: Cannot load /usr/local/libexec/apache/libphp4.so into server: /usr/local/libexec/apache/libphp4.so: Undefined symbol "X509_free" /usr/local/sbin/apachectl start: httpd could not be started It's definetly a problem with openssl, because when compiled without it, it loads with apache just fine. I'm using apache 1.3.28 (the latest version of the port) and FreeBSD 5.1-CURRENT as of Sept. 28, 2003. And my ports are up to date as of 9:55 PM EST (Oct. 1, 2003). Any update/assistance to fixing this would be appreciated. Thanks From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 21:38: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 E82D816A4B3 for ; Wed, 1 Oct 2003 21:38:28 -0700 (PDT) Received: from heaven.gigo.com (heaven.gigo.com [64.57.102.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBC8443FAF for ; Wed, 1 Oct 2003 21:38:25 -0700 (PDT) (envelope-from lioux@brturbo.com) Received: from 200-140-012-249.bsace7003.dsl.brasiltelecom.net.br (200-140-012-249.bsace7003.dsl.brasiltelecom.net.br [200.140.12.249]) by heaven.gigo.com (Postfix) with ESMTP id 01D87BA12 for ; Wed, 1 Oct 2003 21:38:23 -0700 (PDT) Received: (qmail 17009 invoked by uid 1001); 2 Oct 2003 04:36:46 -0000 Message-ID: <20031002043646.17008.qmail@exxodus.fedaykin.here> Date: Thu, 2 Oct 2003 01:36:46 -0300 From: Mario Sergio Fujikawa Ferreira To: Steve Wingate References: <20030927191930.M4565@daemon.g-e-e-k.net> <20030928112217.GA9375@moo.holy.cow> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zhXaljGHf11kAtnf" Content-Disposition: inline In-Reply-To: <20030928112217.GA9375@moo.holy.cow> X-Operating-System: FreeBSD 4.9-RC X-Disclaimer: I hope you find what you are looking for... in life :) User-Agent: Mutt/1.5.4i cc: parv cc: FreeBSD Ports Mail list Subject: Re: mplayer-skins X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 04:38:29 -0000 --zhXaljGHf11kAtnf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Sun, Sep 28, 2003 at 07:21:55AM -0400, parv wrote: > in message <20030927191930.M4565@daemon.g-e-e-k.net>, > wrote Steve Wingate thusly... > > > > Who is the knucklehead behind the mplayer-skins port asking you 2-3 whi= ch As always, politeness and education go a long way. Please, avoid similar remarks in future communications. Every communication medium has its rules on proper acceptable behaviour, FreeBSD mailing lists are no exception. For more information, on Netiquete and the Internet, check http://www.onlinenetiquette.com/ and other such websites. The Ports collection is an evergrowring collective work. Both input and colaboration from our userbase are always welcome. If you know how to improve that particular port or any other one; let us know. Patches are always welcome. :) The Porter's Handbook gives tips on ports work internally. It should help you understand what can be done and point you on the general direction on how to achieve what you desire with a given port. Regards, --=20 Mario S F Ferreira - DF - Brazil - "I guess this is a signature." FreeBSD Committer | FreeBSD-KDE Core Team | CS Developer feature, n: a documented bug | bug, n: an undocumented feature --zhXaljGHf11kAtnf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/e6td99ikl0dk/7oRAhxWAJsHxA5J0TaS2uJKcBKB4o1EeCt66wCeJh8z rvFErR7/vVMiyXp44XLdvUI= =jD8o -----END PGP SIGNATURE----- --zhXaljGHf11kAtnf-- From owner-freebsd-ports@FreeBSD.ORG Wed Oct 1 23:56: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 C36C716A4B3 for ; Wed, 1 Oct 2003 23:56:13 -0700 (PDT) Received: from tinker.exit.com (tinker.exit.com [206.223.0.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id D78F043FE9 for ; Wed, 1 Oct 2003 23:56:12 -0700 (PDT) (envelope-from frank@exit.com) Received: from realtime.exit.com (realtime [206.223.0.5]) by tinker.exit.com (8.12.9/8.12.9) with ESMTP id h926uBgv024957 for ; Wed, 1 Oct 2003 23:56:11 -0700 (PDT) (envelope-from frank@exit.com) Received: from realtime.exit.com (localhost [127.0.0.1]) by realtime.exit.com (8.12.9/8.12.6) with ESMTP id h926uBX7097408 for ; Wed, 1 Oct 2003 23:56:11 -0700 (PDT) (envelope-from frank@realtime.exit.com) Received: (from frank@localhost) by realtime.exit.com (8.12.9/8.12.9/Submit) id h926uBjS097400 for ports@freebsd.org; Wed, 1 Oct 2003 23:56:11 -0700 (PDT) From: Frank Mayhar Message-Id: <200310020656.h926uBjS097400@realtime.exit.com> To: ports@freebsd.org Date: Wed, 1 Oct 2003 23:56:11 -0700 (PDT) X-Copyright0: Copyright 2003 Frank Mayhar. All Rights Reserved. X-Copyright1: Permission granted for electronic reproduction as Usenet News or email only. X-Mailer: ELM [version 2.4ME+ PL99f (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII Subject: OpenOffice 1.1.0 distfile broken? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: frank@exit.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Oct 2003 06:56:13 -0000 I keep getting "bad checksum" on OOo_1.1.0_source.tar.bz2; it looks like all the mirrors have the same thing. I checked it with tar tvfy and it barfed close to the end. The .gz file was even worse. So it looks as if either the distfiles are broken or something is _seriously_ mucked up on my end. -- Frank Mayhar frank@exit.com http://www.exit.com/ Exit Consulting http://www.gpsclock.com/ http://www.exit.com/blog/frank/ From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 00:12: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 4FC8D16A4B3 for ; Thu, 2 Oct 2003 00:12:41 -0700 (PDT) Received: from ms-smtp-01.texas.rr.com (ms-smtp-01.texas.rr.com [24.93.36.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36E3D43FDF for ; Thu, 2 Oct 2003 00:12:40 -0700 (PDT) (envelope-from wbooth@austin.rr.com) Received: from austin.rr.com (cs24243231-105.austin.rr.com [24.243.231.105]) h927CYNe014157; Thu, 2 Oct 2003 02:12:34 -0500 (CDT) Message-ID: <3F7BCFE1.5000900@austin.rr.com> Date: Thu, 02 Oct 2003 02:12:33 -0500 From: David Booth User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.5b) Gecko/20030913 X-Accept-Language: en-us, en MIME-Version: 1.0 To: frank@exit.com References: <200310020656.h926uBjS097400@realtime.exit.com> In-Reply-To: <200310020656.h926uBjS097400@realtime.exit.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: OpenOffice 1.1.0 distfile 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: Thu, 02 Oct 2003 07:12:41 -0000 Frank Mayhar wrote: >I keep getting "bad checksum" on OOo_1.1.0_source.tar.bz2; it looks like >all the mirrors have the same thing. I checked it with tar tvfy and it >barfed close to the end. The .gz file was even worse. > >So it looks as if either the distfiles are broken or something is _seriously_ >mucked up on my end. > > I found what appear to be a good one at http://www.ibiblio.org/pub/packages/openoffice/stable/1.1.0/ From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 01:54: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 30A4D16A4B3 for ; Thu, 2 Oct 2003 01:54:44 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D04943FF9 for ; Thu, 2 Oct 2003 01:54:42 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 15842 invoked from network); 2 Oct 2003 08:54:39 -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 ; 2 Oct 2003 08:54:39 -0000 Message-ID: <3F7BE7CF.5000002@liwing.de> Date: Thu, 02 Oct 2003 08:54:39 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030928 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Ade Lovett References: <4029A580-F42C-11D7-91F1-000A956B6386@FreeBSD.org> In-Reply-To: <4029A580-F42C-11D7-91F1-000A956B6386@FreeBSD.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD Ports Subject: Re: Problems with make package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 08:54:44 -0000 Ade Lovett wrote: > > On Wednesday, Oct 1, 2003, at 09:02 US/Pacific, Oliver Eikemeier wrote: > >> This should be PR 56096: >> http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/56096 > > > That PR doesn't cover all the cases, but is a good start. I'll dig out > my patch once my testbox has finished rebuilding world and a few other > bits and pieces. > Can you give a rough time frame when your fix could expected? I'm waiting to set up a couple of machines and must tell my boss when he could expect the result. Thanks, Jens From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 03:44: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 66A5016A4B3 for ; Thu, 2 Oct 2003 03:44:59 -0700 (PDT) Received: from mx2.fillmore-labs.com (lima.fillmore-labs.com [62.138.193.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79AEB4400E for ; Thu, 2 Oct 2003 03:44:58 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from pd958a54a.dip.t-dialin.net ([217.88.165.74] helo=fillmore-labs.com ident=qrl5c5cg1o79nxqc) by mx2.fillmore-labs.com with asmtp (TLSv1:AES256-SHA:256) (Exim 4.24; FreeBSD 4.9) id 1A50x6-0004hA-V8; Thu, 02 Oct 2003 12:44:57 +0200 Message-ID: <3F7C01A6.2080501@fillmore-labs.com> Date: Thu, 02 Oct 2003 12:44:54 +0200 From: Oliver Eikemeier MIME-Version: 1.0 To: Jens Rehsack References: <4029A580-F42C-11D7-91F1-000A956B6386@FreeBSD.org> <3F7BE7CF.5000002@liwing.de> In-Reply-To: <3F7BE7CF.5000002@liwing.de> 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: FreeBSD Ports Subject: Re: Problems with make package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 10:44:59 -0000 Jens Rehsack wrote: > Ade Lovett wrote: > >> On Wednesday, Oct 1, 2003, at 09:02 US/Pacific, Oliver Eikemeier wrote: >> >>> This should be PR 56096: >>> http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/56096 >> >> That PR doesn't cover all the cases, but is a good start. I'll dig >> out my patch once my testbox has finished rebuilding world and a few >> other bits and pieces. >> > > Can you give a rough time frame when your fix could expected? > I'm waiting to set up a couple of machines and must tell my > boss when he could expect the result. Unsetting WRKDIRPREFIX as an workaround isn't acceptable? From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 03:50: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 533F416A4B3 for ; Thu, 2 Oct 2003 03:50:58 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2328543FDD for ; Thu, 2 Oct 2003 03:50:57 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 43572 invoked from network); 2 Oct 2003 10:50:56 -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 ; 2 Oct 2003 10:50:56 -0000 Message-ID: <3F7C030F.8040000@liwing.de> Date: Thu, 02 Oct 2003 10:50:55 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030928 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Oliver Eikemeier References: <4029A580-F42C-11D7-91F1-000A956B6386@FreeBSD.org> <3F7BE7CF.5000002@liwing.de> <3F7C01A6.2080501@fillmore-labs.com> In-Reply-To: <3F7C01A6.2080501@fillmore-labs.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD Ports Subject: Re: Problems with make package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 10:50:58 -0000 Oliver Eikemeier wrote: > Jens Rehsack wrote: > >> Ade Lovett wrote: >> >>> On Wednesday, Oct 1, 2003, at 09:02 US/Pacific, Oliver Eikemeier wrote: >>> >>>> This should be PR 56096: >>>> http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/56096 >>> >>> >>> That PR doesn't cover all the cases, but is a good start. I'll dig >>> out my patch once my testbox has finished rebuilding world and a few >>> other bits and pieces. >>> >> >> Can you give a rough time frame when your fix could expected? >> I'm waiting to set up a couple of machines and must tell my >> boss when he could expect the result. > > > Unsetting WRKDIRPREFIX as an workaround isn't acceptable? Sorry, but no. I build for different machine types from one nfs-mounted ports-tree. So each machine should have an own WRKDIRPREFIX to avoid conflicts during parallel build or uncleaned port during errors while building. Jens From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 09:46: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 2041316A4B3; Thu, 2 Oct 2003 09:46:58 -0700 (PDT) Received: from mx2.fillmore-labs.com (lima.fillmore-labs.com [62.138.193.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id B353044005; Thu, 2 Oct 2003 09:46:55 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from root (helo=FreeBSD-gnats-submit) by mx2.fillmore-labs.com with local-esmtp (Exim 4.24; FreeBSD 4.9) id 1A56al-00055a-O1; Thu, 02 Oct 2003 18:46:28 +0200 Message-Id: <3F7C52F9.40201@fillmore-labs.com> Date: Thu, 02 Oct 2003 18:31:53 +0200 From: Oliver Eikemeier To: FreeBSD-gnats-submit@FreeBSD.org User-Agent: KMail/1.5.9 Organization: Fillmore Labs GmbH X-Complaints-To: abuse@fillmore-labs.com cc: FreeBSD Ports Subject: ports/57502: ports that define USE_* too late X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Eikemeier List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Oct 2003 16:46:58 -0000 >Number: 57502 >Category: ports >Synopsis: ports that define USE_* too late >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Thu Oct 02 09:40:18 PDT 2003 >Closed-Date: >Last-Modified: >Originator: Oliver Eikemeier >Release: FreeBSD 4.8-STABLE i386 >Organization: Fillmore Labs - http://www.fillmore-labs.com >Environment: System: FreeBSD nuuk.fillmore-labs.com 4.8-STABLE >Description: Multiple ports define USE_* variables that are tested in bsd.port.pre.mk *after* they include bsd.port.pre.mk, which results in that that directive being ignored. The proposed patch in PR 57496 will (purposely) break these ports. The following ports are affected: * USE_IMAKE: desmo@bandwidth.org - x11-clocks/xalarm jmz@FreeBSD.org - x11/xgrab * USE_OPENSSL: arved@FreeBSD.org - irc/bitchx clive@FreeBSD.org - chinese/bitchx DougB@FreeBSD.org - dns/bind9 (PR 57495) jim@FreeBSD.org - irc/xchat jylefort@brutele.be - mail/sylpheed-gtk2 knu@FreeBSD.org - japanese/xchat marcus@FreeBSD.org - net/net-snmp4 oliver@FreeBSD.org - mail/sylpheed sheepkiller@cultdeadsheep.org - dns/bind9-sdb-mysql sysadmin@alexdupre.com - databases/mysql40-client - databases/mysql40-server - databases/mysql41-client - databases/mysql41-server * USE_OPENLDAP: asa@gascom.ru - lang/php4-nms gnome@FreeBSD.org - databases/libgda2 sysadmin@alexdupre.com - lang/php4 - lang/php4-cli - lang/php5 - lang/php5-cli - www/mod_php4 (PR 57491) - www/mod_php5 - www/php4-cgi - www/php5-cgi thierry@pompo.net - lang/php4-horde * USE_X_PREFIX: 3d@freebsd.org - games/linux-q3ademo cyrille.lefevre@laposte.net - textproc/docbook-to-man goto@snowy.to - irc/ircatlite jeremy@external.org - sysutils/ipsc ports@FreeBSD.org - x11-toolkits/viewklass >How-To-Repeat: >Fix: move .include down as far as possible, or move the respective USE_* definition up. From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 11:22: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 1E01F16A4B3 for ; Thu, 2 Oct 2003 11:22:14 -0700 (PDT) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 970D243FE5 for ; Thu, 2 Oct 2003 11:22:13 -0700 (PDT) (envelope-from DougB@freebsd.org) Received: from master.dougb.net (12-234-18-52.client.attbi.com[12.234.18.52]) by comcast.net (rwcrmhc12) with SMTP id <2003100218221301400bkn3ve>; Thu, 2 Oct 2003 18:22:13 +0000 Date: Thu, 2 Oct 2003 11:22:12 -0700 (PDT) From: Doug Barton To: freebsd-ports@freebsd.org Message-ID: <20031002112026.O677@znfgre.qbhto.arg> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Need some USE_OPENSSL help X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Oct 2003 18:22:14 -0000 Folks, The following worked just fine for a long time: .include .if ${OSVERSION} >= 400014 USE_OPENSSL= yes CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE} .endif However, something broke recently, and now this no longer works. So, I need to know how to get equivalent functionality with however things are supposed to work today. Thanks, Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 11:47: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 9253B16A4B3; Thu, 2 Oct 2003 11:47:22 -0700 (PDT) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id E105843FEC; Thu, 2 Oct 2003 11:47:21 -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 h92IlL0Q001499; Thu, 2 Oct 2003 11:47:21 -0700 (PDT) Received: from mac.com ([66.234.138.77]) (authenticated bits=0) by mac.com (Xserve/smtpin07/MantshX 3.0) with ESMTP id h92IlJA1017008; Thu, 2 Oct 2003 11:47:20 -0700 (PDT) Date: Thu, 2 Oct 2003 14:47:15 -0400 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) To: Doug Barton From: Charles Swiger In-Reply-To: <20031002112026.O677@znfgre.qbhto.arg> Message-Id: Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.552) cc: freebsd-ports@FreeBSD.org Subject: Re: Need some USE_OPENSSL help X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Oct 2003 18:47:22 -0000 On Thursday, October 2, 2003, at 02:22 PM, Doug Barton wrote: > Folks, > > The following worked just fine for a long time: > > .include > > .if ${OSVERSION} >= 400014 > USE_OPENSSL= yes > CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE} > .endif > > However, something broke recently, and now this no longer works. So, I > need to know how to get equivalent functionality with however things > are > supposed to work today. Please refer to http://www.FreeBSD.org/cgi/query-pr.cgi?pr=ports/57502 "Multiple ports define USE_* variables that are tested in bsd.port.pre.mk *after* they include bsd.port.pre.mk, which results in that that directive being ignored. The proposed patch in PR 57496 will (purposely) break these ports." Moving the USE_ statement before the .include should fix the problem. -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 12:07: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 8C3CD16A4B3 for ; Thu, 2 Oct 2003 12:07:12 -0700 (PDT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22FAD43FEA for ; Thu, 2 Oct 2003 12:07:11 -0700 (PDT) (envelope-from gsam@trini0.org) Received: from hivemind.trini0.org (trini0.org[68.39.114.118]) by comcast.net (sccrmhc13) with ESMTP id <2003100219071001600kodhoe>; Thu, 2 Oct 2003 19:07:10 +0000 Received: from trini0.org (gladiator.trini0.org [192.168.0.3]) by hivemind.trini0.org (Postfix) with ESMTP id 2BAEC1F for ; Thu, 2 Oct 2003 15:07:10 -0400 (EDT) Message-ID: <3F7C775D.2090705@trini0.org> Date: Thu, 02 Oct 2003 15:07:09 -0400 From: Gerard Samuel User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030701 X-Accept-Language: en, nl, ar, th, en-us MIME-Version: 1.0 To: freebsd-ports@FreeBSD.ORG Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Port Upgrade of XFree X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 19:07:12 -0000 Im running into this error trying to upgrade X via portupgrade on a FBSD 5.1 box /usr/bin/ld: cannot find -lXfont *** Error code 1 Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs/bdftopcf. *** Error code 1 Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs. *** Error code 1 Stop in /usr/ports/x11/XFree86-4-clients. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade41317.9 make DEPENDS_TARGET=package ** Fix the problem and try again. Could anyone point me in the right direction... Thanks From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 12:14: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 C5C3316A4B3 for ; Thu, 2 Oct 2003 12:14:07 -0700 (PDT) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 428A943FF3 for ; Thu, 2 Oct 2003 12:14:07 -0700 (PDT) (envelope-from DougB@freebsd.org) Received: from master.dougb.net (12-234-18-52.client.attbi.com[12.234.18.52]) by comcast.net (rwcrmhc12) with SMTP id <2003100219140401400bjsdbe>; Thu, 2 Oct 2003 19:14:04 +0000 Date: Thu, 2 Oct 2003 12:13:59 -0700 (PDT) From: Doug Barton To: Dirk Meyer In-Reply-To: <1sAfJLJ75W@dmeyer.dinoex.sub.org> Message-ID: <20031002120436.A677@znfgre.qbhto.arg> References: <20031002112026.O677@znfgre.qbhto.arg> <1sAfJLJ75W@dmeyer.dinoex.sub.org> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-ports@freebsd.org Subject: Re: Need some USE_OPENSSL help X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 02 Oct 2003 19:14:07 -0000 On Thu, 2 Oct 2003, Dirk Meyer wrote: > Doug Barton schrieb:, > > > The following worked just fine for a long time: > > > > .include > > .if ${OSVERSION} >= 400014 > > USE_OPENSSL= yes > > CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE} > > .endif > > > However, something broke recently, and now this no longer works. So, I > > need to know how to get equivalent functionality with however things are > > supposed to work today. > > USE_OPENSSL=yes > .include > > will do ... if openssl is not in pase, the port will be included. Actually I only needed .pre.mk to get OSVERSION, but thanks for the info. BTW, including USE_OPENSSL does weird things with, for example, make clean, since it always cleans perl and the openssl port. Also, OPENSSLBASE is /usr/local, even though I have openssl in the base system. Both of those behaviors seem broken to me, although I was able to work around the first by just using --with-openssl. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 12:20:49 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 1281616A4B3 for ; Thu, 2 Oct 2003 12:20:49 -0700 (PDT) Received: from lewis.lclark.edu (www.ncvli.org [149.175.1.5]) by mx1.FreeBSD.org (Postfix) with SMTP id 3EDBD43FFD for ; Thu, 2 Oct 2003 12:20:48 -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 M2003100212202931744 ; Thu, 02 Oct 2003 12:20:29 -0700 From: Eric Anholt To: Gerard Samuel In-Reply-To: <3F7C775D.2090705@trini0.org> References: <3F7C775D.2090705@trini0.org> Content-Type: text/plain Message-Id: <1065122429.631.0.camel@leguin> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.5 Date: Thu, 02 Oct 2003 12:20:29 -0700 Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: Port Upgrade of XFree X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 19:20:49 -0000 On Thu, 2003-10-02 at 12:07, Gerard Samuel wrote: > Im running into this error trying to upgrade X via portupgrade on a FBSD > 5.1 box > > /usr/bin/ld: cannot find -lXfont > *** Error code 1 > > Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs/bdftopcf. > *** Error code 1 > > Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs. > *** Error code 1 > > Stop in /usr/ports/x11/XFree86-4-clients. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade41317.9 make DEPENDS_TARGET=package > ** Fix the problem and try again. > > Could anyone point me in the right direction... > Thanks FAQ, answered in archives. Reinstall XFree86-4-libraries. -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 12:21: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 A246216A4B3; Thu, 2 Oct 2003 12:21:32 -0700 (PDT) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0185F43FF7; Thu, 2 Oct 2003 12:21:32 -0700 (PDT) (envelope-from DougB@freebsd.org) Received: from master.dougb.net (12-234-18-52.client.attbi.com[12.234.18.52]) by comcast.net (rwcrmhc12) with SMTP id <2003100219213101400bihthe>; Thu, 2 Oct 2003 19:21:31 +0000 Date: Thu, 2 Oct 2003 12:21:30 -0700 (PDT) From: Doug Barton To: FreeBSD-gnats-submit@FreeBSD.org, Oliver Eikemeier In-Reply-To: <3F7C52F9.40201@fillmore-labs.com> Message-ID: <20031002122101.M677@znfgre.qbhto.arg> References: <3F7C52F9.40201@fillmore-labs.com> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: FreeBSD Ports Subject: Re: ports/57502: ports that define USE_* too late X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 19:21:32 -0000 On Thu, 2 Oct 2003, Oliver Eikemeier wrote: > * USE_OPENSSL: > > DougB@FreeBSD.org > - dns/bind9 (PR 57495) Fixed. -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 12:51:49 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 B3EA816A4B3 for ; Thu, 2 Oct 2003 12:51:49 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id A867343FF5 for ; Thu, 2 Oct 2003 12:51:48 -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 h92Jpiw25370; Thu, 2 Oct 2003 12:51:44 -0700 From: Kent Stewart To: Gerard Samuel , freebsd-ports@freebsd.org Date: Thu, 2 Oct 2003 12:51:38 -0700 User-Agent: KMail/1.5.4 References: <3F7C775D.2090705@trini0.org> In-Reply-To: <3F7C775D.2090705@trini0.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200310021251.38973.kstewart@owt.com> Subject: Re: Port Upgrade of XFree X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 19:51:49 -0000 On Thursday 02 October 2003 12:07 pm, Gerard Samuel wrote: > Im running into this error trying to upgrade X via portupgrade on a > FBSD 5.1 box > > /usr/bin/ld: cannot find -lXfont > *** Error code 1 > > Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs/bdftopcf. > *** Error code 1 > > Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs. > *** Error code 1 > > Stop in /usr/ports/x11/XFree86-4-clients. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade41317.9 make DEPENDS_TARGET=package > ** Fix the problem and try again. > > Could anyone point me in the right direction... > Thanks > You deinstalled an old version of XFree86-server, which deinstalled Xfont. You have to reinstall -libraries to fix the problem. Kent -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 13:36:00 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 4FE5E16A4BF for ; Thu, 2 Oct 2003 13:36:00 -0700 (PDT) Received: from aphrodite.gwi.net (aphrodite.gwi.net [207.5.128.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1CC243FDD for ; Thu, 2 Oct 2003 13:35:56 -0700 (PDT) (envelope-from ah46@mlz.us) Received: from andy.gwi.net (blake.gwi.net [207.5.142.8]) by aphrodite.gwi.net (8.12.6p3/8.12.6) with ESMTP id h92KZsYo047817 for ; Thu, 2 Oct 2003 16:35:56 -0400 (EDT) (envelope-from ah46@mlz.us) Message-ID: X-Mailer: XFMail 1.5.4 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 X-Homepage: http://www.nachoz.com X-PGP-Key: RSA-1024 http://www.nachoz.com/andy.pub X-System-Info-DB: PostgreSQL-7.3.3 X-System-Info-RT: rt-3-0-4 X-System-Info-WM: windowmaker-0.80.2 X-System-Info-httpd: apache-1.3.28 X-System-Info-OS: FreeBSD 4.8-RELEASE-#0 Date: Thu, 02 Oct 2003 16:36:01 -0400 (EDT) Sender: aharriso@andy.gwi.net From: Andy Harrison To: freebsd-ports@freebsd.org Subject: opera X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 20:36:00 -0000 -----BEGIN PGP SIGNED MESSAGE----- Anyone had any luck getting java working with Opera? I'm using the port opera-7.20.20030925 and the freebsd native java port jdk-1.3.1p8_2. My ~/.opera/javapath.txt file reads: /usr/local/jdk1.3.1/jre/lib/i386/ I'm starting opera with the default shell script at /usr/X11R6/bin/opera. It will either not start at all, or sometimes: > /usr/X11R6/bin/opera Segmentation fault (core dumped) with a corresponding messages log entry of: Oct 2 16:26:44 andy /kernel: pid 751 (works), uid 1002: exited on signal 11 (core dumped) No, I do not have the linux version of opera installed as well. ~~ Andy Harrison (full headers for details) -----BEGIN PGP SIGNATURE----- Version: PGP 6.5.8 iQCVAwUBP3yMMFPEkLgodAWVAQEQoQQApjHznhjjpOOb4chlX9k4ft5kGNbMpd2B GsV/d0Qp5iaF1ayNwnPb5CNFJtE3cbE/s+eiN3TDocLVeUffI+5FyfMaYlYG68lc C7xzMP8Rx6oM0WAW1DejAFtAKT730xbMyQ9gD63/xe/dRER/tKQB5OnVyKbeNDEn fh0O/AyYuXM= =G7/Y -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 14:12: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 979DF16A4B3 for ; Thu, 2 Oct 2003 14:12:35 -0700 (PDT) Received: from mail.lovett.com (sentinel.ranger.supernews.net [216.168.1.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 247A643FBF for ; Thu, 2 Oct 2003 14:12:35 -0700 (PDT) (envelope-from ade@FreeBSD.org) Received: from 44ba06102.mdfrd.or.charter.com ([68.186.6.102] helo=FreeBSD.org) by mail.lovett.com with asmtp (Exim 4.22) id 1A5AkU-0003TT-RJ; Thu, 02 Oct 2003 21:12:34 +0000 Date: Thu, 2 Oct 2003 14:12:23 -0700 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v552) To: Jens Rehsack From: Ade Lovett In-Reply-To: <3F7BE7CF.5000002@liwing.de> Message-Id: <1DD7B076-F51D-11D7-91F1-000A956B6386@FreeBSD.org> Content-Transfer-Encoding: 7bit X-Mailer: Apple Mail (2.552) cc: FreeBSD Ports Subject: Re: Problems with make package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 21:12:35 -0000 On Thursday, Oct 2, 2003, at 01:54 US/Pacific, Jens Rehsack wrote: > Can you give a rough time frame when your fix could expected? > I'm waiting to set up a couple of machines and must tell my > boss when he could expect the result. Well, it all pretty much depends on allocating FreeBSD-time as opposed to RealJob-time (even though I'm the boss). The approach is pretty simple for bsd.port.mk: 1. find any references to 'make' using anything other than ${MAKE}, and fix them appropriately 2. find appropriate references to ${MAKE}, and change to ${MAKE} -C ${.CURDIR} as appropriate -aDe From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 16:07: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 F3C3C16A4BF for ; Thu, 2 Oct 2003 16:07:21 -0700 (PDT) Received: from relay.freestart.hu (smtp.freestart.hu [213.197.64.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FB6C43FEC for ; Thu, 2 Oct 2003 16:07:19 -0700 (PDT) (envelope-from wpooh@freestart.hu) Received: from mail by freestart.hu with local (Freestart relay 1 (FS-Lin)) id 1A5CXU-0007Co-00 for ; Fri, 03 Oct 2003 01:07:16 +0200 Received: from line-69-237.dial.freestart.hu ([213.197.69.237])by freestart.hu with esmtp (Freestart relay 1 (FS-Lin))id 1A5CXT-00079L-00for ; Fri, 03 Oct 2003 01:07:15 +0200 From: Racz Janos To: ports@freebsd.org Content-Type: text/plain Message-Id: <1065136038.550.6.camel@fw-bsd.freestart.hu> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.4 Date: Fri, 03 Oct 2003 01:07:19 +0200 Content-Transfer-Encoding: 7bit X-freestart-banner: Yes Subject: bad url X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 23:07:22 -0000 Hi! I'd like to inform you that the WWW address for the port 'lang/swi-pl' has been changed so the url given in port description page is invalid. I think the new url is http://www.swi-prolog.org. Thanks ____________________________________________________________________ Miert fizetsz az internetert? Korlatlan, ingyenes internet hozzaferes a FreeStarttol. Probald ki most! http://www.freestart.hu From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 16:45: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 F15D816A4B3; Thu, 2 Oct 2003 16:45:11 -0700 (PDT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A12B43FBF; Thu, 2 Oct 2003 16:45:11 -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 29EAD14658; Thu, 2 Oct 2003 18:45:09 -0500 (CDT) From: Mark Linimon Organization: Lonesome Dove Computing Services To: freebsd-ports@FreeBSD.org Date: Thu, 2 Oct 2003 18:45:32 -0500 User-Agent: KMail/1.5.4 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200310021845.32098.linimon@lonesome.com> cc: cracauer@cons.org cc: henrik.motakef@web.de cc: markm@freebsd.org cc: olgeni@FreeBSD.org cc: des@FreeBSD.org cc: sf@slappy.org Subject: RFC: add new virtual category "lisp" to ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 02 Oct 2003 23:45:12 -0000 With some recent new port additions, there are now nearly 3 dozen ports that could fit into a "lisp" category. That's about the same number as we have in the "scheme" category, so one supposes if we have the one, we ought to have the other. This would not overlap the "elisp" category -- that is for EMACS addons. This category would be the language itself, bindings, and one or two applications I suppose, too. Unless there's some reason not to do this, I'll go ahead and write up a PR adding the category to the various ports. Here are the ports that look most likely to me: devel/cl-asdf devel/cl-asdf-clisp devel/cl-asdf-cmucl devel/cl-asdf-sbcl devel/cl-port devel/cl-port-cmucl devel/cl-port-sbcl devel/cl-split-sequence devel/cl-split-sequence-cmucl devel/cl-split-sequence-sbcl devel/clisp-hyperspec lang/alisp lang/clisp lang/cmucl lang/cmucl-extra lang/gcl lang/klone lang/sbcl lang/screamer lang/slisp math/maxima math/xlispstat textproc/cl-meta textproc/cl-meta-cmucl textproc/cl-meta-sbcl textproc/cl-ppcre textproc/cl-ppcre-cmucl textproc/cl-ppcre-sbcl www/cl-lml www/cl-lml-clisp www/cl-lml-sbcl x11-toolkits/rep-gtk x11-toolkits/rep-gtk2 mcl From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 17:41: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 C58CF16A4B3; Thu, 2 Oct 2003 17:41:27 -0700 (PDT) Received: from mgw-x1.nokia.com (mgw-x1.nokia.com [131.228.20.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0918543FBF; Thu, 2 Oct 2003 17:41:26 -0700 (PDT) (envelope-from Mike.Ruhl@nokia.com) Received: from esvir01nok.ntc.nokia.com (esvir01nokt.ntc.nokia.com [172.21.143.33])h930fO610753; Fri, 3 Oct 2003 03:41:24 +0300 (EET DST) Received: from esebh003.NOE.Nokia.com (unverified) by esvir01nok.ntc.nokia.com ; Fri, 3 Oct 2003 03:41:22 +0300 Received: from [172.18.182.94] ([172.18.182.94]) by esebh003.NOE.Nokia.com with Microsoft SMTPSVC(5.0.2195.6139); Fri, 3 Oct 2003 03:41:23 +0300 From: Michael J Ruhl To: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Content-Type: text/plain Content-Transfer-Encoding: 7bit X-Mailer: Ximian Evolution 1.0.8 (1.0.8-9.7x.1) Date: 02 Oct 2003 17:41:21 -0700 Message-Id: <1065141683.14775.12.camel@dhcp18218294.americas.nokia.com> Mime-Version: 1.0 X-OriginalArrivalTime: 03 Oct 2003 00:41:23.0966 (UTC) FILETIME=[1253A1E0:01C38947] Subject: java 1.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, 03 Oct 2003 00:41:27 -0000 Howdy, I am trying to get the java/jdk13 port to install on FreeBSD 5.1, and am having a problem. When the diablo java script is run (/usr/local/diablo-jdk1.3.1/jre/bin/java) (which runs .java_wrapper), I get the following error message: /usr/libexec/ld-elf.so.1: /usr/lib/libm.so.2: Undefined symbol "__fpclassifyd" Does anyone have any ideas on how I can make this work? Thanks, Mike From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 18:13: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 3924716A4B3 for ; Thu, 2 Oct 2003 18:13:53 -0700 (PDT) Received: from debussy.private.org (25.60.138.210.bn.2iij.net [210.138.60.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE5ED43FB1 for ; Thu, 2 Oct 2003 18:13:50 -0700 (PDT) (envelope-from chat95@mbox.kyoto-inet.or.jp) Received: from localhost (localhost [127.0.0.1]) by debussy.private.org (8.12.9/8.12.9) with ESMTP id h931FIgE009740 for ; Fri, 3 Oct 2003 10:15:18 +0900 (JST) (envelope-from chat95@mbox.kyoto-inet.or.jp) Date: Fri, 03 Oct 2003 10:15:18 +0900 (JST) Message-Id: <20031003.101518.846944044.chat95@mbox.kyoto-inet.or.jp> To: ports@FreeBSD.org From: Nakata Maho Organization: private X-Mailer: Mew version 2.2 on XEmacs 21.4.13 (Rational FORTRAN) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Do repocopy for OpenOffice.org on this weekend (2003/Oct/4 or 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: Fri, 03 Oct 2003 01:13:53 -0000 Hi all, As OpenOffice.org 1.1.0 is released (yeah!) I'll do repocopy on this weekend. 2003/Oct/4 or 5 JST. From: /usr/ports/chinese/openoffice-zh_CN /usr/ports/chinese/openoffice-zh_TW /usr/ports/editors/openoffice /usr/ports/editors/openoffice-ar /usr/ports/editors/openoffice-dk /usr/ports/editors/openoffice-es /usr/ports/editors/openoffice-gr /usr/ports/editors/openoffice-it /usr/ports/editors/openoffice-nl /usr/ports/editors/openoffice-se /usr/ports/editors/openoffice-tr /usr/ports/french/openoffice /usr/ports/german/openoffice /usr/ports/japanese/openoffice /usr/ports/korean/openoffice /usr/ports/polish/openoffice /usr/ports/portuguese/openoffice /usr/ports/russian/openoffice to /usr/ports/chinese/openoffice1.0-zh_CN /usr/ports/chinese/openoffice1.0-zh_TW /usr/ports/editors/openoffice1.0 /usr/ports/editors/openoffice1.0-ar /usr/ports/editors/openoffice1.0-dk /usr/ports/editors/openoffice1.0-es /usr/ports/editors/openoffice1.0-gr /usr/ports/editors/openoffice1.0-it /usr/ports/editors/openoffice1.0-nl /usr/ports/editors/openoffice1.0-se /usr/ports/editors/openoffice1.0-tr /usr/ports/french/openoffice1.0 /usr/ports/german/openoffice1.0 /usr/ports/japanese/openoffice1.0 /usr/ports/korean/openoffice1.0 /usr/ports/polish/openoffice1.0 /usr/ports/portuguese/openoffice1.0 /usr/ports/russian/openoffice1.0 and from /usr/ports/editors/openoffice-devel /usr/ports/japanese/openoffice-devel to /usr/ports/editors/openoffice /usr/ports/japanese/openoffice and I'll make other localized ports for 1.1.0 also. If I'm going to do wrong thing, please do not hesitate me pointing out... Thanks in advance, maho From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 18: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 047BA16A4B3 for ; Thu, 2 Oct 2003 18:41:06 -0700 (PDT) Received: from amazone.paranoid.nl (pos-2-0-amazone.boerde.de [212.21.74.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 737D243FE1 for ; Thu, 2 Oct 2003 18:41:04 -0700 (PDT) (envelope-from frank.reppin@boerde.de) Received: from localhost (localhost.localdomain [127.0.0.1]) by amazone.paranoid.nl (AMAZONE) with ESMTP id 9C44A372AB; Fri, 3 Oct 2003 03:41:02 +0200 (CEST) Received: from boerde.de (minax.paranoid.nl [212.21.74.168]) by amazone.paranoid.nl (AMAZONE) with ESMTP id D78A1372AA; Fri, 3 Oct 2003 03:40:59 +0200 (CEST) Message-ID: <3F7CD4EF.40409@boerde.de> Date: Fri, 03 Oct 2003 03:46:23 +0200 From: Frank Reppin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.5b) Gecko/20030827 X-Accept-Language: en-us, en MIME-Version: 1.0 To: jc@irbs.com References: <20031001144505.GA11562@exuma.irbs.com> In-Reply-To: <20031001144505.GA11562@exuma.irbs.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by AMaViS perl-11 on AMAZONE.PARANOID.NL cc: ports@freebsd.org cc: Brandon Gale Subject: Re: MS Exchange X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 01:41:06 -0000 Hi, John Capo wrote: > Quoting Brandon Gale (brandon@globaldiagnostics.com): > >>Does anyone know of a port or piece of software that emulates a MS Exchange >>server and interfaces with MS Outlook clients? I'm trying to provide an >>alternative to a potential client using Win2k simply for the only reason >>that they require the functionality of an MS Exchange server. >> well - opengroupware.org doesn't try to emulate MS Exchange. In fact we try to reproduce the functionality you're familiar with whilst using MS Exchange (by utilizing ZideStore Server/ZideLook Plugin for Windows/and OpenGroupware.org itself ofcourse). Thus you are welcome to test it and report your expierence to us! > It pretty Linux centric but there are a few people that have managed > to compile it on BSD boxen: > > http://opengroupware.org/ Well - atm there's only a non-official port available (using older rpms). http://www.opengroupware.org/cvsweb/cvsweb.cgi/linux-opengroupware.org/ which is the same as: http://www.freebsd.org/cgi/query-pr.cgi?pr=54860 and awaits approval.... so please commit! :p And I'll then add our latest `Outlook for OGo` feature into a ported version :) best regards, frank > John Capo > IRBS Engineering, Inc. > Email Hosting -- 43rd Law of Computing: Anything that can go wr fortune: Segmentation violation -- Core dumped From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 20:44: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 2951816A4B3 for ; Thu, 2 Oct 2003 20:44:41 -0700 (PDT) Received: from remt23.cluster1.charter.net (remt23.cluster1.charter.net [209.225.8.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE67D43FDD for ; Thu, 2 Oct 2003 20:44:39 -0700 (PDT) (envelope-from glennpj@charter.net) Received: from [24.158.214.251] (HELO gforce.johnson.home) by remt23.cluster1.charter.net (CommuniGate Pro SMTP 4.0.6) with ESMTP id 12465082 for FreeBSD-Ports@freebsd.org; Thu, 02 Oct 2003 23:44:38 -0400 Received: by gforce.johnson.home (Postfix, from userid 1001) id 35D986191; Thu, 2 Oct 2003 22:44:38 -0500 (CDT) Date: Thu, 2 Oct 2003 22:44:38 -0500 To: FreeBSD ports Message-ID: <20031003034438.GA7275@gforce.johnson.home> Mail-Followup-To: FreeBSD ports Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i From: glennpj@charter.net (Glenn Johnson) Subject: building stlport on -current X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 03:44:41 -0000 What is the magic incantation to get devel/stlport to build on -current? Thanks. -- Glenn Johnson glennpj@charter.net From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 22:25: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 805FD16A4BF for ; Thu, 2 Oct 2003 22:25:45 -0700 (PDT) Received: from dsl092-007-008.sfo1.dsl.speakeasy.net (dsl092-007-008.sfo1.dsl.speakeasy.net [66.92.7.8]) by mx1.FreeBSD.org (Postfix) with SMTP id D3FDE43FD7 for ; Thu, 2 Oct 2003 22:25:44 -0700 (PDT) (envelope-from kessler@willkessler.com) Received: (qmail 29621 invoked by uid 0); 3 Oct 2003 05:45:25 -0000 Received: from unknown (HELO wakpc) (192.168.0.1) by 192.168.0.1 with SMTP; 3 Oct 2003 05:45:25 -0000 Message-ID: <200310022226100827.0307CB95@localhost> X-Mailer: Calypso Version 3.30.00.00 (4) Date: Thu, 02 Oct 2003 22:26:10 -0700 From: "Will Kessler" To: ports@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: quoted-printable Subject: install mozilla without root permission X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: kessler@willkessler.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2003 05:25:45 -0000 Hello, I am a poor unpriv'd user on a shared freebsd system which has no installed= browser. I'd like to install mozilla but cannot secure root or even pseudo privs to= do it using a package. Is there any way to just install it in my local= home dir? I've also tried biulding from source, after building gtk and= glib, but this fails due to other dependencies. Normally I develop under solaris and linux, for which i can get executables= that seem to run in their own dir, so i'm less familiar with freebsd= (although pkg_add sounds a bit like pkgadd under solaris). Any pointers/help appreciated! Opera just doesn't cut the mustard, I= really don't want to use any MSFT products, and googling revealed few= clues. THanks in advance, Will Kessler Email me at: kessler@willkessler.com See my web site at : http://www.willkessler.com PS I run vnc to get X up and this starts fine. From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 22:47: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 8BB7916A4B3 for ; Thu, 2 Oct 2003 22:47:42 -0700 (PDT) Received: from mag.barnet.com.au (mag.barnet.com.au [218.185.88.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9272343FBF for ; Thu, 2 Oct 2003 22:47:39 -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 8CAAD4CE for ; Fri, 3 Oct 2003 15:47:34 +1000 (EST) X-Viruscan-Id: <3F7D0D7600013D2A0113FEFA@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 11C9C1E12 for ; Fri, 3 Oct 2003 15:47:33 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 2AFA26A7101; Fri, 3 Oct 2003 15:47:31 +1000 (EST) Date: Fri, 3 Oct 2003 15:47:31 +1000 From: Edwin Groothuis To: FreeBSD ports Message-ID: <20031003054731.GM59397@k7.mavetju> References: <20031003034438.GA7275@gforce.johnson.home> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031003034438.GA7275@gforce.johnson.home> User-Agent: Mutt/1.4.1i Subject: Re: building stlport on -current X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 05:47:42 -0000 On Thu, Oct 02, 2003 at 10:44:38PM -0500, Glenn Johnson wrote: > What is the magic incantation to get devel/stlport to build on -current? http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/57267 I'm waiting for the timeout to add a check for -current in the 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 Thu Oct 2 23:01: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 231A916A4B3; Thu, 2 Oct 2003 23:01:58 -0700 (PDT) Received: from sjtu.edu.cn (mailhost.shnet.edu.cn [202.112.26.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id A545D43FE0; Thu, 2 Oct 2003 23:01:54 -0700 (PDT) (envelope-from major@sjtu.edu.cn) Received: from 211.80.37.140 (mailwall.shnet.edu.cn [202.112.26.55]) by sjtu.edu.cn (WorldPost) with ESMTP id 247EF3E2C7; Fri, 3 Oct 2003 14:01:52 +0800 (BEIST) From: Hua Jun Organization: sjtu To: cy@FreeBSD.org Date: Fri, 3 Oct 2003 14:05:07 +0000 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: <200310031405.07823.major@sjtu.edu.cn> cc: ports@FreeBSD.org Subject: FreeBSD Port: fvwm-2.5.7_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 06:01:58 -0000 HI, I'm a RreeBSDer, want to use fvwm ( becauz its powerful window management) but I found there are so many versions about it, I got confused, don't know which is my best choice, would you like to give me some advice about it? My computer: sony notebook(PCG-F450), CPU:PIII 500, Mem:192M and, I'm a Chinese, it's said that fvwm can provide excellent muti-bytes supports. thanks a lot! best regards, Hua From owner-freebsd-ports@FreeBSD.ORG Thu Oct 2 23: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 1266E16A4B3; Thu, 2 Oct 2003 23:57:15 -0700 (PDT) Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3BE743FE0; Thu, 2 Oct 2003 23:57:13 -0700 (PDT) (envelope-from mark@grondar.org) Received: from storm.FreeBSD.org.uk (Ugrondar@localhost [127.0.0.1]) by storm.FreeBSD.org.uk (8.12.9/8.12.9) with ESMTP id h936vAB6084108; Fri, 3 Oct 2003 07:57:11 +0100 (BST) (envelope-from mark@grondar.org) Received: (from Ugrondar@localhost)h936vAmM084100; Fri, 3 Oct 2003 07:57:10 +0100 (BST) (envelope-from mark@grondar.org) X-Authentication-Warning: storm.FreeBSD.org.uk: Ugrondar set sender to mark@grondar.org using -f Received: from grondar.org (localhost [127.0.0.1])h936uhYJ037190; Fri, 3 Oct 2003 07:56:43 +0100 (BST) (envelope-from mark@grondar.org) From: Mark Murray Message-Id: <200310030656.h936uhYJ037190@grimreaper.grondar.org> To: Mark Linimon In-Reply-To: Your message of "Thu, 02 Oct 2003 18:45:32 CDT." <200310021845.32098.linimon@lonesome.com> Date: Fri, 03 Oct 2003 07:56:43 +0100 Sender: mark@grondar.org X-Spam-Status: No, hits=0.2 required=5.0 tests=EMAIL_ATTRIBUTION,FROM_NO_LOWER,IN_REP_TO, QUOTED_EMAIL_TEXT,REPLY_WITH_QUOTES version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cracauer@cons.org cc: des@FreeBSD.org cc: freebsd-ports@FreeBSD.org cc: markm@FreeBSD.org cc: olgeni@FreeBSD.org cc: henrik.motakef@web.de cc: sf@slappy.org Subject: Re: RFC: add new virtual category "lisp" to ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 06:57:15 -0000 Mark Linimon writes: > With some recent new port additions, there are now nearly 3 dozen > ports that could fit into a "lisp" category. That's about the same number > as we have in the "scheme" category, so one supposes if we have the > one, we ought to have the other. Looks good to me! M -- Mark Murray iumop ap!sdn w,I idlaH From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 01:20: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 842EA16A4B3 for ; Fri, 3 Oct 2003 01:20:07 -0700 (PDT) Received: from lists.frmug.org (frmug-gw.frmug.org [193.56.58.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id B636944001 for ; Fri, 3 Oct 2003 01:20:05 -0700 (PDT) (envelope-from olive@oban.frmug.org) Received: by lists.frmug.org (Postfix/TLS, from userid 66) id 488C820F3E; Fri, 3 Oct 2003 10:20:04 +0200 (CEST) Received: by weirdos.oban.frmug.org (Postfix, from userid 1002) id E668A8C2D; Fri, 3 Oct 2003 10:17:43 +0200 (CEST) Date: Fri, 3 Oct 2003 10:17:43 +0200 From: Olivier Tharan To: Hua Jun Message-ID: <20031003081743.GB50172@weirdos.oban.frmug.org> Mail-Followup-To: Hua Jun , ports@FreeBSD.org References: <200310031405.07823.major@sjtu.edu.cn> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <200310031405.07823.major@sjtu.edu.cn> X-Attribution: Olive cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: fvwm-2.5.7_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 08:20:07 -0000 * Hua Jun (20031003 14:05): > I'm a RreeBSDer, want to use fvwm ( becauz its powerful window management) > but I found there are so many versions about it, I got confused, don't know > which is my best choice, would you like to give me some advice about it? I'd suggest you install x11-wm/fvwm2-devel. -- olive From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 01:40: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 D11D816A4B3; Fri, 3 Oct 2003 01:40:43 -0700 (PDT) Received: from sccrmhc12.comcast.net (sccrmhc12.comcast.net [204.127.202.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBB7543F3F; Fri, 3 Oct 2003 01:40:41 -0700 (PDT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([12.203.21.192]) by comcast.net (sccrmhc12) with ESMTP id <2003100308404001200hsjaie>; Fri, 3 Oct 2003 08:40:40 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id 5CD6D944; Fri, 3 Oct 2003 01:40:40 -0700 (PDT) Date: Fri, 3 Oct 2003 01:40:40 -0700 From: Clint Olsen To: netchild@freebsd.org Message-ID: <20031003084039.GA74226@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! cc: ports@freebsd.org Subject: icc error messages X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 08:40:43 -0000 Hi: I'm getting the following errors on my 4.7p1 box: /usr/local/intel/compiler70/ia32/bin/iccbin: /lib/libc.so.6: version `GLIBC_2.1.3' not found (required by /usr/local/intel/compiler70/ia32/bin/iccbin) /usr/local/intel/compiler70/ia32/bin/iccbin: /lib/libc.so.6: version `GLIBC_2.1.3' not found (required by /usr/local/intel/compiler70/ia32/lib/libcxa.so.3) What packages am I missing? Thanks, -Clint From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 02:00: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 C2C4916A4B3 for ; Fri, 3 Oct 2003 02:00:07 -0700 (PDT) Received: from gandalf.online.bg (gandalf.online.bg [217.75.128.9]) by mx1.FreeBSD.org (Postfix) with SMTP id 60F0743FE3 for ; Fri, 3 Oct 2003 02:00:05 -0700 (PDT) (envelope-from roam@ringlet.net) Received: (qmail 20623 invoked from network); 3 Oct 2003 08:59:58 -0000 Received: from office.sbnd.net (HELO straylight.ringlet.net) (217.75.140.130) by gandalf.online.bg with SMTP; 3 Oct 2003 08:59:58 -0000 Received: (qmail 23587 invoked by uid 1000); 3 Oct 2003 09:00:01 -0000 Date: Fri, 3 Oct 2003 12:00:00 +0300 From: Peter Pentchev To: Nakata Maho Message-ID: <20031003085959.GG546@straylight.oblivion.bg> Mail-Followup-To: Nakata Maho , ports@FreeBSD.org References: <20031003.101518.846944044.chat95@mbox.kyoto-inet.or.jp> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sfyO1m2EN8ZOtJL6" Content-Disposition: inline In-Reply-To: <20031003.101518.846944044.chat95@mbox.kyoto-inet.or.jp> User-Agent: Mutt/1.5.4i cc: ports@FreeBSD.org Subject: Re: Do repocopy for OpenOffice.org on this weekend (2003/Oct/4 or 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: Fri, 03 Oct 2003 09:00:07 -0000 --sfyO1m2EN8ZOtJL6 Content-Type: text/plain; charset=windows-1251 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 03, 2003 at 10:15:18AM +0900, Nakata Maho wrote: > Hi all, > As OpenOffice.org 1.1.0 is released (yeah!) > I'll do repocopy on this weekend.=20 > 2003/Oct/4 or 5 JST. >=20 > From: > /usr/ports/chinese/openoffice-zh_CN [snip rest of list] > to > /usr/ports/chinese/openoffice1.0-zh_CN [snip rest of list] >=20 > and from > /usr/ports/editors/openoffice-devel > /usr/ports/japanese/openoffice-devel > to > /usr/ports/editors/openoffice > /usr/ports/japanese/openoffice >=20 > and I'll make other localized ports for 1.1.0 also. >=20 > If I'm going to do wrong thing, please do not > hesitate me pointing out... I guess this would be a good thing to do :) Thanks for taking the time and doing the work on the localized ports! However, aren't repo-copies actually done by the CVS meisters after a request from a ports committer? 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 You have, of course, just begun reading the sentence that you have just fin= ished reading. --sfyO1m2EN8ZOtJL6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/fTqP7Ri2jRYZRVMRAla0AJ9qCJowz5xv76gud4XAKhEC29wKggCdEOoD C25uJh3vaRdclPidg07qaFs= =7Inq -----END PGP SIGNATURE----- --sfyO1m2EN8ZOtJL6-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 02:39: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 96E9916A4B3 for ; Fri, 3 Oct 2003 02:39:07 -0700 (PDT) Received: from gandalf.online.bg (gandalf.online.bg [217.75.128.9]) by mx1.FreeBSD.org (Postfix) with SMTP id 63D1943FCB for ; Fri, 3 Oct 2003 02:39:05 -0700 (PDT) (envelope-from roam@ringlet.net) Received: (qmail 28944 invoked from network); 3 Oct 2003 09:38:59 -0000 Received: from office.sbnd.net (HELO straylight.ringlet.net) (217.75.140.130) by gandalf.online.bg with SMTP; 3 Oct 2003 09:38:58 -0000 Received: (qmail 31461 invoked by uid 1000); 3 Oct 2003 09:39:02 -0000 Date: Fri, 3 Oct 2003 12:39:02 +0300 From: Peter Pentchev To: Will Kessler Message-ID: <20031003093902.GH546@straylight.oblivion.bg> Mail-Followup-To: Will Kessler , ports@freebsd.org References: <200310022226100827.0307CB95@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="QXO0/MSS4VvK6f+D" Content-Disposition: inline In-Reply-To: <200310022226100827.0307CB95@localhost> User-Agent: Mutt/1.5.4i cc: ports@freebsd.org Subject: Re: install mozilla without root permission X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 09:39:07 -0000 X-List-Received-Date: Fri, 03 Oct 2003 09:39:07 -0000 --QXO0/MSS4VvK6f+D Content-Type: text/plain; charset=windows-1251 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Oct 02, 2003 at 10:26:10PM -0700, Will Kessler wrote: > Hello, >=20 > I am a poor unpriv'd user on a shared freebsd system which has no > installed browser. >=20 > I'd like to install mozilla but cannot secure root or even pseudo > privs to do it using a package. Is there any way to just install it in > my local home dir? I've also tried biulding from source, after > building gtk and glib, but this fails due to other dependencies. You cannot really install an already-built package into another location: most often, the binaries, libraries, and other files in the package will have hardwired (at compile time) references to paths to its 'usual' location (the one it was built for) - it may be hard and time-consuming (and even impossible for the binaries and libraries) to track down and change all those references, and make sure it's done correctly. The most you can do is build the port - starting with all its dependencies - instructing it to install into your home dir. Although I've never done this for Mozilla itself, I have indeed succeeded in doing this for other ports, including their dependencies. It is not a very easy task, though :( The way to go about it is to set several environment variables. - the PREFIX variable specifies where a port is to be installed; point it at your home directory, and the ports system will create the ~/bin, ~/lib, ~/share, etc, directories needed; - the LOCALBASE variable specifies where a port should look for the libraries and commands installed by its dependencies; if you want to build Mozilla's dependencies, too (if they are not installed on the system in the default /usr/local hierarchy), you may want to also point LOCALBASE to your home directory; - the INSTALL_AS_USER variable instructs the ports collection to not attempt to perform the actual installation as root; set it to any value, 'yes' works fine :) - the NO_PKG_REGISTER variable instructs the ports collection to not attempt to actually register the package in the package database used by the pkg_add/pkg_delete/pkg_info tools; set it to any value, 'yes' works fine :) - the DISTDIR variable contains the location for the directory where the ports system downloads the source files for the installed packages; since you may not have permission to write to the default download directory, /usr/ports/distfiles/, you may want to set DISTDIR to, say, $HOME/tmp/dist/; - the WRKDIRPREFIX variable contains the location for a directory where the ports are actually extracted and compiled; since you may not have permission to write to the default directories - they are created in the ports tree itself, e.g. /usr/ports/www/mozilla/work/ and /usr/ports/devel/gmake/work/, you may want to set WRKDIRPREFIX to, say, $HOME/tmp/work/; - the DEPENDS_TARGET variable controls the way a port's dependencies are built when needed; since Mozilla has a lot of big dependencies, and you may not want to keep all of their extracted/compiled sources around after they were successfully installed, you may want to change the default 'install' setting to 'install clean', so that the ports are cleaned up immediately after a successful installation; - the LD_LIBRARY_PATH, while not specifically a ports variable, will have some bearing on your trying to build applications which link with libraries in non-standard locations. You may want to set LD_LIBRARY_PATH to $LOCALBASE/lib (if using the settings proposed above, this will be the same as $HOME/lib). Well, I warned you that it might not be simple and easy :) Something like the following usually works for me: - for Bourne-family shells (sh, ksh, bash, zsh): export PREFIX=3D$HOME LOCALBASE=3D$HOME INSTALL_AS_USER=3Dyes NO_PKG_REGI= STER=3Dyes export DISTDIR=3D$HOME/tmp/dist/ WRKDIRPREFIX=3D$HOME/tmp/work/ export DEPENDS_TARGET=3D'install clean' LD_LIBRARY_PATH=3D$LOCALBASE/lib - for C-family shells (csh, tcsh): setenv PREFIX $HOME setenv LOCALBASE $HOME setenv INSTALL_AS_USER yes setenv NO_PKG_REGISTER yes setenv DISTDIR $HOME/tmp/dist setenv WRKDIRPREFIX $HOME/tmp/work setenv DEPENDS_TARGET 'install clean' setenv LD_LIBRARY_PATH $LOCALBASE/lib Then either use the system's ports tree in /usr/ports, or extract your own copy in, say, $HOME/ports/ and set the PORTSDIR variable to point at it (export PORTSDIR=3D$HOME/ports or setenv PORTSDIR $HOME/ports), change to the www/mozilla port's directory (cd /usr/ports/www/mozilla/), and try 'make clean all install' to see if it will work :) Someday I'll try to organize this, as well as any feedback received from people who have tried it and found it a bit lacking, and make it a part of the FreeBSD Handbook's ports section. Thus, it will be awesome if you actually tried to follow these directions and told me if it works or not, including the error messages in the latter case :) > Normally I develop under solaris and linux, for which i can get > executables that seem to run in their own dir, so i'm less familiar > with freebsd (although pkg_add sounds a bit like pkgadd under > solaris). Unfortunately, as noted above, pkg_add only installs precompiled packages, and you cannot easily do this into a different directory - not for a port as complex as Mozilla anyway :( > Any pointers/help appreciated! Opera just doesn't cut the mustard, I > really don't want to use any MSFT products, and googling revealed few > clues. Well, pretty much your only chance is to build the beast yourself... and be warned, it *is* a beast, it is enormous, it has a *lot* of big dependencies, it will take both much time and much disk space to do this. Still, it might be worth a try :) By the way, there are a couple of other browsers in the ports/www category: Arena and Mosaic come to mind, although they might be a bit simplistic, but there might be others that I just don't know about :) If Mozilla turns out to be really hard to build this way, you might want to try some of the simpler ones. 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 When you are not looking at it, this sentence is in Spanish. --QXO0/MSS4VvK6f+D Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/fUO27Ri2jRYZRVMRAkWzAJ91ciWePsrCuaxKZ5VDyy8zmwzAigCdG/Wj WumgFz+XAQnnhhZF0/ucEUc= =Ps/Z -----END PGP SIGNATURE----- --QXO0/MSS4VvK6f+D-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 02:39: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 442AC16A4B3 for ; Fri, 3 Oct 2003 02:39:08 -0700 (PDT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9577843FB1 for ; Fri, 3 Oct 2003 02:39:07 -0700 (PDT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([12.203.21.192]) by comcast.net (sccrmhc11) with ESMTP id <20031003093906011006qoire>; Fri, 3 Oct 2003 09:39:06 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id 3C6715CF; Fri, 3 Oct 2003 02:39:06 -0700 (PDT) To: ports@freebsd.org Message-Id: <20031003093906.3C6715CF@0lsen.net> Date: Fri, 3 Oct 2003 02:39:06 -0700 (PDT) From: clint@0lsen.net (Clint Olsen) Subject: Trashed my machine via ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 09:39:08 -0000 I was trying to install a new version of glib (glib20), and somehow libintl.so.4 got lost in the shuffle: ===> Building for glib-2.2.3 /usr/libexec/ld-elf.so.1: Shared object "libintl.so.1" not found *** Error code 1 Stop in /usr/ports/devel/glib20. Any ideas on how to fix this? Thanks, -Clint From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 03:23: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 4396A16A4B3 for ; Fri, 3 Oct 2003 03:23:01 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FC0E43FB1 for ; Fri, 3 Oct 2003 03:22:59 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 32281 invoked from network); 3 Oct 2003 10:22:58 -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 ; 3 Oct 2003 10:22:58 -0000 Message-ID: <3F7D4E01.8010806@liwing.de> Date: Fri, 03 Oct 2003 10:22:57 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030928 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Clint Olsen References: <20031003093906.3C6715CF@0lsen.net> In-Reply-To: <20031003093906.3C6715CF@0lsen.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: Trashed my machine via ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 10:23:01 -0000 Clint Olsen wrote: > I was trying to install a new version of glib (glib20), and somehow > libintl.so.4 got lost in the shuffle: > > ===> Building for glib-2.2.3 > /usr/libexec/ld-elf.so.1: Shared object "libintl.so.1" not found > *** Error code 1 > > Stop in /usr/ports/devel/glib20. > > Any ideas on how to fix this? Try upgrading devel/gettext first :-) Maybe a pkgdb -F from sysutils/portupgrade helps you, too. Jens From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 03:42: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 4911316A4B3 for ; Fri, 3 Oct 2003 03:42:18 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27B2A43FDF for ; Fri, 3 Oct 2003 03:42:17 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 39117 invoked from network); 3 Oct 2003 10:42:15 -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 ; 3 Oct 2003 10:42:15 -0000 Message-ID: <3F7D5287.9080809@liwing.de> Date: Fri, 03 Oct 2003 10:42:15 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030928 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Clint Olsen References: <20031003103212.9E9AC94B@0lsen.net> In-Reply-To: <20031003103212.9E9AC94B@0lsen.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD Ports Subject: Re: fixing shared lib paths X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 10:42:18 -0000 Clint Olsen wrote: >>Try upgrading devel/gettext first :-) >>Maybe a pkgdb -F from sysutils/portupgrade helps you, too. > > > Well, I did replace gettext, and it installed a libintl.so.5 in > /usr/local/lib. The problem (I think) is that ldconfig needs > to be rerun, but I can't seem to make it do the "right thing". This > should be doable without a reboot... Argh. I updated my ports without having to reboot. Don't know what's wrong with your machine. Usually ldconfig is run when a library is installed/updated. Did you prove your installed ports consistency using 'pkgdb -F'? Did you maked all ports clean before you try to update them? Did you forgot to cc ports@? Jens From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 03: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 2857316A4BF for ; Fri, 3 Oct 2003 03:50:21 -0700 (PDT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id E651043FF7 for ; Fri, 3 Oct 2003 03:50:19 -0700 (PDT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([12.203.21.192]) by comcast.net (sccrmhc11) with ESMTP id <20031003105017011006qbdfe>; Fri, 3 Oct 2003 10:50:17 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id 9136C94E; Fri, 3 Oct 2003 03:50:16 -0700 (PDT) Date: Fri, 3 Oct 2003 03:50:16 -0700 From: Clint Olsen To: Jens Rehsack Message-ID: <20031003105016.GA57743@poly.0lsen.net> References: <20031003103212.9E9AC94B@0lsen.net> <3F7D5287.9080809@liwing.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3F7D5287.9080809@liwing.de> User-Agent: Mutt/1.4.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! cc: FreeBSD Ports Subject: Re: fixing shared lib paths X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 10:50:21 -0000 On Oct 03, Jens Rehsack wrote: > > I updated my ports without having to reboot. Don't know what's wrong with > your machine. Usually ldconfig is run when a library is > installed/updated. > > Did you prove your installed ports consistency using 'pkgdb -F'? > > Did you maked all ports clean before you try to update them? > > Did you forgot to cc ports@? I don't appear to have pkgdb installed. I'm installing portupgrade at the moment. I forgot to cc: ports since this latest snafu broke Mutt. At least now I've got that working... Thanks, -Clint From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 03:52: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 8594D16A4B3 for ; Fri, 3 Oct 2003 03:52:21 -0700 (PDT) Received: from jim.zonepro-serveurs.com (jim.zonepro-serveurs.com [193.110.79.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C68943FBD for ; Fri, 3 Oct 2003 03:52:20 -0700 (PDT) (envelope-from mail@jim.zonepro-serveurs.com) Received: from jim.zonepro-serveurs.com (localhost [127.0.0.1]) h93AqClB001922 for ; Fri, 3 Oct 2003 12:52:12 +0200 Received: (from mail@localhost) by jim.zonepro-serveurs.com (8.12.9/8.12.9/Submit) id h93AqCBo001920; Fri, 3 Oct 2003 12:52:12 +0200 Date: Fri, 3 Oct 2003 12:52:12 +0200 Message-Id: <200310031052.h93AqCBo001920@jim.zonepro-serveurs.com> To: ports From: pdiez@reunionaircargo.com Subject: message automatique : A very good tool X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: pdiez@reunionaircargo.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2003 10:52:21 -0000 actif From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 04:08: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 DD20D16A4B3 for ; Fri, 3 Oct 2003 04:08:26 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B2FC44005 for ; Fri, 3 Oct 2003 04:08:25 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 48378 invoked from network); 3 Oct 2003 11:08:22 -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 ; 3 Oct 2003 11:08:22 -0000 Message-ID: <3F7D58A6.5070403@liwing.de> Date: Fri, 03 Oct 2003 11:08:22 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030928 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Clint Olsen References: <20031003103212.9E9AC94B@0lsen.net> <3F7D5287.9080809@liwing.de> <20031003105016.GA57743@poly.0lsen.net> In-Reply-To: <20031003105016.GA57743@poly.0lsen.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: FreeBSD Ports Subject: Re: fixing shared lib paths X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 11:08:27 -0000 Clint Olsen wrote: > On Oct 03, Jens Rehsack wrote: > >>I updated my ports without having to reboot. Don't know what's wrong with >>your machine. Usually ldconfig is run when a library is >>installed/updated. >> >>Did you prove your installed ports consistency using 'pkgdb -F'? >> >>Did you maked all ports clean before you try to update them? >> >>Did you forgot to cc ports@? > > > I don't appear to have pkgdb installed. I'm installing portupgrade at the Ok, than you may have some fun when it's finished :-) > moment. I forgot to cc: ports since this latest snafu broke Mutt. At > least now I've got that working... Not a problem, but important for archives. > Thanks, If you encounter any problems during fix your package database and/or updating affected ports, feel free to ask again (don't forget list :-)) Jens From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 06:44: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 1A99616A4B3 for ; Fri, 3 Oct 2003 06:44:40 -0700 (PDT) Received: from gandalf.online.bg (gandalf.online.bg [217.75.128.9]) by mx1.FreeBSD.org (Postfix) with SMTP id 9684E43FF9 for ; Fri, 3 Oct 2003 06:44:33 -0700 (PDT) (envelope-from roam@ringlet.net) Received: (qmail 15229 invoked from network); 3 Oct 2003 13:44:25 -0000 Received: from office.sbnd.net (HELO straylight.ringlet.net) (217.75.140.130) by gandalf.online.bg with SMTP; 3 Oct 2003 13:44:24 -0000 Received: (qmail 1195 invoked by uid 1000); 3 Oct 2003 13:44:30 -0000 Date: Fri, 3 Oct 2003 16:44:30 +0300 From: Peter Pentchev To: Racz Janos Message-ID: <20031003134430.GB541@straylight.oblivion.bg> Mail-Followup-To: Racz Janos , Masafumi Max NAKANE , ports@freebsd.org References: <1065136038.550.6.camel@fw-bsd.freestart.hu> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="oTHb8nViIGeoXxdp" Content-Disposition: inline In-Reply-To: <1065136038.550.6.camel@fw-bsd.freestart.hu> User-Agent: Mutt/1.5.4i cc: ports@freebsd.org cc: Masafumi Max NAKANE Subject: Re: bad url X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 13:44:40 -0000 --oTHb8nViIGeoXxdp Content-Type: multipart/mixed; boundary="QTprm0S8XgL7H0Dt" Content-Disposition: inline --QTprm0S8XgL7H0Dt Content-Type: text/plain; charset=windows-1251 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Oct 03, 2003 at 01:07:19AM +0200, Racz Janos wrote: > Hi! >=20 > I'd like to inform you that the WWW address for the port 'lang/swi-pl' > has been changed so the url given in port description page is invalid. I > think the new url is http://www.swi-prolog.org. Good catch! Racz, actually you might have sent this directly to Nakane-san , who is the maintainer of the lang/swi-pl FreeBSD port; you can find this out by doing the following: [roam@straylight /usr/ports/lang/swi-pl]> make maintainer max@FreeBSD.org [roam@straylight /usr/ports/lang/swi-pl]> Nakane-san, what do you think about the attached (trivial) patch? 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 jealous of the first word in this sentence. --QTprm0S8XgL7H0Dt Content-Type: text/plain; charset=windows-1251 Content-Disposition: attachment; filename="swi-pl.patch" Content-Transfer-Encoding: quoted-printable Index: ports/lang/swi-pl/pkg-descr =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/lang/swi-pl/pkg-descr,v retrieving revision 1.2 diff -u -r1.2 pkg-descr --- ports/lang/swi-pl/pkg-descr 25 Nov 2002 00:09:04 -0000 1.2 +++ ports/lang/swi-pl/pkg-descr 3 Oct 2003 13:40:38 -0000 @@ -3,4 +3,4 @@ GNU-readline and GNU-Emacs interface, very fast compiler, X11 interface using XPCE (info: ftp swi.psy.uva.nl:/pub/xpce). =20 -WWW: http://www.swi-pl.org/ +WWW: http://www.swi-prolog.org/ --QTprm0S8XgL7H0Dt-- --oTHb8nViIGeoXxdp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/fX097Ri2jRYZRVMRAkduAKCvOn0N12Cs6ZZFkXDfyzIK68Ba0gCdHL66 RipNpUPGeupI6DYeZrLCn/M= =CEW/ -----END PGP SIGNATURE----- --oTHb8nViIGeoXxdp-- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 06:49: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 3C0F616A4B3 for ; Fri, 3 Oct 2003 06:49:23 -0700 (PDT) Received: from mail.hal-pc.org (mail.hal-pc.org [206.180.145.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7605843F93 for ; Fri, 3 Oct 2003 06:49:22 -0700 (PDT) (envelope-from joegw@hal-pc.org) Received: from [206.180.133.17] (HELO lyon) by mail.hal-pc.org (CommuniGate Pro SMTP 3.5.9) with SMTP id 65137314; Fri, 03 Oct 2003 08:49:21 -0500 Message-ID: <00c001c389b5$26366210$0300000a@lyon> From: "Joe Gwozdecki" To: Date: Fri, 3 Oct 2003 08:49:21 -0500 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 cc: ports@FreeBSD.org Subject: FreeBSD Port: linux-realplayer-8.cs2_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: Fri, 03 Oct 2003 13:49:23 -0000 From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 09:31: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 E982B16A4B3 for ; Fri, 3 Oct 2003 09:31:57 -0700 (PDT) Received: from lakemtao08.cox.net (lakemtao08.cox.net [68.1.17.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1E7C44003 for ; Fri, 3 Oct 2003 09:31:56 -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 <20031003163156.EUZG22544.lakemtao08.cox.net@mezz.mezzweb.com>; Fri, 3 Oct 2003 12:31:56 -0400 To: Jens Rehsack References: <20031003093906.3C6715CF@0lsen.net> <3F7D4E01.8010806@liwing.de> Message-ID: From: Jeremy Messenger Content-Type: text/plain; format=flowed; charset=utf-8 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Fri, 03 Oct 2003 11:30:52 -0500 In-Reply-To: <3F7D4E01.8010806@liwing.de> User-Agent: Opera7.20/Linux M2 build 468 cc: ports@freebsd.org cc: Clint Olsen Subject: Re: Trashed my machine via ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 16:31:58 -0000 On Fri, 03 Oct 2003 10:22:57 +0000, Jens Rehsack wrote: > Clint Olsen wrote: >> I was trying to install a new version of glib (glib20), and somehow >> libintl.so.4 got lost in the shuffle: >> >> ===> Building for glib-2.2.3 >> /usr/libexec/ld-elf.so.1: Shared object "libintl.so.1" not found >> *** Error code 1 >> >> Stop in /usr/ports/devel/glib20. >> >> Any ideas on how to fix this? > > Try upgrading devel/gettext first :-) It is how he get this error, because he has upgraded the gettext.. ;-) > Maybe a pkgdb -F from sysutils/portupgrade helps you, too. Nope, he needs to rebuild all apps that are depend on gettext. Use portupgrade to do that. Cheers, Mezz > Jens -- bsdforums.org 's moderator, mezz. From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 09:37: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 B793516A4B3 for ; Fri, 3 Oct 2003 09:37:32 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id A669043FF2 for ; Fri, 3 Oct 2003 09:37:29 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 38593 invoked from network); 3 Oct 2003 16:37:28 -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 ; 3 Oct 2003 16:37:28 -0000 Message-ID: <3F7DA5C8.4030907@liwing.de> Date: Fri, 03 Oct 2003 16:37:28 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030928 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Jeremy Messenger References: <20031003093906.3C6715CF@0lsen.net> <3F7D4E01.8010806@liwing.de> In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: Clint Olsen Subject: Re: Trashed my machine via ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 16:37:32 -0000 Jeremy Messenger wrote: > On Fri, 03 Oct 2003 10:22:57 +0000, Jens Rehsack wrote: > >> Clint Olsen wrote: >> >>> I was trying to install a new version of glib (glib20), and somehow >>> libintl.so.4 got lost in the shuffle: >>> >>> ===> Building for glib-2.2.3 >>> /usr/libexec/ld-elf.so.1: Shared object "libintl.so.1" not found >>> *** Error code 1 >>> >>> Stop in /usr/ports/devel/glib20. >>> >>> Any ideas on how to fix this? >> >> >> Try upgrading devel/gettext first :-) > > > It is how he get this error, because he has upgraded the gettext.. ;-) > >> Maybe a pkgdb -F from sysutils/portupgrade helps you, too. > > > Nope, he needs to rebuild all apps that are depend on gettext. Use > portupgrade to do that. If you see at the rest of the thread (subject changed), he had neither installed nor used portupgrade, so pkgdb -F is mandatory before he can continue upgrading. Jens From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 10:41: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 56DE616A4B3 for ; Fri, 3 Oct 2003 10:41:13 -0700 (PDT) Received: from rwcrmhc13.comcast.net (rwcrmhc13.comcast.net [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id A898643FE5 for ; Fri, 3 Oct 2003 10:41:12 -0700 (PDT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([12.203.21.192]) by comcast.net (rwcrmhc13) with ESMTP id <2003100317411201500cl0v2e>; Fri, 3 Oct 2003 17:41:12 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id 955FE8CD; Fri, 3 Oct 2003 10:41:11 -0700 (PDT) Date: Fri, 3 Oct 2003 10:41:11 -0700 From: Clint Olsen To: Jens Rehsack Message-ID: <20031003174111.GA1221@0lsen.net> References: <20031003093906.3C6715CF@0lsen.net> <3F7D4E01.8010806@liwing.de> <3F7DA5C8.4030907@liwing.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3F7DA5C8.4030907@liwing.de> User-Agent: Mutt/1.4.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! cc: ports@freebsd.org Subject: Re: Trashed my machine via ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 17:41:13 -0000 On Oct 03, Jens Rehsack wrote: > > If you see at the rest of the thread (subject changed), he had neither > installed nor used portupgrade, so pkgdb -F is mandatory before he can > continue upgrading. I ran pkgdb -F and in most cases I chose the default answers (not knowing a better alternative). It would be nice if the dependency "score" information was more clear. What exactly am I doing when I'm fixing a stale dependency? What does "deleting" a dependency mean? Now I'm in portupgrade, and it's just a ton of fun: # portupgrade -R -force gettext .. .. [Updating the pkgdb in /var/db/pkg ... - 253 packages found (-0 +1) . done] ---> Skipping 'converters/libiconv' (libiconv-1.7_1) which has already done ** The port directory for 'rce' does not exist. ** The following packages were not installed or upgraded (*:skipped / !:failed) * converters/libiconv (libiconv-1.7_1) ! rce (gettext-0.12.1) (port directory error) I used -R for the upward recursion (fix all packages relying on gettext). I also ran with the force switch because it bitched the first time it ran into a port that was already installed. Now, is rce a subdir in a particular package or what? I'm scrolling up through the gobs of text right now to see what the hell this is all about. Are ports supposed to get this screwed up or did I just not maintain my ports area correctly? -Clint From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 11: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 3676716A4B3 for ; Fri, 3 Oct 2003 11:02:28 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2D2E43FFD for ; Fri, 3 Oct 2003 11:02:26 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 79676 invoked from network); 3 Oct 2003 18:02:25 -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 ; 3 Oct 2003 18:02:25 -0000 Message-ID: <3F7DB9B0.9020003@liwing.de> Date: Fri, 03 Oct 2003 18:02:24 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030928 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Clint Olsen References: <20031003093906.3C6715CF@0lsen.net> <3F7D4E01.8010806@liwing.de> <3F7DA5C8.4030907@liwing.de> <20031003174111.GA1221@0lsen.net> In-Reply-To: <20031003174111.GA1221@0lsen.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: Trashed my machine via ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 18:02:28 -0000 Clint Olsen wrote: > On Oct 03, Jens Rehsack wrote: > >>If you see at the rest of the thread (subject changed), he had neither >>installed nor used portupgrade, so pkgdb -F is mandatory before he can >>continue upgrading. > > > I ran pkgdb -F and in most cases I chose the default answers (not knowing > a better alternative). It would be nice if the dependency "score" > information was more clear. This is usually not wrong, because in most cases you didn't had done anything special which requires another interaction. > What exactly am I doing when I'm fixing a > stale dependency? What does "deleting" a dependency mean? That means, that the information that a port (a) relies on another port (b) is deleted. > Now I'm in portupgrade, and it's just a ton of fun: > > # portupgrade -R -force gettext Better: 'portupgrade -fvr gettext' :-) Or in the case your ports tree is completely destroyed: 'portupgrade -fvar'. > .. > .. > [Updating the pkgdb in /var/db/pkg ... - 253 packages > found (-0 +1) . done] > ---> Skipping 'converters/libiconv' (libiconv-1.7_1) which has already > done > ** The port directory for 'rce' does not exist. > ** The following packages were not installed or upgraded (*:skipped / > !:failed) > * converters/libiconv (libiconv-1.7_1) > ! rce (gettext-0.12.1) (port directory error) > > I used -R for the upward recursion (fix all packages relying on gettext). Upward is: all packages gettext relies on. See it as a graph (tree?) where the ports without requirements are topmost. > I also ran with the force switch because it bitched the first time it ran > into a port that was already installed. > > Now, is rce a subdir in a particular package or what? I'm scrolling up > through the gobs of text right now to see what the hell this is all about. You may use script(1) to capture the entire output and send it as attachment. I don't know anything about a package named 'rce' and 'make search name="rce"' in /usr/ports didn't enlight me ;-) > Are ports supposed to get this screwed up or did I just not maintain my > ports area correctly? I think a little bit of both, but nothing you can't fix with patience and portupgrade :-) > -Clint Jens From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 12:26: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 903FE16A4B3 for ; Fri, 3 Oct 2003 12:26:04 -0700 (PDT) Received: from zamek.gda.pl (zamek.gda.pl [62.89.105.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9193143FEA for ; Fri, 3 Oct 2003 12:26:01 -0700 (PDT) (envelope-from ewelina@zamek.gda.pl) Received: from EwelinaProbucka (unknown [62.233.233.130]) by zamek.gda.pl (Postfix) with ESMTP id 20F14C5A0A; Fri, 3 Oct 2003 21:24:16 +0200 (CEST) Message-ID: <000601c389e4$fc45fda0$1d8ea8c0@EwelinaProbucka> From: "Ewelina Probucka" To: Date: Fri, 3 Oct 2003 21:31:40 +0200 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: ports@FreeBSD.org Subject: FreeBSD Port: squirrelmail-1.4.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Ewelina Probucka List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Oct 2003 19:26:04 -0000 Hello when the 1.4.2 version will be available (ported)? pzdr BUZZ / Poland p.s. I'm writting from my girl friend's mail account - you can answer as = reply From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 15:58: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 97B0316A4BF for ; Fri, 3 Oct 2003 15:58:35 -0700 (PDT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id B683D4401F for ; Fri, 3 Oct 2003 15:58:25 -0700 (PDT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([12.203.21.192]) by comcast.net (rwcrmhc11) with ESMTP id <2003100322582501300ltn8ae>; Fri, 3 Oct 2003 22:58:25 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id A7BC6581; Fri, 3 Oct 2003 15:58:24 -0700 (PDT) Date: Fri, 3 Oct 2003 15:58:24 -0700 From: Clint Olsen To: ports@freebsd.org Message-ID: <20031003225824.GA20710@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! Subject: Thanks for your help (another issue stlport-icc) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 22:58:35 -0000 Thanks for your help with portupgrade and pkgdb. I won't lie and say I completely understand what's all happening there, but at least I've made progress :) I tried to compile stlport-icc, and near the end I got another error: icpc -D_THREAD_SAFE -D_REENTRANT -mt -w1 -g -O -I../../stlport -I. -DEH_VECTOR_OPERATOR_NEW -DEH_DELETE_HAS_THROW_SPEC obj/TestClass.o obj/main.o obj/nc_alloc.o obj/random_number.o obj/test_algo.o obj/test_algobase.o obj/test_list.o obj/test_slist.o obj/test_bit_vector.o obj/test_vector.o obj/test_deque.o obj/test_set.o obj/test_map.o obj/test_hash_map.o obj/test_hash_set.o obj/test_rope.o obj/test_string.o obj/test_bitset.o obj/test_valarray.o -L../../lib -lstlport_icc -lm -o ./eh_test ../../lib/libstlport_icc.so: undefined reference to `__sigsetjmp' gmake: *** [eh_test] Error 1 *** Error code 2 I'm not sure why this symbol cannot be found. Thanks, -Clint From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 16:57: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 7BF0216A4B3 for ; Fri, 3 Oct 2003 16:57:41 -0700 (PDT) Received: from newtrinity.zeist.de (newtrinity.zeist.de [217.24.217.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 583A943FE5 for ; Fri, 3 Oct 2003 16:57:40 -0700 (PDT) (envelope-from marius@newtrinity.zeist.de) Received: from newtrinity.zeist.de (localhost [127.0.0.1]) h93NvMYq051586; Sat, 4 Oct 2003 01:57:22 +0200 (CEST) (envelope-from marius@newtrinity.zeist.de) Received: (from marius@localhost) by newtrinity.zeist.de (8.12.10/8.12.10/Submit) id h93NvGk9051585; Sat, 4 Oct 2003 01:57:16 +0200 (CEST) (envelope-from marius) Date: Sat, 4 Oct 2003 01:57:16 +0200 From: Marius Strobl To: Clint Olsen Message-ID: <20031004015716.A51459@newtrinity.zeist.de> References: <20031003225824.GA20710@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20031003225824.GA20710@0lsen.net>; from clint@0lsen.net on Fri, Oct 03, 2003 at 03:58:24PM -0700 X-AntiVirus: checked by AntiVir Milter 1.0.6; AVE 6.21.0.1; VDF 6.21.0.58 cc: ports@freebsd.org Subject: Re: Thanks for your help (another issue stlport-icc) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 03 Oct 2003 23:57:41 -0000 On Fri, Oct 03, 2003 at 03:58:24PM -0700, Clint Olsen wrote: > Thanks for your help with portupgrade and pkgdb. I won't lie and say I > completely understand what's all happening there, but at least I've made > progress :) > > I tried to compile stlport-icc, and near the end I got another error: > > icpc -D_THREAD_SAFE -D_REENTRANT -mt -w1 -g -O -I../../stlport -I. -DEH_VECTOR_OPERATOR_NEW -DEH_DELETE_HAS_THROW_SPEC obj/TestClass.o obj/main.o obj/nc_alloc.o obj/random_number.o obj/test_algo.o obj/test_algobase.o obj/test_list.o obj/test_slist.o obj/test_bit_vector.o obj/test_vector.o obj/test_deque.o obj/test_set.o obj/test_map.o obj/test_hash_map.o obj/test_hash_set.o obj/test_rope.o obj/test_string.o obj/test_bitset.o obj/test_valarray.o -L../../lib -lstlport_icc -lm -o ./eh_test > ../../lib/libstlport_icc.so: undefined reference to `__sigsetjmp' > gmake: *** [eh_test] Error 1 > *** Error code 2 > > I'm not sure why this symbol cannot be found. > It's a glibc symbol... This was fixed in icc-7.1.027_1. Portupgrade probably didn't update your installation of lang/icc as that port can't auto-fetch the distfile. From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 18:07: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 92BD716A4E0 for ; Fri, 3 Oct 2003 18:07:52 -0700 (PDT) Received: from mta2.adelphia.net (mta2.adelphia.net [68.168.78.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F71043FBF for ; Fri, 3 Oct 2003 18:07:51 -0700 (PDT) (envelope-from parv_fm@mailsent.net) Received: from moo.holy.cow ([68.67.227.19]) by mta2.adelphia.net (InterMail vM.5.01.05.32 201-253-122-126-132-20030307) with ESMTP id <20031004010753.BORG2505.mta2.adelphia.net@moo.holy.cow>; Fri, 3 Oct 2003 21:07:53 -0400 Received: by moo.holy.cow (Postfix, from userid 1001) id 11218A3BF; Fri, 3 Oct 2003 21:11:12 -0400 (EDT) Date: Fri, 3 Oct 2003 21:11:12 -0400 From: parv To: Clint Olsen Message-ID: <20031004011111.GA2015@moo.holy.cow> Mail-Followup-To: Clint Olsen , Jens Rehsack , ports@freebsd.org References: <20031003093906.3C6715CF@0lsen.net> <3F7D4E01.8010806@liwing.de> <3F7DA5C8.4030907@liwing.de> <20031003174111.GA1221@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031003174111.GA1221@0lsen.net> cc: ports@freebsd.org Subject: Re: Trashed my machine via ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 04 Oct 2003 01:07:52 -0000 in message <20031003174111.GA1221@0lsen.net>, wrote Clint Olsen thusly... > > I ran pkgdb -F and in most cases I chose the default answers (not > knowing a better alternative). It would be nice if the dependency > "score" information was more clear. Here is my experience w/ pkgdb... Score -- Action ------------------------------------------------------------- => 80 % -- Accept the default suggestion as is; do a /quick/ visual inspection if the new suggestion, more or less, literally, *looks*like* the old one. No need to actually read the suggestion. 65 or 70 - 80 % -- Read carefully before accepting the default. At least, make sure that the port origins are same. < 65 % -- Definitely make sure that you want to use the suggested dependency; skip if have slightest of the doubt. - Parv -- From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 18:19: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 DD07B16A4B3 for ; Fri, 3 Oct 2003 18:19: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 081F243FE5 for ; Fri, 3 Oct 2003 18:19:25 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h941JJGZ023197 for ; Fri, 3 Oct 2003 21:19:19 -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 h941JJnb072524 for ports@FreeBSD.org; Fri, 3 Oct 2003 21:19:19 -0400 (EDT) (envelope-from kris) Date: Fri, 3 Oct 2003 21:19:19 -0400 (EDT) From: Kris Kennaway Message-Id: <200310040119.h941JJnb072524@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: Sat, 04 Oct 2003 01:19:26 -0000 INDEX build failed with errors: "Makefile", line 33: Inconsistent operator for pre-configure make: fatal errors encountered -- cannot continue 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/multimedia/xmms 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-Bignum make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-DSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-RSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Digest-BubbleBabble make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-Bignum make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-DSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-RSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Digest-BubbleBabble make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: 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/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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/multimedia/mpeg make_index: xmrm-2.0_2: no entry for /usr/ports/multimedia/mpeg_play 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/arts/Makefile U audio/arts/distinfo U deskutils/kdepim3/Makefile U deskutils/kdepim3/distinfo ? devel/glade2/make.core ? devel/gnomedebug/make.core U devel/kdesdk3/Makefile U devel/kdesdk3/distinfo U devel/kdevelop/distinfo ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U editors/koffice-kde3/Makefile U editors/koffice-kde3/distinfo U games/kdegames3/Makefile U games/kdegames3/distinfo ? graphics/gphoto2/make.core U graphics/kdegraphics3/Makefile U graphics/kdegraphics3/distinfo ? graphics/pstoedit/make.core U lang/ifc/Makefile U lang/ifc/distinfo U mail/dspam/Makefile U mail/dspam/distinfo U mail/dspam/pkg-plist U mail/dspam/files/patch-configure U mail/milter-sender/Makefile U mail/milter-sender/distinfo U mail/milter-sender/files/patch-ac U math/Makefile U math/atlas-devel/Makefile U math/atlas-devel/distinfo U math/atlas-devel/pkg-descr U math/atlas-devel/pkg-plist U math/atlas-devel/files/alpha-patch U math/atlas-devel/files/answer U math/atlas-devel/files/blas.h U math/atlas-devel/files/lapack.h U math/atlas-devel/files/non-thread-patch U math/atlas-devel/files/patch-config.c U math/atlas-devel/files/thread-patch ? misc/flyway/make.core U misc/kdeaddons3/distinfo U misc/kdeutils3/Makefile U misc/kdeutils3/distinfo U multimedia/kdemultimedia3/Makefile U multimedia/kdemultimedia3/distinfo ? net/bind9-dlz/Makefile.inc ? net/bmon/make.core U net/kdenetwork3/Makefile U net/kdenetwork3/distinfo U net/kmerlin/Makefile U net/kmess/Makefile U net/kopete/Makefile ? net/powerdns/Makefile.inc U news/tin/Makefile U news/tin/distinfo ? print/p5-Net-Printer/sh.core ? print/pips880/sh.core U security/kgpg/Makefile U www/epiphany/Makefile U www/epiphany/distinfo U www/epiphany/pkg-plist U x11/kde3/Makefile.kde U x11/kdebase3/distinfo U x11/kdelibs3/distinfo U x11-clocks/kdetoys3/Makefile U x11-clocks/kdetoys3/distinfo ? x11-fm/vide/sh.core U x11-wm/kdeartwork3/Makefile U x11-wm/kdeartwork3/distinfo From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 18:22: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 8FEB716A4B3 for ; Fri, 3 Oct 2003 18:22: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 C96C643FEC for ; Fri, 3 Oct 2003 18:22:22 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h941MMGZ023206 for ; Fri, 3 Oct 2003 21:22:22 -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 h941KPc7038638 for ports@FreeBSD.org; Fri, 3 Oct 2003 21:20:25 -0400 (EDT) (envelope-from kris) Date: Fri, 3 Oct 2003 21:20:25 -0400 (EDT) From: Kris Kennaway Message-Id: <200310040120.h941KPc7038638@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: Sat, 04 Oct 2003 01:22:23 -0000 INDEX build failed with errors: "Makefile", line 33: Inconsistent operator for pre-configure make: fatal errors encountered -- cannot continue 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/multimedia/xmms 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-Bignum make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-DSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-RSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Digest-BubbleBabble make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-Bignum make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-DSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-RSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Digest-BubbleBabble make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: 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/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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/multimedia/mpeg make_index: xmrm-2.0_2: no entry for /usr/ports/multimedia/mpeg_play 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/arts/Makefile U audio/arts/distinfo U deskutils/kdepim3/Makefile U deskutils/kdepim3/distinfo U devel/kdesdk3/Makefile U devel/kdesdk3/distinfo U devel/kdevelop/distinfo ? dns/bind9-dlz/Makefile.inc ? dns/powerdns/Makefile.inc U editors/koffice-kde3/Makefile U editors/koffice-kde3/distinfo U games/kdegames3/Makefile U games/kdegames3/distinfo U graphics/kdegraphics3/Makefile U graphics/kdegraphics3/distinfo U lang/ifc/Makefile U lang/ifc/distinfo ? mail/log U mail/dspam/Makefile U mail/dspam/distinfo U mail/dspam/pkg-plist U mail/dspam/files/patch-configure U mail/milter-sender/Makefile U mail/milter-sender/distinfo U mail/milter-sender/files/patch-ac U math/Makefile U math/atlas-devel/Makefile U math/atlas-devel/distinfo U math/atlas-devel/pkg-descr U math/atlas-devel/pkg-plist U math/atlas-devel/files/alpha-patch U math/atlas-devel/files/answer U math/atlas-devel/files/blas.h U math/atlas-devel/files/lapack.h U math/atlas-devel/files/non-thread-patch U math/atlas-devel/files/patch-config.c U math/atlas-devel/files/thread-patch U misc/kdeaddons3/distinfo U misc/kdeutils3/Makefile U misc/kdeutils3/distinfo U multimedia/kdemultimedia3/Makefile U multimedia/kdemultimedia3/distinfo ? net/bind9-dlz/Makefile.inc U net/kdenetwork3/Makefile U net/kdenetwork3/distinfo U net/kmerlin/Makefile U net/kmess/Makefile U net/kopete/Makefile ? net/powerdns/Makefile.inc U news/tin/Makefile U news/tin/distinfo U security/kgpg/Makefile U www/epiphany/Makefile U www/epiphany/distinfo U www/epiphany/pkg-plist ? x11/gnome2/log U x11/kde3/Makefile.kde U x11/kdebase3/distinfo U x11/kdelibs3/distinfo U x11-clocks/kdetoys3/Makefile U x11-clocks/kdetoys3/distinfo U x11-wm/kdeartwork3/Makefile U x11-wm/kdeartwork3/distinfo From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 19:25: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 0D7D016A4C0 for ; Fri, 3 Oct 2003 19:25: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 A0DEB43FBD for ; Fri, 3 Oct 2003 19:25:08 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 9ball.rtp.freebsd.org (9ball.rtp.FreeBSD.Org [172.21.1.6]) h942P8GZ023318 for ; Fri, 3 Oct 2003 22:25:08 -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 h942P7FF068162 for ports@FreeBSD.org; Fri, 3 Oct 2003 22:25:07 -0400 (EDT) (envelope-from kris) Date: Fri, 3 Oct 2003 22:25:07 -0400 (EDT) From: Kris Kennaway Message-Id: <200310040225.h942P7FF068162@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: Sat, 04 Oct 2003 02:25:10 -0000 INDEX build failed with errors: "Makefile", line 33: Inconsistent operator for pre-configure make: fatal errors encountered -- cannot continue 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/multimedia/xmms 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-Bignum make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-DSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-RSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Digest-BubbleBabble make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-Bignum make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-DSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-RSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Digest-BubbleBabble make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: 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/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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/multimedia/mpeg make_index: xmrm-2.0_2: no entry for /usr/ports/multimedia/mpeg_play 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 Fri Oct 3 19:26: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 7FA5516A4BF for ; Fri, 3 Oct 2003 19:26:28 -0700 (PDT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D8BF43F85 for ; Fri, 3 Oct 2003 19:26:27 -0700 (PDT) (envelope-from kris@rtp.FreeBSD.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) h942QRGZ023321 for ; Fri, 3 Oct 2003 22:26: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 h942OTPv034267 for ports@FreeBSD.org; Fri, 3 Oct 2003 22:24:29 -0400 (EDT) (envelope-from kris) Date: Fri, 3 Oct 2003 22:24:29 -0400 (EDT) From: Kris Kennaway Message-Id: <200310040224.h942OTPv034267@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: Sat, 04 Oct 2003 02:26:28 -0000 INDEX build failed with errors: "Makefile", line 33: Inconsistent operator for pre-configure make: fatal errors encountered -- cannot continue 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/multimedia/xmms 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: 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: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: xblast-2.6.1: no entry for /usr/ports/x11/XFree86-4-libraries make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-Bignum make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-DSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-RSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Digest-BubbleBabble make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-Bignum make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-DSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Crypt-OpenSSL-RSA make_index: p5-Net-DNS-SEC-0.11: no entry for /usr/ports/security/p5-Digest-BubbleBabble make_index: openrm-1.5.0: no entry for /usr/ports/x11/XFree86-4-libraries make_index: openrm-1.5.0: 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/libwww make_index: fetchyahoo-2.5.3: no entry for /usr/ports/www/p5-HTML-Parser 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/multimedia/mpeg make_index: xmrm-2.0_2: no entry for /usr/ports/multimedia/mpeg_play 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 Fri Oct 3 21:15: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 3246216A4B3 for ; Fri, 3 Oct 2003 21:15:32 -0700 (PDT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D25D43FE1 for ; Fri, 3 Oct 2003 21:15:29 -0700 (PDT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([12.203.21.192]) by comcast.net (sccrmhc13) with ESMTP id <2003100404152801600kqntqe>; Sat, 4 Oct 2003 04:15:28 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id E847D581; Fri, 3 Oct 2003 21:15:27 -0700 (PDT) Date: Fri, 3 Oct 2003 21:15:27 -0700 From: Clint Olsen To: Marius Strobl Message-ID: <20031004041527.GB20734@0lsen.net> References: <20031003225824.GA20710@0lsen.net> <20031004015716.A51459@newtrinity.zeist.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20031004015716.A51459@newtrinity.zeist.de> User-Agent: Mutt/1.4.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! cc: ports@freebsd.org Subject: Re: Thanks for your help (another issue stlport-icc) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 04 Oct 2003 04:15:32 -0000 On Oct 04, Marius Strobl wrote: > > It's a glibc symbol... This was fixed in icc-7.1.027_1. Portupgrade > probably didn't update your installation of lang/icc as that port can't > auto-fetch the distfile. I don't see why this then wouldn't be working correctly in 7.1.028 (which is what I'm using). -Clint From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 23:40: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 46E2016A4B3 for ; Fri, 3 Oct 2003 23:40:08 -0700 (PDT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6AF843F93 for ; Fri, 3 Oct 2003 23:40:07 -0700 (PDT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([12.203.21.192]) by comcast.net (rwcrmhc11) with ESMTP id <2003100406400701300lojdde>; Sat, 4 Oct 2003 06:40:07 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id A9BD46C9; Fri, 3 Oct 2003 23:40:06 -0700 (PDT) Date: Fri, 3 Oct 2003 23:40:06 -0700 From: Clint Olsen To: ports@freebsd.org Message-ID: <20031004064006.GA11754@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! Subject: Still having issues - Shared object "libintl.so.1" not found X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 04 Oct 2003 06:40:08 -0000 If I completely reinstall a port that is having this problem, why doesn't it go away? I've recompiled a port more than once only to find it choking on this missing library. Thanks, -Clint From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 23: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 366BA16A4B3 for ; Fri, 3 Oct 2003 23:48:07 -0700 (PDT) Received: from lakemtao06.cox.net (lakemtao06.cox.net [68.1.17.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36A3C43FE3 for ; Fri, 3 Oct 2003 23:48:06 -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 <20031004064806.KVDX10862.lakemtao06.cox.net@mezz.mezzweb.com>; Sat, 4 Oct 2003 02:48:06 -0400 To: Clint Olsen References: <20031004064006.GA11754@0lsen.net> Message-ID: From: Jeremy Messenger Content-Type: text/plain; format=flowed; charset=utf-8 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Sat, 04 Oct 2003 01:46:57 -0500 In-Reply-To: <20031004064006.GA11754@0lsen.net> User-Agent: Opera7.21/Linux M2 build 474 cc: ports@freebsd.org Subject: Re: Still having issues - Shared object "libintl.so.1" not found X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 04 Oct 2003 06:48:07 -0000 On Fri, 3 Oct 2003 23:40:06 -0700, Clint Olsen wrote: > If I completely reinstall a port that is having this problem, why doesn't > it go away? I've recompiled a port more than once only to find it > choking > on this missing library. Try to run 'portupgrade -rf gettext -m BATCH=yes'.. Cheers, Mezz > Thanks, > > -Clint -- bsdforums.org 's moderator, mezz. From owner-freebsd-ports@FreeBSD.ORG Fri Oct 3 23:53: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 E132B16A4B3 for ; Fri, 3 Oct 2003 23:53:18 -0700 (PDT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14AC34400E for ; Fri, 3 Oct 2003 23:53:18 -0700 (PDT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([12.203.21.192]) by comcast.net (sccrmhc11) with ESMTP id <20031004065315011006q1r5e>; Sat, 4 Oct 2003 06:53:15 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id C41746C9; Fri, 3 Oct 2003 23:53:14 -0700 (PDT) Date: Fri, 3 Oct 2003 23:53:14 -0700 From: Clint Olsen To: Jeremy Messenger Message-ID: <20031004065314.GA16632@0lsen.net> References: <20031004064006.GA11754@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! cc: ports@freebsd.org Subject: Re: Still having issues - Shared object "libintl.so.1" not found X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 04 Oct 2003 06:53:19 -0000 On Oct 04, Jeremy Messenger wrote: > > Try to run 'portupgrade -rf gettext -m BATCH=yes'.. I think the dependencies of some of these ports may not be quite right. I ran this command earlier without the -m flag, and some of the recursive dependencies failed for example because GNU make was taken out of commision by the missing library. It would seem that gmake would be (one of) the first order(s) of business. Of course, this might be a failure mode that wasn't expected... Thanks, -Clint From owner-freebsd-ports@FreeBSD.ORG Sat Oct 4 00:56: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 6FA9916A4BF for ; Sat, 4 Oct 2003 00:56:08 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D36844001 for ; Sat, 4 Oct 2003 00:56:07 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 41095 invoked from network); 4 Oct 2003 07:56:03 -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 ; 4 Oct 2003 07:56:03 -0000 Message-ID: <3F7E7D13.6030209@liwing.de> Date: Sat, 04 Oct 2003 07:56:03 +0000 From: Jens Rehsack User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20030928 X-Accept-Language: de-de, de, en-us, en MIME-Version: 1.0 To: Clint Olsen References: <20031004064006.GA11754@0lsen.net> <20031004065314.GA16632@0lsen.net> In-Reply-To: <20031004065314.GA16632@0lsen.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: Jeremy Messenger Subject: Re: Still having issues - Shared object "libintl.so.1" not found X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 04 Oct 2003 07:56:08 -0000 Clint Olsen wrote: > On Oct 04, Jeremy Messenger wrote: > >>Try to run 'portupgrade -rf gettext -m BATCH=yes'.. > > > I think the dependencies of some of these ports may not be quite right. I > ran this command earlier without the -m flag, and some of the recursive > dependencies failed for example because GNU make was taken out of commision > by the missing library. That's why you walked upward recursive (-R) but must go downward (-r). So above instruction should help you. Jens From owner-freebsd-ports@FreeBSD.ORG Sat Oct 4 02:08: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 D2C7816A4B3; Sat, 4 Oct 2003 02:08:15 -0700 (PDT) Received: from mail.caraldi.com (caraldi.com [62.212.102.95]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E0D343FF9; Sat, 4 Oct 2003 02:08:14 -0700 (PDT) (envelope-from jbq@caraldi.com) Received: from watt.intra.caraldi.com (watt.intra.caraldi.com [192.168.100.101]) by mail.caraldi.com (Postfix) with ESMTP id 32C4D217F; Sat, 4 Oct 2003 11:08:11 +0200 (CEST) Received: by watt.intra.caraldi.com (Postfix, from userid 1001) id D115188; Sat, 4 Oct 2003 11:08:13 +0200 (CEST) To: FreeBSD-gnats-submit@freebsd.org From: Jean-Baptiste Quenot X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20031004090813.D115188@watt.intra.caraldi.com> Date: Sat, 4 Oct 2003 11:08:13 +0200 (CEST) cc: ports@freebsd.org Subject: Resin cannot start at system boot X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Jean-Baptiste Quenot List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 04 Oct 2003 09:08:16 -0000 >Submitter-Id: current-users >Originator: Jean-Baptiste Quenot >Confidential: no >Synopsis: Resin cannot start at system boot >Severity: critical >Priority: high >Category: ports >Class: maintainer-update >Release: FreeBSD 5.1-CURRENT i386 >Environment: System: FreeBSD watt.intra.caraldi.com 5.1-CURRENT FreeBSD 5.1-CURRENT #2: Thu Jul 17 18:59:06 CEST 2003 jbq@watt.intra.caraldi.com:/usr/obj/usr/src/sys/WATT i386 >Description: Pid file created in /var/run is removed at system boot, thus preventing Resin from starting. >How-To-Repeat: Install Resin, start it and reboot. Resin will not start at boot. >Fix: Update the www/resin2 port with the following tarball: http://caraldi.com/jbq/resin/distfiles/resin2/resin2.tgz An update for www/resin3 is pending. From owner-freebsd-ports@FreeBSD.ORG Sat Oct 4 05:05: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 28F0116A4B3 for ; Sat, 4 Oct 2003 05:05:54 -0700 (PDT) Received: from newtrinity.zeist.de (newtrinity.zeist.de [217.24.217.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BBDC43FE1 for ; Sat, 4 Oct 2003 05:05:53 -0700 (PDT) (envelope-from marius@newtrinity.zeist.de) Received: from newtrinity.zeist.de (localhost [127.0.0.1]) h94C5nYq063981; Sat, 4 Oct 2003 14:05:49 +0200 (CEST) (envelope-from marius@newtrinity.zeist.de) Received: (from marius@localhost) by newtrinity.zeist.de (8.12.10/8.12.10/Submit) id h94C5iKc063980; Sat, 4 Oct 2003 14:05:44 +0200 (CEST) (envelope-from marius) Date: Sat, 4 Oct 2003 14:05:44 +0200 From: Marius Strobl To: Clint Olsen Message-ID: <20031004140544.H89971@newtrinity.zeist.de> References: <20031003225824.GA20710@0lsen.net> <20031004015716.A51459@newtrinity.zeist.de> <20031004041527.GB20734@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20031004041527.GB20734@0lsen.net>; from clint@0lsen.net on Fri, Oct 03, 2003 at 09:15:27PM -0700 X-AntiVirus: checked by AntiVir Milter 1.0.6; AVE 6.21.0.1; VDF 6.21.0.58 cc: ports@freebsd.org Subject: Re: Thanks for your help (another issue stlport-icc) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 04 Oct 2003 12:05:54 -0000 On Fri, Oct 03, 2003 at 09:15:27PM -0700, Clint Olsen wrote: > On Oct 04, Marius Strobl wrote: > > > > It's a glibc symbol... This was fixed in icc-7.1.027_1. Portupgrade > > probably didn't update your installation of lang/icc as that port can't > > auto-fetch the distfile. > > I don't see why this then wouldn't be working correctly in 7.1.028 (which > is what I'm using). > Sorry, I fail to see how this still could break then or to reproduce it. Did portupgrade backup the ICC libraries of an older installation? Watch out for libirc.a and libircmt.a other than in PREFIX/intel/compiler70/ia32/lib. From owner-freebsd-ports@FreeBSD.ORG Sat Oct 4 06: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 D630116A4B3 for ; Sat, 4 Oct 2003 06:02:21 -0700 (PDT) Received: from ib.com.ua (ib.com.ua [217.144.67.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E80243FE0 for ; Sat, 4 Oct 2003 06:02:19 -0700 (PDT) (envelope-from toha@toha.org.ua) Received: from ib.com.ua (localhost.ib.com.ua [127.0.0.1]) by ib.com.ua (8.12.9p1/8.12.9) with ESMTP id h94D2DPD002571 for ; Sat, 4 Oct 2003 16:02:13 +0300 (EEST) (envelope-from toha@toha.org.ua) Received: (from root@localhost) by ib.com.ua (8.12.9p1/8.12.9/Submit) id h94D2DsD002570 for freebsd-ports@freebsd.org; Sat, 4 Oct 2003 16:02:13 +0300 (EEST) (envelope-from toha@toha.org.ua) Date: Sat, 4 Oct 2003 16:02:13 +0300 (EEST) From: toha@toha.org.ua Message-Id: <200310041302.h94D2DsD002570@ib.com.ua> To: freebsd-ports@freebsd.org Subject: PR 57573: new ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 04 Oct 2003 13:02:22 -0000 Please, look at pr 57573. From owner-freebsd-ports@FreeBSD.ORG Sat Oct 4 08:07:49 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 B986E16A4BF; Sat, 4 Oct 2003 08:07:49 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id F01AB43FA3; Sat, 4 Oct 2003 08:07:48 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Received: from freefall.freebsd.org (trevor@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h94F7mFY010492; Sat, 4 Oct 2003 08:07:48 -0700 (PDT) (envelope-from trevor@freefall.freebsd.org) Received: (from trevor@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h94F7mQN010488; Sat, 4 Oct 2003 08:07:48 -0700 (PDT) (envelope-from trevor) Date: Sat, 4 Oct 2003 08:07:48 -0700 (PDT) From: Trevor Johnson Message-Id: <200310041507.h94F7mQN010488@freefall.freebsd.org> To: trevor@FreeBSD.org, trevor@FreeBSD.org, ports@FreeBSD.org Subject: Re: ports/47651: unPERLify ports/audio X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 04 Oct 2003 15:07:49 -0000 Synopsis: unPERLify ports/audio Responsible-Changed-From-To: trevor->ports Responsible-Changed-By: trevor Responsible-Changed-When: Sat Oct 4 08:01:53 PDT 2003 Responsible-Changed-Why: Some of these changes are obsoleted by the USE_GETOPT_LONG macro. I checked the denemo, pd, snd, sphinx, spiralloops, spiralsynth and spiralsynthbaby ports and applied much of this. Thank you, Simon. http://www.freebsd.org/cgi/query-pr.cgi?pr=47651 From owner-freebsd-ports@FreeBSD.ORG Sat Oct 4 14:39: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 7D44516A4B3 for ; Sat, 4 Oct 2003 14:39:34 -0700 (PDT) Received: from forrie.com (forrie.ne.client2.attbi.com [24.147.156.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 25D7343FB1 for ; Sat, 4 Oct 2003 14:39:33 -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 h94LdRHl047156 for ; Sat, 4 Oct 2003 17:39:27 -0400 (EDT) (envelope-from forrie@forrie.com) Message-Id: <6.0.0.22.2.20031004173849.01f2f708@192.168.1.1> X-Sender: forrie@192.168.1.1 X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Sat, 04 Oct 2003 17:39:26 -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 port breakage X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 04 Oct 2003 21:39:34 -0000 Just tried building the recent changes to ImageMagick, and FYI I'm getting these errors on the build. _F /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. From owner-freebsd-ports@FreeBSD.ORG Sat Oct 4 18:23: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 CE11B16A4B3; Sat, 4 Oct 2003 18:23:19 -0700 (PDT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C82F43F93; Sat, 4 Oct 2003 18:23:19 -0700 (PDT) (envelope-from taosecurity@comcast.net) Received: from comcast.net (pcp750576pcs.manass01.va.comcast.net[68.50.169.66]) by comcast.net (rwcrmhc11) with SMTP id <2003100501231801300ltb3ae> (Authid: taosecurity); Sun, 5 Oct 2003 01:23:18 +0000 Message-ID: <3F7F7270.2020608@comcast.net> Date: Sat, 04 Oct 2003 21:22:56 -0400 From: Richard Bejtlich User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5b) Gecko/20030912 Thunderbird/0.3a X-Accept-Language: en-us, en MIME-Version: 1.0 To: osa@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Port of Vern Paxson's Bro? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: richard@taosecurity.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2003 01:23:19 -0000 Hello, I'm happy to see Vern Paxson's Bro included in the FreeBSD ports tree. I was wondering if anyone had plans to update the port to match the current 0.8 or stable 0.7 release listed at http://www.icir.org/vern/bro-info.html Thank you, Richard From owner-freebsd-ports@FreeBSD.ORG Sat Oct 4 19:30: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 B8FB916A4B3 for ; Sat, 4 Oct 2003 19:30:12 -0700 (PDT) Received: from mail.inka.de (quechua.inka.de [193.197.184.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3324D43F75 for ; Sat, 4 Oct 2003 19:30:11 -0700 (PDT) (envelope-from naddy@mips.inka.de) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with gbsmtp id 1A5yev-0007B7-01; Sun, 05 Oct 2003 04:30:09 +0200 Received: from kemoauc.mips.inka.de (localhost [127.0.0.1]) by kemoauc.mips.inka.de (8.12.10/8.12.10) with ESMTP id h952EwQc064569 for ; Sun, 5 Oct 2003 04:14:59 +0200 (CEST) (envelope-from naddy@kemoauc.mips.inka.de) Received: (from naddy@localhost) by kemoauc.mips.inka.de (8.12.10/8.12.10/Submit) id h952Ewq3064568 for freebsd-ports@freebsd.org; Sun, 5 Oct 2003 04:14:58 +0200 (CEST) (envelope-from naddy) Date: Sun, 5 Oct 2003 04:14:58 +0200 From: Christian Weisgerber To: freebsd-ports@freebsd.org Message-ID: <20031005021458.GA64365@kemoauc.mips.inka.de> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="0OAP2g/MAC+5xKAE" Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: editors/nano fix needs testing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 05 Oct 2003 02:30:12 -0000 --0OAP2g/MAC+5xKAE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline The attached patch should fix nano's core dump on -CURRENT (which is also reproducible on -STABLE with sufficiently aggressive MALLOC_OPTIONS). I don't really use nano, though, so it would be nice if some people who do did test this on -CURRENT and -STABLE. -- Christian "naddy" Weisgerber naddy@mips.inka.de --0OAP2g/MAC+5xKAE Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="nano.patch" Index: Makefile =================================================================== RCS file: /home/pcvs/ports/editors/nano/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- Makefile 4 Oct 2003 23:07:39 -0000 1.23 +++ Makefile 5 Oct 2003 01:16:47 -0000 @@ -7,7 +7,7 @@ PORTNAME= nano PORTVERSION= 1.2.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= editors MASTER_SITES= http://www.nano-editor.org/dist/v1.2/ @@ -29,10 +29,4 @@ ${MKDIR} ${EXAMPLESDIR} ${INSTALL_DATA} ${WRKSRC}/nanorc.sample ${EXAMPLESDIR} -.include - -.if ${OSVERSION} > 500000 -BROKEN= "memory allocation bug" -.endif - -.include +.include Index: files/patch-files.c =================================================================== RCS file: files/patch-files.c diff -N files/patch-files.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-files.c 5 Oct 2003 01:16:47 -0000 @@ -0,0 +1,56 @@ + +$FreeBSD$ + +--- files.c.orig Sun Oct 5 02:30:55 2003 ++++ files.c Sun Oct 5 02:35:06 2003 +@@ -1701,16 +1701,17 @@ + #ifdef NANO_EXTRA + static int did_cred = 0; + #endif ++ static char *writepath = NULL; + + #if !defined(DISABLE_BROWSER) || (!defined(DISABLE_MOUSE) && defined(NCURSES_MOUSE_VERSION)) + currshortcut = writefile_list; + #endif + +- answer = mallocstrcpy(answer, path); ++ writepath = mallocstrcpy(writepath, path); + + if (exiting && ISSET(TEMP_OPT)) { + if (filename[0] != '\0') { +- i = write_file(answer, 0, 0, 0); ++ i = write_file(writepath, 0, 0, 0); + display_main_list(); + return i; + } else { +@@ -1751,24 +1752,24 @@ + "%s%s%s", _("Write Selection to File"), formatstr, backupstr); + } else { + if (append == 2) +- i = statusq(1, writefile_list, answer, 0, ++ i = statusq(1, writefile_list, writepath, 0, + "%s%s%s", _("File Name to Prepend to"), formatstr, backupstr); + else if (append == 1) +- i = statusq(1, writefile_list, answer, 0, ++ i = statusq(1, writefile_list, writepath, 0, + "%s%s%s", _("File Name to Append to"), formatstr, backupstr); + else +- i = statusq(1, writefile_list, answer, 0, ++ i = statusq(1, writefile_list, writepath, 0, + "%s%s%s", _("File Name to Write"), formatstr, backupstr); + } + #else + if (append == 2) +- i = statusq(1, writefile_list, answer, ++ i = statusq(1, writefile_list, writepath, + "%s", _("File Name to Prepend to")); + else if (append == 1) +- i = statusq(1, writefile_list, answer, ++ i = statusq(1, writefile_list, writepath, + "%s", _("File Name to Append to")); + else +- i = statusq(1, writefile_list, answer, ++ i = statusq(1, writefile_list, writepath, + "%s", _("File Name to Write")); + #endif /* !NANO_SMALL */ + Index: files/patch-search.c =================================================================== RCS file: files/patch-search.c diff -N files/patch-search.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-search.c 5 Oct 2003 01:16:47 -0000 @@ -0,0 +1,19 @@ + +$FreeBSD$ + +--- search.c.orig Sun Oct 5 02:38:32 2003 ++++ search.c Sun Oct 5 02:40:32 2003 +@@ -769,8 +769,12 @@ + + int do_gotoline(int line, int save_pos) + { ++ static char *linestr = NULL; ++ ++ linestr = mallocstrcpy(linestr, answer); ++ + if (line <= 0) { /* Ask for it */ +- int st = statusq(FALSE, goto_list, line != 0 ? answer : "", ++ int st = statusq(FALSE, goto_list, line != 0 ? linestr : "", + #ifndef NANO_SMALL + NULL, + #endif --0OAP2g/MAC+5xKAE--