From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 00:39:38 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4323916A403 for ; Sun, 3 Dec 2006 00:39:38 +0000 (UTC) (envelope-from laszlof@FreeBSD.org) Received: from main.vonostingroup.com (main.vonostingroup.com [216.32.84.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 105ED43CA2 for ; Sun, 3 Dec 2006 00:39:14 +0000 (GMT) (envelope-from laszlof@FreeBSD.org) Received: from c-71-227-23-200.hsd1.mi.comcast.net ([71.227.23.200] helo=[192.168.0.3]) by main.vonostingroup.com with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GqfOI-000LjZ-0d; Sat, 02 Dec 2006 17:39:34 -0700 Message-ID: <45721CC4.40309@FreeBSD.org> Date: Sat, 02 Dec 2006 19:39:32 -0500 From: "Frank J. Laszlo" User-Agent: Thunderbird 1.5.0.8 (X11/20061122) MIME-Version: 1.0 To: Erik Norgaard References: <4571EFC1.5050404@locolomo.org> In-Reply-To: <4571EFC1.5050404@locolomo.org> X-Enigmail-Version: 0.94.1.0 OpenPGP: id=012360EC Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - main.vonostingroup.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [26 6] X-AntiAbuse: Sender Address Domain - FreeBSD.org X-Source: X-Source-Args: X-Source-Dir: Cc: ports@freebsd.org Subject: Re: Newbie creating a port (smilutils) quicktime dependency problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 00:39:38 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Erik Norgaard wrote: > Hi: > > Ok, this is the second time I will try to create a port (first time > didn't work out because of too many bugs in the source). I have read the > porters handbook. > > Well, I have found a contribution to Kino, smilutils, > > http://www.kinodv.org/article/view/70/1/7 > > which should be able to handle the smil-file and produce output suitable > for dvd or viewing. > > Two questions: > > 1) How do I specify dependencies on header files. One thing is the -I in > CPPFLAGS, but I also need to declare a BUILDDEPENDS or something similar? Is this what you mean? .if defined(WITH_FOO) BUILD_DEPENDS+= ${LOCALBASE}/include/foo.h:${PORTSDIR}/devel/foo .endif > > 2) How do I deal with dependency on libquicktime? > > There doesn't seem to be a "without-quicktime" option, that would've > been nice to get started. The problem seems to be that the quicktime > port(s) are named differently than on most linux distros. Most likely the applications configure script with have a - --enable-quicktime feature, or vise versa to disable it. Heres a little sniplet that should help. .if defined(WITH_QUICKTIME) CONFIGURE_ARGS+= --enable-quicktime LIB_DEPENDS+= quicktime.0:${PORTSDIR}/multimedia/libquicktime .else CONFIGURE_ARGS+= --disable-quicktime .endif > > I tried to look at other ports, including ffmpeg but all seem to handle > this differently. One port try to edit the config script, but maybe > patches are prefered? you can either patch it, or use REINPLACE_CMD like this. post-patch: @${REINPLACE_CMD} -e 's|foo|bar|g' ${WRKSRC}/configure Or something of the sort. > > Any hints or tricks? > > Thanks, Erik Hope this helps, good luck! - -Frank -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iQIVAwUBRXIcw61QwXwBI2DsAQLVTw/+L+SybBsIQtnVh0bGo2CK+6yYS7lSoPwO GAo8qMrpxmvibKEl1fgCDLnBOIioIIusjTDWpykTJ4W4QlQD3TcUDF1fNw/zbi3E DtHqQhPG0yB8V3X2Ui7dYckfrLC55j90F5mrb/+b+cNtMAbMAZdCanTenBDv+nuG dCOm5Nb6ddlIKYRhdvOX4mVQBVGMmk4qY4imGglziq+dH7yvZweGM2xYcfjndGjf n/W8eQZ13VemSA5+a1Cdw854ZTV9RJXP735+QKBbMuXPYz8tqqJkgTUtU/v5tNrj jc/HPeJXfIYdAiOEIk0jWMiGPyPToLg4WY+hOH/so8X9n3A8/CczTSDjhBeq7qO6 5w5Lpd6hEbFR1ZH1NQTZRejbmySRPwfh1g6XMMNVozG4K5tPe32RIp8N/SIBJxNZ 2NqLX69DItFeq4EiKnfNUy/Bi1WZMztcDI3ODiL8ISMuJNLXiHipcIsUVGF/u2kj XX7PSlozDRpwSRVAjmszZibBjjAW3Ur8OozivcBsvyBleTRF7ELN4TkWeV1Ay1sH caB0C7PwhyZCjlCkzaWB3RRXKq95BPsv2U94b3GUEl7Ko+u26CSyrbOcR5u5HXZi 4VfRSs1tXEh8qQ4YzvTFAjTFAnBTQZSrGSCZ9+HGXOZQgS3S3YO/jwvEq8ygsCpE fI8XnYf2auI= =zqRB -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 02:29:46 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 10F9D16A407 for ; Sun, 3 Dec 2006 02:29:46 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17B8843CA5 for ; Sun, 3 Dec 2006 02:29:22 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id BAF411A3C20 for ; Sat, 2 Dec 2006 18:29:45 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 9C1A4514EE; Sat, 2 Dec 2006 21:29:26 -0500 (EST) Date: Sat, 2 Dec 2006 21:29:26 -0500 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20061203022926.GA9253@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="G4iJoqBmSsgzjUCe" Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Cc: Subject: Update on X11BASE status X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 02:29:46 -0000 --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Thanks to the hard work of a number of maintainers and committers we're making good progress on bringing the ports tree into complete X11BASE compliance. http://pointyhat.freebsd.org/errorlogs/i386-5-exp-latest/index-maintainer.html We're now down to fewer than 110 ports that need to be corrected to deal with a non-standard X11BASE location (the rest are more general port problems). By now only 17 of those broken ports are unmaintained, so the majority of them are waiting on individual maintainers to step up and/or approve fixes already submitted by other users. Are you maintainers really going to let your ports be the ones that hold us up?! You know who you are since you've already received email about this, so let's push on and see how quickly we can get that number down to 50! Kris --G4iJoqBmSsgzjUCe Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFcjaGWry0BWjoQKURAvw1AJwJ54YarfWDdaICqoxikpNdO00m/ACeNRoi 2tL+cwLT8DoJT5Au2RU1CUQ= =mlyf -----END PGP SIGNATURE----- --G4iJoqBmSsgzjUCe-- From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 02:32:17 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A932216A47B for ; Sun, 3 Dec 2006 02:32:17 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from dione.picobyte.net (host-212-158-207-124.bulldogdsl.com [212.158.207.124]) by mx1.FreeBSD.org (Postfix) with SMTP id 1AC3843CA7 for ; Sun, 3 Dec 2006 02:31:52 +0000 (GMT) (envelope-from shaun@FreeBSD.org) Received: from charon.picobyte.net (charon.picobyte.net [IPv6:2001:4bd0:201e::fe03]) by dione.picobyte.net (Postfix) with ESMTP; Sun, 3 Dec 2006 02:32:14 +0000 (GMT) Date: Sun, 3 Dec 2006 02:32:14 +0000 From: Shaun Amott To: John Abrams Message-ID: <20061203023213.GA3139@charon.picobyte.net> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="4SFOXa2GPu3tIq4H" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.11 (FreeBSD i386) Cc: ports@freebsd.org Subject: Re: Index build fails at audio/gstreamer-plugins-esound X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 02:32:17 -0000 --4SFOXa2GPu3tIq4H Content-Type: multipart/mixed; boundary="jRHKVT23PllUwdXP" Content-Disposition: inline --jRHKVT23PllUwdXP Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Dec 02, 2006 at 05:47:58PM -0500, John Abrams wrote: > I'm trying to make index on a FreeBSD 4.11-STABLE box, and for some time > I keep getting this error (I have cvsupped several times): I have back-ported make(1) from a recent version of FreeBSD; you might want to install it, from devel/make. This will save you a bit of suffering. Install with PREFIX=3D/usr to overwrite the old make(1) in base, or set MAKE=3D/usr/local/bin/make and use the full path to run it. Alternatively, the attached patch will fix this particular problem. --=20 Shaun Amott // PGP: 0x6B387A9A "A foolish consistency is the hobgoblin of little minds." - Ralph Waldo Emerson --jRHKVT23PllUwdXP Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: attachment; filename="gstreamer.diff" Content-Transfer-Encoding: quoted-printable Index: Makefile.common =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/pcvs/ports/multimedia/gstreamer-plugins/Makefile.common,v retrieving revision 1.37 diff -u -r1.37 Makefile.common --- Makefile.common 18 Nov 2006 18:47:34 -0000 1.37 +++ Makefile.common 3 Dec 2006 02:30:11 -0000 @@ -63,7 +63,7 @@ mpeg2dec \ sidplay =20 -.for i in ${BASE_GST_ALL_PLUGINS} ${BAD_GST_ALL_PLUGINS} ${UGLY_GST_ALL_PL= UGINS} +.for i in ${BASE_GST_ALL_PLUGINS} ${BAD_GST_ALL_PLUGINS} ${UGLY_GST_ALL_PL= UGINS} esound gst_${i}_GCONF_SCHEMAS?=3D # Empty gst_${i}_USE_SDL?=3D # Empty .endfor --jRHKVT23PllUwdXP-- --4SFOXa2GPu3tIq4H Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFFcjctkmhdCGs4epoRAtAjAJ9+v96Kfdj5yhkik9KbY0C/tq5VVwCfaHGZ NNe/7OxiL+8iVQitPo05aa4= =nt6J -----END PGP SIGNATURE----- --4SFOXa2GPu3tIq4H-- From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 03:24:10 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D97C316A403 for ; Sun, 3 Dec 2006 03:24:10 +0000 (UTC) (envelope-from chinhngt@sectorb.msk.ru) Received: from hq.sectorb.msk.ru (petaflop.b.gz.ru [194.88.210.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79DA443C9D for ; Sun, 3 Dec 2006 03:23:46 +0000 (GMT) (envelope-from chinhngt@sectorb.msk.ru) Received: from it.local (it.local [172.16.10.61]) by hq.sectorb.msk.ru (Postfix) with ESMTP id A20662BE7; Sun, 3 Dec 2006 06:24:05 +0300 (MSK) Date: Sun, 3 Dec 2006 06:23:44 +0300 (MSK) From: Nguyen Tam Chinh X-X-Sender: chinhngt@it.hackers To: Kris Kennaway In-Reply-To: <20061203022926.GA9253@xor.obsecurity.org> Message-ID: <20061203062013.N12624@it.hackers> References: <20061203022926.GA9253@xor.obsecurity.org> X-Operating-System: FreeBSD 6-STABLE Keywords: 216091683 MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: ports@FreeBSD.org Subject: Re: Update on X11BASE status X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 03:24:10 -0000 Hello, The patch for vietnamese/xvnkb port was commited today by rafan (http://www.freebsd.org/cgi/query-pr.cgi?pr=106020). Please check again if everything is okay with the port now. I'd like to have a look at 1 or two ports in the list, hope that I can do something with them. Thank you to Kris and the ports team for the heavy job. On Sat, 2 Dec 2006, Kris Kennaway wrote: > Thanks to the hard work of a number of maintainers and committers > we're making good progress on bringing the ports tree into complete > X11BASE compliance. > > http://pointyhat.freebsd.org/errorlogs/i386-5-exp-latest/index-maintainer.html > > We're now down to fewer than 110 ports that need to be corrected to > deal with a non-standard X11BASE location (the rest are more general > port problems). By now only 17 of those broken ports are > unmaintained, so the majority of them are waiting on individual > maintainers to step up and/or approve fixes already submitted by other > users. > > Are you maintainers really going to let your ports be the ones that > hold us up?! You know who you are since you've already received email > about this, so let's push on and see how quickly we can get that > number down to 50! > > Kris > > > ----- With best regards, | The Power to Serve Nguyen Tam Chinh | http://www.FreeBSD.org Loc: sp.cs.msu.su | From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 03:29:59 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8ADB116A412 for ; Sun, 3 Dec 2006 03:29:59 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1501D43CA2 for ; Sun, 3 Dec 2006 03:29:35 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id DB8F61A4D90; Sat, 2 Dec 2006 19:29:58 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id E6FCA51316; Sat, 2 Dec 2006 22:29:38 -0500 (EST) Date: Sat, 2 Dec 2006 22:29:38 -0500 From: Kris Kennaway To: Nguyen Tam Chinh Message-ID: <20061203032938.GA13956@xor.obsecurity.org> References: <20061203022926.GA9253@xor.obsecurity.org> <20061203062013.N12624@it.hackers> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="G4iJoqBmSsgzjUCe" Content-Disposition: inline In-Reply-To: <20061203062013.N12624@it.hackers> User-Agent: Mutt/1.4.2.2i Cc: ports@FreeBSD.org, Kris Kennaway Subject: Re: Update on X11BASE status X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 03:29:59 -0000 --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Dec 03, 2006 at 06:23:44AM +0300, Nguyen Tam Chinh wrote: > Hello, >=20 > The patch for vietnamese/xvnkb port was commited today by rafan=20 > (http://www.freebsd.org/cgi/query-pr.cgi?pr=3D106020). Please check again= if=20 > everything is okay with the port now. > I'd like to have a look at 1 or two ports in the list, hope that I can do= =20 > something with them. > Thank you to Kris and the ports team for the heavy job. Thanks very much, this should be reflected in the next package build. Kris --G4iJoqBmSsgzjUCe Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFckSiWry0BWjoQKURAnUNAKD5XHstHepHJjqhy42vpzqU2wZ0qACgyJiZ 9UfBCgbFVYMtu81Inw3HfUY= =ND75 -----END PGP SIGNATURE----- --G4iJoqBmSsgzjUCe-- From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 06:31:14 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F319716A415 for ; Sun, 3 Dec 2006 06:31:13 +0000 (UTC) (envelope-from e.schuele@computer.org) Received: from sccrmhc15.comcast.net (sccrmhc15.comcast.net [63.240.77.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id C89A643C9D for ; Sun, 3 Dec 2006 06:30:47 +0000 (GMT) (envelope-from e.schuele@computer.org) Received: from [192.168.214.215] (cpe-76-184-133-124.tx.res.rr.com[76.184.133.124]) by comcast.net (sccrmhc15) with ESMTP id <2006120306311101500avvc1e>; Sun, 3 Dec 2006 06:31:11 +0000 Message-ID: <45726F2E.7060900@computer.org> Date: Sun, 03 Dec 2006 00:31:10 -0600 From: Eric Schuele User-Agent: Thunderbird 1.5.0.8 (X11/20061111) MIME-Version: 1.0 To: shild@sbcglobal.net References: <4538CBEA.4070205@computer.org> <20061021010556.GB1148@turion.vk2pj.dyndns.org> <453A5B23.3070602@computer.org> <453A5D3A.3070205@computer.org> <20061022001145.GC6215@turion.vk2pj.dyndns.org> <1163353785.65568.35.camel@fbsd1.dyndns.org> <20061116182540.GA909@turion.vk2pj.dyndns.org> <1164300116.84151.23.camel@fbsd1.dyndns.org> <1164416009.8037.25.camel@fbsd1.dyndns.org> <20061125014406.GA848@turion.vk2pj.dyndns.org> <1165096777.8037.98.camel@fbsd1.dyndns.org> In-Reply-To: <1165096777.8037.98.camel@fbsd1.dyndns.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports Subject: Re: gnucash will not install/run.... [SOLVED] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 06:31:14 -0000 On 12/02/06 15:59, Scott T. Hildreth wrote: > > On Sat, 2006-11-25 at 12:44 +1100, Peter Jeremy wrote: >> On Fri, 2006-Nov-24 18:53:28 -0600, Scott T. Hildreth wrote: >>> "you need to set "libltdl_cv_sys_dlopen_deplibs=yes" in the environment >>> before running the ./configure command." >>> >>> ...does this apply to gnucash2 as well? >> Yes. >> >>> If I run strace on the process >>> it just keeps spinning through the library search. >> That's the problem that the above command fixes. > > I'm still having this problem. I changed the Makefile, > > CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ > libltdl_cv_sys_dlopen_deplibs=yes \ > LIBS="-L${LOCALBASE}/lib" > > I checked the work/gnucash-2.0.2/config.log and the > "libltdl_cv_sys_dlopen_deplibs=yes" is in there. I do > make install, start gnucash and the same problem occurs. > I am doing something wrong here? > Right or wrong... I do the following and it works. #!/bin/sh # # Fixes gnucash slooow startups... # cd /usr/ports/lang/guile make deinstall cd /usr/ports/devel/libltdl15 make deinstall libltdl_cv_sys_dlopen_deplibs= yes export libltdl_cv_sys_dlopen_deplibs cd /usr/ports/devel/libltdl15 make clean make install clean cd /usr/ports/lang/guile make clean make install clean ### The above script assumes you have gnucash installed "properly" and are suffering from the slow startups. HTH. -- Regards, Eric From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 09:21:59 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A7FAE16A407; Sun, 3 Dec 2006 09:21:59 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9B5543C9D; Sun, 3 Dec 2006 09:21:33 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from localhost (unknown [200.46.204.183]) by hub.org (Postfix) with ESMTP id 6878A118C526; Sun, 3 Dec 2006 05:21:50 -0400 (AST) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.204.183]) (amavisd-new, port 10024) with ESMTP id 49066-09; Sun, 3 Dec 2006 05:21:58 -0400 (AST) Received: from ganymede.hub.org (blk-137-79-174.eastlink.ca [24.137.79.174]) by hub.org (Postfix) with ESMTP id C8595118C525; Sun, 3 Dec 2006 05:21:49 -0400 (AST) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id 2FF5A459A1; Sun, 3 Dec 2006 05:21:59 -0400 (AST) Date: Sun, 03 Dec 2006 05:21:58 -0400 From: "Marc G. Fournier" To: Kostik Belousov , Tim Clewlow Message-ID: <2855C0AA201AECBE3E905D05@ganymede.hub.org> In-Reply-To: <20061130202656.GO69556@deviant.kiev.zoral.com.ua> References: <571063.87057.qm@web50304.mail.yahoo.com> <20061130202656.GO69556@deviant.kiev.zoral.com.ua> X-Mailer: Mulberry/4.0.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: freebsd-ports@freebsd.org, freebsd-java@freebsd.org Subject: Re: Something is really not right with azureus 2.5 / diablo-jdk 1.5 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 09:21:59 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I had this too ... add: [/usr/local/diablo-jdk1.5.0/] libpthread.so libc_r.so libpthread.so.2 libc_r.so.6 to /etc/libmap.conf and it should clear it up ... at least it did for me ... - --On Thursday, November 30, 2006 22:26:56 +0200 Kostik Belousov wrote: > On Thu, Nov 30, 2006 at 11:36:10AM -0800, Tim Clewlow wrote: >> >> --- Robert Noland wrote: >> >> > From: Robert Noland >> > To: freebsd-ports@freebsd.org >> > Date: Thu, 30 Nov 2006 13:06:40 -0500 >> > Subject: Something is really not right with azureus 2.5 / diablo-jdk 1.5 >> > >> > >> > > Hello, >> > > >> > > I have azureus-2.5.0.0 which requires diablo-jdk-1.5.0.07.01_1 to build >> > (among >> > > other things). It builds and runs fine, however, azureus limps along for >> > about >> > > 10 minutes with very low download and upload speeds, then it seems to >> > > grind >> > to >> > > a halt, the d/l and u/l basically stop. There are no errors to report >> > because >> > > the application keeps going, but the problem is it stops actually d/l or >> > u/l >> > > anything (sometimes you might get short bursts of extremely slow speeds, >> > but it >> > > is mostly 0 B/s). >> > > >> > > I suspect that diablo-jdk that is at fault, but in truth this is just a >> > hunch. >> > >> > This is a problem with azureus, not the jdk. The same issue exists with >> > sun jdk15. I am attempting to look at the code, but someone with more >> > java foo than I would probably be much more productive. It appears to >> > be an issue with socket handling... >> > >> > robert. >> > >> >> FYI - I discovered the internet connection was constantly at 100% u/l due to >> a number of people on the LAN doing p2p, so I shaped the external link to >> only allow 80% of the real uplink capacity (which creates a 20% buffer to >> attempt to mininize collisions on the uplink) and azureus suddenly came back >> to life. Note that azureus on the windows box was happy before I shaped the >> link, but the BSD version was not. This makes me think the BSD version of >> azureus gets into trouble when outgoing packets get lost due to packet >> collision. >> >> Tim. > > Does this thing use nio ? - ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFcpc34QvfyHIvDvMRArwHAJ4swp8JKUS7zmgyW4TLEo+INXDw3gCgoXUp vINVlM3IA3F/eEMfdY/e5DU= =f83e -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 11:29:47 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EE7D616A407 for ; Sun, 3 Dec 2006 11:29:47 +0000 (UTC) (envelope-from linimon@lonesome.com) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6F1543CA3 for ; Sun, 3 Dec 2006 11:29:21 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 4092B593; Sun, 3 Dec 2006 05:29:47 -0600 (CST) Date: Sun, 3 Dec 2006 05:29:47 -0600 To: John Abrams Message-ID: <20061203112947.GA4767@soaustin.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i From: linimon@lonesome.com (Mark Linimon) Cc: ports@freebsd.org Subject: Re: Index build fails at audio/gstreamer-plugins-esound X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 11:29:48 -0000 On Sat, Dec 02, 2006 at 05:47:58PM -0500, John Abrams wrote: > I'm trying to make index on a FreeBSD 4.11-STABLE box, and for some time > I keep getting this error (I have cvsupped several times): You are seeing a side-effect from most of the ports maintainers and committers having moved to 6.X, especially for those working on desktop- oriented apps such as this. Is there a particular situation that is preventing you from upgrading? mcl From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 13:28:41 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8FA2816A40F for ; Sun, 3 Dec 2006 13:28:41 +0000 (UTC) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (svm.csie.ntu.edu.tw [140.112.90.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C87343C9D for ; Sun, 3 Dec 2006 13:28:14 +0000 (GMT) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: from svm.csie.ntu.edu.tw (localhost [127.0.0.1]) by svm.csie.ntu.edu.tw (8.13.8/8.13.8) with ESMTP id kB3DSewo025041; Sun, 3 Dec 2006 21:28:40 +0800 (CST) (envelope-from rafan@svm.csie.ntu.edu.tw) Received: (from rafan@localhost) by svm.csie.ntu.edu.tw (8.13.8/8.13.8/Submit) id kB3DSePM054682; Sun, 3 Dec 2006 21:28:40 +0800 (CST) (envelope-from rafan) Date: Sun, 3 Dec 2006 21:28:40 +0800 From: Rong-En Fan To: Kris Kennaway Message-ID: <20061203132840.GA2517@svm.csie.ntu.edu.tw> References: <20061203022926.GA9253@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7AUc2qLy4jB3hD7Z" Content-Disposition: inline In-Reply-To: <20061203022926.GA9253@xor.obsecurity.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: ports@freebsd.org Subject: Re: Update on X11BASE status X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 13:28:41 -0000 --7AUc2qLy4jB3hD7Z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Dec 02, 2006 at 09:29:26PM -0500, Kris Kennaway wrote: > Thanks to the hard work of a number of maintainers and committers > we're making good progress on bringing the ports tree into complete > X11BASE compliance. You are welcome. Most ports listed are easy to fix 1) properly define USE_XLIB with GNU_CONFIGURE 2) put --x-includes and --x-libraries (see bsd.port.mk) in CONFIGURE_ARGS when necessary 3) define proper CONFIGURE_ENV/CONFIGURE_ARGS/MAKE_ARGS/MAKE_ENV if the port's configure/Makefile support them 4) s,/usr/X11R6,${X11BASE},g as the last resort >=20 > http://pointyhat.freebsd.org/errorlogs/i386-5-exp-latest/index-maintain= er.html >=20 > We're now down to fewer than 110 ports that need to be corrected to > deal with a non-standard X11BASE location (the rest are more general > port problems). By now only 17 of those broken ports are > unmaintained, so the majority of them are waiting on individual > maintainers to step up and/or approve fixes already submitted by other > users. One major problem I encountered so far is math/vtk* and science/paraview. They all uses CMake system (devel/cmake). I'm not quite sure what's the best way to make its makefile accepts correct X11BASE. One possibility is to patch its FindX11 module, but it seems to me that these ports contain their CMake/ in their distribution, i.e., we need to patch each ports. Any cmake experts? Thanks, Rong-En Fan --7AUc2qLy4jB3hD7Z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFctEH144QkYb9jGgRArzYAJ4n+pCHHwWxc1kWuJCeuhQi0g6VQACeLW+c fR93/F+FuHiWpCJhA+UqspE= =SWuh -----END PGP SIGNATURE----- --7AUc2qLy4jB3hD7Z-- From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 14:00:38 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 535A816A407; Sun, 3 Dec 2006 14:00:38 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from smtp6-g19.free.fr (smtp6-g19.free.fr [212.27.42.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14CC743CA3; Sun, 3 Dec 2006 14:00:11 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from smtp.xbsd.org (unknown [82.233.2.192]) by smtp6-g19.free.fr (Postfix) with ESMTP id 64158435FF; Sun, 3 Dec 2006 15:00:36 +0100 (CET) Received: from localhost (localhost.xbsd.org [127.0.0.1]) by smtp.xbsd.org (Postfix) with ESMTP id 9ED48118F2; Sun, 3 Dec 2006 15:00:35 +0100 (CET) X-Virus-Scanned: amavisd-new at xbsd.org Received: from smtp.xbsd.org ([127.0.0.1]) by localhost (srv1.xbsd.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qSqrsJdEF0kB; Sun, 3 Dec 2006 15:00:12 +0100 (CET) Received: from [193.120.13.130] (cream.xbsd.org [193.120.13.130]) by smtp.xbsd.org (Postfix) with ESMTP id 41641116AB; Sun, 3 Dec 2006 15:00:12 +0100 (CET) Message-ID: <4572D831.3010408@FreeBSD.org> Date: Sun, 03 Dec 2006 13:59:13 +0000 From: Florent Thoumie User-Agent: Thunderbird 1.5.0.8 (X11/20061126) MIME-Version: 1.0 To: Rong-En Fan References: <20061203022926.GA9253@xor.obsecurity.org> <20061203132840.GA2517@svm.csie.ntu.edu.tw> In-Reply-To: <20061203132840.GA2517@svm.csie.ntu.edu.tw> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enig77C6119EE70BE82B7DE3CF38" Cc: ports@freebsd.org, Kris Kennaway Subject: Re: Update on X11BASE status X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 14:00:38 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig77C6119EE70BE82B7DE3CF38 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Rong-En Fan wrote: > On Sat, Dec 02, 2006 at 09:29:26PM -0500, Kris Kennaway wrote: >> Thanks to the hard work of a number of maintainers and committers >> we're making good progress on bringing the ports tree into complete >> X11BASE compliance. >=20 > You are welcome. Most ports listed are easy to fix Still, it's boring work (yet necessary). I'd like to thank you, Frank and Martin again (along with contributors) for your work on this. Cheers. --=20 Florent Thoumie flz@FreeBSD.org FreeBSD Committer --------------enig77C6119EE70BE82B7DE3CF38 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFctg6MxEkbVFH3PQRCiGtAJsH2BVSJA8lHPvyXflUkNkbPvEjbgCdHynu F8ZbdRrxzYXgdCQrI8suCME= =WTSn -----END PGP SIGNATURE----- --------------enig77C6119EE70BE82B7DE3CF38-- From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 14:11:35 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8B37E16A407 for ; Sun, 3 Dec 2006 14:11:35 +0000 (UTC) (envelope-from bounces@nabble.com) Received: from talk.nabble.com (www.nabble.com [72.21.53.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B40943CBE for ; Sun, 3 Dec 2006 14:11:06 +0000 (GMT) (envelope-from bounces@nabble.com) Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1Gqs44-0007z4-Lq for freebsd-ports@freebsd.org; Sun, 03 Dec 2006 06:11:32 -0800 Message-ID: <7663241.post@talk.nabble.com> Date: Sun, 3 Dec 2006 06:11:32 -0800 (PST) From: mdaemonic To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Nabble-From: ktheroot@gmail.com Subject: QEmu full screen + newest nvidia driver = crash X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 14:11:35 -0000 Qemu crashed my xserver and locked up my machine when I entered full screen. Tried with 2 different client os'es, with and without -kernel-kqemu. Changed from the latest nvidia driver (1.0-9629) to the one in ports (1.0-8776), now everything is well. Don't know what to do with this information so I'll dump it here. -- View this message in context: http://www.nabble.com/QEmu-full-screen-%2B-newest-nvidia-driver-%3D-crash-tf2746697.html#a7663241 Sent from the freebsd-ports mailing list archive at Nabble.com. From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 15:04:57 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3199616A407; Sun, 3 Dec 2006 15:04:57 +0000 (UTC) (envelope-from laszlof@FreeBSD.org) Received: from main.vonostingroup.com (main.vonostingroup.com [216.32.84.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F13543CB3; Sun, 3 Dec 2006 15:04:28 +0000 (GMT) (envelope-from laszlof@FreeBSD.org) Received: from c-71-227-23-200.hsd1.mi.comcast.net ([71.227.23.200] helo=[192.168.0.3]) by main.vonostingroup.com with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GqstP-000Ndu-MX; Sun, 03 Dec 2006 08:04:36 -0700 Message-ID: <4572E780.9040203@FreeBSD.org> Date: Sun, 03 Dec 2006 10:04:32 -0500 From: "Frank J. Laszlo" User-Agent: Thunderbird 1.5.0.8 (X11/20061122) MIME-Version: 1.0 To: Florent Thoumie References: <20061203022926.GA9253@xor.obsecurity.org> <20061203132840.GA2517@svm.csie.ntu.edu.tw> <4572D831.3010408@FreeBSD.org> In-Reply-To: <4572D831.3010408@FreeBSD.org> X-Enigmail-Version: 0.94.1.0 OpenPGP: id=012360EC Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - main.vonostingroup.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [26 6] X-AntiAbuse: Sender Address Domain - FreeBSD.org X-Source: X-Source-Args: X-Source-Dir: Cc: ports@freebsd.org, Rong-En Fan , Kris Kennaway Subject: Re: Update on X11BASE status X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 15:04:57 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Florent Thoumie wrote: > Rong-En Fan wrote: >> On Sat, Dec 02, 2006 at 09:29:26PM -0500, Kris Kennaway wrote: >>> Thanks to the hard work of a number of maintainers and committers >>> we're making good progress on bringing the ports tree into complete >>> X11BASE compliance. >> You are welcome. Most ports listed are easy to fix > > Still, it's boring work (yet necessary). > > I'd like to thank you, Frank and Martin again (along with contributors) > for your work on this. > > Cheers. > The pleasure is all mine. :) - -Frank -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iQIVAwUBRXLnf61QwXwBI2DsAQJJTQ//ZmphE3GM28UCZlP98EJdE2dBhHTr6tW4 k/MluJpXwAVxbZbYJyKJXYVJoIufIQQsg4fQREqYpJDOoPzVigzjnk+fNXPswK6j OLjNfXpPEdKYx0PplrCQq3FLSgYN+OJnh5DvExj+cDyOAVPPdMXgVHeKzWM6mgNy mrn8WASM2wU2puv0x0zMTbMv2MOaNKCVf94GRNgaoItcpJcWz44qnz73w2NLhoOU YjQlQUaXDR0xbOCa34DFb8+P8ECPvM79JWE0pXRNoiCNSgC9ZLopBauD9sR/yRMV SV0sPlBzqjvZXCofqMITwdsHMTH4Ek2Q2hSDGRO1lEGqEJiYfjaVe2KC6IW+amO8 9gS658PuZO3W9RFczIR7/HcJuDR8QrdJvKXi0FrVpzUyLKPVEmLZ9uEv/vtDq0Na apKKM1diPVcdIXgmuKeRPK5G8m51rNHDuWHVHyL8uo1ZfNih/nINJAvwmwnMvdNO XSqFQ9iMnmTYppcIHQctJDpWHilSc0FNrOarH8FEZOReRZK/1I04Ud5S++tO3NCe teBYVvCSFXFgtKkMBMbQCehe4fpciTFopFLmEozYJ8XXepQRR4vaZ2WOmFE9jqpm lN4SljreZFhEiiW+wc3Tu5KqBklqXdukCUHrJusBNmkdsXlRzjbq1B27VwqDgUrM ehzdbkHlB5Y= =ETrx -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 15:43:08 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0BB5016A403; Sun, 3 Dec 2006 15:43:08 +0000 (UTC) (envelope-from e.schuele@computer.org) Received: from alnrmhc14.comcast.net (alnrmhc14.comcast.net [204.127.225.94]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8412A43CA3; Sun, 3 Dec 2006 15:42:40 +0000 (GMT) (envelope-from e.schuele@computer.org) Received: from [192.168.214.215] (cpe-76-184-133-124.tx.res.rr.com[76.184.133.124]) by comcast.net (alnrmhc14) with ESMTP id <20061203154307b1400p8msve>; Sun, 3 Dec 2006 15:43:07 +0000 Message-ID: <4572F08A.3030109@computer.org> Date: Sun, 03 Dec 2006 09:43:06 -0600 From: Eric Schuele User-Agent: Thunderbird 1.5.0.8 (X11/20061111) MIME-Version: 1.0 To: freebsd-ports , stas@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: (x11-wm\enlightenment-devel) e17, pam, and "Lock Screen"... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 15:43:08 -0000 Hello, I recently installed e17. I am having difficulty getting the "Lock Screen" feature to accept a password. Presently it accepts any input (even blank) as valid. It my understanding that the problem is that it is not using PAM at this point (on my machine). How can I get it to use PAM? Some folks hint it is a build issue. Others say the PAM config files are not setup. but none offer a concise method to fix it. Is there some knob I can turn when building the app? Or some config file somewhere I can tweak? Thanks. -- Regards, Eric From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 16:51:55 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1FDEC16A5B8 for ; Sun, 3 Dec 2006 16:51:55 +0000 (UTC) (envelope-from flz@FreeBSD.org) Received: from smtp1-g19.free.fr (smtp1-g19.free.fr [212.27.42.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C06043CD3 for ; Sun, 3 Dec 2006 16:47:46 +0000 (GMT) (envelope-from flz@FreeBSD.org) Received: from smtp.xbsd.org (unknown [82.233.2.192]) by smtp1-g19.free.fr (Postfix) with ESMTP id DC2EB9B60C for ; Sun, 3 Dec 2006 17:48:12 +0100 (CET) Received: from localhost (localhost.xbsd.org [127.0.0.1]) by smtp.xbsd.org (Postfix) with ESMTP id 1A696118EA for ; Sun, 3 Dec 2006 17:48:12 +0100 (CET) X-Virus-Scanned: amavisd-new at xbsd.org Received: from smtp.xbsd.org ([127.0.0.1]) by localhost (srv1.xbsd.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id eaj5oylYLIMA for ; Sun, 3 Dec 2006 17:47:47 +0100 (CET) Received: from [193.120.13.130] (cream.xbsd.org [193.120.13.130]) by smtp.xbsd.org (Postfix) with ESMTP id 7C61311424 for ; Sun, 3 Dec 2006 17:47:47 +0100 (CET) Message-ID: <4572FF7F.9040003@FreeBSD.org> Date: Sun, 03 Dec 2006 16:46:55 +0000 From: Florent Thoumie User-Agent: Thunderbird 1.5.0.8 (X11/20061126) MIME-Version: 1.0 To: ports@FreeBSD.org X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enig3AD147018D62FA3F7970F12F" Cc: Subject: HEADSUP: Imminent removal of XFree86-3 from the ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 16:51:55 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig3AD147018D62FA3F7970F12F Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hi folks, As you may know we're in the middle of testing the new X.org 7.2-RC2 on the cluster and it's time to make some cleanup in our X11 ports. The x11/XFree86-3 has been deprecated for quite some time now and will be removed within a few days, so I can only recommend switching now, and not waiting for the port to be actually removed. While you will be upgrading, I also recommend upgrading to X.org rather than XFree86-4 cause we will deprecate the x11/XFree86-4* ports at the same time (giving a 6 months time period to make the switch to X.org). So unless you have a very good reason to stay with XFree86-4, don't do it= =2E There might still be driver issues with X.org so if you're aware of such things, please contact the X.org developers so they can fix it upstream. On behalf of the x11@ team. --=20 Florent Thoumie flz@FreeBSD.org FreeBSD Committer --------------enig3AD147018D62FA3F7970F12F Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFcv+DMxEkbVFH3PQRCi8hAKCP4id7f9Qtp67fJHeUYXPJZRRL1gCcCJm4 PTKx+SflupXiuBjunnPJLw8= =5mYY -----END PGP SIGNATURE----- --------------enig3AD147018D62FA3F7970F12F-- From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 17:16:30 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4FCB016A47C for ; Sun, 3 Dec 2006 17:16:30 +0000 (UTC) (envelope-from pvizeli@yahoo.de) Received: from web27810.mail.ukl.yahoo.com (web27810.mail.ukl.yahoo.com [217.146.182.15]) by mx1.FreeBSD.org (Postfix) with SMTP id E75B943CB3 for ; Sun, 3 Dec 2006 17:15:54 +0000 (GMT) (envelope-from pvizeli@yahoo.de) Received: (qmail 74438 invoked by uid 60001); 3 Dec 2006 17:16:06 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.de; h=Message-ID:Received:Date:From:Subject:To:MIME-Version:Content-Type; b=q7da5mjhEq8D5eQzMCTjgI5RMURv7m20/46ilYXx/wR9rZxuC+xs19UwzjeyzvHvD9PDIKLQ0d1WXxnMuLhc0XfHXWejD3rJh8AYr99UZfq/lsxKIwZ2AfOXunfHVifOxMaJONhVJvqzR9GHjLOMLlgVQYDFfbxhZXgEAb2cOE0= ; Message-ID: <20061203171606.74436.qmail@web27810.mail.ukl.yahoo.com> Received: from [213.213.171.7] by web27810.mail.ukl.yahoo.com via HTTP; Sun, 03 Dec 2006 17:16:06 GMT Date: Sun, 3 Dec 2006 17:16:06 +0000 (GMT) From: Vizeli Pascal To: ports@freebsd.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-1520491925-1165166166=:74325" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: problem with send-pr X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 17:16:30 -0000 --0-1520491925-1165166166=:74325 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Hi everbody,=0A=0AI've problem with send-pr.=0ASend-pr doesn't send the mes= sage and I don't know why.=0A=0AIn the attachment is a new port (gpac mp4bo= x).=0AFor section multimedia.=0A=0A=0Agreet,=0APascal=0A=0A=0A=0A=0A=0A=0A= =0A=09=0A=09=09=0A_________________________________________________________= __ =0ADer fr=FChe Vogel f=E4ngt den Wurm. Hier gelangen Sie zum neuen Yahoo= ! Mail: http://mail.yahoo.de --0-1520491925-1165166166=:74325-- From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 17:30:51 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F85916A47B for ; Sun, 3 Dec 2006 17:30:51 +0000 (UTC) (envelope-from johans@stack.nl) Received: from mx1.stack.nl (meestal.stack.nl [131.155.140.141]) by mx1.FreeBSD.org (Postfix) with ESMTP id 096BE43CB3 for ; Sun, 3 Dec 2006 17:30:18 +0000 (GMT) (envelope-from johans@stack.nl) Received: by mx1.stack.nl (Postfix, from userid 65534) id 462A44B02A; Sun, 3 Dec 2006 18:30:45 +0100 (CET) X-Spam-DCC: sonic.net: snail.stack.nl 1156; Body=1 Fuz1=1 Fuz2=1 X-Spam-Checker-Version: SpamAssassin 3.1.5 (2006-08-29) on snail.stack.nl X-Spam-Level: X-Spam-Status: No, score=-2.5 required=5.0 tests=AWL,BAYES_00,NO_RELAYS autolearn=ham version=3.1.5 X-Spam-Relay-Country: Received: from mud.stack.nl (mud.stack.nl [IPv6:2001:610:1108:5011:207:e9ff:fe14:b498]) by mx1.stack.nl (Postfix) with ESMTP id 7BE6A4AFF5; Sun, 3 Dec 2006 18:30:44 +0100 (CET) Received: by mud.stack.nl (Postfix, from userid 801) id 45D8A22FA1; Sun, 3 Dec 2006 18:30:44 +0100 (CET) Date: Sun, 3 Dec 2006 18:30:43 +0100 From: Johan van Selst To: Vizeli Pascal Message-ID: <20061203173043.GA57179@mud.stack.nl> References: <20061203171606.74436.qmail@web27810.mail.ukl.yahoo.com> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="2fHTh5uZTiUOsy+g" Content-Disposition: inline In-Reply-To: <20061203171606.74436.qmail@web27810.mail.ukl.yahoo.com> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: ports@freebsd.org Subject: Re: problem with send-pr X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 17:30:51 -0000 --2fHTh5uZTiUOsy+g Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Vizeli Pascal wrote: > I've problem with send-pr. > Send-pr doesn't send the message and I don't know why. This might be a mail configuration problem (on either end). You can try the webinterface, http://www.freebsd.org/send-pr.html > In the attachment is a new port (gpac mp4box). I don't see any attachment - that probably got removed by the mailinglist configuration. Greetings, Johan --2fHTh5uZTiUOsy+g Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iD8DBQFFcwnDaOElK32lxTsRCO53AJ9Ve0oAl7kC1OLbWzaYeP/IdytRtwCgqRdP 64xB1daNaOv4P/EWs3BYOyo= =PbB4 -----END PGP SIGNATURE----- --2fHTh5uZTiUOsy+g-- From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 17:50:27 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0094F16A416 for ; Sun, 3 Dec 2006 17:50:26 +0000 (UTC) (envelope-from pauls@utdallas.edu) Received: from mail.stovebolt.com (mail.stovebolt.com [66.221.101.249]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF9CA43CA6 for ; Sun, 3 Dec 2006 17:49:58 +0000 (GMT) (envelope-from pauls@utdallas.edu) Received: from [192.168.2.102] (adsl-66-140-61-143.dsl.rcsntx.swbell.net [66.140.61.143]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.stovebolt.com (Postfix) with ESMTP id 5A4C8114321; Sun, 3 Dec 2006 11:50:18 -0600 (CST) Date: Sun, 03 Dec 2006 11:50:25 -0600 From: Paul Schmehl To: Johan van Selst , Vizeli Pascal Message-ID: <36BE6A7429F5E18A50D3345B@paul-schmehls-powerbook59.local> In-Reply-To: <20061203173043.GA57179@mud.stack.nl> References: <20061203171606.74436.qmail@web27810.mail.ukl.yahoo.com> <20061203173043.GA57179@mud.stack.nl> X-Mailer: Mulberry/4.0.7b1 (Mac OS X) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=sha1; protocol="application/pkcs7-signature"; boundary="==========2425DEC46636B55EA5ED==========" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@freebsd.org Subject: Re: problem with send-pr X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 17:50:27 -0000 --==========2425DEC46636B55EA5ED========== Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: quoted-printable Content-Disposition: inline --On December 3, 2006 6:30:43 PM +0100 Johan van Selst =20 wrote: > Vizeli Pascal wrote: >> I've problem with send-pr. >> Send-pr doesn't send the message and I don't know why. > > This might be a mail configuration problem (on either end). > You can try the webinterface, http://www.freebsd.org/send-pr.html > >> In the attachment is a new port (gpac mp4box). > > I don't see any attachment - that probably got removed by the > mailinglist configuration. > Send-pr doesn't send attachments. The port is included in the body of the = message. It *does* check to see if the sending IP reverses, so if you're=20 using a private IP or an IP that doesn't reverse, it will fail. Paul Schmehl (pauls@utdallas.edu) Senior Information Security Analyst The University of Texas at Dallas http://www.utdallas.edu/ir/security/ --==========2425DEC46636B55EA5ED==========-- From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 19:21:12 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 38CE116A565 for ; Sun, 3 Dec 2006 19:21:12 +0000 (UTC) (envelope-from shild@sbcglobal.net) Received: from flpi101.sbcis.sbc.com (flpi101.sbcis.sbc.com [207.115.20.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B96243CC8 for ; Sun, 3 Dec 2006 19:18:58 +0000 (GMT) (envelope-from shild@sbcglobal.net) X-ORBL: [75.4.65.154] Received: from fbsd1.dyndns.org (adsl-75-4-65-154.dsl.emhril.sbcglobal.net [75.4.65.154]) by flpi101.sbcis.sbc.com (8.13.7 out spool5000 dk/8.13.7) with ESMTP id kB3JJEhD029838; Sun, 3 Dec 2006 11:19:15 -0800 Received: from fbsd1.dyndns.org (localhost [127.0.0.1]) by fbsd1.dyndns.org (8.13.8/8.13.8) with ESMTP id kB3JJ81B020688; Sun, 3 Dec 2006 13:19:09 -0600 (CST) (envelope-from shild@sbcglobal.net) Received: (from shildret@localhost) by fbsd1.dyndns.org (8.13.8/8.13.8/Submit) id kB3JJ7O7020687; Sun, 3 Dec 2006 13:19:07 -0600 (CST) (envelope-from shild@sbcglobal.net) X-Authentication-Warning: fbsd1.dyndns.org: shildret set sender to shild@sbcglobal.net using -f From: "Scott T. Hildreth" To: Eric Schuele In-Reply-To: <45726F2E.7060900@computer.org> References: <4538CBEA.4070205@computer.org> <20061021010556.GB1148@turion.vk2pj.dyndns.org> <453A5B23.3070602@computer.org> <453A5D3A.3070205@computer.org> <20061022001145.GC6215@turion.vk2pj.dyndns.org> <1163353785.65568.35.camel@fbsd1.dyndns.org> <20061116182540.GA909@turion.vk2pj.dyndns.org> <1164300116.84151.23.camel@fbsd1.dyndns.org> <1164416009.8037.25.camel@fbsd1.dyndns.org> <20061125014406.GA848@turion.vk2pj.dyndns.org> <1165096777.8037.98.camel@fbsd1.dyndns.org> <45726F2E.7060900@computer.org> Content-Type: text/plain Content-Transfer-Encoding: 7bit Date: Sun, 03 Dec 2006 13:19:06 -0600 Message-Id: <1165173546.75400.8.camel@fbsd1.dyndns.org> Mime-Version: 1.0 X-Mailer: Evolution 2.8.1.1 FreeBSD GNOME Team Port Cc: freebsd-ports Subject: Re: gnucash will not install/run.... [SOLVED] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: shild@sbcglobal.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 19:21:12 -0000 On Sun, 2006-12-03 at 00:31 -0600, Eric Schuele wrote: > On 12/02/06 15:59, Scott T. Hildreth wrote: > > > > On Sat, 2006-11-25 at 12:44 +1100, Peter Jeremy wrote: > >> On Fri, 2006-Nov-24 18:53:28 -0600, Scott T. Hildreth wrote: > >>> "you need to set "libltdl_cv_sys_dlopen_deplibs=yes" in the environment > >>> before running the ./configure command." > >>> > >>> ...does this apply to gnucash2 as well? > >> Yes. > >> > >>> If I run strace on the process > >>> it just keeps spinning through the library search. > >> That's the problem that the above command fixes. > > > > I'm still having this problem. I changed the Makefile, > > > > CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ > > libltdl_cv_sys_dlopen_deplibs=yes \ > > LIBS="-L${LOCALBASE}/lib" > > > > I checked the work/gnucash-2.0.2/config.log and the > > "libltdl_cv_sys_dlopen_deplibs=yes" is in there. I do > > make install, start gnucash and the same problem occurs. > > I am doing something wrong here? > > > > Right or wrong... I do the following and it works. > #!/bin/sh > > # > # Fixes gnucash slooow startups... > # > > cd /usr/ports/lang/guile > make deinstall > > cd /usr/ports/devel/libltdl15 > make deinstall > > libltdl_cv_sys_dlopen_deplibs= yes /\ || for archives, take space out between the '=' and 'yes' > export libltdl_cv_sys_dlopen_deplibs > > cd /usr/ports/devel/libltdl15 > make clean > make install clean > > cd /usr/ports/lang/guile > make clean > make install clean > > ### Thanks Eric, that worked! > > The above script assumes you have gnucash installed "properly" and are > suffering from the slow startups. > > HTH. > -- Scott T. Hildreth From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 20:14:28 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9E69A16A403 for ; Sun, 3 Dec 2006 20:14:28 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1896443CBC for ; Sun, 3 Dec 2006 20:14:00 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.4/8.13.4) with ESMTP id kB3KETRs052175 for ; Sun, 3 Dec 2006 20:14:30 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.13.4/8.13.4/Submit) id kB3KETsO052173 for ports@FreeBSD.org; Sun, 3 Dec 2006 20:14:29 GMT (envelope-from erwin) Date: Sun, 3 Dec 2006 20:14:29 GMT From: Erwin Lansing Message-Id: <200612032014.kB3KETsO052173@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 20:14:28 -0000 INDEX build failed with errors: Generating INDEX - please wait.."Makefile", line 43: Could not find /local0/tmp/erwin/tindex/ports//sendmail/bsd.milter.mk make: fatal errors encountered -- cannot continue ===> mail/sid-milter failed *** Error code 1 *** Error code 1 Stop in /local0/tmp/erwin/tindex/ports. *** Error code 1 Stop in /local0/tmp/erwin/tindex/ports. 1 error Committers on the hook: dinoex fjoe miwi netchild nobutaka novel pav rafan sat Most recent CVS update was: U MOVED U Mk/bsd.wx.mk U Tools/portbuild/scripts/processonelog U archivers/Makefile U archivers/freetar/Makefile U archivers/freetar/distinfo U archivers/freetar/pkg-descr U archivers/freetar/pkg-plist U audio/festival+OGI/Makefile U databases/pgadmin3/Makefile U databases/pgadmin3/distinfo U databases/pgadmin3/pkg-plist U devel/Makefile U devel/p5-Term-Animation/Makefile U devel/p5-Term-Animation/distinfo U devel/ruby-inline/Makefile U devel/ruby-inline/distinfo U devel/ruby-inline/pkg-descr U devel/ruby-inline/pkg-plist U devel/rubygem-inline/Makefile U devel/rubygem-inline/distinfo U devel/rubygem-inline/pkg-descr U devel/rubygem-inline/pkg-plist U editors/Makefile U editors/codeeditor/Makefile U editors/codeeditor/distinfo U editors/codeeditor/pkg-descr U editors/codeeditor/pkg-plist U graphics/Makefile U graphics/gscan2pdf/Makefile U graphics/gthumb/Makefile U graphics/gthumb/distinfo U graphics/gthumb/pkg-plist U graphics/gthumb/files/patch-rotation-utils.h U graphics/libiptcdata/Makefile U graphics/libiptcdata/distinfo U graphics/libiptcdata/pkg-descr U graphics/libiptcdata/pkg-plist U graphics/p5-OpenGL/Makefile U japanese/Wnn6-lib/Makefile U japanese/Wnn7-lib/Makefile U mail/dk-milter/Makefile U mail/sendmail/Makefile U mail/sid-milter/Makefile U mail/sylpheed-claws/Makefile U mail/sylpheed-claws/distinfo U mail/sylpheed-claws/pkg-plist U mail/sylpheed-claws-att_remover/Makefile U mail/sylpheed-claws-cachesaver/Makefile U mail/sylpheed-claws-etpan_privacy/Makefile U mail/sylpheed-claws-fetchinfo/Makefile U mail/sylpheed-claws-gtkhtml2_viewer/Makefile U mail/sylpheed-claws-maildir/Makefile U mail/sylpheed-claws-mailmbox/Makefile U mail/sylpheed-claws-newmail/Makefile U mail/sylpheed-claws-notification/Makefile U mail/sylpheed-claws-perl/Makefile U mail/sylpheed-claws-rssyl/Makefile U mail/sylpheed-claws-smime/Makefile U mail/sylpheed-claws-synce/Makefile U mail/sylpheed-claws-vcalendar/Makefile U multimedia/mkvtoolnix/Makefile U multimedia/mkvtoolnix/distinfo U net/delegate/Makefile U net/delegate/distinfo U sysutils/conky/files/patch-src-conky.c U sysutils/conky/files/patch-src-freebsd.c U sysutils/dd_rescue/Makefile U sysutils/dd_rescue/distinfo U sysutils/linux-megacli/Makefile U textproc/Makefile U textproc/hevea/Makefile U textproc/localize/Makefile U textproc/localize/distinfo U textproc/localize/pkg-descr U textproc/localize/pkg-plist U www/aria2/Makefile U www/aria2/distinfo U www/aria2/pkg-descr U www/aria2/files/patch-src__DefaultBtContext.cc U x11/gnustep-app/Makefile U x11/gnustep-app/pkg-descr U x11-toolkits/Makefile U x11-toolkits/p5-Gtk2-Ex-PodViewer/Makefile U x11-toolkits/p5-Gtk2-Ex-PodViewer/distinfo U x11-toolkits/p5-Gtk2-Ex-PodViewer/pkg-descr U x11-toolkits/p5-Gtk2-Ex-PodViewer/pkg-plist U x11-toolkits/p5-Gtk2-Ex-Simple-List/Makefile U x11-toolkits/p5-Gtk2-Ex-Simple-List/distinfo U x11-toolkits/p5-Gtk2-Ex-Simple-List/pkg-descr U x11-toolkits/p5-Gtk2-Ex-Simple-List/pkg-plist U x11-toolkits/wxgtk28/Makefile U x11-toolkits/wxgtk28/distinfo U x11-toolkits/wxgtk28/pkg-plist U x11-toolkits/wxgtk28/files/patch-Makefile.in U x11-toolkits/wxgtk28/files/patch-configure U x11-toolkits/wxgtk28/files/patch-contrib-src-Makefile.in U x11-toolkits/wxgtk28/files/patch-utils-wxrc-Makefile.in U x11-toolkits/wxgtk28-common/Makefile U x11-toolkits/wxgtk28-common/pkg-plist U x11-toolkits/wxgtk28-contrib/Makefile U x11-toolkits/wxgtk28-contrib/pkg-plist U x11-toolkits/wxgtk28-contrib-common/Makefile U x11-toolkits/wxgtk28-contrib-common/pkg-plist U x11-toolkits/wxgtk28-unicode/Makefile U x11-toolkits/wxgtk28-unicode/pkg-plist U x11-toolkits/wxgtk28-unicode-contrib/Makefile U x11-toolkits/wxgtk28-unicode-contrib/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 21:44:20 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 636CD16A407 for ; Sun, 3 Dec 2006 21:44:20 +0000 (UTC) (envelope-from rob_27_preston@yahoo.co.uk) Received: from web25001.mail.ukl.yahoo.com (web25001.mail.ukl.yahoo.com [217.12.10.37]) by mx1.FreeBSD.org (Postfix) with SMTP id E03BC43CA3 for ; Sun, 3 Dec 2006 21:43:50 +0000 (GMT) (envelope-from rob_27_preston@yahoo.co.uk) Received: (qmail 75744 invoked by uid 60001); 3 Dec 2006 21:44:18 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.co.uk; h=X-YMail-OSG:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=TtPaGcpSS2mi5hhuw5HhXa4SpzqYpkSGLdYjNkdmSAPMQ0e34dSzIiXyTBt6YWykJioxlapQRETZRVIFNRU3oinZyHDGNPYgxQ1Qdc29WH7N0ymDlVse1yz0MEuIuL9gsFVSnlfYmGLZJgRUc/u7W6SK372k445JsDUKw428oGc=; X-YMail-OSG: htDvF04VM1me2UslFuKuRIobdg8k1j0hoMduldSn4M2v4EvzSYd0CI.4jTNgJLJ6mcqwWhvnxMFh401HbSiLSPmA83mvnGiJfREMHONkhcaLWIx_MLSuJUac.pUckXG.OJkwqvE5MR_e Received: from [83.67.67.49] by web25001.mail.ukl.yahoo.com via HTTP; Sun, 03 Dec 2006 21:44:18 GMT Date: Sun, 3 Dec 2006 21:44:18 +0000 (GMT) From: Robert Davison To: freebsd-ports@freebsd.org MIME-Version: 1.0 Message-ID: <398164.74496.qm@web25001.mail.ukl.yahoo.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Openwebmail Zlib::compress X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 21:44:20 -0000 I've recently updated my ports, and openwebmail is no longer working, giving me the following error... Software error: Undefined subroutine &Compress::Zlib::memGzip called at /usr/local/www/cgi-bin/openwebmail/shares/ow-shared.pl line 1175. For help, please send mail to the webmaster (robert@casezero.net), giving this error message and the time and date of the error. I've looked on freebsd.org at the ports and note that note that within the last 7 hours there has been an update to correct the path to Compress::Zlib.pm after recent p5-Compress-Zlib update. Is this still a problem with the port or do I have to alter my configuration somehow. Im running a standard openwebmail with no changes. --------------------------------- Now you can scan emails quickly with a reading pane. Get the new Yahoo! Mail. From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 22:36:40 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0F28F16A40F for ; Sun, 3 Dec 2006 22:36:40 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B72B43CD3 for ; Sun, 3 Dec 2006 22:35:50 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.4/8.13.4) with ESMTP id kB3MaEAF072445 for ; Sun, 3 Dec 2006 22:36:14 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.13.4/8.13.4/Submit) id kB3MaDes072443 for ports@FreeBSD.org; Sun, 3 Dec 2006 22:36:13 GMT (envelope-from erwin) Date: Sun, 3 Dec 2006 22:36:13 GMT From: Erwin Lansing Message-Id: <200612032236.kB3MaDes072443@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX now builds successfully on 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 22:36:40 -0000 From owner-freebsd-ports@FreeBSD.ORG Sun Dec 3 22:45:37 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EAEDD16A47B for ; Sun, 3 Dec 2006 22:45:37 +0000 (UTC) (envelope-from mw@mwi.dk) Received: from dns2.fullrate.dk (dns2.fullrate.dk [89.150.129.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id B48B343C9D for ; Sun, 3 Dec 2006 22:45:06 +0000 (GMT) (envelope-from mw@mwi.dk) Received: from [192.168.1.34] (2908ds1-vby.0.fullrate.dk [89.150.136.240]) by dns2.fullrate.dk (Postfix) with ESMTP id AAA605C34C for ; Sun, 3 Dec 2006 23:45:34 +0100 (CET) Message-ID: <4573539A.4040005@mwi.dk> Date: Sun, 03 Dec 2006 23:45:46 +0100 From: Morten Winther User-Agent: Mozilla Thunderbird 1.0.7 (Macintosh/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: <45734C0C.9070700@mwi.dk> In-Reply-To: <45734C0C.9070700@mwi.dk> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: ffmpeg-devel X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Dec 2006 22:45:38 -0000 Morten Winther wrote: > Hi > > I would really like to see an update of this port > > http://www.freebsd.org/cgi/cvsweb.cgi/ports/multimedia/ffmpeg-devel/ > > It's 8 months old and there has been a lot of changes. > > I've tried to mail the maintainer, but with no result. Any other who > can help me? > > I'll just repost this is my mail didn't show up. -- Best regards Morten Winther From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 03:04:20 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B52B516A412; Mon, 4 Dec 2006 03:04:20 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54B0F43C9D; Mon, 4 Dec 2006 03:03:50 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 574DF1A3C1E; Sun, 3 Dec 2006 19:04:20 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 0F4CD512EF; Sun, 3 Dec 2006 22:04:01 -0500 (EST) Date: Sun, 3 Dec 2006 22:04:00 -0500 From: Kris Kennaway To: stable@freebsd.org Message-ID: <20061204030400.GA52211@xor.obsecurity.org> References: <20061204022115.GA7142@lordcow.org> <20061204023011.GA51889@xor.obsecurity.org> <20061204023644.GA7226@lordcow.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PNTmBPCT7hxwcZjr" Content-Disposition: inline In-Reply-To: <20061204023644.GA7226@lordcow.org> User-Agent: Mutt/1.4.2.2i Cc: ports@FreeBSD.org Subject: Re: portupgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: ports@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 03:04:20 -0000 --PNTmBPCT7hxwcZjr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Dec 04, 2006 at 04:36:44AM +0200, gareth wrote: > On Sun 2006-12-03 (21:30), Kris Kennaway wrote: > > Update your ports tree? The index is probably newer than the actual > > ports. >=20 > sorry i should've mentioned that, i always run this beforehand: >=20 > cvsup -L 2 /etc/cvsup.conf > portsdb -Fu Let's move this to the correct mailing list (note reply-to)... What does portversion -l '<' -v say about the old and new versions? Kris --PNTmBPCT7hxwcZjr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFc5AgWry0BWjoQKURAgx0AJ9Ecwt/rXowC2e5t14m/Vw3sJvrNQCgumyp vcndOQo5rwkEnLXcK7Zuiwk= =FO8m -----END PGP SIGNATURE----- --PNTmBPCT7hxwcZjr-- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 03:26:51 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E800116A40F for ; Mon, 4 Dec 2006 03:26:51 +0000 (UTC) (envelope-from bsd@lordcow.org) Received: from mail.uct.ac.za (mail.uct.ac.za [137.158.128.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 264DA43CA5 for ; Mon, 4 Dec 2006 03:26:21 +0000 (GMT) (envelope-from bsd@lordcow.org) Received: from lhc.phy.uct.ac.za ([137.158.37.93]) by mail.uct.ac.za with esmtp (Exim 4.44 (FreeBSD)) id 1Gr4Ti-0002Sq-7z for ports@FreeBSD.org; Mon, 04 Dec 2006 05:26:50 +0200 Received: from lordcow by lhc.phy.uct.ac.za with local (Exim 4.63) (envelope-from ) id 1Gr4Tl-00028k-V4 for ports@FreeBSD.org; Mon, 04 Dec 2006 05:26:53 +0200 Date: Mon, 4 Dec 2006 05:26:53 +0200 From: gareth To: ports@FreeBSD.org Message-ID: <20061204032653.GA8203@lordcow.org> Mail-Followup-To: ports@FreeBSD.org References: <20061204022115.GA7142@lordcow.org> <20061204023011.GA51889@xor.obsecurity.org> <20061204023644.GA7226@lordcow.org> <20061204030400.GA52211@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20061204030400.GA52211@xor.obsecurity.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: Subject: Re: portupgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 03:26:52 -0000 On Sun 2006-12-03 (22:04), Kris Kennaway wrote: > Let's move this to the correct mailing list (note reply-to)... sure, the original question then since we've moved lists: On Mon 2006-12-04 (04:21), gareth wrote: > hi, portupgrade doesn't seem to be doing anything? this's the session: > > # portversion -l "<" > gnupg < > p5-Compress-Zlib < > p5-IO-Socket-SSL < > p5-PathTools < > portupgrade < > rsync < > spamass-milter < > # portupgrade -aF > What does portversion -l '<' -v say about the old and new versions? # portversion -l '<' -v gnupg-1.4.5_1 < needs updating (port has 1.4.5_2) p5-Compress-Zlib-1.42 < needs updating (port has 2.001) p5-IO-Socket-SSL-1.01 < needs updating (port has 1.02) p5-PathTools-3.23 < needs updating (port has 3.24) portupgrade-2.1.3.3_1,2 < needs updating (port has 2.2.2,2) rsync-2.6.8_2 < needs updating (port has 2.6.9) spamass-milter-0.3.1_1 < needs updating (port has 0.3.1_3) From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 03:30:37 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C39B716A403 for ; Mon, 4 Dec 2006 03:30:37 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4209443CA6 for ; Mon, 4 Dec 2006 03:30:07 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 6A1081A3C1E for ; Sun, 3 Dec 2006 19:30:37 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id CA27C51361; Sun, 3 Dec 2006 22:30:17 -0500 (EST) Date: Sun, 3 Dec 2006 22:30:17 -0500 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20061204033017.GA52486@xor.obsecurity.org> References: <20061204022115.GA7142@lordcow.org> <20061204023011.GA51889@xor.obsecurity.org> <20061204023644.GA7226@lordcow.org> <20061204030400.GA52211@xor.obsecurity.org> <20061204032653.GA8203@lordcow.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="d6Gm4EdcadzBjdND" Content-Disposition: inline In-Reply-To: <20061204032653.GA8203@lordcow.org> User-Agent: Mutt/1.4.2.2i Cc: Subject: Re: portupgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 03:30:37 -0000 --d6Gm4EdcadzBjdND Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Dec 04, 2006 at 05:26:53AM +0200, gareth wrote: > On Sun 2006-12-03 (22:04), Kris Kennaway wrote: > > Let's move this to the correct mailing list (note reply-to)... >=20 > sure, the original question then since we've moved lists: >=20 > On Mon 2006-12-04 (04:21), gareth wrote: > > hi, portupgrade doesn't seem to be doing anything? this's the session: > > > > # portversion -l "<" > > gnupg < > > p5-Compress-Zlib < > > p5-IO-Socket-SSL < > > p5-PathTools < > > portupgrade < > > rsync < > > spamass-milter < > > # portupgrade -aF >=20 >=20 > > What does portversion -l '<' -v say about the old and new versions? >=20 > # portversion -l '<' -v > gnupg-1.4.5_1 < needs updating (port has 1.4.5_2) > p5-Compress-Zlib-1.42 < needs updating (port has 2.001) > p5-IO-Socket-SSL-1.01 < needs updating (port has 1.02) > p5-PathTools-3.23 < needs updating (port has 3.24) > portupgrade-2.1.3.3_1,2 < needs updating (port has 2.2.2,2) > rsync-2.6.8_2 < needs updating (port has 2.6.9) > spamass-milter-0.3.1_1 < needs updating (port has 0.3.1_3) Those versions are all a couple of weeks stale, so I guess your ports tree really isn't up-to-date. Kris --d6Gm4EdcadzBjdND Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFc5ZJWry0BWjoQKURAiSzAJ4tdTpl0jz33qj8pzCnPp4Ou4eMrQCgsSqA CBe/+DwPfK7RAZfp18Aaef4= =NBBu -----END PGP SIGNATURE----- --d6Gm4EdcadzBjdND-- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 03:42:07 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7648E16A40F for ; Mon, 4 Dec 2006 03:42:07 +0000 (UTC) (envelope-from bsd@lordcow.org) Received: from mail.uct.ac.za (mail.uct.ac.za [137.158.128.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0A7443CBD for ; Mon, 4 Dec 2006 03:41:32 +0000 (GMT) (envelope-from bsd@lordcow.org) Received: from lhc.phy.uct.ac.za ([137.158.37.93]) by mail.uct.ac.za with esmtp (Exim 4.44 (FreeBSD)) id 1Gr4iP-00048n-PA for ports@freebsd.org; Mon, 04 Dec 2006 05:42:01 +0200 Received: from lordcow by lhc.phy.uct.ac.za with local (Exim 4.63) (envelope-from ) id 1Gr4iU-0002AS-Ip for ports@freebsd.org; Mon, 04 Dec 2006 05:42:06 +0200 Date: Mon, 4 Dec 2006 05:42:06 +0200 From: gareth To: ports@freebsd.org Message-ID: <20061204034206.GA8315@lordcow.org> References: <20061204022115.GA7142@lordcow.org> <20061204023011.GA51889@xor.obsecurity.org> <20061204023644.GA7226@lordcow.org> <20061204030400.GA52211@xor.obsecurity.org> <20061204032653.GA8203@lordcow.org> <20061204033017.GA52486@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20061204033017.GA52486@xor.obsecurity.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: Subject: Re: portupgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 03:42:07 -0000 On Sun 2006-12-03 (22:30), Kris Kennaway wrote: > Those versions are all a couple of weeks stale, so I guess your ports > tree really isn't up-to-date. strange, thanx, am trying another mirror .. From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 04:36:03 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B87F16A403 for ; Mon, 4 Dec 2006 04:36:03 +0000 (UTC) (envelope-from freebsdwicker@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id EADB443C9D for ; Mon, 4 Dec 2006 04:35:31 +0000 (GMT) (envelope-from freebsdwicker@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so2579317uge for ; Sun, 03 Dec 2006 20:36:01 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type; b=rpTCEOA+epVSkU5AoGWv16TcSWAH0er/w9Sr5cmjjdV59Xt07ZsbWsWE6m0l9pv+Go1PxIu1zr9X3K7AbvqaGyy4TM8/g67pkvg2s+XavaFjwjvZXUjfsUmmQv26Vyy6idxoLlA7efbXGMa4ippOG4+2yK6lAN29xPMC7cF7MbM= Received: by 10.78.185.16 with SMTP id i16mr7315613huf.1165206960835; Sun, 03 Dec 2006 20:36:00 -0800 (PST) Received: by 10.78.19.10 with HTTP; Sun, 3 Dec 2006 20:36:00 -0800 (PST) Message-ID: <2d19405f0612032036y12682b1fg6552af79c1d35fdf@mail.gmail.com> Date: Sun, 3 Dec 2006 20:36:00 -0800 From: "FreeBSD WickerBill" To: "ports@FreeBSD. org" MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: can't cd to /usr/ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 04:36:03 -0000 "can't cd to /usr/ports" I'm getting this in every port I try to make...it begins the make and then errors out with 'Error code 2' telling me it can't cd into the ports work/portname directory. This has been happening for about a week. It's probably some global make environment setting but I can't figure out what it is. I've portsnap fetch extract to rebuild the tree but that didn't help. I would appreciate any clues and thank anyone with one. From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 05:08:28 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35BE316A417 for ; Mon, 4 Dec 2006 05:08:28 +0000 (UTC) (envelope-from bsd@lordcow.org) Received: from mail.uct.ac.za (mail.uct.ac.za [137.158.128.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1A1743CA2 for ; Mon, 4 Dec 2006 05:07:56 +0000 (GMT) (envelope-from bsd@lordcow.org) Received: from lhc.phy.uct.ac.za ([137.158.37.93]) by mail.uct.ac.za with esmtp (Exim 4.44 (FreeBSD)) id 1Gr642-000Dny-GB for ports@freebsd.org; Mon, 04 Dec 2006 07:08:26 +0200 Received: from lordcow by lhc.phy.uct.ac.za with local (Exim 4.63) (envelope-from ) id 1Gr642-0002zL-4T for ports@freebsd.org; Mon, 04 Dec 2006 07:08:26 +0200 Date: Mon, 4 Dec 2006 07:08:26 +0200 From: gareth To: ports@freebsd.org Message-ID: <20061204050826.GA11457@lordcow.org> References: <20061204022115.GA7142@lordcow.org> <20061204023011.GA51889@xor.obsecurity.org> <20061204023644.GA7226@lordcow.org> <20061204030400.GA52211@xor.obsecurity.org> <20061204032653.GA8203@lordcow.org> <20061204033017.GA52486@xor.obsecurity.org> <20061204034206.GA8315@lordcow.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20061204034206.GA8315@lordcow.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: Subject: Re: portupgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 05:08:28 -0000 On Mon 2006-12-04 (05:42), gareth wrote: > strange, thanx, am trying another mirror .. yup, our country's mirror wasn't up to date. From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 05:24:01 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DB0DD16A40F for ; Mon, 4 Dec 2006 05:24:01 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B04B43CF1 for ; Mon, 4 Dec 2006 05:23:08 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 199641A4D95; Sun, 3 Dec 2006 21:23:37 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 82823513AD; Mon, 4 Dec 2006 00:23:17 -0500 (EST) Date: Mon, 4 Dec 2006 00:23:17 -0500 From: Kris Kennaway To: gareth Message-ID: <20061204052317.GA53735@xor.obsecurity.org> References: <20061204022115.GA7142@lordcow.org> <20061204023011.GA51889@xor.obsecurity.org> <20061204023644.GA7226@lordcow.org> <20061204030400.GA52211@xor.obsecurity.org> <20061204032653.GA8203@lordcow.org> <20061204033017.GA52486@xor.obsecurity.org> <20061204034206.GA8315@lordcow.org> <20061204050826.GA11457@lordcow.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="FL5UXtIhxfXey3p5" Content-Disposition: inline In-Reply-To: <20061204050826.GA11457@lordcow.org> User-Agent: Mutt/1.4.2.2i Cc: ports@freebsd.org Subject: Re: portupgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 05:24:01 -0000 --FL5UXtIhxfXey3p5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Dec 04, 2006 at 07:08:26AM +0200, gareth wrote: > On Mon 2006-12-04 (05:42), gareth wrote: > > strange, thanx, am trying another mirror .. >=20 > yup, our country's mirror wasn't up to date. OK, good to know. Can you report further details to hubs@FreeBSD.org? Kris --FL5UXtIhxfXey3p5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFc7DEWry0BWjoQKURAqPCAJ0f20spIqtaJztsm9vZCc/t8QB5lgCfd+M9 QKnNmZxtD/67pd4CNPmuZis= =7v9L -----END PGP SIGNATURE----- --FL5UXtIhxfXey3p5-- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 06:16:24 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B466516A403 for ; Mon, 4 Dec 2006 06:16:24 +0000 (UTC) (envelope-from bsd@lordcow.org) Received: from mail.uct.ac.za (mail.uct.ac.za [137.158.128.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id E608543CA3 for ; Mon, 4 Dec 2006 06:15:52 +0000 (GMT) (envelope-from bsd@lordcow.org) Received: from lhc.phy.uct.ac.za ([137.158.37.93]) by mail.uct.ac.za with esmtp (Exim 4.44 (FreeBSD)) id 1Gr77m-000MwF-Nd for ports@freebsd.org; Mon, 04 Dec 2006 08:16:22 +0200 Received: from lordcow by lhc.phy.uct.ac.za with local (Exim 4.63) (envelope-from ) id 1Gr77m-0003EQ-QS for ports@freebsd.org; Mon, 04 Dec 2006 08:16:22 +0200 Date: Mon, 4 Dec 2006 08:16:22 +0200 From: gareth To: ports@freebsd.org Message-ID: <20061204061622.GA11520@lordcow.org> References: <20061204022115.GA7142@lordcow.org> <20061204023011.GA51889@xor.obsecurity.org> <20061204023644.GA7226@lordcow.org> <20061204030400.GA52211@xor.obsecurity.org> <20061204032653.GA8203@lordcow.org> <20061204033017.GA52486@xor.obsecurity.org> <20061204034206.GA8315@lordcow.org> <20061204050826.GA11457@lordcow.org> <20061204052317.GA53735@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20061204052317.GA53735@xor.obsecurity.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: Subject: Re: portupgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 06:16:24 -0000 On Mon 2006-12-04 (00:23), Kris Kennaway wrote: > OK, good to know. Can you report further details to hubs@FreeBSD.org? will do. From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 10:25:27 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5437B16A529 for ; Mon, 4 Dec 2006 10:25:27 +0000 (UTC) (envelope-from beabundant@airswap.com) Received: from mail21.atl.registeredsite.com (mail21.atl.registeredsite.com [216.247.37.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 537BC43DDE for ; Mon, 4 Dec 2006 10:23:56 +0000 (GMT) (envelope-from beabundant@airswap.com) Received: from imta06a2.registeredsite.com (imta06a2.registeredsite.com [64.225.255.15]) by mail21.atl.registeredsite.com (8.12.11.20060308/8.12.11) with ESMTP id kB4AOCqm011974 for ; Mon, 4 Dec 2006 05:24:12 -0500 Received: from Buzz ([24.176.182.10]) by imta06a2.registeredsite.com with SMTP id <20061204102408.KJEO14412.imta06a2.registeredsite.com@Buzz> for ; Mon, 4 Dec 2006 05:24:08 -0500 To: freebsd-ports@freebsd.org From: "David W. Wieburg" Date: Mon, 4 Dec 2006 00:00:00 -0800 Message-Id: <20061204102408.KJEO14412.imta06a2.registeredsite.com@Buzz> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: As seen on Oprah and 20/20 $15,000.00 before Xmas X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 10:25:27 -0000 HELLO, THIS IS NOT SPAM. YOU ARE RECEIVING THIS MESSAGE BECAUSE YOU ARE A MEMBER OR SIGNUP OF MY FFA TRWV. ===========================================Make at least $15,000 before CHRISTMASAS SEEN ON OPRAH & 20/20 $40,000 IN YOUR PAYPAL ACCOUNT IN TWO WEEKS--------------------------------------------------------------------------------------------------------------------------------------------AS SEEN ON OPRAH! $40K IN YOUR PAYPAL ACCOUNT! (this really does work)That's Right $40,000 dollars in your PayPal account and that's NO BULL! AND IT WAS PROVEN ON OPRAH, NATIONAL TV & IT'S COMPLETELY LEGAL! $10 Dollars!...That's all it cost!To get started copy this whole page and paste it in an e-mail to edit it. Simply follow the instructions below and in 2 to 3 weeks, you will have at least $40,000 dollars in your PayPal account. Most people respond to this program because of the low investment and high profit potential. There is no limit to the income you can generate from this becau! se you can do it over and over.If you follow the instructions, you will reach thousands of people!Honesty, Faith, and Integrity make this system work. I think everyone has heard of "PayPal". Anyone with an e-mail address can join for FREE! So if you're not already a PayPal user, the first thing you need to do is sign up. Click the paypal linkwww.Paypal.comTEAM WORK MAKES THIS DREAM WORK!Send a $5.00 dollar donation from your PayPal account to THE FIRST email address on the list along with a note saying "Please add me to your list". Now send the SECOND $5.00 donation and email to the 5th person on the list saying "Thanks I've joined. Please add me to your list". This rewards the person who notified you about this opportunity and keeps them up to date on the letters progress.Remove the 1st email address from the list and move each address up to the next position. Then, add your email address in the 5th position.Next, put the word out because...you got it, you will be receivin! g lots of $5 payments for being in the 5th position.This is a key fact or to the success of this program, IMMEDIATE RETURN ON YOUR INVESTMENT! When just two people join you get back your $10 investment! Everything after that is PURE PROFIT!This two payment method rewards the first person for putting their time into marketing this opportunity and it ensures that the newest addition to the list will work just as hard! Teamwork at its Finest!Here is the list:1. info@be-abundant.com2. ras_freedom@yahoo.com3. dr.ecks@hotmail.com4. gabbyads2@yahoo.com5. tomtaylor@airswap.comNext send out this letter until you get at least 20 "Thanks I'vejoined" emails. The fifth person is the monitor of this list! When your name is in the 1st slot, 8,000 to 15,000 people will send you 5 dollars! You get out of life what you put into it...and what goes around comes around. That describes this opportunity in a nutshell!DO NOT TRY TO PUT YOURSELF IN FIFTH PLACE WITHOUT PAYING, AS PAYPALWILL AUTOMATICALLY NOTICE THIS AND DELETE YOUR ACCOUNT AND POSSIBLYPURSUE LEGAL ACTI! ON , SINCE THIS IS A LEGITIMATE PROGRAM, AND THEY ARE PART OF IT!TESTIMONIALS:Mary Gatters, Columbus, SC:I only have one thing to say to you... OH MY GOD! I sent out 142 copies total before 20 replied, like theinstructions said. Then I went on a short vacation. When I got back my account had over $32,000 dollars in it already and the money was still coming!I'm still floating on air (especially with my new car). I thought the 'guardian' system sounded cheesy, but now I realize it is the formula that makes this letter really work! THANKS!I know that you have seen this on Oprah, 20/20 or read about it in the Wall Street Journal. You have probably received junk mail and currently receive emails about this simple program, but just delete them. I know I have! But this time I decided to give it a try. With the internet you can speed this message around the world and it's only a $10.00 investment!Please give it an honest effort, you will not be disappointed and will be very glad yo! u did when it starts to work. Remember, all you're going to be out of pocket is about the cost of a couple of coffees with the opportunity of banking thousands of dollars into your PayPal account!Wishing you Success & Prosperity!Regina WallaceQuick Overview:STEP 1. Set up your PayPal account www.paypal.com, if you don't already have one, and send the top name (1st person) $5.00dollars.DON'T FORGET to include "Please add me to your list".STEP 2. Send the other $5.00 dollars and an e-mail stating "Thank you I've Joined" to the 5th name on the list.STEP 3. Remove the top name, bump the other 4 names up 1 placeand place your name in the bottom slot - you will receive a minimum of $100.00 or more from your efforts.STEP 4. Keep sending the letter until you get 20, "Thank you I've joined" replies in your inbox. In addition, take advantage of the internet by posting your message on message boards found by searching via your favorite search engine. Post this to 200 (yes, 200) or more, and watch your account dollars soar!Go to any search engine (Yahoo, ! Google, etc.) and search phrases like "millionaire message board" or "money making message board" or "opportunity message board", etc. You will get thousands of sites to choose from. Another great site is www.craigslist.org You can list your info in lots of different areas of that site. Lots of great response from there!HEY! YOU COULD HAVE ALL THAT MONEY BEFORE CHRISTMAS.GOOD LUCK SINCERLYBuzzPS. From Dr. EcksIf you need to make some big money before Christmastake this and run with it. It really works!Set up your PayPal account here:www.paypal.com From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 10:35:26 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DD20A16A40F for ; Mon, 4 Dec 2006 10:35:26 +0000 (UTC) (envelope-from dsymonds@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.239]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55F3C43C9D for ; Mon, 4 Dec 2006 10:34:54 +0000 (GMT) (envelope-from dsymonds@gmail.com) Received: by wx-out-0506.google.com with SMTP id s18so3439217wxc for ; Mon, 04 Dec 2006 02:35:25 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=U+gg9kQRspXyERaXFrEBrpS/SfEQlblUSENNymFUsx+sAKgLWfr93j4L2JgTGyZE9d/Jf4RmjSYg1k2RALFCQxyY9Sqogs5M5nTKFFY0zW39Yl8jxMfenE/kt8uofAGP7oKsiLaxlp3LVdlE/8igP/oeCqo+wQghVK9kfyjDeb8= Received: by 10.90.54.20 with SMTP id c20mr7587327aga.1165228525562; Mon, 04 Dec 2006 02:35:25 -0800 (PST) Received: by 10.90.27.11 with HTTP; Mon, 4 Dec 2006 02:35:25 -0800 (PST) Message-ID: Date: Mon, 4 Dec 2006 21:35:25 +1100 From: "David Symonds" To: "FreeBSD WickerBill" In-Reply-To: <2d19405f0612032036y12682b1fg6552af79c1d35fdf@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <2d19405f0612032036y12682b1fg6552af79c1d35fdf@mail.gmail.com> Cc: "ports@FreeBSD. org" Subject: Re: can't cd to /usr/ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 10:35:26 -0000 On 12/4/06, FreeBSD WickerBill wrote: > "can't cd to /usr/ports" > > I'm getting this in every port I try to make...it begins the make and then > errors out with 'Error code 2' telling me it can't cd into the ports > work/portname directory. This has been happening for about a week. It's > probably some global make environment setting but I can't figure out what it > is. I've portsnap fetch extract to rebuild the tree but that didn't help. I > would appreciate any clues and thank anyone with one. That's not a particularly useful description of your problem. Can you cut-and-paste the exact error message, and the surrounding lines? What's in /etc/make.conf? Dave. -- "Strange women lying in ponds distributing swords is no basis for a system of government." From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 11:06:18 2006 Return-Path: X-Original-To: ports@hub.freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C68016A403 for ; Mon, 4 Dec 2006 11:06:18 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0DBE43CA5 for ; Mon, 4 Dec 2006 11:05:45 +0000 (GMT) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kB4B6Hdo044378 for ; Mon, 4 Dec 2006 11:06:17 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kB4B6GHM044374 for PORTS; Mon, 4 Dec 2006 11:06:16 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 4 Dec 2006 11:06:16 GMT Message-Id: <200612041106.kB4B6GHM044374@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Cc: Subject: Current unassigned ports problem reports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 11:06:18 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. r - repocopy The resolution of the problem report is dependent on a repocopy operation within the CVS repository which is awaiting completion. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- f ports/106007 proftpd security bugs o ports/106287 ruby-1.8.5-p2 released 2 problems total. Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- f ports/92706 vmware3 panic on 6.0-RELEASE o ports/94894 multimedia/fxtv causes freeze and reboot on DGA failur f ports/95081 Problem with enabling logwtmp on POPtop s ports/99623 ksh93 dumps core on FBSD 6.1 f ports/100067 New port: devel/gdb65 GNU GDB 6.5 o ports/100358 sysutils/portmanager: OpenOffice.org 2.0 Requires Conf f ports/103367 pglogd fails to start f ports/103672 cups-base wont compile/nor is it capable of being port f ports/103970 print/cups-base will not install f ports/104323 [patch] math/vtk-python build failure with python2.5 f ports/104546 net/nss_ldap bug f ports/104769 tcllib-1.7_1 won't build anymore in FreeBSD 6.2-BETA2/ o ports/106289 [PATCH] Fix build of science/cdo on FreeBSD 5 o ports/106301 Maintainer port update: mail/squirrelmail o ports/106303 Fix build on IA64 & Sparc64 f ports/106306 mail/squirrelmail security update 16 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- s ports/57502 ports that define USE_* too late s ports/59254 ports that write something after bsd.port.mk s ports/67815 graphics/ImageMagick no longer recognizes FlashPix s ports/88900 www/flashplugin-mozilla causes Firefox to crash f ports/94000 request: fork of security/srm with updated features f ports/95019 New port: www/suphp-devel: suPHP 0.6.1 f ports/95279 (New Port) FreeBPX: a web gui to the asterisk PBX f ports/95990 New Port: emulators/xjoypad s ports/96576 R 2.3.0 fails to compile: undefined reference to `R_ru s ports/96731 textproc/docbook-utils doesn`t build f ports/96891 [patch] port dns/powerdns does not have option for com f ports/98364 [PATCH] net-mgmt/nagios-plugins: add several contrib c f ports/99535 New port: mail/qmail-scanner2 qmail-scanner2 with st p f ports/99553 cannot use proxy in net-im/gaim-openq f ports/100650 audio/moc dumps core when detach/quit f ports/100789 net-p2p/verlihub-plugins: compile failure o ports/101680 mail/poppassd: update of passwd prompts for pam_passwd f ports/102093 new port (restoring from Attic): fix games/myth2_demo f ports/102406 [PATCH] Update port: net-p2p/verlihub fix plugin suppo o ports/103257 Missing directory prevents Nepenthes from running out- o ports/103395 gnome-ssh-askpass interferes with gnome-screensaver f ports/103813 www/p5-Apache-DBI: fix package dependenies when WITH_M f ports/104033 nagios trends report images wrong size f ports/104234 net/linneighborhood: Problem with mounting a smb share f ports/104353 [UPDATE] www/aolserver to 4.5 o ports/104453 [NEW PORT] russian/proftpd f ports/104498 missing entries in ports/multimedia/pvrxxx/distinfo o ports/104680 New port: emulators/linux_base-slackware - Slackware b o ports/104725 request new port: x11/nvidia-driver-devel f ports/104754 /ports/chinese/stardict2-dict-zh_CN place files to wr f ports/104779 update cad/varkon to 1.18A f ports/104997 New port: "devel/bindlib" a library of ocaml f ports/105118 kipi-plugins don't work o ports/105135 net/linux-nx-client: update to 2.1.0 f ports/105211 [maintainer update] deve/loki 0.1.3 to 0.1.5 o ports/105291 New port: security/pantera - web site penetration test o ports/105450 [new port] java/veditor f ports/105473 ports/sysutils/cpdup -o doesn't work as advertised f ports/105565 sysutils/extipl works on amd64 f ports/105573 [patch] mail/courier 0.53.3 upgrade f ports/105716 textproc/lemmatizer: Update to version 1.2 f ports/105781 [UPDATE] www/aolserver to 4.5 REVISED f ports/105863 module load error occurs lighttpd WITH_CML=YES o ports/105931 Update Port: sysutils/kports f ports/105947 proftpd mod_ctrls fails after sighup f ports/105948 ports/math/qwtplot3d does not compile o ports/105970 New port: textproc/sk-ispell -- new Slovak dictionary f ports/105978 nmh prints postscript attachments by default f ports/106053 Update port: net/sixxs-aiccu Fix tun driver to work on o ports/106061 net/citrix_ica: Citrix ICA Client (wfcmgr) don't start f ports/106074 [update] www/plone update for known vulnerability f ports/106151 [PATCH] graphics/povray: Respect X11BASE o ports/106273 [NEW PORT] multimedia/gpac-mp4box MP4 merge f ports/106278 LibTomCrypt 54 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 11:37:04 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 994FA16A40F for ; Mon, 4 Dec 2006 11:37:04 +0000 (UTC) (envelope-from buhnux@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90B6943CA3 for ; Mon, 4 Dec 2006 11:36:31 +0000 (GMT) (envelope-from buhnux@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so2645082uge for ; Mon, 04 Dec 2006 03:37:02 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references:x-google-sender-auth; b=bKtaqMTSWmmGQEEo4CqcF/bWZUPP8s/dwbx5aZJcdznzO8FS01ptc2TY+kBWMet216yeLaI7c5bIwav8tAqMXRP5yyIGVtKidah+hNcv8z+w5e5niMzI1O5uM2n3XbtTDjXuL9ulJqDy5Ub3Jb0dfnF1/Pni/NfTEzxr5Bmid5o= Received: by 10.82.141.4 with SMTP id o4mr1449414bud.1165232222406; Mon, 04 Dec 2006 03:37:02 -0800 (PST) Received: by 10.82.112.6 with HTTP; Mon, 4 Dec 2006 03:37:02 -0800 (PST) Message-ID: Date: Mon, 4 Dec 2006 06:37:02 -0500 From: "Michael Johnson" Sender: buhnux@gmail.com To: "FreeBSD WickerBill" In-Reply-To: <2d19405f0612032036y12682b1fg6552af79c1d35fdf@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <2d19405f0612032036y12682b1fg6552af79c1d35fdf@mail.gmail.com> X-Google-Sender-Auth: 3b57afdc73aa6d33 Cc: "ports@FreeBSD. org" Subject: Re: can't cd to /usr/ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 11:37:04 -0000 On 12/3/06, FreeBSD WickerBill wrote: > "can't cd to /usr/ports" > > I'm getting this in every port I try to make...it begins the make and then > errors out with 'Error code 2' telling me it can't cd into the ports > work/portname directory. This has been happening for about a week. It's > probably some global make environment setting but I can't figure out what it > is. I've portsnap fetch extract to rebuild the tree but that didn't help. I > would appreciate any clues and thank anyone with one. Copy & paste a full error. > _______________________________________________ > 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 Dec 4 13:17:59 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 792EF16A403 for ; Mon, 4 Dec 2006 13:17:59 +0000 (UTC) (envelope-from freebsdwicker@gmail.com) Received: from nz-out-0102.google.com (nz-out-0506.google.com [64.233.162.239]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDB2043CA7 for ; Mon, 4 Dec 2006 13:17:25 +0000 (GMT) (envelope-from freebsdwicker@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so1795327nzh for ; Mon, 04 Dec 2006 05:17:58 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=BjLoLIYXXiKVUMHhOS62zfS+pX8b5SGAfcSw+wA25z+DgtaxDAlCGstf/Fh77de79FTQq37XBxNs5MtHQDHclILWJ7GO57jQPpJqywRGBCtNwmtXC3rnEZxO1yimcGKrkNqaRYcyOg4HQVO2NfqYkVe+H0Y5ooSjap81rbU6+2I= Received: by 10.78.160.2 with SMTP id i2mr7634012hue.1165238276849; Mon, 04 Dec 2006 05:17:56 -0800 (PST) Received: by 10.78.19.10 with HTTP; Mon, 4 Dec 2006 05:17:55 -0800 (PST) Message-ID: <2d19405f0612040517n14230e29q80ad476c72a0098d@mail.gmail.com> Date: Mon, 4 Dec 2006 05:17:55 -0800 From: "FreeBSD WickerBill" To: "ports@FreeBSD. org" In-Reply-To: MIME-Version: 1.0 References: <2d19405f0612032036y12682b1fg6552af79c1d35fdf@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: can't cd to /usr/ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 13:17:59 -0000 No Problem: [/usr/ports/x11/nvidia-settings] # make install clean cd: can't cd to /usr/ports/x11/nvidia-settings/work/nvidia-settings-1.0 *** Error code 2 ===> Cleaning for gmake-3.81_1 ===> Cleaning for intltool-0.35.0 ===> Cleaning for pkg-config-0.21 ===> Cleaning for atk-1.12.3 ===> Cleaning for glib-2.12.4 ===> Cleaning for gtk-2.10.6_2 ===> Cleaning for pango-1.14.8 ===> Cleaning for xorg-libraries-6.9.0 ===> Cleaning for gettext-0.14.5_2 ===> Cleaning for perl-5.8.8 ===> Cleaning for p5-XML-Parser-2.34_2 ===> Cleaning for libiconv-1.9.2_2 ===> Cleaning for libtool-1.5.22_2 ===> Cleaning for icu-3.6 ===> Cleaning for png-1.2.12_1 ===> Cleaning for tiff-3.8.2_1 ===> Cleaning for jpeg-6b_4 ===> Cleaning for cups-base-1.2.2 ===> Cleaning for shared-mime-info-0.19 ===> Cleaning for hicolor-icon-theme-0.9_2 ===> Cleaning for freetype2-2.2.1_1 ===> Cleaning for cairo-1.2.6 ===> Cleaning for libXft-2.1.7_1 ===> Cleaning for xorg-fonts-truetype-6.9.0 ===> Cleaning for xorg-fonts-encodings-6.9.0_1 ===> Cleaning for imake-6.9.0 ===> Cleaning for libdrm-2.0.2 ===> Cleaning for fontconfig-2.3.2_6,1 ===> Cleaning for expat-2.0.0_1 ===> Cleaning for python24-2.4.3_3 ===> Cleaning for gnutls-1.4.5 ===> Cleaning for libpaper-1.1.14.3_1 ===> Cleaning for php5-5.2.0 ===> Cleaning for libxml2-2.6.26 ===> Cleaning for xorg-clients-6.9.0_3 ===> Cleaning for bitstream-vera-1.10_2 ===> Cleaning for libgcrypt-1.2.3_1 ===> Cleaning for libgpg-error-1.4 ===> Cleaning for libtasn1-0.3.6 ===> Cleaning for apache-2.2.3 ===> Cleaning for autoconf-2.59_2 ===> Cleaning for xterm-222 ===> Cleaning for m4-1.4.4 ===> Cleaning for help2man-1.36.4_1 ===> Cleaning for p5-gettext-1.05_1 ===> Cleaning for nvidia-settings-1.0_9 1 error Another: [/usr/ports/devel/gamin] # make install clean cd: can't cd to /usr/ports/devel/gamin/work/gamin-0.1.7 *** Error code 2 ===> Cleaning for gmake-3.81_1 ===> Cleaning for pkg-config-0.21 ===> Cleaning for glib-2.12.4 ===> Cleaning for gettext-0.14.5_2 ===> Cleaning for perl-5.8.8 ===> Cleaning for libtool-1.5.22_2 ===> Cleaning for icu-3.6 ===> Cleaning for libiconv-1.9.2_2 ===> Cleaning for gamin-0.1.7_2 1 error And another: [/usr/ports/news/PicMonger] # make install clean cd: can't cd to /usr/ports/news/PicMonger/work/PicMonger-0.9.6 *** Error code 2 ===> Cleaning for gmake-3.81_1 ===> Cleaning for pkg-config-0.21 ===> Cleaning for gtkmm-1.2.8_6 ===> Cleaning for glib-1.2.10_12 ===> Cleaning for gtk-1.2.10_17 ===> Cleaning for imlib-1.9.15_4 ===> Cleaning for xorg-libraries-6.9.0 ===> Cleaning for mpack-1.6_1 ===> Cleaning for gettext-0.14.5_2 ===> Cleaning for m4-1.4.4 ===> Cleaning for libsigc++-1.0.4_1 ===> Cleaning for perl-5.8.8 ===> Cleaning for libtool-1.5.22_2 ===> Cleaning for png-1.2.12_1 ===> Cleaning for tiff-3.8.2_1 ===> Cleaning for libungif-4.1.4_2 ===> Cleaning for imake-6.9.0 ===> Cleaning for libdrm-2.0.2 ===> Cleaning for freetype2-2.2.1_1 ===> Cleaning for fontconfig-2.3.2_6,1 ===> Cleaning for libiconv-1.9.2_2 ===> Cleaning for jpeg-6b_4 ===> Cleaning for expat-2.0.0_1 ===> Cleaning for PicMonger-0.9.6_3 1 error Like I originally posted, every make I try winds up like this. The make doesn't create the port that it tries to cd into but this wasn't a problem last week or for the 8 months this box has been live...Thanks again for your responses. On 12/4/06, Michael Johnson wrote: > > On 12/3/06, FreeBSD WickerBill wrote: > > "can't cd to /usr/ports" > > > > I'm getting this in every port I try to make...it begins the make and > then > > errors out with 'Error code 2' telling me it can't cd into the ports > > work/portname directory. This has been happening for about a week. It's > > probably some global make environment setting but I can't figure out > what it > > is. I've portsnap fetch extract to rebuild the tree but that didn't > help. I > > would appreciate any clues and thank anyone with one. > > Copy & paste a full error. > > > _______________________________________________ > > 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 Dec 4 13:39:51 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 511E816A49E for ; Mon, 4 Dec 2006 13:39:51 +0000 (UTC) (envelope-from spadge@fromley.net) Received: from mtaout03-winn.ispmail.ntl.com (mtaout03-winn.ispmail.ntl.com [81.103.221.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id C46EC441BA for ; Mon, 4 Dec 2006 13:33:38 +0000 (GMT) (envelope-from spadge@fromley.net) Received: from aamtaout01-winn.ispmail.ntl.com ([81.103.221.35]) by mtaout03-winn.ispmail.ntl.com with ESMTP id <20061204133443.TZH1865.mtaout03-winn.ispmail.ntl.com@aamtaout01-winn.ispmail.ntl.com>; Mon, 4 Dec 2006 13:34:43 +0000 Received: from tobermory.home ([86.0.166.176]) by aamtaout01-winn.ispmail.ntl.com with ESMTP id <20061204133446.NHP219.aamtaout01-winn.ispmail.ntl.com@tobermory.home>; Mon, 4 Dec 2006 13:34:46 +0000 Received: from webmail.fromley.net (localhost.home [127.0.0.1]) by tobermory.home (Postfix) with ESMTP id 1A159A713D; Mon, 4 Dec 2006 13:33:53 +0000 (GMT) Received: from 213.123.179.188 (SquirrelMail authenticated user spadge) by webmail.fromley.net with HTTP; Mon, 4 Dec 2006 13:33:53 -0000 (UTC) Message-ID: <33201.213.123.179.188.1165239233.squirrel@webmail.fromley.net> In-Reply-To: <2d19405f0612040517n14230e29q80ad476c72a0098d@mail.gmail.com> References: <2d19405f0612032036y12682b1fg6552af79c1d35fdf@mail.gmail.com> <2d19405f0612040517n14230e29q80ad476c72a0098d@mail.gmail.com> Date: Mon, 4 Dec 2006 13:33:53 -0000 (UTC) From: "Spadge Fromley" To: "FreeBSD WickerBill" User-Agent: SquirrelMail/1.4.8 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Cc: "ports@FreeBSD. org" Subject: Re: can't cd to /usr/ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 13:39:51 -0000 > Like I originally posted, every make I try winds up like this. The make > doesn't create the port that it tries to cd into but this wasn't a problem > last week or for the 8 months this box has been live...Thanks again for > your > responses. Don't you need to make before you make install? -- Spadge 'Intoccabile' From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 13:40:27 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 52ABA16A691 for ; Mon, 4 Dec 2006 13:40:27 +0000 (UTC) (envelope-from bvdgrift@snoozy.vdgrift.org) Received: from snoozy.vdgrift.org (snoozy.vdgrift.org [193.79.182.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72FAA444EF for ; Mon, 4 Dec 2006 13:37:13 +0000 (GMT) (envelope-from bvdgrift@snoozy.vdgrift.org) Received: from snoozy.vdgrift.org (localhost.vdgrift.org [127.0.0.1]) by snoozy.vdgrift.org (8.13.8/8.13.8) with ESMTP id kB4DbLba023114 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 4 Dec 2006 14:37:21 +0100 (CET) (envelope-from bvdgrift@snoozy.vdgrift.org) Received: (from bvdgrift@localhost) by snoozy.vdgrift.org (8.13.8/8.13.8/Submit) id kB4DbL7E023113; Mon, 4 Dec 2006 14:37:21 +0100 (CET) (envelope-from bvdgrift) Date: Mon, 4 Dec 2006 14:37:21 +0100 From: Bert van de Grift To: Robert Davison Message-ID: <20061204133721.GF88418@snoozy.vdgrift.org> Mail-Followup-To: Robert Davison , freebsd-ports@freebsd.org References: <398164.74496.qm@web25001.mail.ukl.yahoo.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <398164.74496.qm@web25001.mail.ukl.yahoo.com> User-Agent: Mutt/1.4.2.2i X-PGP-Key: http://www.xs4all.nl/~bvdgrift/private-gpg-key.asc X-Virus-Scanned: by amavisd-new Cc: freebsd-ports@freebsd.org Subject: Re: Openwebmail Zlib::compress X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 13:40:27 -0000 On Sun, Dec 03, 2006 at 09:44:18PM +0000, Robert Davison wrote: > I've recently updated my ports, and openwebmail is no longer working, > giving me the following error... > Software error: > Undefined subroutine &Compress::Zlib::memGzip called at > /usr/local/www/cgi-bin/openwebmail/shares/ow-shared.pl line 1175. For > help, please send mail to the webmaster (robert@casezero.net), giving > this error message and the time and date of the error. > I've looked on freebsd.org at the ports and note that note that within > the last 7 hours there has been an update to correct the path to > Compress::Zlib.pm after recent p5-Compress-Zlib update. > Is this still a problem with the port or do I have to alter my > configuration somehow. I'm running a standard openwebmail with no > changes. When I tried to upgrade p5-Compress-Zlib yesterday I had te same problem you described. I tried it again today (after a cvsup) and now it's seems fine. Regards, -- Bert van de Grift http://www.vdgrift.org GPG Key: http://www.vdgrift.org/0x306DE560.asc Fingerprint: 3E79 1F71 6699 619E 8BCC B21A E1ED 76E0 306D E560 From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 13:43:33 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 203E216A525 for ; Mon, 4 Dec 2006 13:43:33 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 4F38943E2A for ; Mon, 4 Dec 2006 13:41:03 +0000 (GMT) (envelope-from LoN_Kamikaze@gmx.de) Received: (qmail invoked by alias); 04 Dec 2006 13:41:35 -0000 Received: from x469.vpn.hrz.tu-darmstadt.de (EHLO [192.168.1.12]) [130.83.73.215] by mail.gmx.net (mp042) with SMTP; 04 Dec 2006 14:41:35 +0100 X-Authenticated: #5465401 Message-ID: <457425D9.6010706@gmx.de> Date: Mon, 04 Dec 2006 14:42:49 +0100 From: "[LoN]Kamikaze" Organization: Lords of Nightmare User-Agent: Thunderbird 1.5.0.8 (X11/20061110) MIME-Version: 1.0 To: FreeBSD WickerBill References: <2d19405f0612032036y12682b1fg6552af79c1d35fdf@mail.gmail.com> <2d19405f0612040517n14230e29q80ad476c72a0098d@mail.gmail.com> In-Reply-To: <2d19405f0612040517n14230e29q80ad476c72a0098d@mail.gmail.com> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: "ports@FreeBSD. org" Subject: Re: can't cd to /usr/ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 13:43:33 -0000 FreeBSD WickerBill wrote: > No Problem: > > [/usr/ports/x11/nvidia-settings] # make install clean > cd: can't cd to /usr/ports/x11/nvidia-settings/work/nvidia-settings-1.0 > *** Error code 2 > ... Are you running 'make -j'? Also post your make.conf and your environment (printenv). From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 13:49:18 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E82E416A47B for ; Mon, 4 Dec 2006 13:49:18 +0000 (UTC) (envelope-from freebsdwicker@gmail.com) Received: from nz-out-0102.google.com (nz-out-0506.google.com [64.233.162.234]) by mx1.FreeBSD.org (Postfix) with ESMTP id C659843CBF for ; Mon, 4 Dec 2006 13:48:34 +0000 (GMT) (envelope-from freebsdwicker@gmail.com) Received: by nz-out-0102.google.com with SMTP id i11so1801032nzh for ; Mon, 04 Dec 2006 05:49:07 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=VFxX4zRPzSXAmBi8geW+XiRJFE3xV9ia/L51AJOq0WZ8gAuB+r0/uBgusN+VvHl86nMlug0Q7BEEGBgD+LzaSIpIRGckHVjKjcjCA4+zxhSldAM7NYKj0QrV7cOsd2IwXmfs9FTMwFu4/ra5gsVHKYx0KY9YVxwX8SHwLyiMgOE= Received: by 10.78.204.20 with SMTP id b20mr7671481hug.1165240146077; Mon, 04 Dec 2006 05:49:06 -0800 (PST) Received: by 10.78.19.10 with HTTP; Mon, 4 Dec 2006 05:49:06 -0800 (PST) Message-ID: <2d19405f0612040549j1239411dga84812ef71b8a3dd@mail.gmail.com> Date: Mon, 4 Dec 2006 05:49:06 -0800 From: "FreeBSD WickerBill" To: "[LoN]Kamikaze" , "ports@FreeBSD. org" In-Reply-To: <457425D9.6010706@gmx.de> MIME-Version: 1.0 References: <2d19405f0612032036y12682b1fg6552af79c1d35fdf@mail.gmail.com> <2d19405f0612040517n14230e29q80ad476c72a0098d@mail.gmail.com> <457425D9.6010706@gmx.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: can't cd to /usr/ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 13:49:19 -0000 That was it...I totally spaced out that I had created an alias make -j4...a big Thank You LoN_Kamikaze and all the rest that answered. On 12/4/06, [LoN]Kamikaze wrote: > > FreeBSD WickerBill wrote: > > No Problem: > > > > [/usr/ports/x11/nvidia-settings] # make install clean > > cd: can't cd to /usr/ports/x11/nvidia-settings/work/nvidia-settings-1.0 > > *** Error code 2 > > ... > > Are you running 'make -j'? Also post your make.conf and your environment > (printenv). > From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 14:39:17 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3FB1416A60D for ; Mon, 4 Dec 2006 14:39:17 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 1859143E92 for ; Mon, 4 Dec 2006 14:37:12 +0000 (GMT) (envelope-from LoN_Kamikaze@gmx.de) Received: (qmail invoked by alias); 04 Dec 2006 14:37:05 -0000 Received: from x65.vpn.hrz.tu-darmstadt.de (EHLO [192.168.1.12]) [130.83.72.65] by mail.gmx.net (mp019) with SMTP; 04 Dec 2006 15:37:05 +0100 X-Authenticated: #5465401 Message-ID: <457432DC.3090008@gmx.de> Date: Mon, 04 Dec 2006 15:38:20 +0100 From: "[LoN]Kamikaze" Organization: Lords of Nightmare User-Agent: Thunderbird 1.5.0.8 (X11/20061110) MIME-Version: 1.0 To: FreeBSD WickerBill References: <2d19405f0612032036y12682b1fg6552af79c1d35fdf@mail.gmail.com> <2d19405f0612040517n14230e29q80ad476c72a0098d@mail.gmail.com> <457425D9.6010706@gmx.de> <2d19405f0612040549j1239411dga84812ef71b8a3dd@mail.gmail.com> In-Reply-To: <2d19405f0612040549j1239411dga84812ef71b8a3dd@mail.gmail.com> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: "ports@FreeBSD. org" Subject: Re: can't cd to /usr/ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 14:39:17 -0000 FreeBSD WickerBill wrote: > That was it...I totally spaced out that I had created an alias make -j4...a > big Thank You LoN_Kamikaze and all the rest that answered. Please don't top-post. Also if you want to use make -j in combination with portupgrade, install sysutils/bsdadminscripts and read the buildflags.mk and buildflags.conf man pages carefully. From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 15:04:43 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8705116A407 for ; Mon, 4 Dec 2006 15:04:43 +0000 (UTC) (envelope-from hopet@ics.muni.cz) Received: from ithil.ics.muni.cz (ithil.ics.muni.cz [147.251.4.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1831D43CB3 for ; Mon, 4 Dec 2006 15:04:06 +0000 (GMT) (envelope-from hopet@ics.muni.cz) Received: from KLOBOUCEK (comp39.ma.ics.muni.cz [147.251.55.39]) (authenticated bits=0) by ithil.ics.muni.cz (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id kB4F4YvH006493 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Mon, 4 Dec 2006 16:04:37 +0100 From: "Petr Holub" To: "Karel Miklav" Date: Mon, 4 Dec 2006 16:04:36 +0100 Message-ID: <001401c717b5$83595e20$c8a423c0@KLOBOUCEK> 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 8.5, Build 4.71.2377.0 In-Reply-To: <4572099B.7010801@lovetemple.net> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Importance: Normal X-Muni-Spam-TestIP: 147.251.55.39 X-Muni-Envelope-From: hopet@ics.muni.cz X-Muni-Virus-Test: Clean X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0 (ithil.ics.muni.cz [147.251.4.38]); Mon, 04 Dec 2006 16:04:38 +0100 (CET) Cc: ports@freebsd.org Subject: RE: lang/gnat-gcc41 build error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 15:04:43 -0000 > Yeah, I was able to reproduce the error! Try to replace > the Makefile with the one attached here. Now it looks it depends on gnat-gcc34. which fails with the follwing: Making GCC gnat-gcc-3.4.6 for FreeBSD 6.2 target=i386-portbld-freebsd6.2 ===> Extracting for gnat-gcc-3.4.6_2 => MD5 Checksum OK for gcc-core-3.4.6.tar.gz. => SHA256 Checksum OK for gcc-core-3.4.6.tar.gz. => MD5 Checksum OK for gcc-ada-3.4.6.tar.gz. => SHA256 Checksum OK for gcc-ada-3.4.6.tar.gz. ===> gnat-gcc-3.4.6_2 depends on file: /usr/local/bin/perl5.8.8 - found ===> Patching for gnat-gcc-3.4.6_2 ===> gnat-gcc-3.4.6_2 depends on file: /usr/local/bin/perl5.8.8 - found ===> Applying FreeBSD patches for gnat-gcc-3.4.6_2 ===> gnat-gcc-3.4.6_2 depends on executable in : gmake - found ===> gnat-gcc-3.4.6_2 depends on executable in : bison - found ===> gnat-gcc-3.4.6_2 depends on file: /usr/local/bin/perl5.8.8 - found ===> Configuring for gnat-gcc-3.4.6_2 cd /usr/ports/lang/gnat-gcc34/work/gcc-3.4.6; contrib/gcc_update --touch # Ada and C compilers should be the same. if [ -d ]; then /bin/ln -s /adagcc /cc; fi ln: /cc: File exists *** Error code 1 Stop in /usr/ports/lang/gnat-gcc34. Petr ================================================================ Petr Holub CESNET z.s.p.o. Supercomputing Center Brno Zikova 4 Institute of Compt. Science 162 00 Praha 6, CZ Masaryk University Czech Republic Botanicka 68a, 60200 Brno, CZ e-mail: Petr.Holub@cesnet.cz phone: +420-549493944 fax: +420-541212747 e-mail: hopet@ics.muni.cz From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 20:09:31 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 654C516A514 for ; Mon, 4 Dec 2006 20:09:31 +0000 (UTC) (envelope-from norgaard@locolomo.org) Received: from strange.daemonsecurity.com (59.Red-81-33-11.staticIP.rima-tde.net [81.33.11.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CE1643E6B for ; Mon, 4 Dec 2006 20:03:09 +0000 (GMT) (envelope-from norgaard@locolomo.org) Received: from [10.35.4.65] (65.4-35-10-static.chueca.wifi [10.35.4.65]) by strange.daemonsecurity.com (Postfix) with ESMTP id 588672E024 for ; Mon, 4 Dec 2006 21:03:37 +0100 (CET) Message-ID: <45747E97.6040505@locolomo.org> Date: Mon, 04 Dec 2006 21:01:27 +0100 From: Erik Norgaard User-Agent: Thunderbird 1.5.0.7 (X11/20061022) MIME-Version: 1.0 To: ports@freebsd.org Content-Type: multipart/signed; protocol="application/x-pkcs7-signature"; micalg=sha1; boundary="------------ms050104060607070100050808" Cc: Subject: Newbie creating a port: tracing dependencies X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 20:09:31 -0000 This is a cryptographically signed message in MIME format. --------------ms050104060607070100050808 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Hi: Ok, source compiles fine although I haven't tested it also works. But: I created this port on my working laptop which has a bunch of other apps. So I was wondering, how do I figure out direct dependencies? And how do I figure out whether these should be LIB_DEPENDS, BUILD_DEPENDS or RUN_DEPENDS or some other? Is there a trick to trace the dependencies, and figure out which port provides that dependency? - except for building on a clean machine and install stuff until things work? Thanks, Erik -- Ph: +34.666334818 web: http://www.locolomo.org --------------ms050104060607070100050808 Content-Type: application/x-pkcs7-signature; name="smime.p7s" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="smime.p7s" Content-Description: S/MIME Cryptographic Signature MIAGCSqGSIb3DQEHAqCAMIACAQExCzAJBgUrDgMCGgUAMIAGCSqGSIb3DQEHAQAAoIIK6DCC BXAwggRYoAMCAQICBEVUK6IwDQYJKoZIhvcNAQEFBQAwMTELMAkGA1UEBhMCREsxDDAKBgNV BAoTA1REQzEUMBIGA1UEAxMLVERDIE9DRVMgQ0EwHhcNMDYxMTE1MDgzMTU0WhcNMDgxMTE1 MDkwMTU0WjB1MQswCQYDVQQGEwJESzEpMCcGA1UEChMgSW5nZW4gb3JnYW5pc2F0b3Jpc2sg dGlsa255dG5pbmcxOzAUBgNVBAMUDUVyaWsgTvhyZ2FhcmQwIwYDVQQFExxQSUQ6OTgwMi0y MDAyLTItNTQ0MzY5NzY5MzE1MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC1/K6+GVcF UvoWJpyfhzWbu8qEOB8jU17A0dpmts7RT+ODkYq0lxJCcvvdSXNQQurvYwaPISA+EMRy+rIm rjhoyxhsM9w/XC7gELqkr1XbGt3wR0KLr5ZcRfD4HqrWM1Eh1OYxTXKod6Ox/FAqzDAy91x8 XCZzsHtiBCdgMSYxqwIDAQABo4ICzjCCAsowDgYDVR0PAQH/BAQDAgP4MCsGA1UdEAQkMCKA DzIwMDYxMTE1MDgzMTU0WoEPMjAwODExMTUwOTAxNTRaMIIBNwYDVR0gBIIBLjCCASowggEm BgoqgVCBKQEBAQEDMIIBFjAvBggrBgEFBQcCARYjaHR0cDovL3d3dy5jZXJ0aWZpa2F0LmRr L3JlcG9zaXRvcnkwgeIGCCsGAQUFBwICMIHVMAoWA1REQzADAgEBGoHGRm9yIGFudmVuZGVs c2UgYWYgY2VydGlmaWthdGV0IGfmbGRlciBPQ0VTIHZpbGvlciwgQ1BTIG9nIE9DRVMgQ1As IGRlciBrYW4gaGVudGVzIGZyYSB3d3cuY2VydGlmaWthdC5kay9yZXBvc2l0b3J5LiBCZW3m cmssIGF0IFREQyBlZnRlciB2aWxr5XJlbmUgaGFyIGV0IGJlZ3LmbnNldCBhbnN2YXIgaWZ0 LiBwcm9mZXNzaW9uZWxsZSBwYXJ0ZXIuMEEGCCsGAQUFBwEBBDUwMzAxBggrBgEFBQcwAYYl aHR0cDovL29jc3AuY2VydGlmaWthdC5kay9vY3NwL3N0YXR1czAgBgNVHREEGTAXgRVub3Jn YWFyZEBsb2NvbG9tby5vcmcwgYQGA1UdHwR9MHswS6BJoEekRTBDMQswCQYDVQQGEwJESzEM MAoGA1UEChMDVERDMRQwEgYDVQQDEwtUREMgT0NFUyBDQTEQMA4GA1UEAxMHQ1JMMTU1NzAs oCqgKIYmaHR0cDovL2NybC5vY2VzLmNlcnRpZmlrYXQuZGsvb2Nlcy5jcmwwHwYDVR0jBBgw FoAUYLWF7FZkfhIZJ2cdUBVLc647+RIwHQYDVR0OBBYEFPd+a0ceJ9JmK934UXsB3G0mjv+f MAkGA1UdEwQCMAAwGQYJKoZIhvZ9B0EABAwwChsEVjcuMQMCA6gwDQYJKoZIhvcNAQEFBQAD ggEBAE9KhX+l/ZcnhvGPhHyWnJspyCXSiuqZ+GlgMdcKXtlu8kXsqNzfDe9qSs93++zJS+HT vAW0QgyIxjY1VpgCqgyjU8e2d2D1eSRMDB09WViZk8oZkvOy0Mq3yy//CLSw3gQbXNZF+Yt+ htss+FD+idACVyRBQqlcHuaxjguyzZkK0fGBN5H5nsklDySQCU7X0i3egeIiL7zlV3cjp9KT 12tNG4jfQTaSUzBkz0R+x+Jcdyp6AI9Qg3H1iGDDI58aCTY5ohQBpDsUcLr6U842IACNCeub qDP6nDo5lnMEXwGH/RO8r4supCf5wrNRjqEX/vokUzB5QfDGtmxxZkycaaQwggVwMIIEWKAD AgECAgRFVCuiMA0GCSqGSIb3DQEBBQUAMDExCzAJBgNVBAYTAkRLMQwwCgYDVQQKEwNUREMx FDASBgNVBAMTC1REQyBPQ0VTIENBMB4XDTA2MTExNTA4MzE1NFoXDTA4MTExNTA5MDE1NFow dTELMAkGA1UEBhMCREsxKTAnBgNVBAoTIEluZ2VuIG9yZ2FuaXNhdG9yaXNrIHRpbGtueXRu aW5nMTswFAYDVQQDFA1FcmlrIE74cmdhYXJkMCMGA1UEBRMcUElEOjk4MDItMjAwMi0yLTU0 NDM2OTc2OTMxNTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAtfyuvhlXBVL6Fiacn4c1 m7vKhDgfI1NewNHaZrbO0U/jg5GKtJcSQnL73UlzUELq72MGjyEgPhDEcvqyJq44aMsYbDPc P1wu4BC6pK9V2xrd8EdCi6+WXEXw+B6q1jNRIdTmMU1yqHejsfxQKswwMvdcfFwmc7B7YgQn YDEmMasCAwEAAaOCAs4wggLKMA4GA1UdDwEB/wQEAwID+DArBgNVHRAEJDAigA8yMDA2MTEx NTA4MzE1NFqBDzIwMDgxMTE1MDkwMTU0WjCCATcGA1UdIASCAS4wggEqMIIBJgYKKoFQgSkB AQEBAzCCARYwLwYIKwYBBQUHAgEWI2h0dHA6Ly93d3cuY2VydGlmaWthdC5kay9yZXBvc2l0 b3J5MIHiBggrBgEFBQcCAjCB1TAKFgNUREMwAwIBARqBxkZvciBhbnZlbmRlbHNlIGFmIGNl cnRpZmlrYXRldCBn5mxkZXIgT0NFUyB2aWxr5XIsIENQUyBvZyBPQ0VTIENQLCBkZXIga2Fu IGhlbnRlcyBmcmEgd3d3LmNlcnRpZmlrYXQuZGsvcmVwb3NpdG9yeS4gQmVt5nJrLCBhdCBU REMgZWZ0ZXIgdmlsa+VyZW5lIGhhciBldCBiZWdy5m5zZXQgYW5zdmFyIGlmdC4gcHJvZmVz c2lvbmVsbGUgcGFydGVyLjBBBggrBgEFBQcBAQQ1MDMwMQYIKwYBBQUHMAGGJWh0dHA6Ly9v Y3NwLmNlcnRpZmlrYXQuZGsvb2NzcC9zdGF0dXMwIAYDVR0RBBkwF4EVbm9yZ2FhcmRAbG9j b2xvbW8ub3JnMIGEBgNVHR8EfTB7MEugSaBHpEUwQzELMAkGA1UEBhMCREsxDDAKBgNVBAoT A1REQzEUMBIGA1UEAxMLVERDIE9DRVMgQ0ExEDAOBgNVBAMTB0NSTDE1NTcwLKAqoCiGJmh0 dHA6Ly9jcmwub2Nlcy5jZXJ0aWZpa2F0LmRrL29jZXMuY3JsMB8GA1UdIwQYMBaAFGC1hexW ZH4SGSdnHVAVS3OuO/kSMB0GA1UdDgQWBBT3fmtHHifSZivd+FF7AdxtJo7/nzAJBgNVHRME AjAAMBkGCSqGSIb2fQdBAAQMMAobBFY3LjEDAgOoMA0GCSqGSIb3DQEBBQUAA4IBAQBPSoV/ pf2XJ4bxj4R8lpybKcgl0orqmfhpYDHXCl7ZbvJF7Kjc3w3vakrPd/vsyUvh07wFtEIMiMY2 NVaYAqoMo1PHtndg9XkkTAwdPVlYmZPKGZLzstDKt8sv/wi0sN4EG1zWRfmLfobbLPhQ/onQ AlckQUKpXB7msY4Lss2ZCtHxgTeR+Z7JJQ8kkAlO19It3oHiIi+85Vd3I6fSk9drTRuI30E2 klMwZM9EfsfiXHcqegCPUINx9YhgwyOfGgk2OaIUAaQ7FHC6+lPONiAAjQnrm6gz+pw6OZZz BF8Bh/0TvK+LLqQn+cKzUY6hF/76JFMweUHwxrZscWZMnGmkMYICKjCCAiYCAQEwOTAxMQsw CQYDVQQGEwJESzEMMAoGA1UEChMDVERDMRQwEgYDVQQDEwtUREMgT0NFUyBDQQIERVQrojAJ BgUrDgMCGgUAoIIBRzAYBgkqhkiG9w0BCQMxCwYJKoZIhvcNAQcBMBwGCSqGSIb3DQEJBTEP Fw0wNjEyMDQyMDAxMjdaMCMGCSqGSIb3DQEJBDEWBBS4pNxBRvej5brh9i/U5md4Aj1MGjBI BgkrBgEEAYI3EAQxOzA5MDExCzAJBgNVBAYTAkRLMQwwCgYDVQQKEwNUREMxFDASBgNVBAMT C1REQyBPQ0VTIENBAgRFVCuiMEoGCyqGSIb3DQEJEAILMTugOTAxMQswCQYDVQQGEwJESzEM MAoGA1UEChMDVERDMRQwEgYDVQQDEwtUREMgT0NFUyBDQQIERVQrojBSBgkqhkiG9w0BCQ8x RTBDMAoGCCqGSIb3DQMHMA4GCCqGSIb3DQMCAgIAgDANBggqhkiG9w0DAgIBQDAHBgUrDgMC BzANBggqhkiG9w0DAgIBKDANBgkqhkiG9w0BAQEFAASBgK8uD05B6V8FmFApUTpVtZ8Qzr2O PHeT9w2saVNcpNPkCIyk9udHzO/MkNoVf+uHDFMeCgmPArNF+HS54Zxr5TNrbnETlzWqUk5J Igk9Jvu5vsRo0pA8GFRiqWHXq+0XyVK742UTVFfUA/t7w2JL93qLXgZJKN3g3AI5fFvWrko0 AAAAAAAA --------------ms050104060607070100050808-- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 20:17:09 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8378616A4B3 for ; Mon, 4 Dec 2006 20:17:09 +0000 (UTC) (envelope-from cswiger@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id C406A43CBC for ; Mon, 4 Dec 2006 20:16:14 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin05-en2 [10.13.10.150]) by smtpout.mac.com (Xserve/8.12.11/smtpout16/MantshX 4.0) with ESMTP id kB4KGkH4026610; Mon, 4 Dec 2006 12:16:47 -0800 (PST) Received: from [17.214.13.96] (a17-214-13-96.apple.com [17.214.13.96]) (authenticated bits=0) by mac.com (Xserve/smtpin05/MantshX 4.0) with ESMTP id kB4KGhLa026734; Mon, 4 Dec 2006 12:16:44 -0800 (PST) In-Reply-To: <45747E97.6040505@locolomo.org> References: <45747E97.6040505@locolomo.org> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <71302299-2AA0-4D1E-8D6A-EBE7DE81C98F@mac.com> Content-Transfer-Encoding: 7bit From: Chuck Swiger Date: Mon, 4 Dec 2006 12:16:42 -0800 To: Erik Norgaard X-Mailer: Apple Mail (2.752.2) X-Brightmail-Tracker: AAAAAA== X-Brightmail-scanned: yes Cc: ports@freebsd.org Subject: Re: Newbie creating a port: tracing dependencies X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 20:17:09 -0000 On Dec 4, 2006, at 12:01 PM, Erik Norgaard wrote: > So I was wondering, how do I figure out direct dependencies? And > how do I figure out whether these should be LIB_DEPENDS, > BUILD_DEPENDS or RUN_DEPENDS or some other? The fine documentation in the Porters Handbook discusses this: http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/ makefile-depend.html > Is there a trick to trace the dependencies, and figure out which > port provides that dependency? - except for building on a clean > machine and install stuff until things work? You can use pkg_which to tell you which port a given file in part of; so, for example, if your port creates an executable called "foo", run "ldd foo" and see which libraries it links against; the ones in /usr/ local/lib almost certainly should be listed as LIB_DEPENDS, for example. However, there is no real substitute for paying attention to the documentation of the project and/or the GNU autoconfig (ie ./ configure file) or similar mechanism used to test for and link against optional dependencies. -- -Chuck From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 20:20:02 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9B6C816A412 for ; Mon, 4 Dec 2006 20:20:02 +0000 (UTC) (envelope-from tobez@tobez.org) Received: from heechee.tobez.org (heechee.tobez.org [194.255.56.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD7D243CB2 for ; Mon, 4 Dec 2006 20:19:26 +0000 (GMT) (envelope-from tobez@tobez.org) Received: by heechee.tobez.org (Postfix, from userid 1001) id 78AF812542A; Mon, 4 Dec 2006 21:17:59 +0100 (CET) Date: Mon, 4 Dec 2006 21:17:59 +0100 From: Anton Berezin To: Erik Norgaard Message-ID: <20061204201759.GA76749@heechee.tobez.org> Mail-Followup-To: Anton Berezin , Erik Norgaard , ports@freebsd.org References: <45747E97.6040505@locolomo.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <45747E97.6040505@locolomo.org> User-Agent: Mutt/1.4.2.2i X-Powered-By: FreeBSD http://www.freebsd.org/ Cc: ports@freebsd.org Subject: Re: Newbie creating a port: tracing dependencies X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 20:20:02 -0000 On Mon, Dec 04, 2006 at 09:01:27PM +0100, Erik Norgaard wrote: > Ok, source compiles fine although I haven't tested it also works. But: I > created this port on my working laptop which has a bunch of other apps. > > So I was wondering, how do I figure out direct dependencies? And how do > I figure out whether these should be LIB_DEPENDS, BUILD_DEPENDS or > RUN_DEPENDS or some other? > > Is there a trick to trace the dependencies, and figure out which port > provides that dependency? - except for building on a clean machine and > install stuff until things work? I would suggest a clean jail on the same machine. It is easy and fast to set up such a configuration (and keep it clean for the future porting work, as well). \Anton. -- We're going for 'working' here. 'clean' is for people with skills... -- Flemming Jacobsen From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 19:40:37 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4E07C16A505 for ; Mon, 4 Dec 2006 19:40:37 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from com1.ht-systems.ru (com1.ht-systems.ru [83.97.104.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id A28B743CB3 for ; Mon, 4 Dec 2006 19:39:58 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from [213.87.86.61] (helo=fonon.mbsd.msk.ru) by com1.ht-systems.ru with esmtpa (Exim 4.62) (envelope-from ) id 1GrJb5-0007un-Jv; Mon, 04 Dec 2006 22:35:30 +0300 Received: from localhost (localhost [127.0.0.1]) by fonon.mbsd.msk.ru (Postfix) with SMTP id 250E9114CC; Mon, 4 Dec 2006 22:39:59 +0300 (MSK) Date: Mon, 4 Dec 2006 22:39:54 +0300 From: Stanislav Sedov To: Eric Schuele Message-Id: <20061204223954.95349230.stas@FreeBSD.org> In-Reply-To: <4572F08A.3030109@computer.org> References: <4572F08A.3030109@computer.org> Organization: The FreeBSD Project X-Mailer: carrier-pigeon X-Voice: +7 916 849 20 23 X-XMPP: ssedov@jabber.ru X-ICQ: 208105021 X-Yahoo: stanislav_sedov X-PGP-Fingerprint: F21E D6CC 5626 9609 6CE2 A385 2BF5 5993 EB26 9581 X-University: MEPhI Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Mon__4_Dec_2006_22_39_54_+0300_evzI0VjZ+4jJD_wh" X-Spam-Flag: SKIP X-Spam-Yversion: Spamooborona 1.6.0 X-Mailman-Approved-At: Mon, 04 Dec 2006 20:32:58 +0000 Cc: freebsd-ports Subject: Re: (x11-wm\enlightenment-devel) e17, pam, and "Lock Screen"... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 19:40:37 -0000 --Signature=_Mon__4_Dec_2006_22_39_54_+0300_evzI0VjZ+4jJD_wh Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7bit On Sun, 03 Dec 2006 09:43:06 -0600 Eric Schuele mentioned: > Hello, > > I recently installed e17. I am having difficulty getting the "Lock > Screen" feature to accept a password. Presently it accepts any input > (even blank) as valid. > > It my understanding that the problem is that it is not using PAM at this > point (on my machine). How can I get it to use PAM? Some folks hint it > is a build issue. Others say the PAM config files are not setup. but > none offer a concise method to fix it. Is there some knob I can turn > when building the app? Or some config file somewhere I can tweak? > It seems, that there're some problems in the e17 lock code. I'll try to investigate soon. Sorry for inconvenience. -- Stanislav Sedov http://people.freebsd.org/~stas/stas.key.asc --Signature=_Mon__4_Dec_2006_22_39_54_+0300_evzI0VjZ+4jJD_wh Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFdHmOK/VZk+smlYERAqJ7AJ94f9SRkRHnoN+JftfPo4++IKPCuwCfSJpT 8cN2i2xlTizEYZtjL63xPXs= =xSTe -----END PGP SIGNATURE----- --Signature=_Mon__4_Dec_2006_22_39_54_+0300_evzI0VjZ+4jJD_wh-- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 21:25:16 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 860D116A407 for ; Mon, 4 Dec 2006 21:25:16 +0000 (UTC) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (it.buh.tecnik93.com [81.196.204.98]) by mx1.FreeBSD.org (Postfix) with ESMTP id A65CF43EB7 for ; Mon, 4 Dec 2006 21:18:43 +0000 (GMT) (envelope-from itetcu@FreeBSD.org) Received: from it.buh.tecnik93.com (localhost [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id 2CA071711B; Mon, 4 Dec 2006 23:19:14 +0200 (EET) Date: Mon, 4 Dec 2006 23:19:13 +0200 From: Ion-Mihai "IOnut" Tetcu To: Erik Norgaard Message-ID: <20061204231913.4a804200@it.buh.tecnik93.com> In-Reply-To: <45747E97.6040505@locolomo.org> References: <45747E97.6040505@locolomo.org> X-Mailer: Sylpheed-Claws 2.6.0 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: multipart/signed; boundary="Sig_tuntQFZcUcDfMncRlLBk=AX"; protocol="application/pgp-signature"; micalg=PGP-SHA1 Cc: ports@freebsd.org Subject: Re: Newbie creating a port: tracing dependencies X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 21:25:16 -0000 --Sig_tuntQFZcUcDfMncRlLBk=AX Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: quoted-printable On Mon, 04 Dec 2006 21:01:27 +0100 Erik Norgaard wrote: > Hi: >=20 > Ok, source compiles fine although I haven't tested it also works. > But: I created this port on my working laptop which has a bunch of > other apps. >=20 > So I was wondering, how do I figure out direct dependencies?=20 Install misc/tinderbox and build your port in it. Start only with the DEPENDS you're sure of. when it will fail you're see. --=20 IOnut - Un^d^dregistered ;) FreeBSD "user" "Intellectual Property" is nowhere near as valuable as "Intellect" Insults are effective only where emotion is present. -- Spock, "Who Mourns for Adonais?" stardate 3468.1 --Sig_tuntQFZcUcDfMncRlLBk=AX Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFdJDRBX6fi0k6KXsRAkWDAJ9FrFZ+odF9WZ9SRU27XVUCUXsb8ACgvdrz eeIVgKEq9fvGq54zcxJarS0= =ACne -----END PGP SIGNATURE----- --Sig_tuntQFZcUcDfMncRlLBk=AX-- From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 21:48:58 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E141316A535; Mon, 4 Dec 2006 21:48:58 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A46544493; Mon, 4 Dec 2006 21:30:11 +0000 (GMT) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id A1B4F5C57; Mon, 4 Dec 2006 16:31:06 -0500 (EST) Date: Mon, 4 Dec 2006 16:31:06 -0500 From: Wesley Shields To: Doug Barton Message-ID: <20061204213106.GA42084@atarininja.org> References: <17771.24717.95357.989644@jerusalem.litteratus.org> <456B70E9.4030408@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <456B70E9.4030408@FreeBSD.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: ports@freebsd.org, Robert Huff Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 21:48:59 -0000 On Mon, Nov 27, 2006 at 03:12:41PM -0800, Doug Barton wrote: > Robert Huff wrote: > > Let's suppose I have a list of tarballs > > (e.g. foobar-1.23.456.tar.gz). How do I tell which port each file > > belongs to? "pkg_info" only lists the end results. > > The correct answer is, "not easily." You can look at the code for > sysutils/portmaster to get an idea of how you could do it, but what > really needs to happen is for someone to write the code to embed that > data in the +CONTENTS file. I took a stab at this over the weekend. It's broken up into two parts. [1] is the addition to pkg_create and pkg_info and [2] is the addiction to bsd.port.mk. I mentioned this to pav@ on IRC a few days ago and I believe he and I may have miscommunicated regarding the use of this patch. With that said, I figured I would toss this out to the list as a possible way of recording the distfile(s) and patchfile(s) associated with a given port/package. The end result is a series of @distfile foo/bar.tar.gz lines in +CONTENTS. You can then use pkg_info -F to get a listing of them. It's my first time doing something like this so please be gentle. :) -- WXS [1]: http://www.atarininja.org/~wxs/patches/distfile-in-contents-part1.diff [2]: http://www.atarininja.org/~wxs/patches/distfile-in-contents-part2.diff From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 21:56:44 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 13C8716A4A0 for ; Mon, 4 Dec 2006 21:56:44 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.FreeBSD.org (Postfix) with SMTP id 4930443C9D for ; Mon, 4 Dec 2006 21:56:08 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 24613 invoked by uid 399); 4 Dec 2006 21:56:42 -0000 Received: from localhost (HELO ?192.168.0.7?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 4 Dec 2006 21:56:42 -0000 Message-ID: <45749998.3070308@FreeBSD.org> Date: Mon, 04 Dec 2006 13:56:40 -0800 From: Doug Barton Organization: http://www.freebsd.org/ User-Agent: Thunderbird 1.5.0.8 (X11/20061125) MIME-Version: 1.0 To: Wesley Shields References: <17771.24717.95357.989644@jerusalem.litteratus.org> <456B70E9.4030408@FreeBSD.org> <20061204213106.GA42084@atarininja.org> In-Reply-To: <20061204213106.GA42084@atarininja.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 21:56:44 -0000 Wesley Shields wrote: > On Mon, Nov 27, 2006 at 03:12:41PM -0800, Doug Barton wrote: >> Robert Huff wrote: >>> Let's suppose I have a list of tarballs >>> (e.g. foobar-1.23.456.tar.gz). How do I tell which port each file >>> belongs to? "pkg_info" only lists the end results. >> The correct answer is, "not easily." You can look at the code for >> sysutils/portmaster to get an idea of how you could do it, but what >> really needs to happen is for someone to write the code to embed that >> data in the +CONTENTS file. > > I took a stab at this over the weekend. It's broken up into two parts. > [1] is the addition to pkg_create and pkg_info and [2] is the addiction > to bsd.port.mk. > > I mentioned this to pav@ on IRC a few days ago and I believe he and I > may have miscommunicated regarding the use of this patch. With that > said, I figured I would toss this out to the list as a possible way of > recording the distfile(s) and patchfile(s) associated with a given > port/package. > > The end result is a series of @distfile foo/bar.tar.gz lines in > +CONTENTS. You can then use pkg_info -F to get a listing of them. > > It's my first time doing something like this so please be gentle. :) > > -- WXS > > [1]: http://www.atarininja.org/~wxs/patches/distfile-in-contents-part1.diff > [2]: http://www.atarininja.org/~wxs/patches/distfile-in-contents-part2.diff After a cursory exam this looks really great! I'd love to see this, or something like it added ASAP. At minimum the bsd.port.mk patch should definitely be added even if it takes a while for the other stuff to percolate. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Mon Dec 4 23:20:47 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4842116A4CE; Mon, 4 Dec 2006 23:20:47 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 875CC43CA2; Mon, 4 Dec 2006 23:20:11 +0000 (GMT) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id 27C8C5C57; Mon, 4 Dec 2006 18:21:25 -0500 (EST) Date: Mon, 4 Dec 2006 18:21:25 -0500 From: Wesley Shields To: Doug Barton Message-ID: <20061204232125.GA42307@atarininja.org> References: <17771.24717.95357.989644@jerusalem.litteratus.org> <456B70E9.4030408@FreeBSD.org> <20061204213106.GA42084@atarininja.org> <45749998.3070308@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <45749998.3070308@FreeBSD.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: ports@freebsd.org Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Dec 2006 23:20:47 -0000 On Mon, Dec 04, 2006 at 01:56:40PM -0800, Doug Barton wrote: > Wesley Shields wrote: > > On Mon, Nov 27, 2006 at 03:12:41PM -0800, Doug Barton wrote: > >> Robert Huff wrote: > >>> Let's suppose I have a list of tarballs > >>> (e.g. foobar-1.23.456.tar.gz). How do I tell which port each file > >>> belongs to? "pkg_info" only lists the end results. > >> The correct answer is, "not easily." You can look at the code for > >> sysutils/portmaster to get an idea of how you could do it, but what > >> really needs to happen is for someone to write the code to embed that > >> data in the +CONTENTS file. > > > > I took a stab at this over the weekend. It's broken up into two parts. > > [1] is the addition to pkg_create and pkg_info and [2] is the addiction > > to bsd.port.mk. > > > > I mentioned this to pav@ on IRC a few days ago and I believe he and I > > may have miscommunicated regarding the use of this patch. With that > > said, I figured I would toss this out to the list as a possible way of > > recording the distfile(s) and patchfile(s) associated with a given > > port/package. > > > > The end result is a series of @distfile foo/bar.tar.gz lines in > > +CONTENTS. You can then use pkg_info -F to get a listing of them. > > > > It's my first time doing something like this so please be gentle. :) > > > > -- WXS > > > > [1]: http://www.atarininja.org/~wxs/patches/distfile-in-contents-part1.diff > > [2]: http://www.atarininja.org/~wxs/patches/distfile-in-contents-part2.diff > > After a cursory exam this looks really great! I'd love to see this, or > something like it added ASAP. At minimum the bsd.port.mk patch should > definitely be added even if it takes a while for the other stuff to > percolate. > > Doug I'm fairly certain that the bsd.port.mk patch requires the other one (pkg_create will fall over when it encounters the @distfile lines). I'd be happy to send-pr it if nobody objects in a day or two. -- WXS From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 00:46:22 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7DBE316A403 for ; Tue, 5 Dec 2006 00:46:22 +0000 (UTC) (envelope-from hopet@ics.muni.cz) Received: from ithil.ics.muni.cz (ithil.ics.muni.cz [147.251.4.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08DE743CAA for ; Tue, 5 Dec 2006 00:45:45 +0000 (GMT) (envelope-from hopet@ics.muni.cz) Received: from KLOBOUCEK (comp11.ma.ics.muni.cz [147.251.55.11]) (authenticated bits=0) by ithil.ics.muni.cz (8.13.4/8.13.4/Debian-3sarge3) with ESMTP id kB50kGDR029832 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Tue, 5 Dec 2006 01:46:18 +0100 From: "Petr Holub" To: "Karel Miklav" Date: Tue, 5 Dec 2006 01:46:18 +0100 Message-ID: <004301c71806$c6d53380$c8a423c0@KLOBOUCEK> 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 8.5, Build 4.71.2377.0 In-Reply-To: X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 Importance: Normal X-Muni-Spam-TestIP: 147.251.55.11 X-Muni-Envelope-From: hopet@ics.muni.cz X-Muni-Virus-Test: Clean X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-3.0 (ithil.ics.muni.cz [147.251.4.38]); Tue, 05 Dec 2006 01:46:20 +0100 (CET) Cc: ports@freebsd.org Subject: RE: lang/gnat-gcc41 build error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 00:46:22 -0000 > > Yeah, I was able to reproduce the error! Try to replace > > the Makefile with the one attached here. > > Now it looks it depends on gnat-gcc34. which fails with the follwing: > > Making GCC gnat-gcc-3.4.6 for FreeBSD 6.2 target=i386-portbld-freebsd6.2 > ===> Extracting for gnat-gcc-3.4.6_2 > => MD5 Checksum OK for gcc-core-3.4.6.tar.gz. > => SHA256 Checksum OK for gcc-core-3.4.6.tar.gz. > => MD5 Checksum OK for gcc-ada-3.4.6.tar.gz. > => SHA256 Checksum OK for gcc-ada-3.4.6.tar.gz. > ===> gnat-gcc-3.4.6_2 depends on file: /usr/local/bin/perl5.8.8 - found > ===> Patching for gnat-gcc-3.4.6_2 > ===> gnat-gcc-3.4.6_2 depends on file: /usr/local/bin/perl5.8.8 - found > ===> Applying FreeBSD patches for gnat-gcc-3.4.6_2 > ===> gnat-gcc-3.4.6_2 depends on executable in : gmake - found > ===> gnat-gcc-3.4.6_2 depends on executable in : bison - found > ===> gnat-gcc-3.4.6_2 depends on file: /usr/local/bin/perl5.8.8 - found > ===> Configuring for gnat-gcc-3.4.6_2 > cd /usr/ports/lang/gnat-gcc34/work/gcc-3.4.6; contrib/gcc_update --touch > # Ada and C compilers should be the same. > if [ -d ]; then /bin/ln -s /adagcc /cc; fi > ln: /cc: File exists > *** Error code 1 > > Stop in /usr/ports/lang/gnat-gcc34. Oh sorry. That was an easy one - the previous build, which I interrupted, has already created the /cc link. But the next one is: /usr/local/bin/gnatgcc -c -g -gnatpg -gnata -g -O1 -fno-inline \ -I- -I. -Iada -I.././../gcc-3.4.6/gcc/ada .././../gcc-3.4.6/gcc/ada/a-e xcept.adb -o ada/a-except.o s-traent.ads:61:01: (style) blank lines not allowed at end of file a-exexda.adb:346:01: (style) multiple blank lines a-exextr.adb:216:01: (style) multiple blank lines gmake[2]: *** [ada/a-except.o] Error 1 gmake[2]: Leaving directory `/usr/ports/lang/gnat-gcc34/work/build/gcc' gmake[1]: *** [stage1_build] Error 2 gmake[1]: Leaving directory `/usr/ports/lang/gnat-gcc34/work/build/gcc' gmake: *** [bootstrap] Error 2 *** Error code 2 Stop in /usr/ports/lang/gnat-gcc34. *** Error code 1 Stop in /usr/ports/lang/gnat-gcc41. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portinstall.12835.7 en v make DEPENDS_TARGET=package ** Fix the problem and try again. ** Listing the failed packages (*:skipped / !:failed) ! lang/gnat-gcc41 (unknown build error) ---> Packages processed: 0 done, 7 ignored, 0 skipped and 1 failed ... maybe because I have lang/gnat already installed? And why do we need gnat-gcc34 anyway? Petr From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 04:05:40 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5033316A416; Tue, 5 Dec 2006 04:05:40 +0000 (UTC) (envelope-from e.schuele@computer.org) Received: from sccrmhc15.comcast.net (sccrmhc15.comcast.net [204.127.200.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 279D343C9D; Tue, 5 Dec 2006 04:05:03 +0000 (GMT) (envelope-from e.schuele@computer.org) Received: from [192.168.214.215] (cpe-76-184-133-124.tx.res.rr.com[76.184.133.124]) by comcast.net (sccrmhc15) with ESMTP id <2006120504053501500b2b6je>; Tue, 5 Dec 2006 04:05:39 +0000 Message-ID: <4574F00E.90501@computer.org> Date: Mon, 04 Dec 2006 22:05:34 -0600 From: Eric Schuele User-Agent: Thunderbird 1.5.0.8 (X11/20061111) MIME-Version: 1.0 To: Stanislav Sedov References: <4572F08A.3030109@computer.org> <20061204223954.95349230.stas@FreeBSD.org> In-Reply-To: <20061204223954.95349230.stas@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ports Subject: Re: (x11-wm\enlightenment-devel) e17, pam, and "Lock Screen"... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 04:05:40 -0000 On 12/04/06 13:39, Stanislav Sedov wrote: > On Sun, 03 Dec 2006 09:43:06 -0600 > Eric Schuele mentioned: > >> Hello, >> >> I recently installed e17. I am having difficulty getting the "Lock >> Screen" feature to accept a password. Presently it accepts any input >> (even blank) as valid. >> >> It my understanding that the problem is that it is not using PAM at this >> point (on my machine). How can I get it to use PAM? Some folks hint it >> is a build issue. Others say the PAM config files are not setup. but >> none offer a concise method to fix it. Is there some knob I can turn >> when building the app? Or some config file somewhere I can tweak? >> > > It seems, that there're some problems in the e17 lock code. I'll try to > investigate soon. ok. Thanks for the response. > > Sorry for inconvenience. No need to apologize. Its a *-devel edition... bugs are expected. > > -- > Stanislav Sedov > http://people.freebsd.org/~stas/stas.key.asc -- Regards, Eric From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 04:37:56 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 784FB16A403; Tue, 5 Dec 2006 04:37:56 +0000 (UTC) (envelope-from "") Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BB3243CA7; Tue, 5 Dec 2006 04:37:19 +0000 (GMT) (envelope-from "") Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.4/8.13.4) with ESMTP id kB54bvr7096101; Tue, 5 Dec 2006 04:37:58 GMT Received: (from erwin@localhost) by builder.freebsd.org (8.13.4/8.13.4/Submit) id kB54bu01096064; Tue, 5 Dec 2006 04:37:56 GMT Date: Tue, 5 Dec 2006 04:37:56 GMT Message-Id: <200612050437.kB54bu01096064@builder.freebsd.org> X-Authentication-Warning: builder.freebsd.org: erwin set sender to <> using -f From: erwin@FreeBSD.org To: ports@FreeBSD.org X-FreeBSD-Chkversion: backwards Cc: ports@FreeBSD.org, miwi@FreeBSD.org Subject: Ports with version numbers going backwards: multimedia/win32-codecs X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: erwin@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 04:37:56 -0000 ** The following ports have a version number that sorts before a previous one ** For many package tools to work correctly, it is of utmost importance that version numbers of a port form a monotonic increasing sequence over time. Refer to the FreeBSD Porter's Handbook, 'Package Naming Conventions' for more information. Tools that won't work include pkg_version, portupgrade and portaudit. A common error is an accidental deletion of PORTEPOCH. Please fix any errors as soon as possible. The ports tree was updated at Tue Dec 5 2006 0:59:09 UTC. - *multimedia/win32-codecs* : win32-codecs-3.1.0.p8,1 < win32-codecs-3.1.0.p8_1,1 | revision 1.39 | date: 2006/12/04 22:29:37; author: miwi; state: Exp; lines: +3 -4 | - Update to 2006-10-22 | | PR: ports/106304 | Submitted by: Jan-Olof Lindqvist From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 08:13:38 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4509C16A415; Tue, 5 Dec 2006 08:13:38 +0000 (UTC) (envelope-from David.Bauer@SCHERING.DE) Received: from fluorine.schering.de (fluorine.schering.de [149.234.246.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 270CB43CAA; Tue, 5 Dec 2006 08:12:50 +0000 (GMT) (envelope-from David.Bauer@SCHERING.DE) Received: from be333031.eu.schering.net by fluorine.schering.de via smtpd (for mx1.freebsd.org [69.147.83.52]) with ESMTP; Tue, 5 Dec 2006 09:13:28 +0100 Received: from bes702.schering.net (bes702.eu.schering.net [10.98.112.61]) by be333031.eu.schering.net (8.12.11.20060308/8.12.11) with ESMTP id kB58DMJm022218; Tue, 5 Dec 2006 09:13:23 +0100 To: ale@FreeBSD.org MIME-Version: 1.0 X-Mailer: Lotus Notes Release 6.5.3 September 14, 2004 Message-ID: From: David.Bauer@SCHERING.DE Date: Tue, 5 Dec 2006 09:13:19 +0100 X-MIMETrack: MIME-CD by Router on BE2306/BE/SRV/SHG(Release 6.5.5|November 30, 2005) at 12/05/2006 09:13:21 AM, MIME-CD complete at 12/05/2006 09:13:21 AM, Serialize by Router on BES702/BE/SRV/SHG(Release 6.5.5|November 30, 2005) at 12/05/2006 09:13:23 AM Content-type: text/plain; charset=US-ASCII Cc: ports@FreeBSD.org Subject: FreeBSD Port: pdflib-7.0.0p3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 08:13:38 -0000 Hello, I'm trying to build the pdflib on 6.1-RELEASE (gmake 3.81, libtool 1.5.22) and I'm getting the error shown below. The libs/tiff builds without error. Only libtool in libs/pdflib fails. I also tried to build from the not patched sources and there I get the same error. Any hints what's wrong here ? Thanks, David. ####################################################### /usr/local/bin/libtool --silent --mode=compile cc -c -I/usr/local/include -I/usr/X11R6/include -I../../libs/pdflib -I../../libs/pdcore -I../../libs/tiff -I../../libs/flate -I../../libs/png -I../../libs/jpeg -I../../libs/font -O2 -fno-strict-aliasing -pipe -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -DPDF_PLATFORM=\""FreeBSD6"\" -Wall p_tiff.c In file included from p_tiff.c:52: ../../libs/tiff/tiffiop.h:165: error: syntax error before "TIFFmallocHandler" p_tiff.c: In function `pdf_data_source_TIFF_fill': p_tiff.c:185: warning: implicit declaration of function `pdf_TIFFGetField' p_tiff.c:194: warning: implicit declaration of function `pdf_TIFFReadRawStrip' p_tiff.c:199: warning: implicit declaration of function `pdf_TIFFClose' p_tiff.c:211: warning: implicit declaration of function `pdf_TIFFSwabArrayOfShort' p_tiff.c:217: warning: implicit declaration of function `pdf_TIFFReverseBits' p_tiff.c: In function `pdf_is_TIFF_file': p_tiff.c:324: warning: implicit declaration of function `pdf_TIFFClientOpen' p_tiff.c:330: warning: assignment makes pointer from integer without a cast p_tiff.c: In function `pdf_process_TIFF_data': p_tiff.c:372: warning: implicit declaration of function `pdf_TIFFSetDirectory' p_tiff.c:380: warning: implicit declaration of function `pdf_TIFFGetFieldDefaulted' p_tiff.c:457: warning: implicit declaration of function `pdf_TIFFIsTiled' p_tiff.c:497: warning: implicit declaration of function `pdf_TIFFNumberOfStrips' p_tiff.c:959: warning: implicit declaration of function `pdf_TIFFReadRGBAImageOriented' p_tiff.c:968: warning: implicit declaration of function `pdf_TIFFScanlineSize' p_tiff.c:973: warning: implicit declaration of function `pdf_TIFFReadScanline' ############################################################ From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 08:29:50 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 36E2316A4CA for ; Tue, 5 Dec 2006 08:29:50 +0000 (UTC) (envelope-from LoN_Kamikaze@gmx.de) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id ED62943CA8 for ; Tue, 5 Dec 2006 08:29:10 +0000 (GMT) (envelope-from LoN_Kamikaze@gmx.de) Received: (qmail invoked by alias); 05 Dec 2006 08:29:47 -0000 Received: from vpn-cl-162-197.rz.uni-karlsruhe.de (EHLO [141.3.162.197]) [141.3.162.197] by mail.gmx.net (mp040) with SMTP; 05 Dec 2006 09:29:47 +0100 X-Authenticated: #5465401 Message-ID: <45752E45.6070202@gmx.de> Date: Tue, 05 Dec 2006 09:31:01 +0100 From: "[LoN]Kamikaze" Organization: Lords of Nightmare User-Agent: Thunderbird 1.5.0.8 (X11/20061110) MIME-Version: 1.0 To: Eric Schuele References: <4572F08A.3030109@computer.org> <20061204223954.95349230.stas@FreeBSD.org> <4574F00E.90501@computer.org> In-Reply-To: <4574F00E.90501@computer.org> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Cc: Stanislav Sedov , freebsd-ports Subject: Re: (x11-wm\enlightenment-devel) e17, pam, and "Lock Screen"... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 08:29:50 -0000 Eric Schuele wrote: > On 12/04/06 13:39, Stanislav Sedov wrote: >> On Sun, 03 Dec 2006 09:43:06 -0600 >> Eric Schuele mentioned: >> >>> Hello, >>> >>> I recently installed e17. I am having difficulty getting the "Lock >>> Screen" feature to accept a password. Presently it accepts any input >>> (even blank) as valid. >>> >>> It my understanding that the problem is that it is not using PAM at this >>> point (on my machine). How can I get it to use PAM? Some folks hint it >>> is a build issue. Others say the PAM config files are not setup. but >>> none offer a concise method to fix it. Is there some knob I can turn >>> when building the app? Or some config file somewhere I can tweak? >>> >> >> It seems, that there're some problems in the e17 lock code. I'll try to >> investigate soon. > > ok. Thanks for the response. > >> >> Sorry for inconvenience. > > No need to apologize. Its a *-devel edition... bugs are expected. > I've been using that a lot without recognizing it doesn't actually work... Thanks for the pointer. From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 13:18:55 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4E15616A407 for ; Tue, 5 Dec 2006 13:18:55 +0000 (UTC) (envelope-from granted14@yahoo.com) Received: from web55606.mail.re4.yahoo.com (web55606.mail.re4.yahoo.com [206.190.58.230]) by mx1.FreeBSD.org (Postfix) with SMTP id 7857243CB7 for ; Tue, 5 Dec 2006 13:18:12 +0000 (GMT) (envelope-from granted14@yahoo.com) Received: (qmail 90081 invoked by uid 60001); 5 Dec 2006 13:18:51 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=FJvyqPf3pH6LF05kmG/2gRlZWCMrXDETP1ltD/eSmXyE663f24FQZ8t6A4lQATjcFRDsvXVQyIp36vzMCgnAGeplN1X4r1R1Aj1ZWTkkryFPqEiqa1l8KFJW0VUahmgPSoYmYmRdyb8OYejH9eMAB8ZupQliztJZhhCKiTXtlqY=; X-YMail-OSG: YPTsD24VM1lKyEPxJ3bW2riuJgDzaeAdvgTQ4uSvW47gSXcRHV6B_bQtx6MCshDuXA-- Received: from [70.83.210.124] by web55606.mail.re4.yahoo.com via HTTP; Tue, 05 Dec 2006 08:18:51 EST Date: Tue, 5 Dec 2006 08:18:51 -0500 (EST) From: Etienne Robillard To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Message-ID: <13841.88447.qm@web55606.mail.re4.yahoo.com> Subject: new port suggestion: sysutils/pkg_read X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 13:18:55 -0000 Greetings, I'm very happy to announce the availability of pkg_read-0.1.5 to the FreeBSD community. pkg_read.py is an utility thats reads metadata from either the FreeBSD or the OpenBSD ports collection. The current version, 0.1.5, supports reading package comments for both arch. For more informations, the homepage is: http://www.assembla.com/wiki/show/pkg_read/ Direct download link: http://cheeseshop.python.org/packages/source/p/pkg_read/pkg_read-0.1.5.tar.gz#md5=e5848762c61ecd8d61fb4c84cf752240 Please report bugs and suggestions to . If you're interested in maintaining a port of pkg_read for FreeBSD, please do communicate with me! :) Cheers!! Etienne -- Etienne Robillard JID: incidah AT njs.netlab.cz YMS/MSN: granted14 AT yahoo.com TEL: +1 514.962.7703 URL: http://www.assembla.com/wiki/show/stn-portfolio/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 14:41:02 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9448216A49E for ; Tue, 5 Dec 2006 14:41:02 +0000 (UTC) (envelope-from spil.oss@googlemail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34D1D43CB0 for ; Tue, 5 Dec 2006 14:40:20 +0000 (GMT) (envelope-from spil.oss@googlemail.com) Received: by ug-out-1314.google.com with SMTP id o2so2977341uge for ; Tue, 05 Dec 2006 06:40:59 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=googlemail.com; h=received:message-id:date:from:reply-to:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=sETgaD13MN3ZSlHY3hIealLVyNg4qW1irlSuy8UPy/vXr/yOEIAX6CV0nAruGhIVC+Fa6xnCeG5hPzeSUhv+ZFf3oDfj/opWQT56SJ1NttcqNN4c1ThuSO4kyyLxAOqxMq9JTV7rmp1z4SCrATFbWeanFg2rY2Hv9X1kDYdc6+Y= Received: by 10.67.20.3 with SMTP id x3mr13767262ugi.1165329658968; Tue, 05 Dec 2006 06:40:58 -0800 (PST) Received: by 10.67.98.7 with HTTP; Tue, 5 Dec 2006 06:40:58 -0800 (PST) Message-ID: <5fbf03c20612050640q15b70503u49b6a90a2f62d583@mail.gmail.com> Date: Tue, 5 Dec 2006 15:40:58 +0100 From: "Spil Oss" To: freebsd-ports@freebsd.org In-Reply-To: <1164989871.4509.77.camel@mjaw-mobile.ipartners.pl> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: base64 Content-Disposition: inline References: <200611161509.53708.josh@tcbug.org> <1163714759.4524.32.camel@mjaw-mobile.ipartners.pl> <5fbf03c20612010452j164eb869o18a166a2ea930e4d@mail.gmail.com> <5fbf03c20612010807t3bc27536w5ac4dbf1d1159db4@mail.gmail.com> <1164989871.4509.77.camel@mjaw-mobile.ipartners.pl> Subject: Re: FreeBSD 6.1-R-p10 and PHP 5.2.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: spil.oss@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 14:41:02 -0000 SGkgTWlyb3OzYXcsCgpXaWxsIHRyeSB0aGF0LCBidXQgc2Vzc2lvbiBpcyBtYW5kYXRvcnkgZm9y IHJvdW5kY3ViZSB0byBmdW5jdGlvbiBhdCBhbGwuCgpEaWQgeW91IGhhdmUgYW4gYXBhY2hlIHRo YXQvcGhwIHNlZ2ZhdWx0ZWQgZHVyaW5nIHN0YXJ0PwpPbiBteSBpbnN0YWxsIEkgZ2V0IHRoZSBy b3VuZGN1YmUgbG9naW4tcGFnZSBhbmQgaXQgZmFpbHMgYWZ0ZXIgbG9nZ2luZyBpbi4KClNwaWwu CgpPbiAwMS8xMi8wNiwgTWlyb3OzYXcgSmF3b3Jza2kgPG1qYXdAaWtwLnBsPiB3cm90ZToKPiBP biBGcmksIDIwMDYtMTItMDEgYXQgMTc6MDcgKzAxMDAsIFNwaWwgT3NzIHdyb3RlOgo+ID4gTm8g bHVjayB3aXRoIHRoZSBmb2xsb3dpbmcgMiBleHRlbnNpb24uaW5pCj4KPiBEaXNhYmxlIGFsbCBt b2R1bGVzIGFuZCBjaGVjayB3aGV0aGVyIGl0J3Mgc2VnZmF1bHRpbmcuCj4KPiBJZiBub3QsIGVu YWJsZSBvbmUgYnkgb25lIHRpbGwgeW91IGZpbmQgdGhlIGd1aWx0eSBvbmUuIE5vdGUgdGhhdAo+ IHlvdSBtYXkgaGF2ZSBtb3JlIGNvbmZsaWN0cyB0aGFuIG9ubHkgb25lLgo+IENvbW1lbnQgZ3Vp bHR5IG9uZSBiYWNrIGFnYWluIGFuZCBjb250aW51ZSB0byB0aGUgZW5kIG9mIHRoZQo+IG1vZHVs ZXMgbGlzdC4gVGhlIGdvYWwgaXMgdG8gZ2V0IG1heGltdW0gbnVtYmVyIG9mIG1vZHVsZXMgd29y a2luZwo+IHdpdGhvdXQgc2VnZmF1bHQuCj4KPiBBZnRlciBmaW5kaW5nIGFsbCBndWlsdHkgb25l cyBjb25jZW50cmF0ZSBvbiBvbmUgb2YgdGhlbS4KPiBUcnkgdG8gbW92ZSBpdCBoZXJlIGFuZCB0 aGVyZSBjaGVja2luZyBpZiBhcGFjaGUgc2VnZmF1bHRzCj4gb3Igbm90LiBBZnRlciB5b3UgZmlu ZCBwcm9wZXIgY29tYmluYXRpb24gbW92ZSB0byB0aGUgbmV4dAo+IGZyb20gZ3VpbHR5IGxpc3Qu Cj4KPiBUaGF0J3MgdGhlIHdheSBpIG5hcnJvd2VkIHRvIHNlc3Npb24gaW4gbXkgY2FzZSBhbmQg Zm91bmQKPiBpdCB3b3JrcyBmb3IgbWUgd2hlbiBpIHB1dCBpdCBmaXJzdC4gTHVja3kgbWUsIG9u bHkgb25lCj4gY29uZmxpY3QuCj4KPiBHb29kIGx1Y2shCj4KPiBNLgo+Cj4gLS0KPiBNaXJvc2xh dyAiUHN5Ym9yZyIgSmF3b3Jza2kKPiBHQ1MvSVQgZC0gcys6KyBhIEMrKyQgVUJJKysrKyQgUCsr KyQgTC0gRS0tLSBXKysoKysrKSQgTisrIG8rIEstIHctLSBPLQo+IE0tIFYtIFBTKyBQRSsrIFkr IFBHUCB0IDU/IFgrIFIrKyAhdHYgYisrKCsrKykgREkrKyBEKyBHIGUqIGgrKyByKysrIHk/Cj4K Pgo= From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 14:41:05 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9807F16A494 for ; Tue, 5 Dec 2006 14:41:05 +0000 (UTC) (envelope-from granted14@yahoo.com) Received: from web55613.mail.re4.yahoo.com (web55613.mail.re4.yahoo.com [206.190.58.237]) by mx1.FreeBSD.org (Postfix) with SMTP id ADAAC43CA6 for ; Tue, 5 Dec 2006 14:40:25 +0000 (GMT) (envelope-from granted14@yahoo.com) Received: (qmail 54503 invoked by uid 60001); 5 Dec 2006 14:41:04 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:Date:From:Subject:To:Cc:In-Reply-To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=MIpLwMX5XZ4CNTOGZG62FUMzauIV5G+kCq5YwcjDKxQcGtuo0tOQxPUkG0h9YwfCQRghE2cWh0oao6xgEMTEsRjDucMPzHI4DqEGEyQfYMOzlyq9jjxu82uCa/gSYDQZhPrnx9Jgy2OsZXjE/TCpke67sy7yhgqvls8cWhJveMA=; X-YMail-OSG: 4U5amLYVM1lvUPhhh_8Ot535Zsy0Uj1.945D5jQpYFY0HKyKXRmwbXnAlV2p33EKTyVwl6rmmSge93LU3i6NVbxnEo_8QoOwqW4ROVscitoGv61jQO9Yng2k6PpFlUk8Niu8SP9O6cgiP8w- Received: from [70.83.210.124] by web55613.mail.re4.yahoo.com via HTTP; Tue, 05 Dec 2006 09:41:04 EST Date: Tue, 5 Dec 2006 09:41:04 -0500 (EST) From: Etienne Robillard To: Wesley Shields In-Reply-To: <20061205134733.GA49528@atarininja.org> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Message-ID: <338058.54313.qm@web55613.mail.re4.yahoo.com> Cc: freebsd-ports@freebsd.org Subject: Re: new port suggestion: sysutils/pkg_read X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 14:41:05 -0000 Hi Wesley, imho it make senses to use $PORTSDIR when this variable is set, otherwise its probably not a bad idea to fallback on "/usr/ports". You have my +1 for this suggestion and will most likely make the required modifications for the next release. Thanks very much, Etienne --- Wesley Shields wrote: > On Tue, Dec 05, 2006 at 08:18:51AM -0500, Etienne > Robillard wrote: > > > > Greetings, > > > > I'm very happy to announce the availability > > of pkg_read-0.1.5 to the FreeBSD community. > > > > pkg_read.py is an utility thats reads metadata > > from either the FreeBSD or the OpenBSD ports > > collection. The current version, 0.1.5, supports > > reading package comments for both arch. > > > > For more informations, the homepage is: > > http://www.assembla.com/wiki/show/pkg_read/ > > > > Direct download link: > > > http://cheeseshop.python.org/packages/source/p/pkg_read/pkg_read-0.1.5.tar.gz#md5=e5848762c61ecd8d61fb4c84cf752240 > > > > Please report bugs and suggestions to > . > > If you're interested in maintaining a port of > pkg_read > > for FreeBSD, please do communicate with me! :) > > It appears to have /usr/ports hardcoded. It should > honor $PORTSDIR from > the environment. > > -- WXS > -- Etienne Robillard JID: incidah AT njs.netlab.cz YMS/MSN: granted14 AT yahoo.com TEL: +1 514.962.7703 URL: http://www.assembla.com/wiki/show/stn-portfolio/ __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 14:53:47 2006 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5901216A407; Tue, 5 Dec 2006 14:53:47 +0000 (UTC) (envelope-from dmk@ncf.ca) Received: from saruman.ncf.ca (saruman.ncf.ca [134.117.136.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DB1F43CD2; Tue, 5 Dec 2006 14:51:52 +0000 (GMT) (envelope-from dmk@ncf.ca) Received: from ncf.ca (mail [134.117.136.45]) by saruman.ncf.ca (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0J9T00EAV2NDNB@saruman.ncf.ca>; Tue, 05 Dec 2006 09:52:25 -0500 (EST) Received: from [74.101.81.228] by saruman.ncf.ca (mshttpd); Tue, 05 Dec 2006 09:52:25 -0500 Date: Tue, 05 Dec 2006 09:52:25 -0500 From: Dwayne MacKinnon To: obrien@FreeBSD.org Message-id: <188207188481.188481188207@ncf.ca> MIME-version: 1.0 X-Mailer: iPlanet Messenger Express 5.2 Patch 2 (built Jul 14 2004) Content-type: multipart/mixed; boundary="Boundary_(ID_oiBQREGkI+N271wnHfW7/Q)" Content-language: en X-Accept-Language: en Priority: normal Cc: freebsd-ports@FreeBSD.org Subject: vim 7.0.168 problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 14:53:47 -0000 This is a multi-part message in MIME format. --Boundary_(ID_oiBQREGkI+N271wnHfW7/Q) Content-type: text/plain; charset=us-ascii Content-transfer-encoding: 7BIT Content-disposition: inline Hello, I ran into an odd compile problem when trying to upgrade to vim 7.0.168 using the -DWITH_TCL flag. I'm on FreeBSD 6.1-RELEASE-p10 using ccache and portupgrade. Cheers, DMK --Boundary_(ID_oiBQREGkI+N271wnHfW7/Q) Content-type: text/plain; NAME=vim_error.txt Content-transfer-encoding: 7BIT Content-disposition: attachment; filename=vim_error.txt configure: creating auto/config.status config.status: creating auto/config.mk config.status: creating auto/config.h make -f Makefile all mkdir objects CC="cc -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -DXTHREADS -DXUSE_MTSAFE_API -I/usr/local/include/gtk-2.0 -I/usr/local/lib/gtk-2.0/include -I/usr/local/include/atk-1.0 -I/usr/local/include/cairo -I/usr/local/include/pango-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -DAPPLLIB_EXP="/usr/local/lib/perl5/5.8.8/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -Wdeclaration-after-statement -I/usr/local/include -I/usr/local/lib/perl5/5.8.8/mach/CORE -I/usr/local/include/tcl8.4 long -I/usr/local/lib/ruby/1.8/i386-freebsd6 " srcdir=. sh ./osdef.sh cc: long: No such file or directory cc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -DXTHREADS -DXUSE_MTSAFE_API -I/usr/local/include/gtk-2.0 -I/usr/local/lib/gtk-2.0/include -I/usr/local/include/atk-1.0 -I/usr/local/include/cairo -I/usr/local/include/pango-1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/local/include -O -pipe -I/usr/X11R6/include -DAPPLLIB_EXP="/usr/local/lib/perl5/5.8.8/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -Wdeclaration-after-statement -I/usr/local/include -I/usr/local/lib/perl5/5.8.8/mach/CORE -I/usr/local/include/tcl8.4 long -I/usr/local/lib/ruby/1.8/i386-freebsd6 -o objects/buffer.o buffer.c cc: long: No such file or directory *** Error code 1 Stop in /usr/ports/editors/vim/work/vim70/src. *** Error code 1 Stop in /usr/ports/editors/vim/work/vim70/src. *** Error code 1 Stop in /usr/ports/editors/vim. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.60682.8 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=vim-gtk2-7.0.94 UPGRADE_PORT_VER=7.0.94 make -DWITH_GTK2 -DWITH_PERL -DWITH_RUBY -DWITH_TCL -DWITH_CSCOPE ** Fix the problem and try again. ** Listing the failed packages (*:skipped / !:failed) ! editors/vim (vim-gtk2-7.0.94) (unknown build error) ---> Packages processed: 0 done, 25 ignored, 0 skipped and 1 failed --Boundary_(ID_oiBQREGkI+N271wnHfW7/Q)-- From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 16:39:30 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3CE2316A50E for ; Tue, 5 Dec 2006 16:39:30 +0000 (UTC) (envelope-from swhetzel@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F48443D9F for ; Tue, 5 Dec 2006 16:38:24 +0000 (GMT) (envelope-from swhetzel@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so3009538uge for ; Tue, 05 Dec 2006 08:38:43 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=HSr9W3X3hPm22zxvBcWHmY9W7YfneV9TFwJyZQzxz2ptITG3BOLrvIZ/YltjbH21lpywCJKTgCi1lNxky7Hw+XwMDJvovculzxP/nXmcWVra4sEmrEDAzDF/N5yDbMuZnwY0lCtFOfv4TRCO/H0xA3/SFoMqIuFtwnOghWPCr9A= Received: by 10.67.117.18 with SMTP id u18mr13957523ugm.1165336722885; Tue, 05 Dec 2006 08:38:42 -0800 (PST) Received: by 10.67.86.15 with HTTP; Tue, 5 Dec 2006 08:38:42 -0800 (PST) Message-ID: <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> Date: Tue, 5 Dec 2006 10:38:42 -0600 From: "Scot Hetzel" To: "Wesley Shields" In-Reply-To: <20061204232125.GA42307@atarininja.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <17771.24717.95357.989644@jerusalem.litteratus.org> <456B70E9.4030408@FreeBSD.org> <20061204213106.GA42084@atarininja.org> <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> Cc: ports@freebsd.org, Doug Barton Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 16:39:30 -0000 On 12/4/06, Wesley Shields wrote: > > After a cursory exam this looks really great! I'd love to see this, or > > something like it added ASAP. At minimum the bsd.port.mk patch should > > definitely be added even if it takes a while for the other stuff to > > percolate. > > > > Doug > > I'm fairly certain that the bsd.port.mk patch requires the other one > (pkg_create will fall over when it encounters the @distfile lines). I'd > be happy to send-pr it if nobody objects in a day or two. > The bsd.port.mk patch could be changed to: .if (${OSVERSION} > 602100 && ${OSVERSION} < 700000) || ${OSVERSION} > 700027 PKGDISTFILE= "comment distfile" .else PKGDISTFILE="distfile" .endif : : - ${ECHO_CMD} "@distfle $${file}" >> ${TMPPLIST}; \ + ${ECHO_CMD} "@${PKGDISTFILE} $${file}" >> ${TMPPLIST}; \ This would allow the bsd.port.mk patch be added, without having to update the pkg_install tools on older systems. Then the ports tools (portupgrade, portmaster, ..) could be changed to look for either "@distfile" or "@comment distfile" in the +CONTENTS file. I also noticed that the patch to the pkg_info man page is using a lower case f, instead of an upper case F for the option to show the distfiles of a given package. Scot -- DISCLAIMER: No electrons were mamed while sending this message. Only slightly bruised. From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 17:27:20 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E1EBB16A403; Tue, 5 Dec 2006 17:27:20 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 262F843CBA; Tue, 5 Dec 2006 17:26:40 +0000 (GMT) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id D5FB15C57; Tue, 5 Dec 2006 12:28:03 -0500 (EST) Date: Tue, 5 Dec 2006 12:28:03 -0500 From: Wesley Shields To: Scot Hetzel Message-ID: <20061205172803.GA51892@atarininja.org> References: <17771.24717.95357.989644@jerusalem.litteratus.org> <456B70E9.4030408@FreeBSD.org> <20061204213106.GA42084@atarininja.org> <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: ports@freebsd.org, Doug Barton Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 17:27:21 -0000 On Tue, Dec 05, 2006 at 10:38:42AM -0600, Scot Hetzel wrote: > The bsd.port.mk patch could be changed to: > > .if (${OSVERSION} > 602100 && ${OSVERSION} < 700000) || ${OSVERSION} > > 700027 > PKGDISTFILE= "comment distfile" > .else > PKGDISTFILE="distfile" > .endif > : > : > - ${ECHO_CMD} "@distfle $${file}" >> ${TMPPLIST}; \ > + ${ECHO_CMD} "@${PKGDISTFILE} $${file}" >> ${TMPPLIST}; \ > > This would allow the bsd.port.mk patch be added, without having to > update the pkg_install tools on older systems. > > Then the ports tools (portupgrade, portmaster, ..) could be changed to > look for either "@distfile" or "@comment distfile" in the +CONTENTS > file. I was going to suggest wrapping the patch in an OSVERSION check for the proper pkg_info update, however I think your approach is better. There are some cosmetic changes to be made, and a discussion I would like to have before I take this any further... Cosmetic change: With the patch applied using the -F flag on a package which does not have the distfile information recorded looks like this: wxs@ack ~ > pkg_info -F qemu-0.8.2s.20061128 Information for qemu-0.8.2s.20061128: Distfile(s): wxs@ack ~ > I'm going to make it ignore the -F flag when there are no recorded distfiles (and document this fact in the manpage). As for the discussion: I did find an old thread[1] which discusses this. The point was raised that +CONTENTS is probably not the perfect place for this, to which I agree. But putting it in +DISTINFO will require more complexity than embedding it in +CONTENTS. The argument could be made that recording the distfiles which were used to make the contents justifies the existence of their names in +CONTENTS (as a @comment). I'm willing to move them to +DISTINFO instead if people feel strongly enough about them NOT being in +CONTENTS. For now, I'm operating on the premise that +CONTENTS is the place for them (though not optimal) and in a form which will not require changes to pkg_create to handle. > I also noticed that the patch to the pkg_info man page is using a > lower case f, instead of an upper case F for the option to show the > distfiles of a given package. Thanks, I missed that. I'll post updated patches when they are complete. -- WXS [1]: http://lists.freebsd.org/mailman/htdig/freebsd-ports/2006-January/028839.html From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 19:15:55 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 93A6316A415 for ; Tue, 5 Dec 2006 19:15:55 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.FreeBSD.org (Postfix) with SMTP id 7DEFF43C9D for ; Tue, 5 Dec 2006 19:15:14 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 17102 invoked by uid 399); 5 Dec 2006 19:15:54 -0000 Received: from localhost (HELO ?192.168.0.7?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 5 Dec 2006 19:15:54 -0000 Message-ID: <4575C568.70905@FreeBSD.org> Date: Tue, 05 Dec 2006 11:15:52 -0800 From: Doug Barton Organization: http://www.freebsd.org/ User-Agent: Thunderbird 1.5.0.8 (X11/20061125) MIME-Version: 1.0 To: Wesley Shields References: <17771.24717.95357.989644@jerusalem.litteratus.org> <456B70E9.4030408@FreeBSD.org> <20061204213106.GA42084@atarininja.org> <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> <20061205172803.GA51892@atarininja.org> In-Reply-To: <20061205172803.GA51892@atarininja.org> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, Scot Hetzel Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 19:15:55 -0000 Wesley Shields wrote: > On Tue, Dec 05, 2006 at 10:38:42AM -0600, Scot Hetzel wrote: >> The bsd.port.mk patch could be changed to: >> >> .if (${OSVERSION} > 602100 && ${OSVERSION} < 700000) || ${OSVERSION} > >> 700027 >> PKGDISTFILE= "comment distfile" >> .else >> PKGDISTFILE="distfile" >> .endif >> : >> : >> - ${ECHO_CMD} "@distfle $${file}" >> ${TMPPLIST}; \ >> + ${ECHO_CMD} "@${PKGDISTFILE} $${file}" >> ${TMPPLIST}; \ >> >> This would allow the bsd.port.mk patch be added, without having to >> update the pkg_install tools on older systems. >> >> Then the ports tools (portupgrade, portmaster, ..) could be changed to >> look for either "@distfile" or "@comment distfile" in the +CONTENTS >> file. @distfile is cleaner, but are you saying that we can add the comment even if pkg_create doesn't have special knowledge of the @distfile stuff? If so, isn't the sense of your test reversed? /me confused :) Meanwhile, for the record you're right that adding code to portmaster to parse either format is not hard. It'll be much less work than what I've got there now. :) Given that I'm about to release a new version of portmaster, I'd really like to get this change in now if I can. Can we reach a consensus (portmgr?) that what Scot proposed is how it will be done, even if we don't agree on the mechanics or timing yet? > I was going to suggest wrapping the patch in an OSVERSION check for the > proper pkg_info update, however I think your approach is better. To me it seems odd that pkg_create has to know about every line in the tmp plist. (Having pkg_info know about it is nice too, but not necessary to make the mechanics of the change work.) Would it not be a better idea to update pkg_create so that it simply packages up what's there? Is there a benefit to pkg_create having special knowledge about the details like this? > I'm going to make it ignore the -F flag when there are no recorded > distfiles (and document this fact in the manpage). Good change. > As for the discussion: > I did find an old thread[1] which discusses this. The point was raised > that +CONTENTS is probably not the perfect place for this, to which I > agree. But putting it in +DISTINFO will require more complexity than > embedding it in +CONTENTS. The argument could be made that recording > the distfiles which were used to make the contents justifies the > existence of their names in +CONTENTS (as a @comment). There is already enough "other" stuff in the +CONTENTS file that this isn't an issue for me, but if others have strong opinions on this point let's air them out. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 20:01:21 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A0AE516A416; Tue, 5 Dec 2006 20:01:21 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FB6043CA5; Tue, 5 Dec 2006 20:00:38 +0000 (GMT) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id 77F605C57; Tue, 5 Dec 2006 14:41:46 -0500 (EST) Date: Tue, 5 Dec 2006 14:41:46 -0500 From: Wesley Shields To: Doug Barton Message-ID: <20061205194146.GC52966@atarininja.org> References: <17771.24717.95357.989644@jerusalem.litteratus.org> <456B70E9.4030408@FreeBSD.org> <20061204213106.GA42084@atarininja.org> <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> <20061205172803.GA51892@atarininja.org> <4575C568.70905@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4575C568.70905@FreeBSD.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: ports@freebsd.org, Scot Hetzel Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 20:01:21 -0000 On Tue, Dec 05, 2006 at 11:15:52AM -0800, Doug Barton wrote: > Wesley Shields wrote: > > On Tue, Dec 05, 2006 at 10:38:42AM -0600, Scot Hetzel wrote: > >> The bsd.port.mk patch could be changed to: > >> > >> .if (${OSVERSION} > 602100 && ${OSVERSION} < 700000) || ${OSVERSION} > > >> 700027 > >> PKGDISTFILE= "comment distfile" > >> .else > >> PKGDISTFILE="distfile" > >> .endif > >> : > >> : > >> - ${ECHO_CMD} "@distfle $${file}" >> ${TMPPLIST}; \ > >> + ${ECHO_CMD} "@${PKGDISTFILE} $${file}" >> ${TMPPLIST}; \ > >> > >> This would allow the bsd.port.mk patch be added, without having to > >> update the pkg_install tools on older systems. > >> > >> Then the ports tools (portupgrade, portmaster, ..) could be changed to > >> look for either "@distfile" or "@comment distfile" in the +CONTENTS > >> file. > > @distfile is cleaner, but are you saying that we can add the comment > even if pkg_create doesn't have special knowledge of the @distfile > stuff? If so, isn't the sense of your test reversed? /me confused :) > > Meanwhile, for the record you're right that adding code to portmaster > to parse either format is not hard. It'll be much less work than what > I've got there now. :) > > Given that I'm about to release a new version of portmaster, I'd > really like to get this change in now if I can. Can we reach a > consensus (portmgr?) that what Scot proposed is how it will be done, > even if we don't agree on the mechanics or timing yet? > > > I was going to suggest wrapping the patch in an OSVERSION check for the > > proper pkg_info update, however I think your approach is better. > > To me it seems odd that pkg_create has to know about every line in the > tmp plist. (Having pkg_info know about it is nice too, but not > necessary to make the mechanics of the change work.) Would it not be a > better idea to update pkg_create so that it simply packages up what's > there? Is there a benefit to pkg_create having special knowledge about > the details like this? All I know is that "make package" would error out when it ran into the @distfile line when I was working on this. This is why I had to make the change to pkg_create. > > I'm going to make it ignore the -F flag when there are no recorded > > distfiles (and document this fact in the manpage). > > Good change. I'd like to finalize how it should look in +CONTENTS before I make this change, but it will get done eventually. :) One way I was exploring is adding @comment DISTFILE:$filename:$size:$md5:$sha256 into the generated plist. This way we shouldn't have to change pkg_create and only modify pkg_info and other tools. I haven't tested this fully but it was just a fairly easy and concise way that I believe will work. By adding it to +CONTENTS using some type of @comment line we can avoid changing pkg_create and make for easier adoption. The only changes that will need to be made will be to those programs which process +CONTENTS directly, and even those modifications will be minimal. For now I'm going with the line above until suggested otherwise. :) I should have a patch ready in a day or two (time is a bit tight right now). -- WXS From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 20:20:41 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA67716A415 for ; Tue, 5 Dec 2006 20:20:41 +0000 (UTC) (envelope-from probsdorg@yahoo.com) Received: from web52404.mail.yahoo.com (web52404.mail.yahoo.com [206.190.48.167]) by mx1.FreeBSD.org (Postfix) with SMTP id B45CC43CC7 for ; Tue, 5 Dec 2006 20:19:47 +0000 (GMT) (envelope-from probsdorg@yahoo.com) Received: (qmail 54884 invoked by uid 60001); 5 Dec 2006 20:20:27 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=X-YMail-OSG:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding:Message-ID; b=lIqQcQmd6TVh8m9A1zziZaohbPABLFjte8zFcRZPMSBMUuipUzVC6bPjhPT0VeWVt0c0y7AaAN9iMHv2sHtF21lHQLkGWBXsPR1HIt0/AJ7edfPezyNdDpbfqhe34ln+4i3dvsFPkbbwcDQN2/JOGCaG8YIiJydEj9whIX5ukMk=; X-YMail-OSG: gat.t_UVM1m69JNPATndRoeMM_oDACPOWbaLEd3h78DpO.MhCjewjQ5JmDtUeGzkG9iYZQWeAABbNx_F9NSqXjRigHE_SJC4ukffEB2iwLTyhAL06V.JSnm320afKx6._c9PTKUuGggvaTs- Received: from [208.180.144.84] by web52404.mail.yahoo.com via HTTP; Tue, 05 Dec 2006 12:20:27 PST Date: Tue, 5 Dec 2006 12:20:27 -0800 (PST) From: probsd org To: ports@freebsd.org MIME-Version: 1.0 Message-ID: <281073.54306.qm@web52404.mail.yahoo.com> Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: devel/m4 - build fail on 4.11-STABLE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 20:20:41 -0000 Script started on Tue Dec 5 15:14:58 2006 makayla# portupgrade -rR m4 ---> Upgrading 'm4-1.4.4' to 'm4-1.4.8_1' (devel/m4) ---> Building '/usr/ports/devel/m4' ===> Cleaning for m4-1.4.8_1 ===> Vulnerability check disabled, database not found ===> Extracting for m4-1.4.8_1 => MD5 Checksum OK for m4-1.4.8.tar.bz2. ===> Patching for m4-1.4.8_1 ===> Applying FreeBSD patches for m4-1.4.8_1 ===> Configuring for m4-1.4.8_1 configure: WARNING: you should use --build, --host, --target checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether make sets $(MAKE)... yes checking build system type... i386-portbld-freebsd4.11 checking host system type... i386-portbld-freebsd4.11 checking for i386-portbld-freebsd4.11-gcc... cc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of cc... gcc checking for i386-portbld-freebsd4.11-ranlib... no checking for ranlib... ranlib checking how to run the C preprocessor... cc -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for AIX... no checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... no checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking siginfo.h usability... no checking siginfo.h presence... no checking for siginfo.h... no checking sys/wait.h usability... yes checking sys/wait.h presence... yes checking for sys/wait.h... yes checking for unistd.h... (cached) yes checking stdio_ext.h usability... no checking stdio_ext.h presence... no checking for stdio_ext.h... no checking wchar.h usability... yes checking wchar.h presence... yes checking for wchar.h... yes checking wctype.h usability... yes checking wctype.h presence... yes checking for wctype.h... yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for stdint.h... (cached) no checking for sys/stat.h... (cached) yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking for siginfo_t... yes checking for struct sigaction.sa_sigaction... yes checking return type of signal handlers... void checking for size_t... yes checking for sigaction... yes checking for sigaltstack... yes checking for sigstack... no checking for sigvec... yes checking for strerror... yes checking for raise... yes checking for iswprint... no checking for mbsinit... no checking for mbrtowc... no checking for mempcpy... no checking for wcrtomb... no checking for wcscoll... no checking for lstat... yes checking for gettimeofday... yes checking for pipe... yes checking for wcwidth... no checking for working alloca.h... no checking for alloca... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for long long int... yes checking for long double... yes checking whether strerror_r is declared... yes checking for strerror_r... yes checking whether strerror_r returns char *... no checking for sig_atomic_t... yes checking getopt.h usability... no checking getopt.h presence... no checking for getopt.h... no checking whether getenv is declared... yes checking for inline... inline checking for mbstate_t... yes checking whether mbrtowc and mbstate_t are properly declared... no checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for C/C++ restrict keyword... __restrict checking for nl_langinfo and CODESET... yes checking for stdbool.h that conforms to C99... no checking for _Bool... no checking for unsigned long long int... yes checking whether stat file-mode macros are broken... no checking whether clearerr_unlocked is declared... yes checking whether feof_unlocked is declared... yes checking whether ferror_unlocked is declared... yes checking whether fflush_unlocked is declared... no checking whether fgets_unlocked is declared... no checking whether fputc_unlocked is declared... no checking whether fputs_unlocked is declared... no checking whether fread_unlocked is declared... no checking whether fwrite_unlocked is declared... no checking whether getc_unlocked is declared... yes checking whether getchar_unlocked is declared... yes checking whether putc_unlocked is declared... yes checking whether putchar_unlocked is declared... yes checking for EOVERFLOW... yes checking for wchar_t... yes checking for wint_t... yes checking for inttypes.h... no checking for stdint.h... no checking for intmax_t... no checking for error_at_line... no checking for sigaction... (cached) yes checking for __fpending... no checking whether __fpending is declared... no checking how to determine the number of pending output bytes on a stream... fp->_p - fp->_bf._base checking whether free (NULL) is known to work... yes checking whether the compiler generally respects inline... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... (cached) yes checking for iswcntrl... no checking for memchr... yes checking for mkdtemp... yes checking for working mkstemp... yes checking for obstacks... no checking for mbstate_t... (cached) yes checking whether mbrtowc and mbstate_t are properly declared... (cached) no checking for working re_compile_pattern... no checking whether isblank is declared... yes checking for sigprocmask... yes checking for stdint.h... (cached) no checking for SIZE_MAX... (((1U << 31) - 1) * 2 + 1) checking for ssize_t... yes checking for va_copy... no checking sys/inttypes.h usability... yes checking sys/inttypes.h presence... yes checking for sys/inttypes.h... yes checking sys/bitypes.h usability... no checking sys/bitypes.h presence... no checking for sys/bitypes.h... no checking for bit size of ptrdiff_t... 32 checking for bit size of sig_atomic_t... 32 checking for bit size of size_t... 32 checking for bit size of wchar_t... 32 checking for bit size of wint_t... 32 checking whether sig_atomic_t is signed... yes checking whether wchar_t is signed... yes checking whether wint_t is signed... yes checking for ptrdiff_t integer literal suffix... checking for sig_atomic_t integer literal suffix... checking for size_t integer literal suffix... u checking for wchar_t integer literal suffix... checking for wint_t integer literal suffix... checking for strncasecmp... yes checking whether strncasecmp is declared... yes checking for strtol... yes checking whether mkdir is declared... yes checking absolute name of ... ///usr/include/sys/stat.h checking for __secure_getenv... no checking for unistd.h... (cached) yes checking for vasnprintf... no checking for ptrdiff_t... yes checking for snprintf... yes checking for wcslen... yes checking for vasprintf... yes checking whether wcwidth is declared... no checking for stdint.h... (cached) no checking if stack overflow is detectable... yes checking for rlim_t... no checking for stack_t... yes checking for sigcontext... no checking if system() agrees with pclose()... yes checking if changeword is wanted... no checking if malloc debugging is wanted... no configure: creating ./config.status config.status: creating Makefile config.status: creating doc/Makefile config.status: creating lib/Makefile config.status: creating src/Makefile config.status: creating checks/Makefile config.status: creating examples/Makefile config.status: creating lib/config.h config.status: executing depfiles commands config.status: executing stamp-h commands ===> Building for m4-1.4.8_1 Making all in . Making all in examples Making all in lib { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; cat ./alloca_.h; } > alloca.h-t mv -f alloca.h-t alloca.h { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; cat ./getopt_.h; } > getopt.h-t mv -f getopt.h-t getopt.h rm -f stdbool.h-t stdbool.h { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; sed -e 's/@''HAVE__BOOL''@/0/g' < ./stdbool_.h; } > stdbool.h-t mv stdbool.h-t stdbool.h rm -f stdint.h-t stdint.h { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; sed -e 's/@''HAVE_WCHAR_H''@/1/g' -e 's/@''HAVE_STDINT_H''@/0/g' -e 's|@''ABSOLUTE_STDINT_H''@|"no/such/file/stdint.h"|g' -e 's/@''HAVE_SYS_TYPES_H''@/1/g' -e 's/@''HAVE_INTTYPES_H''@/1/g' -e 's/@''HAVE_SYS_INTTYPES_H''@/1/g' -e 's/@''HAVE_SYS_BITYPES_H''@/0/g' -e 's/@''HAVE_LONG_LONG_INT''@/1/g' -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/1/g' -e 's/@''BITSIZEOF_PTRDIFF_T''@/32/g' -e 's/@''PTRDIFF_T_SUFFIX''@//g' -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/32/g' -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/1/g' -e 's/@''SIG_ATOMIC_T_SUFFIX''@//g' -e 's/@''BITSIZEOF_SIZE_T''@/32/g' -e 's/@''SIZE_T_SUFFIX''@/u/g' -e 's/@''BITSIZEOF_WCHAR_T''@/32/g' -e 's/@''HAVE_SIGNED_WCHAR_T''@/1/g' -e 's/@''WCHAR_T_SUFFIX''@//g' -e 's/@''BITSIZEOF_WINT_T''@/32/g' -e 's/@''HAVE_SIGNED_WINT_T''@/1/g' -e 's/@''WINT_T_SUFFIX''@//g' < ./stdint_.h; } > stdint.h-t mv stdint.h-t stdint.h test -d sys || mkdir sys rm -f sys/stat.h-t sys/stat.h { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; sed -e 's|@''ABSOLUTE_SYS_STAT_H''@|"///usr/include/sys/stat.h"|g' < ./stat_.h; } > sys/stat.h-t mv sys/stat.h-t sys/stat.h make all-am source='allocsa.c' object='allocsa.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c allocsa.c source='gl_avltree_oset.c' object='gl_avltree_oset.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c gl_avltree_oset.c source='clean-temp.c' object='clean-temp.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c clean-temp.c In file included from clean-temp.h:24, from clean-temp.c:23: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='fatal-signal.c' object='fatal-signal.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c fatal-signal.c In file included from /usr/include/sys/time.h:40, from /usr/include/signal.h:45, from fatal-signal.c:27: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='gl_linkedhash_list.c' object='gl_linkedhash_list.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c gl_linkedhash_list.c In file included from stdint.h:57, from gl_linkedhash_list.c:24: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='gl_list.c' object='gl_list.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c gl_list.c source='gl_oset.c' object='gl_oset.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c gl_oset.c source='strnlen1.c' object='strnlen1.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c strnlen1.c source='tmpdir.c' object='tmpdir.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c tmpdir.c In file included from /usr/include/sys/time.h:40, from /usr/include/sys/stat.h:50, from sys/stat.h:27, from tmpdir.c:39: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='verror.c' object='verror.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c verror.c source='xalloc-die.c' object='xalloc-die.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c xalloc-die.c source='xallocsa.c' object='xallocsa.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c xallocsa.c source='xvasprintf.c' object='xvasprintf.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c xvasprintf.c source='xasprintf.c' object='xasprintf.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c xasprintf.c source='__fpending.c' object='__fpending.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c __fpending.c source='asnprintf.c' object='asnprintf.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c asnprintf.c source='cloexec.c' object='cloexec.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c cloexec.c In file included from /usr/include/unistd.h:41, from cloexec.c:25: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='close-stream.c' object='close-stream.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c close-stream.c source='closeout.c' object='closeout.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c closeout.c In file included from /usr/include/unistd.h:41, from closeout.c:26: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='dup-safer.c' object='dup-safer.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c dup-safer.c In file included from /usr/include/fcntl.h:52, from dup-safer.c:25: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='error.c' object='error.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c error.c source='exitfail.c' object='exitfail.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c exitfail.c source='fd-safer.c' object='fd-safer.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c fd-safer.c In file included from /usr/include/unistd.h:41, from fd-safer.c:27: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='fopen-safer.c' object='fopen-safer.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c fopen-safer.c In file included from /usr/include/unistd.h:41, from fopen-safer.c:26: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='getopt.c' object='getopt.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c getopt.c In file included from /usr/include/unistd.h:41, from getopt.h:38, from getopt.c:27: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='getopt1.c' object='getopt1.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c getopt1.c In file included from /usr/include/unistd.h:41, from getopt.h:38, from getopt1.c:24: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='mbchar.c' object='mbchar.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c mbchar.c source='mkstemp-safer.c' object='mkstemp-safer.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c mkstemp-safer.c In file included from /usr/include/unistd.h:41, from mkstemp.h:22, from mkstemp-safer.c:25: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='obstack.c' object='obstack.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c obstack.c In file included from stdint.h:57, from obstack.c:55: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='pipe-safer.c' object='pipe-safer.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c pipe-safer.c In file included from /usr/include/unistd.h:41, from pipe-safer.c:24: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='printf-args.c' object='printf-args.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c printf-args.c source='printf-parse.c' object='printf-parse.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c printf-parse.c source='quotearg.c' object='quotearg.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c quotearg.c source='regex.c' object='regex.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c regex.c In file included from regex.h:24, from regex.c:57: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='strcasecmp.c' object='strcasecmp.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c strcasecmp.c source='strstr.c' object='strstr.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c strstr.c source='tempname.c' object='tempname.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c tempname.c In file included from tempname.c:27: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='vasnprintf.c' object='vasnprintf.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c vasnprintf.c source='xmalloc.c' object='xmalloc.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c xmalloc.c rm -f libm4.a ar cru libm4.a allocsa.o gl_avltree_oset.o clean-temp.o fatal-signal.o gl_linkedhash_list.o gl_list.o gl_oset.o strnlen1.o tmpdir.o verror.o xalloc-die.o xallocsa.o xvasprintf.o xasprintf.o __fpending.o asnprintf.o cloexec.o close-stream.o closeout.o dup-safer.o error.o exitfail.o fd-safer.o fopen-safer.o getopt.o getopt1.o mbchar.o mkstemp-safer.o obstack.o pipe-safer.o printf-args.o printf-parse.o quotearg.o regex.o strcasecmp.o strstr.o tempname.o vasnprintf.o xmalloc.o ranlib libm4.a Making all in src source='m4.c' object='m4.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c m4.c In file included from m4.h:32, from m4.c:22: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from m4.c:22: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='builtin.c' object='builtin.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c builtin.c In file included from m4.h:32, from builtin.c:25: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from builtin.c:25: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='debug.c' object='debug.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c debug.c In file included from m4.h:32, from debug.c:22: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from debug.c:22: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='eval.c' object='eval.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c eval.c In file included from m4.h:32, from eval.c:28: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from eval.c:28: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='format.c' object='format.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c format.c In file included from m4.h:32, from format.c:24: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from format.c:24: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='freeze.c' object='freeze.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c freeze.c In file included from m4.h:32, from freeze.c:24: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from freeze.c:24: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='input.c' object='input.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c input.c In file included from m4.h:32, from input.c:24: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from input.c:24: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type input.c:90: warning: `end' is narrower than values of its type input.c:91: warning: `close' is narrower than values of its type input.c:92: warning: `advance_line' is narrower than values of its type source='macro.c' object='macro.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c macro.c In file included from m4.h:32, from macro.c:25: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from macro.c:25: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='output.c' object='output.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c output.c In file included from m4.h:32, from output.c:22: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from output.c:22: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='path.c' object='path.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c path.c In file included from m4.h:32, from path.c:25: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from path.c:25: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='symtab.c' object='symtab.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c symtab.c In file included from m4.h:32, from symtab.c:34: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from symtab.c:34: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='stackovf.c' object='stackovf.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c stackovf.c In file included from m4.h:32, from stackovf.c:78: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from stackovf.c:78: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type cc -O -pipe -march=pentiumpro -o m4 m4.o builtin.o debug.o eval.o format.o freeze.o input.o macro.o output.o path.o symtab.o stackovf.o ../lib/libm4.a Making all in doc Updating ./version.texi restore=: && backupdir=".am$$" && am__cwd=`pwd` && cd . && rm -rf $backupdir && mkdir $backupdir && if (/bin/sh /usr/ports/devel/m4/work/m4-1.4.8/missing --run makeinfo --no-split --version) >/dev/null 2>&1; then for f in ./m4.info ./m4.info-[0-9] ./m4.info-[0-9][0-9] ./m4.i[0-9] ./m4.i[0-9][0-9]; do if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; done; else :; fi && cd "$am__cwd"; if /bin/sh /usr/ports/devel/m4/work/m4-1.4.8/missing --run makeinfo --no-split -I . -o ./m4.info ./m4.texinfo; then rc=0; cd .; else rc=$?; cd . && $restore $backupdir/* `echo "././m4.info" | sed 's|[^/]*$||'`; fi; rm -rf $backupdir; exit $rc ./m4.texinfo:451: Unknown command `'. ./m4.texinfo:1999: Unknown command `'. ./m4.texinfo:2001: Unknown command `'. makeinfo: Removing output file `./m4.info' due to errors; use --force to preserve. *** Error code 1 Stop in /usr/ports/devel/m4/work/m4-1.4.8/doc. *** Error code 1 Stop in /usr/ports/devel/m4/work/m4-1.4.8. *** Error code 1 Stop in /usr/ports/devel/m4. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.23982.0 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=m4-1.4.4 UPGRADE_PORT_VER=1.4.4 make ** Fix the problem and try again. ---> Skipping 'devel/autoconf213' (autoconf-2.13.000227_5) because a requisite package 'm4-1.4.4' (devel/m4) failed (specify -k to force) ---> Skipping 'devel/automake14' (automake-1.4.6_2) because a requisite package 'autoconf-2.13.000227_5' (devel/autoconf213) failed (specify -k to force) ---> Skipping 'devel/bison' (bison-1.75_2,1) because a requisite package 'm4-1.4.4' (devel/m4) failed (specify -k to force) ---> Skipping 'devel/autoconf253' (autoconf-2.53_3) because a requisite package 'm4-1.4.4' (devel/m4) failed (specify -k to force) ---> Skipping 'devel/autoconf259' (autoconf-2.59_2) because a requisite package 'm4-1.4.4' (devel/m4) failed (specify -k to force) ---> Skipping 'devel/automake19' (automake-1.9.6) because a requisite package 'm4-1.4.4' (devel/m4) failed (specify -k to force) ** Listing the failed packages (*:skipped / !:failed) ! devel/m4 (m4-1.4.4) (texinfo error) * devel/autoconf213 (autoconf-2.13.000227_5) * devel/automake14 (automake-1.4.6_2) * devel/bison (bison-1.75_2,1) * devel/autoconf253 (autoconf-2.53_3) * devel/autoconf259 (autoconf-2.59_2) * devel/automake19 (automake-1.9.6) ---> Packages processed: 0 done, 0 ignored, 6 skipped and 1 failed makayla# ^Dexit Script done on Tue Dec 5 15:15:41 2006 --------------------------------- Check out the all-new Yahoo! Mail beta - Fire up a more powerful email and get things done faster. From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 20:24:40 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 33EC816A40F for ; Tue, 5 Dec 2006 20:24:40 +0000 (UTC) (envelope-from probsdorg@yahoo.com) Received: from web52409.mail.yahoo.com (web52409.mail.yahoo.com [206.190.48.172]) by mx1.FreeBSD.org (Postfix) with SMTP id E38EE43CB0 for ; Tue, 5 Dec 2006 20:23:43 +0000 (GMT) (envelope-from probsdorg@yahoo.com) Received: (qmail 20738 invoked by uid 60001); 5 Dec 2006 20:24:17 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=d6qiPvbgw3E65wVLUkhcJyd/38XmMrqJtWFdEpf2iZCxPWQmM9TWjJ3RonyVohIBotQ4A+NYtmPREbMc8W74utuZZkuq72WLycLh6VExwe5j+GiBrcZPKl4iQOUgr1A1dOP2sKktOk1HytJdHBOcoIyuYJ7X1FAtlEhbhjGkXo0= ; Message-ID: <20061205202417.20736.qmail@web52409.mail.yahoo.com> X-YMail-OSG: 6MGkekAVM1l9jYSJl7mfag97X7oNBGJpQNAEKH4Nbv8P1A6PPIyivi2ZnFtytVHf2qQOVl8uF5efYMaxFi98_ldRWH7jxqoeFBnYUQ_2Vgd7RVPj346dVh4Hkz0ZRtXCoySS9tfYEr6BIPQ- Received: from [208.180.144.84] by web52409.mail.yahoo.com via HTTP; Tue, 05 Dec 2006 12:24:17 PST Date: Tue, 5 Dec 2006 12:24:17 -0800 (PST) From: probsd org To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: devel/m4 - build fail on 4.11-STABLE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 20:24:40 -0000 Script started on Tue Dec 5 15:14:58 2006 makayla# portupgrade -rR m4 ---> Upgrading 'm4-1.4.4' to 'm4-1.4.8_1' (devel/m4) ---> Building '/usr/ports/devel/m4' ===> Cleaning for m4-1.4.8_1 ===> Vulnerability check disabled, database not found ===> Extracting for m4-1.4.8_1 => MD5 Checksum OK for m4-1.4.8.tar.bz2. ===> Patching for m4-1.4.8_1 ===> Applying FreeBSD patches for m4-1.4.8_1 ===> Configuring for m4-1.4.8_1 configure: WARNING: you should use --build, --host, --target checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether make sets $(MAKE)... yes checking build system type... i386-portbld-freebsd4.11 checking host system type... i386-portbld-freebsd4.11 checking for i386-portbld-freebsd4.11-gcc... cc checking for C compiler default output file name... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ISO C89... none needed checking for style of include used by make... GNU checking dependency style of cc... gcc checking for i386-portbld-freebsd4.11-ranlib... no checking for ranlib... ranlib checking how to run the C preprocessor... cc -E checking for grep that handles long lines and -e... /usr/bin/grep checking for egrep... /usr/bin/grep -E checking for AIX... no checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... no checking for unistd.h... yes checking minix/config.h usability... no checking minix/config.h presence... no checking for minix/config.h... no checking whether it is safe to define __EXTENSIONS__... yes checking limits.h usability... yes checking limits.h presence... yes checking for limits.h... yes checking siginfo.h usability... no checking siginfo.h presence... no checking for siginfo.h... no checking sys/wait.h usability... yes checking sys/wait.h presence... yes checking for sys/wait.h... yes checking for unistd.h... (cached) yes checking stdio_ext.h usability... no checking stdio_ext.h presence... no checking for stdio_ext.h... no checking wchar.h usability... yes checking wchar.h presence... yes checking for wchar.h... yes checking wctype.h usability... yes checking wctype.h presence... yes checking for wctype.h... yes checking sys/param.h usability... yes checking sys/param.h presence... yes checking for sys/param.h... yes checking locale.h usability... yes checking locale.h presence... yes checking for locale.h... yes checking for stdint.h... (cached) no checking for sys/stat.h... (cached) yes checking sys/time.h usability... yes checking sys/time.h presence... yes checking for sys/time.h... yes checking for siginfo_t... yes checking for struct sigaction.sa_sigaction... yes checking return type of signal handlers... void checking for size_t... yes checking for sigaction... yes checking for sigaltstack... yes checking for sigstack... no checking for sigvec... yes checking for strerror... yes checking for raise... yes checking for iswprint... no checking for mbsinit... no checking for mbrtowc... no checking for mempcpy... no checking for wcrtomb... no checking for wcscoll... no checking for lstat... yes checking for gettimeofday... yes checking for pipe... yes checking for wcwidth... no checking for working alloca.h... no checking for alloca... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... yes checking for long long int... yes checking for long double... yes checking whether strerror_r is declared... yes checking for strerror_r... yes checking whether strerror_r returns char *... no checking for sig_atomic_t... yes checking getopt.h usability... no checking getopt.h presence... no checking for getopt.h... no checking whether getenv is declared... yes checking for inline... inline checking for mbstate_t... yes checking whether mbrtowc and mbstate_t are properly declared... no checking for special C compiler options needed for large files... no checking for _FILE_OFFSET_BITS value needed for large files... no checking for C/C++ restrict keyword... __restrict checking for nl_langinfo and CODESET... yes checking for stdbool.h that conforms to C99... no checking for _Bool... no checking for unsigned long long int... yes checking whether stat file-mode macros are broken... no checking whether clearerr_unlocked is declared... yes checking whether feof_unlocked is declared... yes checking whether ferror_unlocked is declared... yes checking whether fflush_unlocked is declared... no checking whether fgets_unlocked is declared... no checking whether fputc_unlocked is declared... no checking whether fputs_unlocked is declared... no checking whether fread_unlocked is declared... no checking whether fwrite_unlocked is declared... no checking whether getc_unlocked is declared... yes checking whether getchar_unlocked is declared... yes checking whether putc_unlocked is declared... yes checking whether putchar_unlocked is declared... yes checking for EOVERFLOW... yes checking for wchar_t... yes checking for wint_t... yes checking for inttypes.h... no checking for stdint.h... no checking for intmax_t... no checking for error_at_line... no checking for sigaction... (cached) yes checking for __fpending... no checking whether __fpending is declared... no checking how to determine the number of pending output bytes on a stream... fp->_p - fp->_bf._base checking whether free (NULL) is known to work... yes checking whether the compiler generally respects inline... yes checking for stdlib.h... (cached) yes checking for GNU libc compatible malloc... (cached) yes checking for iswcntrl... no checking for memchr... yes checking for mkdtemp... yes checking for working mkstemp... yes checking for obstacks... no checking for mbstate_t... (cached) yes checking whether mbrtowc and mbstate_t are properly declared... (cached) no checking for working re_compile_pattern... no checking whether isblank is declared... yes checking for sigprocmask... yes checking for stdint.h... (cached) no checking for SIZE_MAX... (((1U << 31) - 1) * 2 + 1) checking for ssize_t... yes checking for va_copy... no checking sys/inttypes.h usability... yes checking sys/inttypes.h presence... yes checking for sys/inttypes.h... yes checking sys/bitypes.h usability... no checking sys/bitypes.h presence... no checking for sys/bitypes.h... no checking for bit size of ptrdiff_t... 32 checking for bit size of sig_atomic_t... 32 checking for bit size of size_t... 32 checking for bit size of wchar_t... 32 checking for bit size of wint_t... 32 checking whether sig_atomic_t is signed... yes checking whether wchar_t is signed... yes checking whether wint_t is signed... yes checking for ptrdiff_t integer literal suffix... checking for sig_atomic_t integer literal suffix... checking for size_t integer literal suffix... u checking for wchar_t integer literal suffix... checking for wint_t integer literal suffix... checking for strncasecmp... yes checking whether strncasecmp is declared... yes checking for strtol... yes checking whether mkdir is declared... yes checking absolute name of ... ///usr/include/sys/stat.h checking for __secure_getenv... no checking for unistd.h... (cached) yes checking for vasnprintf... no checking for ptrdiff_t... yes checking for snprintf... yes checking for wcslen... yes checking for vasprintf... yes checking whether wcwidth is declared... no checking for stdint.h... (cached) no checking if stack overflow is detectable... yes checking for rlim_t... no checking for stack_t... yes checking for sigcontext... no checking if system() agrees with pclose()... yes checking if changeword is wanted... no checking if malloc debugging is wanted... no configure: creating ./config.status config.status: creating Makefile config.status: creating doc/Makefile config.status: creating lib/Makefile config.status: creating src/Makefile config.status: creating checks/Makefile config.status: creating examples/Makefile config.status: creating lib/config.h config.status: executing depfiles commands config.status: executing stamp-h commands ===> Building for m4-1.4.8_1 Making all in . Making all in examples Making all in lib { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; cat ./alloca_.h; } > alloca.h-t mv -f alloca.h-t alloca.h { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; cat ./getopt_.h; } > getopt.h-t mv -f getopt.h-t getopt.h rm -f stdbool.h-t stdbool.h { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; sed -e 's/@''HAVE__BOOL''@/0/g' < ./stdbool_.h; } > stdbool.h-t mv stdbool.h-t stdbool.h rm -f stdint.h-t stdint.h { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; sed -e 's/@''HAVE_WCHAR_H''@/1/g' -e 's/@''HAVE_STDINT_H''@/0/g' -e 's|@''ABSOLUTE_STDINT_H''@|"no/such/file/stdint.h"|g' -e 's/@''HAVE_SYS_TYPES_H''@/1/g' -e 's/@''HAVE_INTTYPES_H''@/1/g' -e 's/@''HAVE_SYS_INTTYPES_H''@/1/g' -e 's/@''HAVE_SYS_BITYPES_H''@/0/g' -e 's/@''HAVE_LONG_LONG_INT''@/1/g' -e 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/1/g' -e 's/@''BITSIZEOF_PTRDIFF_T''@/32/g' -e 's/@''PTRDIFF_T_SUFFIX''@//g' -e 's/@''BITSIZEOF_SIG_ATOMIC_T''@/32/g' -e 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/1/g' -e 's/@''SIG_ATOMIC_T_SUFFIX''@//g' -e 's/@''BITSIZEOF_SIZE_T''@/32/g' -e 's/@''SIZE_T_SUFFIX''@/u/g' -e 's/@''BITSIZEOF_WCHAR_T''@/32/g' -e 's/@''HAVE_SIGNED_WCHAR_T''@/1/g' -e 's/@''WCHAR_T_SUFFIX''@//g' -e 's/@''BITSIZEOF_WINT_T''@/32/g' -e 's/@''HAVE_SIGNED_WINT_T''@/1/g' -e 's/@''WINT_T_SUFFIX''@//g' < ./stdint_.h; } > stdint.h-t mv stdint.h-t stdint.h test -d sys || mkdir sys rm -f sys/stat.h-t sys/stat.h { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; sed -e 's|@''ABSOLUTE_SYS_STAT_H''@|"///usr/include/sys/stat.h"|g' < ./stat_.h; } > sys/stat.h-t mv sys/stat.h-t sys/stat.h make all-am source='allocsa.c' object='allocsa.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c allocsa.c source='gl_avltree_oset.c' object='gl_avltree_oset.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c gl_avltree_oset.c source='clean-temp.c' object='clean-temp.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c clean-temp.c In file included from clean-temp.h:24, from clean-temp.c:23: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='fatal-signal.c' object='fatal-signal.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c fatal-signal.c In file included from /usr/include/sys/time.h:40, from /usr/include/signal.h:45, from fatal-signal.c:27: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='gl_linkedhash_list.c' object='gl_linkedhash_list.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c gl_linkedhash_list.c In file included from stdint.h:57, from gl_linkedhash_list.c:24: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='gl_list.c' object='gl_list.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c gl_list.c source='gl_oset.c' object='gl_oset.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c gl_oset.c source='strnlen1.c' object='strnlen1.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c strnlen1.c source='tmpdir.c' object='tmpdir.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c tmpdir.c In file included from /usr/include/sys/time.h:40, from /usr/include/sys/stat.h:50, from sys/stat.h:27, from tmpdir.c:39: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='verror.c' object='verror.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c verror.c source='xalloc-die.c' object='xalloc-die.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c xalloc-die.c source='xallocsa.c' object='xallocsa.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c xallocsa.c source='xvasprintf.c' object='xvasprintf.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c xvasprintf.c source='xasprintf.c' object='xasprintf.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c xasprintf.c source='__fpending.c' object='__fpending.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c __fpending.c source='asnprintf.c' object='asnprintf.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c asnprintf.c source='cloexec.c' object='cloexec.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c cloexec.c In file included from /usr/include/unistd.h:41, from cloexec.c:25: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='close-stream.c' object='close-stream.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c close-stream.c source='closeout.c' object='closeout.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c closeout.c In file included from /usr/include/unistd.h:41, from closeout.c:26: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='dup-safer.c' object='dup-safer.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c dup-safer.c In file included from /usr/include/fcntl.h:52, from dup-safer.c:25: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='error.c' object='error.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c error.c source='exitfail.c' object='exitfail.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c exitfail.c source='fd-safer.c' object='fd-safer.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c fd-safer.c In file included from /usr/include/unistd.h:41, from fd-safer.c:27: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='fopen-safer.c' object='fopen-safer.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c fopen-safer.c In file included from /usr/include/unistd.h:41, from fopen-safer.c:26: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='getopt.c' object='getopt.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c getopt.c In file included from /usr/include/unistd.h:41, from getopt.h:38, from getopt.c:27: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='getopt1.c' object='getopt1.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c getopt1.c In file included from /usr/include/unistd.h:41, from getopt.h:38, from getopt1.c:24: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='mbchar.c' object='mbchar.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c mbchar.c source='mkstemp-safer.c' object='mkstemp-safer.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c mkstemp-safer.c In file included from /usr/include/unistd.h:41, from mkstemp.h:22, from mkstemp-safer.c:25: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='obstack.c' object='obstack.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c obstack.c In file included from stdint.h:57, from obstack.c:55: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='pipe-safer.c' object='pipe-safer.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c pipe-safer.c In file included from /usr/include/unistd.h:41, from pipe-safer.c:24: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='printf-args.c' object='printf-args.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c printf-args.c source='printf-parse.c' object='printf-parse.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c printf-parse.c source='quotearg.c' object='quotearg.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c quotearg.c source='regex.c' object='regex.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c regex.c In file included from regex.h:24, from regex.c:57: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='strcasecmp.c' object='strcasecmp.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c strcasecmp.c source='strstr.c' object='strstr.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c strstr.c source='tempname.c' object='tempname.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c tempname.c In file included from tempname.c:27: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration source='vasnprintf.c' object='vasnprintf.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c vasnprintf.c source='xmalloc.c' object='xmalloc.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c xmalloc.c rm -f libm4.a ar cru libm4.a allocsa.o gl_avltree_oset.o clean-temp.o fatal-signal.o gl_linkedhash_list.o gl_list.o gl_oset.o strnlen1.o tmpdir.o verror.o xalloc-die.o xallocsa.o xvasprintf.o xasprintf.o __fpending.o asnprintf.o cloexec.o close-stream.o closeout.o dup-safer.o error.o exitfail.o fd-safer.o fopen-safer.o getopt.o getopt1.o mbchar.o mkstemp-safer.o obstack.o pipe-safer.o printf-args.o printf-parse.o quotearg.o regex.o strcasecmp.o strstr.o tempname.o vasnprintf.o xmalloc.o ranlib libm4.a Making all in src source='m4.c' object='m4.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c m4.c In file included from m4.h:32, from m4.c:22: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from m4.c:22: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='builtin.c' object='builtin.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c builtin.c In file included from m4.h:32, from builtin.c:25: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from builtin.c:25: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='debug.c' object='debug.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c debug.c In file included from m4.h:32, from debug.c:22: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from debug.c:22: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='eval.c' object='eval.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c eval.c In file included from m4.h:32, from eval.c:28: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from eval.c:28: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='format.c' object='format.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c format.c In file included from m4.h:32, from format.c:24: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from format.c:24: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='freeze.c' object='freeze.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c freeze.c In file included from m4.h:32, from freeze.c:24: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from freeze.c:24: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='input.c' object='input.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c input.c In file included from m4.h:32, from input.c:24: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from input.c:24: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type input.c:90: warning: `end' is narrower than values of its type input.c:91: warning: `close' is narrower than values of its type input.c:92: warning: `advance_line' is narrower than values of its type source='macro.c' object='macro.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c macro.c In file included from m4.h:32, from macro.c:25: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from macro.c:25: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='output.c' object='output.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c output.c In file included from m4.h:32, from output.c:22: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from output.c:22: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='path.c' object='path.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c path.c In file included from m4.h:32, from path.c:25: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from path.c:25: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='symtab.c' object='symtab.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c symtab.c In file included from m4.h:32, from symtab.c:34: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from symtab.c:34: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type source='stackovf.c' object='stackovf.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c stackovf.c In file included from m4.h:32, from stackovf.c:78: /usr/include/sys/types.h:84: warning: useless keyword or type name in empty declaration /usr/include/sys/types.h:84: warning: empty declaration In file included from stackovf.c:78: m4.h:337: warning: `traced' is narrower than values of its type m4.h:338: warning: `shadowed' is narrower than values of its type m4.h:339: warning: `macro_args' is narrower than values of its type m4.h:340: warning: `blind_no_args' is narrower than values of its type m4.h:341: warning: `deleted' is narrower than values of its type m4.h:383: warning: `gnu_extension' is narrower than values of its type m4.h:384: warning: `groks_macro_args' is narrower than values of its type m4.h:385: warning: `blind_if_no_args' is narrower than values of its type cc -O -pipe -march=pentiumpro -o m4 m4.o builtin.o debug.o eval.o format.o freeze.o input.o macro.o output.o path.o symtab.o stackovf.o ../lib/libm4.a Making all in doc Updating ./version.texi restore=: && backupdir=".am$$" && am__cwd=`pwd` && cd . && rm -rf $backupdir && mkdir $backupdir && if (/bin/sh /usr/ports/devel/m4/work/m4-1.4.8/missing --run makeinfo --no-split --version) >/dev/null 2>&1; then for f in ./m4.info ./m4.info-[0-9] ./m4.info-[0-9][0-9] ./m4.i[0-9] ./m4.i[0-9][0-9]; do if test -f $f; then mv $f $backupdir; restore=mv; else :; fi; done; else :; fi && cd "$am__cwd"; if /bin/sh /usr/ports/devel/m4/work/m4-1.4.8/missing --run makeinfo --no-split -I . -o ./m4.info ./m4.texinfo; then rc=0; cd .; else rc=$?; cd . && $restore $backupdir/* `echo "././m4.info" | sed 's|[^/]*$||'`; fi; rm -rf $backupdir; exit $rc ./m4.texinfo:451: Unknown command `'. ./m4.texinfo:1999: Unknown command `'. ./m4.texinfo:2001: Unknown command `'. makeinfo: Removing output file `./m4.info' due to errors; use --force to preserve. *** Error code 1 Stop in /usr/ports/devel/m4/work/m4-1.4.8/doc. *** Error code 1 Stop in /usr/ports/devel/m4/work/m4-1.4.8. *** Error code 1 Stop in /usr/ports/devel/m4. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.23982.0 env UPGRADE_TOOL=portupgrade UPGRADE_PORT=m4-1.4.4 UPGRADE_PORT_VER=1.4.4 make ** Fix the problem and try again. ---> Skipping 'devel/autoconf213' (autoconf-2.13.000227_5) because a requisite package 'm4-1.4.4' (devel/m4) failed (specify -k to force) ---> Skipping 'devel/automake14' (automake-1.4.6_2) because a requisite package 'autoconf-2.13.000227_5' (devel/autoconf213) failed (specify -k to force) ---> Skipping 'devel/bison' (bison-1.75_2,1) because a requisite package 'm4-1.4.4' (devel/m4) failed (specify -k to force) ---> Skipping 'devel/autoconf253' (autoconf-2.53_3) because a requisite package 'm4-1.4.4' (devel/m4) failed (specify -k to force) ---> Skipping 'devel/autoconf259' (autoconf-2.59_2) because a requisite package 'm4-1.4.4' (devel/m4) failed (specify -k to force) ---> Skipping 'devel/automake19' (automake-1.9.6) because a requisite package 'm4-1.4.4' (devel/m4) failed (specify -k to force) ** Listing the failed packages (*:skipped / !:failed) ! devel/m4 (m4-1.4.4) (texinfo error) * devel/autoconf213 (autoconf-2.13.000227_5) * devel/automake14 (automake-1.4.6_2) * devel/bison (bison-1.75_2,1) * devel/autoconf253 (autoconf-2.53_3) * devel/autoconf259 (autoconf-2.59_2) * devel/automake19 (automake-1.9.6) ---> Packages processed: 0 done, 0 ignored, 6 skipped and 1 failed makayla# ^Dexit Script done on Tue Dec 5 15:15:41 2006 --------------------------------- Check out the all-new Yahoo! Mail beta - Fire up a more powerful email and get things done faster. --------------------------------- Everyone is raving about the all-new Yahoo! Mail beta. From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 20:25:36 2006 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1B2D916A412; Tue, 5 Dec 2006 20:25:36 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9679F43CBD; Tue, 5 Dec 2006 20:24:42 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 9D5371A3C19; Tue, 5 Dec 2006 12:24:44 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 9AC8B5133A; Tue, 5 Dec 2006 15:24:24 -0500 (EST) Date: Tue, 5 Dec 2006 15:24:24 -0500 From: Kris Kennaway To: Dwayne MacKinnon Message-ID: <20061205202424.GA28320@xor.obsecurity.org> References: <188207188481.188481188207@ncf.ca> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Dxnq1zWXvFF0Q93v" Content-Disposition: inline In-Reply-To: <188207188481.188481188207@ncf.ca> User-Agent: Mutt/1.4.2.2i Cc: freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: vim 7.0.168 problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 20:25:36 -0000 --Dxnq1zWXvFF0Q93v Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 05, 2006 at 09:52:25AM -0500, Dwayne MacKinnon wrote: > Hello, >=20 > I ran into an odd compile problem when trying to upgrade to vim 7.0.168 > using the -DWITH_TCL flag. I'm on FreeBSD 6.1-RELEASE-p10 using ccache > and portupgrade. Yes, this problem has existed for a long time but the maintainer says he's been unable to reproduce it. Maybe he can try again with your instructions (the -DWITH_TCL is presumably the relevant part). Kris >=20 > Cheers, > DMK > configure: creating auto/config.status > config.status: creating auto/config.mk > config.status: creating auto/config.h > make -f Makefile all > mkdir objects > CC=3D"cc -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -DXTHREADS -DXUSE_MTSAFE= _API -I/usr/local/include/gtk-2.0 -I/usr/local/lib/gtk-2.0/include -I/usr/l= ocal/include/atk-1.0 -I/usr/local/include/cairo -I/usr/local/include/pango-= 1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/= X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/lo= cal/include -I/usr/X11R6/include -DAPPLLIB_EXP=3D"/usr/local/lib/perl5/5.= 8.8/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -Wdeclaration-after-stat= ement -I/usr/local/include -I/usr/local/lib/perl5/5.8.8/mach/CORE -I/usr/= local/include/tcl8.4 long -I/usr/local/lib/ruby/1.8/i386-freebsd6 " srcdir= =3D. sh ./osdef.sh > cc: long: No such file or directory > cc -c -I. -Iproto -DHAVE_CONFIG_H -DFEAT_GUI_GTK -DXTHREADS -DXUSE_MTSAF= E_API -I/usr/local/include/gtk-2.0 -I/usr/local/lib/gtk-2.0/include -I/usr/= local/include/atk-1.0 -I/usr/local/include/cairo -I/usr/local/include/pango= -1.0 -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr= /X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/l= ocal/include -O -pipe -I/usr/X11R6/include -DAPPLLIB_EXP=3D"/usr/local/l= ib/perl5/5.8.8/BSDPAN" -DHAS_FPSETMASK -DHAS_FLOATINGPOINT_H -Wdeclaration= -after-statement -I/usr/local/include -I/usr/local/lib/perl5/5.8.8/mach/CO= RE -I/usr/local/include/tcl8.4 long -I/usr/local/lib/ruby/1.8/i386-freebsd= 6 -o objects/buffer.o buffer.c > cc: long: No such file or directory > *** Error code 1 >=20 > Stop in /usr/ports/editors/vim/work/vim70/src. > *** Error code 1 >=20 > Stop in /usr/ports/editors/vim/work/vim70/src. > *** Error code 1 >=20 > Stop in /usr/ports/editors/vim. > ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade.606= 82.8 env UPGRADE_TOOL=3Dportupgrade UPGRADE_PORT=3Dvim-gtk2-7.0.94 UPGRADE_= PORT_VER=3D7.0.94 make -DWITH_GTK2 -DWITH_PERL -DWITH_RUBY -DWITH_TCL -DWIT= H_CSCOPE > ** Fix the problem and try again. > ** Listing the failed packages (*:skipped / !:failed) > ! editors/vim (vim-gtk2-7.0.94) (unknown build error) > ---> Packages processed: 0 done, 25 ignored, 0 skipped and 1 failed >=20 > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" --Dxnq1zWXvFF0Q93v Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFddV4Wry0BWjoQKURAiAXAJ9zVUnqpIqh286grdWFgnkxC+HfqgCgs0cT 3sRLPJPzQZibsqskZByKcCk= =2tFJ -----END PGP SIGNATURE----- --Dxnq1zWXvFF0Q93v-- From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 20:29:57 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 48DB016A4C2 for ; Tue, 5 Dec 2006 20:29:57 +0000 (UTC) (envelope-from jack@jarasoft.net) Received: from raats.xs4all.nl (raats.xs4all.nl [80.126.151.47]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31F9743D95 for ; Tue, 5 Dec 2006 20:27:24 +0000 (GMT) (envelope-from jack@jarasoft.net) Received: from raats.xs4all.nl (localhost.jarasoft.net [127.0.0.1]) by raats.xs4all.nl (Postfix) with ESMTP id 95DB31183E; Tue, 5 Dec 2006 21:27:44 +0100 (CET) Received: from jara3 (raats.xs4all.nl [80.126.151.47]) by raats.xs4all.nl (Postfix) with ESMTP id 4507011505; Tue, 5 Dec 2006 21:27:44 +0100 (CET) Message-ID: <001001c718ab$d43473b0$0202fea9@jarasoft.net> From: "Jack Raats" To: "probsd org" , References: <281073.54306.qm@web52404.mail.yahoo.com> Date: Tue, 5 Dec 2006 21:27:47 +0100 Organization: JaRaSoft, Steenbergen, Nederland MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=original Content-Transfer-Encoding: 8bit X-Priority: 1 X-MSMail-Priority: High X-Mailer: Microsoft Outlook Express 6.00.2900.2869 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 X-Virus-Scanned: ClamAV using ClamSMTP on orac.jarasoft.net Cc: Subject: Re: devel/m4 - build fail on 4.11-STABLE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jack Raats List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 20:29:57 -0000 Same problem when installing on FreeBSD 5.5-STABLE. NO problems on FreeBSD 6.2-PRERELEASE ----- Original Message ----- From: "probsd org" To: Sent: Tuesday, December 05, 2006 9:20 PM Subject: devel/m4 - build fail on 4.11-STABLE > Script started on Tue Dec 5 15:14:58 2006 > makayla# portupgrade -rR m4 > ---> Upgrading 'm4-1.4.4' to 'm4-1.4.8_1' (devel/m4) > ---> Building '/usr/ports/devel/m4' > ===> Cleaning for m4-1.4.8_1 > ===> Vulnerability check disabled, database not found > ===> Extracting for m4-1.4.8_1 > => MD5 Checksum OK for m4-1.4.8.tar.bz2. > ===> Patching for m4-1.4.8_1 > ===> Applying FreeBSD patches for m4-1.4.8_1 > ===> Configuring for m4-1.4.8_1 > configure: WARNING: you should use --build, --host, --target > checking for a BSD-compatible install... /usr/bin/install -c -o root -g > wheel > checking whether build environment is sane... yes > checking for a thread-safe mkdir -p... ./install-sh -c -d > checking for gawk... no > checking for mawk... no > checking for nawk... nawk > checking whether make sets $(MAKE)... yes > checking build system type... i386-portbld-freebsd4.11 > checking host system type... i386-portbld-freebsd4.11 > checking for i386-portbld-freebsd4.11-gcc... cc > checking for C compiler default output file name... a.out > checking whether the C compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether cc accepts -g... yes > checking for cc option to accept ISO C89... none needed > checking for style of include used by make... GNU > checking dependency style of cc... gcc > checking for i386-portbld-freebsd4.11-ranlib... no > checking for ranlib... ranlib > checking how to run the C preprocessor... cc -E > checking for grep that handles long lines and -e... /usr/bin/grep > checking for egrep... /usr/bin/grep -E > checking for AIX... no > checking for ANSI C header files... yes > checking for sys/types.h... yes > checking for sys/stat.h... yes > checking for stdlib.h... yes > checking for string.h... yes > checking for memory.h... yes > checking for strings.h... yes > checking for inttypes.h... yes > checking for stdint.h... no > checking for unistd.h... yes > checking minix/config.h usability... no > checking minix/config.h presence... no > checking for minix/config.h... no > checking whether it is safe to define __EXTENSIONS__... yes > checking limits.h usability... yes > checking limits.h presence... yes > checking for limits.h... yes > checking siginfo.h usability... no > checking siginfo.h presence... no > checking for siginfo.h... no > checking sys/wait.h usability... yes > checking sys/wait.h presence... yes > checking for sys/wait.h... yes > checking for unistd.h... (cached) yes > checking stdio_ext.h usability... no > checking stdio_ext.h presence... no > checking for stdio_ext.h... no > checking wchar.h usability... yes > checking wchar.h presence... yes > checking for wchar.h... yes > checking wctype.h usability... yes > checking wctype.h presence... yes > checking for wctype.h... yes > checking sys/param.h usability... yes > checking sys/param.h presence... yes > checking for sys/param.h... yes > checking locale.h usability... yes > checking locale.h presence... yes > checking for locale.h... yes > checking for stdint.h... (cached) no > checking for sys/stat.h... (cached) yes > checking sys/time.h usability... yes > checking sys/time.h presence... yes > checking for sys/time.h... yes > checking for siginfo_t... yes > checking for struct sigaction.sa_sigaction... yes > checking return type of signal handlers... void > checking for size_t... yes > checking for sigaction... yes > checking for sigaltstack... yes > checking for sigstack... no > checking for sigvec... yes > checking for strerror... yes > checking for raise... yes > checking for iswprint... no > checking for mbsinit... no > checking for mbrtowc... no > checking for mempcpy... no > checking for wcrtomb... no > checking for wcscoll... no > checking for lstat... yes > checking for gettimeofday... yes > checking for pipe... yes > checking for wcwidth... no > checking for working alloca.h... no > checking for alloca... yes > checking for stdlib.h... (cached) yes > checking for GNU libc compatible malloc... yes > checking for long long int... yes > checking for long double... yes > checking whether strerror_r is declared... yes > checking for strerror_r... yes > checking whether strerror_r returns char *... no > checking for sig_atomic_t... yes > checking getopt.h usability... no > checking getopt.h presence... no > checking for getopt.h... no > checking whether getenv is declared... yes > checking for inline... inline > checking for mbstate_t... yes > checking whether mbrtowc and mbstate_t are properly declared... no > checking for special C compiler options needed for large files... no > checking for _FILE_OFFSET_BITS value needed for large files... no > checking for C/C++ restrict keyword... __restrict > checking for nl_langinfo and CODESET... yes > checking for stdbool.h that conforms to C99... no > checking for _Bool... no > checking for unsigned long long int... yes > checking whether stat file-mode macros are broken... no > checking whether clearerr_unlocked is declared... yes > checking whether feof_unlocked is declared... yes > checking whether ferror_unlocked is declared... yes > checking whether fflush_unlocked is declared... no > checking whether fgets_unlocked is declared... no > checking whether fputc_unlocked is declared... no > checking whether fputs_unlocked is declared... no > checking whether fread_unlocked is declared... no > checking whether fwrite_unlocked is declared... no > checking whether getc_unlocked is declared... yes > checking whether getchar_unlocked is declared... yes > checking whether putc_unlocked is declared... yes > checking whether putchar_unlocked is declared... yes > checking for EOVERFLOW... yes > checking for wchar_t... yes > checking for wint_t... yes > checking for inttypes.h... no > checking for stdint.h... no > checking for intmax_t... no > checking for error_at_line... no > checking for sigaction... (cached) yes > checking for __fpending... no > checking whether __fpending is declared... no > checking how to determine the number of pending output bytes on a > stream... fp->_p - fp->_bf._base > checking whether free (NULL) is known to work... yes > checking whether the compiler generally respects inline... yes > checking for stdlib.h... (cached) yes > checking for GNU libc compatible malloc... (cached) yes > checking for iswcntrl... no > checking for memchr... yes > checking for mkdtemp... yes > checking for working mkstemp... yes > checking for obstacks... no > checking for mbstate_t... (cached) yes > checking whether mbrtowc and mbstate_t are properly declared... (cached) > no > checking for working re_compile_pattern... no > checking whether isblank is declared... yes > checking for sigprocmask... yes > checking for stdint.h... (cached) no > checking for SIZE_MAX... (((1U << 31) - 1) * 2 + 1) > checking for ssize_t... yes > checking for va_copy... no > checking sys/inttypes.h usability... yes > checking sys/inttypes.h presence... yes > checking for sys/inttypes.h... yes > checking sys/bitypes.h usability... no > checking sys/bitypes.h presence... no > checking for sys/bitypes.h... no > checking for bit size of ptrdiff_t... 32 > checking for bit size of sig_atomic_t... 32 > checking for bit size of size_t... 32 > checking for bit size of wchar_t... 32 > checking for bit size of wint_t... 32 > checking whether sig_atomic_t is signed... yes > checking whether wchar_t is signed... yes > checking whether wint_t is signed... yes > checking for ptrdiff_t integer literal suffix... > checking for sig_atomic_t integer literal suffix... > checking for size_t integer literal suffix... u > checking for wchar_t integer literal suffix... > checking for wint_t integer literal suffix... > checking for strncasecmp... yes > checking whether strncasecmp is declared... yes > checking for strtol... yes > checking whether mkdir is declared... yes > checking absolute name of ... ///usr/include/sys/stat.h > checking for __secure_getenv... no > checking for unistd.h... (cached) yes > checking for vasnprintf... no > checking for ptrdiff_t... yes > checking for snprintf... yes > checking for wcslen... yes > checking for vasprintf... yes > checking whether wcwidth is declared... no > checking for stdint.h... (cached) no > checking if stack overflow is detectable... yes > checking for rlim_t... no > checking for stack_t... yes > checking for sigcontext... no > checking if system() agrees with pclose()... yes > checking if changeword is wanted... no > checking if malloc debugging is wanted... no > configure: creating ./config.status > config.status: creating Makefile > config.status: creating doc/Makefile > config.status: creating lib/Makefile > config.status: creating src/Makefile > config.status: creating checks/Makefile > config.status: creating examples/Makefile > config.status: creating lib/config.h > config.status: executing depfiles commands > config.status: executing stamp-h commands > ===> Building for m4-1.4.8_1 > Making all in . > Making all in examples > Making all in lib > { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; cat ./alloca_.h; } > > alloca.h-t > mv -f alloca.h-t alloca.h > { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; cat ./getopt_.h; } > > getopt.h-t > mv -f getopt.h-t getopt.h > rm -f stdbool.h-t stdbool.h > { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; sed -e > 's/@''HAVE__BOOL''@/0/g' < ./stdbool_.h; } > stdbool.h-t > mv stdbool.h-t stdbool.h > rm -f stdint.h-t stdint.h > { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; sed -e > 's/@''HAVE_WCHAR_H''@/1/g' -e 's/@''HAVE_STDINT_H''@/0/g' -e > 's|@''ABSOLUTE_STDINT_H''@|"no/such/file/stdint.h"|g' -e > 's/@''HAVE_SYS_TYPES_H''@/1/g' -e 's/@''HAVE_INTTYPES_H''@/1/g' -e > 's/@''HAVE_SYS_INTTYPES_H''@/1/g' -e 's/@''HAVE_SYS_BITYPES_H''@/0/g' -e > 's/@''HAVE_LONG_LONG_INT''@/1/g' -e > 's/@''HAVE_UNSIGNED_LONG_LONG_INT''@/1/g' -e > 's/@''BITSIZEOF_PTRDIFF_T''@/32/g' -e 's/@''PTRDIFF_T_SUFFIX''@//g' -e > 's/@''BITSIZEOF_SIG_ATOMIC_T''@/32/g' -e > 's/@''HAVE_SIGNED_SIG_ATOMIC_T''@/1/g' -e > 's/@''SIG_ATOMIC_T_SUFFIX''@//g' -e 's/@''BITSIZEOF_SIZE_T''@/32/g' -e > 's/@''SIZE_T_SUFFIX''@/u/g' -e 's/@''BITSIZEOF_WCHAR_T''@/32/g' -e > 's/@''HAVE_SIGNED_WCHAR_T''@/1/g' -e 's/@''WCHAR_T_SUFFIX''@//g' -e > 's/@''BITSIZEOF_WINT_T''@/32/g' -e 's/@''HAVE_SIGNED_WINT_T''@/1/g' -e > 's/@''WINT_T_SUFFIX''@//g' < ./stdint_.h; } > stdint.h-t > mv stdint.h-t stdint.h > test -d sys || mkdir sys > rm -f sys/stat.h-t sys/stat.h > { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; sed -e > 's|@''ABSOLUTE_SYS_STAT_H''@|"///usr/include/sys/stat.h"|g' < > /stat_.h; } > sys/stat.h-t > mv sys/stat.h-t sys/stat.h > make all-am > source='allocsa.c' object='allocsa.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c allocsa.c > source='gl_avltree_oset.c' object='gl_avltree_oset.o' libtool=no > DEPDIR=.deps depmode=gcc /bin/sh ../depcomp > cc -I. -O -pipe -march=pentiumpro -c gl_avltree_oset.c > source='clean-temp.c' object='clean-temp.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > clean-temp.c > In file included from clean-temp.h:24, > from clean-temp.c:23: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='fatal-signal.c' object='fatal-signal.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > fatal-signal.c > In file included from /usr/include/sys/time.h:40, > from /usr/include/signal.h:45, > from fatal-signal.c:27: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='gl_linkedhash_list.c' object='gl_linkedhash_list.o' libtool=no > DEPDIR=.deps depmode=gcc /bin/sh ../depcomp > cc -I. -O -pipe -march=pentiumpro -c gl_linkedhash_list.c > In file included from stdint.h:57, > from gl_linkedhash_list.c:24: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='gl_list.c' object='gl_list.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c gl_list.c > source='gl_oset.c' object='gl_oset.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c gl_oset.c > source='strnlen1.c' object='strnlen1.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > strnlen1.c > source='tmpdir.c' object='tmpdir.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c tmpdir.c > In file included from /usr/include/sys/time.h:40, > from /usr/include/sys/stat.h:50, > from sys/stat.h:27, > from tmpdir.c:39: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='verror.c' object='verror.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c verror.c > source='xalloc-die.c' object='xalloc-die.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > xalloc-die.c > source='xallocsa.c' object='xallocsa.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > xallocsa.c > source='xvasprintf.c' object='xvasprintf.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > xvasprintf.c > source='xasprintf.c' object='xasprintf.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > xasprintf.c > source='__fpending.c' object='__fpending.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > __fpending.c > source='asnprintf.c' object='asnprintf.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > asnprintf.c > source='cloexec.c' object='cloexec.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c cloexec.c > In file included from /usr/include/unistd.h:41, > from cloexec.c:25: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='close-stream.c' object='close-stream.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > close-stream.c > source='closeout.c' object='closeout.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > closeout.c > In file included from /usr/include/unistd.h:41, > from closeout.c:26: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='dup-safer.c' object='dup-safer.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > dup-safer.c > In file included from /usr/include/fcntl.h:52, > from dup-safer.c:25: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='error.c' object='error.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c error.c > source='exitfail.c' object='exitfail.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > exitfail.c > source='fd-safer.c' object='fd-safer.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > fd-safer.c > In file included from /usr/include/unistd.h:41, > from fd-safer.c:27: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='fopen-safer.c' object='fopen-safer.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > fopen-safer.c > In file included from /usr/include/unistd.h:41, > from fopen-safer.c:26: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='getopt.c' object='getopt.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c getopt.c > In file included from /usr/include/unistd.h:41, > from getopt.h:38, > from getopt.c:27: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='getopt1.c' object='getopt1.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c getopt1.c > In file included from /usr/include/unistd.h:41, > from getopt.h:38, > from getopt1.c:24: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='mbchar.c' object='mbchar.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c mbchar.c > source='mkstemp-safer.c' object='mkstemp-safer.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > mkstemp-safer.c > In file included from /usr/include/unistd.h:41, > from mkstemp.h:22, > from mkstemp-safer.c:25: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='obstack.c' object='obstack.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c obstack.c > In file included from stdint.h:57, > from obstack.c:55: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='pipe-safer.c' object='pipe-safer.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > pipe-safer.c > In file included from /usr/include/unistd.h:41, > from pipe-safer.c:24: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='printf-args.c' object='printf-args.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > printf-args.c > source='printf-parse.c' object='printf-parse.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > printf-parse.c > source='quotearg.c' object='quotearg.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > quotearg.c > source='regex.c' object='regex.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c regex.c > In file included from regex.h:24, > from regex.c:57: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='strcasecmp.c' object='strcasecmp.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > strcasecmp.c > source='strstr.c' object='strstr.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c strstr.c > source='tempname.c' object='tempname.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > tempname.c > In file included from tempname.c:27: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > source='vasnprintf.c' object='vasnprintf.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c > vasnprintf.c > source='xmalloc.c' object='xmalloc.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp cc -I. -O -pipe -march=pentiumpro -c xmalloc.c > rm -f libm4.a > ar cru libm4.a allocsa.o gl_avltree_oset.o clean-temp.o fatal-signal.o > gl_linkedhash_list.o gl_list.o gl_oset.o strnlen1.o tmpdir.o verror.o > xalloc-die.o xallocsa.o xvasprintf.o xasprintf.o __fpending.o asnprintf.o > cloexec.o close-stream.o closeout.o dup-safer.o error.o exitfail.o > fd-safer.o fopen-safer.o getopt.o getopt1.o mbchar.o mkstemp-safer.o > obstack.o pipe-safer.o printf-args.o printf-parse.o quotearg.o regex.o > strcasecmp.o strstr.o tempname.o vasnprintf.o xmalloc.o > ranlib libm4.a > Making all in src > source='m4.c' object='m4.o' libtool=no DEPDIR=.deps depmode=gcc /bin/sh > ../depcomp cc -I../lib -I../lib -O -pipe -march=pentiumpro -c m4.c > In file included from m4.h:32, > from m4.c:22: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > In file included from m4.c:22: > m4.h:337: warning: `traced' is narrower than values of its type > m4.h:338: warning: `shadowed' is narrower than values of its type > m4.h:339: warning: `macro_args' is narrower than values of its type > m4.h:340: warning: `blind_no_args' is narrower than values of its type > m4.h:341: warning: `deleted' is narrower than values of its type > m4.h:383: warning: `gnu_extension' is narrower than values of its type > m4.h:384: warning: `groks_macro_args' is narrower than values of its type > m4.h:385: warning: `blind_if_no_args' is narrower than values of its type > source='builtin.c' object='builtin.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp > cc -I../lib -I../lib -O -pipe -march=pentiumpro -c builtin.c > In file included from m4.h:32, > from builtin.c:25: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > In file included from builtin.c:25: > m4.h:337: warning: `traced' is narrower than values of its type > m4.h:338: warning: `shadowed' is narrower than values of its type > m4.h:339: warning: `macro_args' is narrower than values of its type > m4.h:340: warning: `blind_no_args' is narrower than values of its type > m4.h:341: warning: `deleted' is narrower than values of its type > m4.h:383: warning: `gnu_extension' is narrower than values of its type > m4.h:384: warning: `groks_macro_args' is narrower than values of its type > m4.h:385: warning: `blind_if_no_args' is narrower than values of its type > source='debug.c' object='debug.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp > cc -I../lib -I../lib -O -pipe -march=pentiumpro -c debug.c > In file included from m4.h:32, > from debug.c:22: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > In file included from debug.c:22: > m4.h:337: warning: `traced' is narrower than values of its type > m4.h:338: warning: `shadowed' is narrower than values of its type > m4.h:339: warning: `macro_args' is narrower than values of its type > m4.h:340: warning: `blind_no_args' is narrower than values of its type > m4.h:341: warning: `deleted' is narrower than values of its type > m4.h:383: warning: `gnu_extension' is narrower than values of its type > m4.h:384: warning: `groks_macro_args' is narrower than values of its type > m4.h:385: warning: `blind_if_no_args' is narrower than values of its type > source='eval.c' object='eval.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp > cc -I../lib -I../lib -O -pipe -march=pentiumpro -c eval.c > In file included from m4.h:32, > from eval.c:28: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > In file included from eval.c:28: > m4.h:337: warning: `traced' is narrower than values of its type > m4.h:338: warning: `shadowed' is narrower than values of its type > m4.h:339: warning: `macro_args' is narrower than values of its type > m4.h:340: warning: `blind_no_args' is narrower than values of its type > m4.h:341: warning: `deleted' is narrower than values of its type > m4.h:383: warning: `gnu_extension' is narrower than values of its type > m4.h:384: warning: `groks_macro_args' is narrower than values of its type > m4.h:385: warning: `blind_if_no_args' is narrower than values of its type > source='format.c' object='format.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp > cc -I../lib -I../lib -O -pipe -march=pentiumpro -c format.c > In file included from m4.h:32, > from format.c:24: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > In file included from format.c:24: > m4.h:337: warning: `traced' is narrower than values of its type > m4.h:338: warning: `shadowed' is narrower than values of its type > m4.h:339: warning: `macro_args' is narrower than values of its type > m4.h:340: warning: `blind_no_args' is narrower than values of its type > m4.h:341: warning: `deleted' is narrower than values of its type > m4.h:383: warning: `gnu_extension' is narrower than values of its type > m4.h:384: warning: `groks_macro_args' is narrower than values of its type > m4.h:385: warning: `blind_if_no_args' is narrower than values of its type > source='freeze.c' object='freeze.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp > cc -I../lib -I../lib -O -pipe -march=pentiumpro -c freeze.c > In file included from m4.h:32, > from freeze.c:24: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > In file included from freeze.c:24: > m4.h:337: warning: `traced' is narrower than values of its type > m4.h:338: warning: `shadowed' is narrower than values of its type > m4.h:339: warning: `macro_args' is narrower than values of its type > m4.h:340: warning: `blind_no_args' is narrower than values of its type > m4.h:341: warning: `deleted' is narrower than values of its type > m4.h:383: warning: `gnu_extension' is narrower than values of its type > m4.h:384: warning: `groks_macro_args' is narrower than values of its type > m4.h:385: warning: `blind_if_no_args' is narrower than values of its type > source='input.c' object='input.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp > cc -I../lib -I../lib -O -pipe -march=pentiumpro -c input.c > In file included from m4.h:32, > from input.c:24: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > In file included from input.c:24: > m4.h:337: warning: `traced' is narrower than values of its type > m4.h:338: warning: `shadowed' is narrower than values of its type > m4.h:339: warning: `macro_args' is narrower than values of its type > m4.h:340: warning: `blind_no_args' is narrower than values of its type > m4.h:341: warning: `deleted' is narrower than values of its type > m4.h:383: warning: `gnu_extension' is narrower than values of its type > m4.h:384: warning: `groks_macro_args' is narrower than values of its type > m4.h:385: warning: `blind_if_no_args' is narrower than values of its type > input.c:90: warning: `end' is narrower than values of its type > input.c:91: warning: `close' is narrower than values of its type > input.c:92: warning: `advance_line' is narrower than values of its type > source='macro.c' object='macro.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp > cc -I../lib -I../lib -O -pipe -march=pentiumpro -c macro.c > In file included from m4.h:32, > from macro.c:25: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > In file included from macro.c:25: > m4.h:337: warning: `traced' is narrower than values of its type > m4.h:338: warning: `shadowed' is narrower than values of its type > m4.h:339: warning: `macro_args' is narrower than values of its type > m4.h:340: warning: `blind_no_args' is narrower than values of its type > m4.h:341: warning: `deleted' is narrower than values of its type > m4.h:383: warning: `gnu_extension' is narrower than values of its type > m4.h:384: warning: `groks_macro_args' is narrower than values of its type > m4.h:385: warning: `blind_if_no_args' is narrower than values of its type > source='output.c' object='output.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp > cc -I../lib -I../lib -O -pipe -march=pentiumpro -c output.c > In file included from m4.h:32, > from output.c:22: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > In file included from output.c:22: > m4.h:337: warning: `traced' is narrower than values of its type > m4.h:338: warning: `shadowed' is narrower than values of its type > m4.h:339: warning: `macro_args' is narrower than values of its type > m4.h:340: warning: `blind_no_args' is narrower than values of its type > m4.h:341: warning: `deleted' is narrower than values of its type > m4.h:383: warning: `gnu_extension' is narrower than values of its type > m4.h:384: warning: `groks_macro_args' is narrower than values of its type > m4.h:385: warning: `blind_if_no_args' is narrower than values of its type > source='path.c' object='path.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp > cc -I../lib -I../lib -O -pipe -march=pentiumpro -c path.c > In file included from m4.h:32, > from path.c:25: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > In file included from path.c:25: > m4.h:337: warning: `traced' is narrower than values of its type > m4.h:338: warning: `shadowed' is narrower than values of its type > m4.h:339: warning: `macro_args' is narrower than values of its type > m4.h:340: warning: `blind_no_args' is narrower than values of its type > m4.h:341: warning: `deleted' is narrower than values of its type > m4.h:383: warning: `gnu_extension' is narrower than values of its type > m4.h:384: warning: `groks_macro_args' is narrower than values of its type > m4.h:385: warning: `blind_if_no_args' is narrower than values of its type > source='symtab.c' object='symtab.o' libtool=no DEPDIR=.deps depmode=gcc > /bin/sh ../depcomp > cc -I../lib -I../lib -O -pipe -march=pentiumpro -c symtab.c > In file included from m4.h:32, > from symtab.c:34: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > In file included from symtab.c:34: > m4.h:337: warning: `traced' is narrower than values of its type > m4.h:338: warning: `shadowed' is narrower than values of its type > m4.h:339: warning: `macro_args' is narrower than values of its type > m4.h:340: warning: `blind_no_args' is narrower than values of its type > m4.h:341: warning: `deleted' is narrower than values of its type > m4.h:383: warning: `gnu_extension' is narrower than values of its type > m4.h:384: warning: `groks_macro_args' is narrower than values of its type > m4.h:385: warning: `blind_if_no_args' is narrower than values of its type > source='stackovf.c' object='stackovf.o' libtool=no DEPDIR=.deps > depmode=gcc /bin/sh ../depcomp > cc -I../lib -I../lib -O -pipe -march=pentiumpro -c stackovf.c > In file included from m4.h:32, > from stackovf.c:78: > /usr/include/sys/types.h:84: warning: useless keyword or type name in > empty declaration > /usr/include/sys/types.h:84: warning: empty declaration > In file included from stackovf.c:78: > m4.h:337: warning: `traced' is narrower than values of its type > m4.h:338: warning: `shadowed' is narrower than values of its type > m4.h:339: warning: `macro_args' is narrower than values of its type > m4.h:340: warning: `blind_no_args' is narrower than values of its type > m4.h:341: warning: `deleted' is narrower than values of its type > m4.h:383: warning: `gnu_extension' is narrower than values of its type > m4.h:384: warning: `groks_macro_args' is narrower than values of its type > m4.h:385: warning: `blind_if_no_args' is narrower than values of its type > cc -O -pipe -march=pentiumpro -o m4 m4.o builtin.o debug.o eval.o > format.o freeze.o input.o macro.o output.o path.o symtab.o stackovf.o > ../lib/libm4.a > Making all in doc > Updating ./version.texi > restore=: && backupdir=".am$$" && am__cwd=`pwd` && cd . && rm -rf > $backupdir && mkdir $backupdir && if (/bin/sh > /usr/ports/devel/m4/work/m4-1.4.8/missing --run > makeinfo --no-split --version) >/dev/null 2>&1; then for f in ./m4.info > ./m4.info-[0-9] ./m4.info-[0-9][0-9] ./m4.i[0-9] ./m4.i[0-9][0-9]; do if > test -f $f; then mv $f $backupdir; restore=mv; else :; fi; done; else :; > fi && cd "$am__cwd"; if /bin/sh > /usr/ports/devel/m4/work/m4-1.4.8/missing --run makeinfo --no-split -I > -o ./m4.info ./m4.texinfo; then rc=0; cd .; else rc=$?; cd . && > $restore $backupdir/* `echo "././m4.info" | sed 's|[^/]*$||'`; fi; > rm -rf $backupdir; exit $rc > ./m4.texinfo:451: Unknown command `'. > ./m4.texinfo:1999: Unknown command `'. > ./m4.texinfo:2001: Unknown command `'. > makeinfo: Removing output file `./m4.info' due to errors; use --force to > preserve. > *** Error code 1 > Stop in /usr/ports/devel/m4/work/m4-1.4.8/doc. > *** Error code 1 > Stop in /usr/ports/devel/m4/work/m4-1.4.8. > *** Error code 1 > Stop in /usr/ports/devel/m4. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade.23982.0 env UPGRADE_TOOL=portupgrade > UPGRADE_PORT=m4-1.4.4 UPGRADE_PORT_VER=1.4.4 make > ** Fix the problem and try again. > ---> Skipping 'devel/autoconf213' (autoconf-2.13.000227_5) because a > requisite package 'm4-1.4.4' (devel/m4) failed (specify -k to force) > ---> Skipping 'devel/automake14' (automake-1.4.6_2) because a requisite > package 'autoconf-2.13.000227_5' (devel/autoconf213) failed (specify -k to > force) > ---> Skipping 'devel/bison' (bison-1.75_2,1) because a requisite package > 'm4-1.4.4' (devel/m4) failed (specify -k to force) > ---> Skipping 'devel/autoconf253' (autoconf-2.53_3) because a requisite > package 'm4-1.4.4' (devel/m4) failed (specify -k to force) > ---> Skipping 'devel/autoconf259' (autoconf-2.59_2) because a requisite > package 'm4-1.4.4' (devel/m4) failed (specify -k to force) > ---> Skipping 'devel/automake19' (automake-1.9.6) because a requisite > package 'm4-1.4.4' (devel/m4) failed (specify -k to force) > ** Listing the failed packages (*:skipped / !:failed) > ! devel/m4 (m4-1.4.4) (texinfo error) > * devel/autoconf213 (autoconf-2.13.000227_5) > * devel/automake14 (automake-1.4.6_2) > * devel/bison (bison-1.75_2,1) > * devel/autoconf253 (autoconf-2.53_3) > * devel/autoconf259 (autoconf-2.59_2) > * devel/automake19 (automake-1.9.6) > ---> Packages processed: 0 done, 0 ignored, 6 skipped and 1 failed > makayla# ^Dexit > Script done on Tue Dec 5 15:15:41 2006 > > > > --------------------------------- > Check out the all-new Yahoo! Mail beta - Fire up a more powerful email and > get things done faster. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 20:31:52 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1E4F416A4FD; Tue, 5 Dec 2006 20:31:52 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id B117C43CC1; Tue, 5 Dec 2006 20:30:06 +0000 (GMT) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id 32F805C57; Tue, 5 Dec 2006 15:31:21 -0500 (EST) Date: Tue, 5 Dec 2006 15:31:21 -0500 From: Wesley Shields To: Doug Barton Message-ID: <20061205203120.GA53894@atarininja.org> References: <17771.24717.95357.989644@jerusalem.litteratus.org> <456B70E9.4030408@FreeBSD.org> <20061204213106.GA42084@atarininja.org> <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> <20061205172803.GA51892@atarininja.org> <4575C568.70905@FreeBSD.org> <20061205194146.GC52966@atarininja.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20061205194146.GC52966@atarininja.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: ports@freebsd.org, Scot Hetzel Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 20:31:52 -0000 On Tue, Dec 05, 2006 at 02:41:46PM -0500, Wesley Shields wrote: > On Tue, Dec 05, 2006 at 11:15:52AM -0800, Doug Barton wrote: > > Wesley Shields wrote: > > > I was going to suggest wrapping the patch in an OSVERSION check for the > > > proper pkg_info update, however I think your approach is better. > > > > To me it seems odd that pkg_create has to know about every line in the > > tmp plist. (Having pkg_info know about it is nice too, but not > > necessary to make the mechanics of the change work.) Would it not be a > > better idea to update pkg_create so that it simply packages up what's > > there? Is there a benefit to pkg_create having special knowledge about > > the details like this? > > All I know is that "make package" would error out when it ran into the > @distfile line when I was working on this. This is why I had to make > the change to pkg_create. [...] > I'd like to finalize how it should look in +CONTENTS before I make this > change, but it will get done eventually. :) > > One way I was exploring is adding > > @comment DISTFILE:$filename:$size:$md5:$sha256 > > into the generated plist. This way we shouldn't have to change > pkg_create and only modify pkg_info and other tools. I haven't tested > this fully but it was just a fairly easy and concise way that I believe > will work. By adding it to +CONTENTS using some type of @comment line we > can avoid changing pkg_create and make for easier adoption. The only > changes that will need to be made will be to those programs which > process +CONTENTS directly, and even those modifications will be > minimal. Turns out I had some time free up today so I put together the patch to bsd.port.mk as described above. I've tested it out on a fairly recent -CURRENT box and a 6.1-p10 box and I'm able to build packages with out a problem. I see no need for an OSVERSION check when done this way. If you think this is a better idea I'll go ahead and send-pr, then make the necessary change to pkg_info and send-pr that. http://www.atarininja.org/~wxs/patches/package-distinfo.diff From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 21:09:07 2006 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 336F416A412; Tue, 5 Dec 2006 21:09:07 +0000 (UTC) (envelope-from dmk@ncf.ca) Received: from saruman.ncf.ca (saruman.ncf.ca [134.117.136.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFD1943CB5; Tue, 5 Dec 2006 21:08:21 +0000 (GMT) (envelope-from dmk@ncf.ca) Received: from ncf.ca (mail [134.117.136.45]) by saruman.ncf.ca (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTP id <0J9T00IVHK2YWD@saruman.ncf.ca>; Tue, 05 Dec 2006 16:08:58 -0500 (EST) Received: from [74.101.81.228] by saruman.ncf.ca (mshttpd); Tue, 05 Dec 2006 16:08:58 -0500 Date: Tue, 05 Dec 2006 16:08:58 -0500 From: Dwayne MacKinnon To: Kris Kennaway Message-id: <197b81196801.196801197b81@ncf.ca> MIME-version: 1.0 X-Mailer: iPlanet Messenger Express 5.2 Patch 2 (built Jul 14 2004) Content-type: text/plain; charset=us-ascii Content-language: en Content-transfer-encoding: 7BIT Content-disposition: inline X-Accept-Language: en Priority: normal Cc: freebsd-ports@FreeBSD.org, obrien@FreeBSD.org Subject: Re: vim 7.0.168 problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 21:09:07 -0000 >Yes, this problem has existed for a long time but the maintainer says >he's been unable to reproduce it. Maybe he can try again with your >instructions (the -DWITH_TCL is presumably the relevant part). >Kris I should have mentioned before: I use the following make flags with vim: -DWITH_GTK2 -DWITH_PERL -DWITH_RUBY -DWITH_CSCOPE -DWITH_TCL The problem occurred with the above flags, and vanished when I took away the -DWITH_TCL. Cheers, DMK From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 21:50:48 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9EC6116A407 for ; Tue, 5 Dec 2006 21:50:48 +0000 (UTC) (envelope-from eps@anna.ana.com) Received: from anna.ana.com (anna.ana.com [208.69.41.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 121B643C9D for ; Tue, 5 Dec 2006 21:50:07 +0000 (GMT) (envelope-from eps@anna.ana.com) Received: from anna.ana.com (localhost [127.0.0.1]) by anna.ana.com (8.13.8/8.13.8) with ESMTP id kB5LuorU000352 for ; Tue, 5 Dec 2006 13:56:50 -0800 (PST) Received: (from eps@localhost) by anna.ana.com (8.13.8/8.13.8/Submit) id kB5LunAN000351; Tue, 5 Dec 2006 13:56:49 -0800 (PST) Date: Tue, 5 Dec 2006 13:56:49 -0800 (PST) Message-Id: <200612052156.kB5LunAN000351@anna.ana.com> From: eps+pcom0612@ana.com (Eric P. Scott) To: freebsd-ports@freebsd.org Subject: Re: devel/m4 - build fail on 4.11-STABLE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 21:50:48 -0000 The "useless keyword or type name in empty declaration" problems should go away if you add as files/patch-ac: --- configure.orig Mon Nov 20 06:25:55 2006 +++ configure @@ -15426,6 +15426,7 @@ cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ +#include #include Try make USE_GCC=3.4 and the other warnings should disappear as well. They're using their own stdbool.h instead of FreeBSD's, and it doesn't seem to get along well with older versions of gcc (e.g. 2.95.4). I can't reproduce the other problem; do you have print/texinfo-4.8_3 installed? -=EPS=- From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 21:59:15 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 648E616A415 for ; Tue, 5 Dec 2006 21:59:15 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.FreeBSD.org (Postfix) with SMTP id 7725E43CA5 for ; Tue, 5 Dec 2006 21:58:33 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 15667 invoked by uid 399); 5 Dec 2006 21:59:11 -0000 Received: from localhost (HELO ?192.168.0.7?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 5 Dec 2006 21:59:11 -0000 Message-ID: <4575EBA8.3020601@FreeBSD.org> Date: Tue, 05 Dec 2006 13:59:04 -0800 From: Doug Barton Organization: http://www.freebsd.org/ User-Agent: Thunderbird 1.5.0.8 (X11/20061125) MIME-Version: 1.0 To: Wesley Shields References: <17771.24717.95357.989644@jerusalem.litteratus.org> <456B70E9.4030408@FreeBSD.org> <20061204213106.GA42084@atarininja.org> <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> <20061205172803.GA51892@atarininja.org> <4575C568.70905@FreeBSD.org> <20061205194146.GC52966@atarininja.org> <20061205203120.GA53894@atarininja.org> In-Reply-To: <20061205203120.GA53894@atarininja.org> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig3CCD694892B05C6266C585D2" Cc: ports@freebsd.org Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 21:59:15 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig3CCD694892B05C6266C585D2 Content-Type: multipart/mixed; boundary="------------070102060103020608090808" This is a multi-part message in MIME format. --------------070102060103020608090808 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Wesley Shields wrote: >> I'd like to finalize how it should look in +CONTENTS before I make thi= s >> change, but it will get done eventually. :) >> >> One way I was exploring is adding >> >> @comment DISTFILE:$filename:$size:$md5:$sha256 I think that's good, the other information might come in handy down the road. One thing you might want to consider is to put the md5 sum at the end, since at some point down the road (maybe years from now, but still ...) we're likely to drop md5 altogether. >> into the generated plist. This way we shouldn't have to change >> pkg_create and only modify pkg_info and other tools. I haven't tested= >> this fully but it was just a fairly easy and concise way that I believ= e >> will work. By adding it to +CONTENTS using some type of @comment line = we >> can avoid changing pkg_create and make for easier adoption. The only >> changes that will need to be made will be to those programs which >> process +CONTENTS directly, and even those modifications will be >> minimal. I think you're probably right about this, but I'd like to hear from some people who are more knowledgeable about the port's internals than I am first. I should have spoken up earlier, but you have a couple of inefficiencies and duplicated code that doesn't have to be there. Take a look at the attached, which also implements the change I mentioned above. Also, for something like this where you just need the Nth element of a line that is in a standard format, cut(1) is a lot more efficient than awk. Doug --=20 This .signature sanitized for your protection --------------070102060103020608090808 Content-Type: text/plain; name="package-distinfo.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline; filename="package-distinfo.diff" Index: bsd.port.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: /usr/local/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.544 diff -u -r1.544 bsd.port.mk --- bsd.port.mk 30 Sep 2006 19:25:45 -0000 1.544 +++ bsd.port.mk 5 Dec 2006 21:39:26 -0000 @@ -5395,11 +5395,20 @@ # files exist. =20 .if !target(generate-plist) +.if defined(DIST_SUBDIR) +PDS=3D "${DIST_SUBDIR}/" +.endif generate-plist: @${ECHO_MSG} "=3D=3D=3D> Generating temporary packing list" @${MKDIR} `${DIRNAME} ${TMPPLIST}` @if [ ! -f ${DESCR} ]; then ${ECHO_CMD} "** Missing pkg-descr for ${PKG= NAME}."; exit 1; fi @>${TMPPLIST} + @for file in ${DISTFILES} ${PATCHFILES}; do \ + distsize=3D`${GREP} "^SIZE (${PDS}$$file)" ${MD5_FILE} | ${CUT} -f4 -d= ' '`; \ + distsha256=3D`${GREP} "^SHA256 (${PDS}$$file)" ${MD5_FILE} | ${CUT} -f= 4 -d' '`; \ + distmd5=3D`${GREP} "^MD5 (${PDS}$$file)" ${MD5_FILE} | ${CUT} -f4 -d' = '`; \ + ${ECHO_CMD} "@comment DISTFILE:${PDS}$${file}:$${distsize}:$${distsha2= 56}:$${distmd5}" >> ${TMPPLIST}; \ + done @for file in ${PLIST_FILES}; do \ ${ECHO_CMD} $${file} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=3D/= %%!/} >> ${TMPPLIST}; \ done --------------070102060103020608090808-- --------------enig3CCD694892B05C6266C585D2 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.1 (FreeBSD) iD8DBQFFdeutyIakK9Wy8PsRAtdJAJwP3bc78wrh/lg8efsotxh69MNyDgCdFLWa y2An0R7Pfecj9jzoCLWnuWA= =MAvo -----END PGP SIGNATURE----- --------------enig3CCD694892B05C6266C585D2-- From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 22:19:58 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3301F16A407 for ; Tue, 5 Dec 2006 22:19:58 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.FreeBSD.org (Postfix) with SMTP id 1B09F43C9D for ; Tue, 5 Dec 2006 22:19:15 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 9928 invoked by uid 399); 5 Dec 2006 22:19:56 -0000 Received: from localhost (HELO ?192.168.0.7?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 5 Dec 2006 22:19:56 -0000 Message-ID: <4575F08B.8000408@FreeBSD.org> Date: Tue, 05 Dec 2006 14:19:55 -0800 From: Doug Barton Organization: http://www.freebsd.org/ User-Agent: Thunderbird 1.5.0.8 (X11/20061125) MIME-Version: 1.0 To: Wesley Shields References: <17771.24717.95357.989644@jerusalem.litteratus.org> <456B70E9.4030408@FreeBSD.org> <20061204213106.GA42084@atarininja.org> <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> <20061205172803.GA51892@atarininja.org> <4575C568.70905@FreeBSD.org> <20061205194146.GC52966@atarininja.org> <20061205203120.GA53894@atarininja.org> <4575EBA8.3020601@FreeBSD.org> In-Reply-To: <4575EBA8.3020601@FreeBSD.org> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/mixed; boundary="------------000407080205040708070806" Cc: ports@freebsd.org Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 22:19:58 -0000 This is a multi-part message in MIME format. --------------000407080205040708070806 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Here is a better version of this patch which works with ports like shells/bash that use the : stuff for the distfiles. Doug -- This .signature sanitized for your protection --------------000407080205040708070806 Content-Type: text/plain; name="package-distinfo.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="package-distinfo.diff" Index: bsd.port.mk =================================================================== RCS file: /usr/local/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.544 diff -u -r1.544 bsd.port.mk --- bsd.port.mk 30 Sep 2006 19:25:45 -0000 1.544 +++ bsd.port.mk 5 Dec 2006 22:16:53 -0000 @@ -5395,11 +5395,20 @@ # files exist. .if !target(generate-plist) +.if defined(DIST_SUBDIR) +PDS= ${DIST_SUBDIR}/ +.endif generate-plist: @${ECHO_MSG} "===> Generating temporary packing list" @${MKDIR} `${DIRNAME} ${TMPPLIST}` @if [ ! -f ${DESCR} ]; then ${ECHO_CMD} "** Missing pkg-descr for ${PKGNAME}."; exit 1; fi @>${TMPPLIST} + @for file in ${DISTFILES} ${PATCHFILES}; do \ + distsize=`${GREP} "^SIZE (${PDS}$${file%:*})" ${MD5_FILE} | ${CUT} -f4 -d' '`; \ + distsha256=`${GREP} "^SHA256 (${PDS}$${file%:*})" ${MD5_FILE} | ${CUT} -f4 -d' '`; \ + distmd5=`${GREP} "^MD5 (${PDS}$${file%:*})" ${MD5_FILE} | ${CUT} -f4 -d' '`; \ + ${ECHO_CMD} "@comment DISTFILE:${PDS}$${file%:*}:$${distsize}:$${distsha256}:$${distmd5}" >> ${TMPPLIST}; \ + done @for file in ${PLIST_FILES}; do \ ${ECHO_CMD} $${file} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} >> ${TMPPLIST}; \ done --------------000407080205040708070806-- From owner-freebsd-ports@FreeBSD.ORG Tue Dec 5 22:26:50 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B78FA16A407; Tue, 5 Dec 2006 22:26:50 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC7B743CBB; Tue, 5 Dec 2006 22:26:06 +0000 (GMT) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id 2ACD05C57; Tue, 5 Dec 2006 17:27:33 -0500 (EST) Date: Tue, 5 Dec 2006 17:27:33 -0500 From: Wesley Shields To: Doug Barton Message-ID: <20061205222733.GA42597@atarininja.org> References: <456B70E9.4030408@FreeBSD.org> <20061204213106.GA42084@atarininja.org> <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> <20061205172803.GA51892@atarininja.org> <4575C568.70905@FreeBSD.org> <20061205194146.GC52966@atarininja.org> <20061205203120.GA53894@atarininja.org> <4575EBA8.3020601@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4575EBA8.3020601@FreeBSD.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: ports@freebsd.org Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2006 22:26:50 -0000 On Tue, Dec 05, 2006 at 01:59:04PM -0800, Doug Barton wrote: > Wesley Shields wrote: > > >> I'd like to finalize how it should look in +CONTENTS before I make this > >> change, but it will get done eventually. :) > >> > >> One way I was exploring is adding > >> > >> @comment DISTFILE:$filename:$size:$md5:$sha256 > > I think that's good, the other information might come in handy down > the road. One thing you might want to consider is to put the md5 sum > at the end, since at some point down the road (maybe years from now, > but still ...) we're likely to drop md5 altogether. Good idea. :) > >> into the generated plist. This way we shouldn't have to change > >> pkg_create and only modify pkg_info and other tools. I haven't tested > >> this fully but it was just a fairly easy and concise way that I believe > >> will work. By adding it to +CONTENTS using some type of @comment line we > >> can avoid changing pkg_create and make for easier adoption. The only > >> changes that will need to be made will be to those programs which > >> process +CONTENTS directly, and even those modifications will be > >> minimal. > > I think you're probably right about this, but I'd like to hear from > some people who are more knowledgeable about the port's internals than > I am first. As would I. I'll give it a few days before I send-pr anything. If nothing else it will get discussed then. > I should have spoken up earlier, but you have a couple of > inefficiencies and duplicated code that doesn't have to be there. Take > a look at the attached, which also implements the change I mentioned > above. Also, for something like this where you just need the Nth > element of a line that is in a standard format, cut(1) is a lot more > efficient than awk. Thanks for pointing this out. I'm still new to hacking at b.p.m and was looking for a way to do just that. I kept trying to put the conditional inside the for loop, which wasn't working. Thanks for the help, I appreciate it. -- WXS From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 00:56:07 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 34B9F16A403 for ; Wed, 6 Dec 2006 00:56:07 +0000 (UTC) (envelope-from eps@anna.ana.com) Received: from anna.ana.com (anna.ana.com [208.69.41.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE60D43CA8 for ; Wed, 6 Dec 2006 00:55:24 +0000 (GMT) (envelope-from eps@anna.ana.com) Received: from anna.ana.com (localhost [127.0.0.1]) by anna.ana.com (8.13.8/8.13.8) with ESMTP id kB6129Bp011593; Tue, 5 Dec 2006 17:02:09 -0800 (PST) Received: (from eps@localhost) by anna.ana.com (8.13.8/8.13.8/Submit) id kB6128Pg011591; Tue, 5 Dec 2006 17:02:08 -0800 (PST) Date: Tue, 5 Dec 2006 17:02:08 -0800 (PST) Message-Id: <200612060102.kB6128Pg011591@anna.ana.com> From: eps+pcom0612@ana.com (Eric P. Scott) To: David.Bauer@SCHERING.DE Cc: freebsd-ports@freebsd.org Subject: Re: FreeBSD Port: pdflib-7.0.0p3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 00:56:07 -0000 >Any hints what's wrong here ? >/usr/local/bin/libtool --silent --mode=compile cc -c -I/usr/local/include >-I/usr/X11R6/include -I../../libs/pdflib -I../../libs/pdcore >-I../../libs/tiff -I../../libs/flate -I../../libs/png -I../../libs/jpeg I don't think the -I/usr/local/include and -I/usr/X11R6/include belong there. My guess is something in your environment (perhaps mistakenly set in /etc/make.conf) is overriding (e.g.) CPPFLAGS. If you have graphics/tiff installed, this is going to end up pulling in some of the headers for tiff 3.8.2 instead of the 3.7.4-derived ones included as part of PDFlib. They're not compatible. -=EPS=- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 01:08:46 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BF4D116A407; Wed, 6 Dec 2006 01:08:46 +0000 (UTC) (envelope-from ade@lovett.com) Received: from mail.lovett.com (foo.lovett.com [67.134.38.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 503BA43CA6; Wed, 6 Dec 2006 01:08:04 +0000 (GMT) (envelope-from ade@lovett.com) Received: from hellfire.canal.lovett.com ([172.16.32.20]:64991) by mail.lovett.com with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GrlHC-000BWw-6w; Tue, 05 Dec 2006 17:08:46 -0800 In-Reply-To: <4575EBA8.3020601@FreeBSD.org> References: <17771.24717.95357.989644@jerusalem.litteratus.org> <456B70E9.4030408@FreeBSD.org> <20061204213106.GA42084@atarininja.org> <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> <20061205172803.GA51892@atarininja.org> <4575C568.70905@FreeBSD.org> <20061205194146.GC52966@atarininja.org> <20061205203120.GA53894@atarininja.org> <4575EBA8.3020601@FreeBSD.org> Mime-Version: 1.0 (Apple Message framework v752.2) X-Gpgmail-State: !signed Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Ade Lovett Date: Tue, 5 Dec 2006 17:08:45 -0800 To: Doug Barton X-Mailer: Apple Mail (2.752.2) Sender: ade@lovett.com Cc: ports@freebsd.org Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 01:08:46 -0000 On Dec 05, 2006, at 13:59 , Doug Barton wrote: > Wesley Shields wrote: >>> @comment DISTFILE:$filename:$size:$md5:$sha256 > > I think that's good, the other information might come in handy down > the road. One thing you might want to consider is to put the md5 sum > at the end, since at some point down the road (maybe years from now, > but still ...) we're likely to drop md5 altogether. Better still would be: @comment DISTFILE:[':' =]* eg: DISTFILE:foo:SIZE=1234:MD5=...:SHA256=... Relying on the specific position of an item in a delimited list almost always comes back and bites in painful spots later on down the way. Minimal extra parsing required by consumers, and bits and pieces can be added/removed almost at will. -aDe From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 01:31:40 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D951116A415; Wed, 6 Dec 2006 01:31:40 +0000 (UTC) (envelope-from krf@splip.com) Received: from saber.cyclonus.com (saber.cyclonus.com [65.241.104.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5228243CA6; Wed, 6 Dec 2006 01:30:57 +0000 (GMT) (envelope-from krf@splip.com) Received: from [192.168.1.100] (saber.cyclonus.com [65.241.104.122]) by saber.cyclonus.com (8.13.7/8.13.7) with ESMTP id kB61VcZt044894; Tue, 5 Dec 2006 19:31:38 -0600 (CST) Message-ID: <45761D7A.2040101@splip.com> Date: Tue, 05 Dec 2006 19:31:38 -0600 From: Karl Friesen User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: ade@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: FreeBSD Port: m4-1.4.8_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 01:31:40 -0000 This version of the m4 port fails to build on versions of FreeBSD that are using /usr/bin/makeinfo version 4.6 (i.e. FreeBSD 5.5 and earlier). There are constructs in doc/m4.texinfo that cause makeinfo 4.6 to choke. It's not causing any serious problems, but I thought that you should know... --karl ... Making all in doc Updating ./version.texi restore=: && backupdir=".am$$" && am__cwd=`pwd` && cd . && rm -rf $backupdir && mkdir $backupdir && if (/bin/sh /usr/ports/devel/m4/work/m4-1.4.8/missing --run makeinfo --no-split --version) >/dev/null 2>&1; then for f in ./m4.info ./m4.info-[0-9] ./m4.info-[0-9][0-9] ./m4.i[0-9] ./m4.i[0-9][0-9]; do if test -f $f ; then mv $f $backupdir; restore=mv; else :; fi; done; else :; fi && cd "$am_cwd"; if /bin/sh /usr/ports/devel/m4/work/m4-1.4.8/missing --run makeinfo --no -split -I . -o ./m4.info ./m4.texinfo; then rc=0; cd .; else rc=$?; cd . && $restore $backupdir/* `echo "././m4.info" | sed 's|[^/]*$||'`; fi; rm -r f $backupdir; exit $rc ./m4.texinfo:451: Unknown command `'. ./m4.texinfo:1999: Unknown command `'. ./m4.texinfo:2001: Unknown command `'. makeinfo: Removing output file `./m4.info' due to errors; use --force to preserve. *** Error code 1 Stop in /usr/ports/devel/m4/work/m4-1.4.8/doc. *** Error code 1 Stop in /usr/ports/devel/m4/work/m4-1.4.8. *** Error code 1 Stop in /usr/ports/devel/m4. From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 01:39:18 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B393416A403; Wed, 6 Dec 2006 01:39:18 +0000 (UTC) (envelope-from ade@lovett.com) Received: from mail.lovett.com (foo.lovett.com [67.134.38.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3592143C9D; Wed, 6 Dec 2006 01:38:36 +0000 (GMT) (envelope-from ade@lovett.com) Received: from hellfire.canal.lovett.com ([172.16.32.20]:65139) by mail.lovett.com with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1Grlkk-000BoQ-7f; Tue, 05 Dec 2006 17:39:18 -0800 In-Reply-To: <45761D7A.2040101@splip.com> References: <45761D7A.2040101@splip.com> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <218CB53E-D71E-4A83-9E77-30CDE041775C@FreeBSD.org> Content-Transfer-Encoding: 7bit From: Ade Lovett Date: Tue, 5 Dec 2006 17:39:17 -0800 To: Karl Friesen X-Mailer: Apple Mail (2.752.2) Sender: ade@lovett.com Cc: ports@FreeBSD.org, Ade Lovett Subject: Re: FreeBSD Port: m4-1.4.8_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 01:39:18 -0000 On Dec 05, 2006, at 17:31 , Karl Friesen wrote: > This version of the m4 port fails to build on versions of FreeBSD that > are using /usr/bin/makeinfo version 4.6 (i.e. FreeBSD 5.5 and > earlier). There > are constructs in doc/m4.texinfo that cause makeinfo 4.6 to choke. > > It's not causing any serious problems, but I thought that you > should know... This was fixed earlier today (Pacific) time. recvsup your ports tree and try again. -aDe From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 01:40:04 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3304C16A416; Wed, 6 Dec 2006 01:40:04 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DD6743C9D; Wed, 6 Dec 2006 01:39:21 +0000 (GMT) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id 586B95C58; Tue, 5 Dec 2006 20:40:49 -0500 (EST) Date: Tue, 5 Dec 2006 20:40:49 -0500 From: Wesley Shields To: Ade Lovett Message-ID: <20061206014049.GA43656@atarininja.org> References: <20061204213106.GA42084@atarininja.org> <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> <20061205172803.GA51892@atarininja.org> <4575C568.70905@FreeBSD.org> <20061205194146.GC52966@atarininja.org> <20061205203120.GA53894@atarininja.org> <4575EBA8.3020601@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.13 (2006-08-11) Cc: ports@freebsd.org, Doug Barton Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 01:40:04 -0000 On Tue, Dec 05, 2006 at 05:08:45PM -0800, Ade Lovett wrote: > > On Dec 05, 2006, at 13:59 , Doug Barton wrote: > > >Wesley Shields wrote: > >>>@comment DISTFILE:$filename:$size:$md5:$sha256 > > > >I think that's good, the other information might come in handy down > >the road. One thing you might want to consider is to put the md5 sum > >at the end, since at some point down the road (maybe years from now, > >but still ...) we're likely to drop md5 altogether. > > Better still would be: > > @comment DISTFILE:[':' =]* > > eg: DISTFILE:foo:SIZE=1234:MD5=...:SHA256=... > > Relying on the specific position of an item in a delimited list > almost always comes back and bites in painful spots later on down the > way. Minimal extra parsing required by consumers, and bits and > pieces can be added/removed almost at will. > > -aDe I agree. I'll modify Doug's latest patch to add this. -- WXS From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 06:59:33 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9BCF616A403 for ; Wed, 6 Dec 2006 06:59:33 +0000 (UTC) (envelope-from David.Bauer@SCHERING.DE) Received: from fluorine.schering.de (fluorine.schering.de [149.234.246.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56B7743CA5 for ; Wed, 6 Dec 2006 06:58:48 +0000 (GMT) (envelope-from David.Bauer@SCHERING.DE) Received: from be333031.eu.schering.net by fluorine.schering.de via smtpd (for mx1.freebsd.org [69.147.83.52]) with ESMTP; Wed, 6 Dec 2006 07:59:32 +0100 Received: from bes702.schering.net (bes702.eu.schering.net [10.98.112.61]) by be333031.eu.schering.net (8.12.11.20060308/8.12.11) with ESMTP id kB66xT67017201; Wed, 6 Dec 2006 07:59:29 +0100 In-Reply-To: <200612060102.kB6128Pg011591@anna.ana.com> To: eps+pcom0612@ana.com (Eric P. Scott) MIME-Version: 1.0 X-Mailer: Lotus Notes Release 6.5.3 September 14, 2004 Message-ID: From: David.Bauer@SCHERING.DE Date: Wed, 6 Dec 2006 07:59:26 +0100 X-MIMETrack: MIME-CD by Router on BE2306/BE/SRV/SHG(Release 6.5.5|November 30, 2005) at 12/06/2006 07:59:28 AM, MIME-CD complete at 12/06/2006 07:59:28 AM, Serialize by Router on BES702/BE/SRV/SHG(Release 6.5.5|November 30, 2005) at 12/06/2006 07:59:30 AM Content-type: text/plain; charset=US-ASCII Cc: freebsd-ports@freebsd.org Subject: Re: FreeBSD Port: pdflib-7.0.0p3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 06:59:33 -0000 > >/usr/local/bin/libtool --silent --mode=compile cc -c -I/usr/local/include > >-I/usr/X11R6/include -I../../libs/pdflib -I../../libs/pdcore > >-I../../libs/tiff -I../../libs/flate -I../../libs/png -I../../libs/jpeg > > I don't think the -I/usr/local/include and -I/usr/X11R6/include > belong there. My guess is something in your environment (perhaps > mistakenly set in /etc/make.conf) is overriding (e.g.) CPPFLAGS. Yup, that was my error. I had this in CPPFLAGS. After unsetting them, the port compiles without problems. > If you have graphics/tiff installed, this is going to end up > pulling in some of the headers for tiff 3.8.2 instead of the > 3.7.4-derived ones included as part of PDFlib. They're not > compatible. Yes I have the newer libtiff installed so this was exactly what happened. Thanks so lot, David. From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 09:16:04 2006 Return-Path: X-Original-To: freebsd-ports@FreeBSD.ORG Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8DBEC16A510; Wed, 6 Dec 2006 09:16:04 +0000 (UTC) (envelope-from jabrams@anclo.com) Received: from smtp.3dresearch.com (dorabella.3dresearch.com [66.167.251.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACF5243CAD; Wed, 6 Dec 2006 09:15:19 +0000 (GMT) (envelope-from jabrams@anclo.com) Received: from cherubino.3dresearch.com (27.mars6.xdsl.nauticom.net [209.195.153.252]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by vmail.3dresearch.com (Postfix) with ESMTP id B78E3AE18A; Wed, 6 Dec 2006 04:16:02 -0500 (EST) Received: from doncurzio.anclo.com (doncurzio.3dresearch.com [10.61.70.3]) by cherubino.3dresearch.com (Postfix) with ESMTP id 5EAE254A4; Wed, 6 Dec 2006 04:16:01 -0500 (EST) Message-Id: <6.2.1.2.0.20061206041404.043a1528@imap.telissant.com> X-Mailer: QUALCOMM Windows Eudora Version 6.2.1.2 Date: Wed, 06 Dec 2006 04:17:29 -0500 To: Shaun Amott From: John Abrams In-Reply-To: <20061203023213.GA3139@charon.picobyte.net> References: <20061203023213.GA3139@charon.picobyte.net> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed Cc: freebsd-ports@FreeBSD.ORG Subject: Re: Index build fails at audio/gstreamer-plugins-esound X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 09:16:04 -0000 At 09:32 PM 12/2/2006, you wrote: >On Sat, Dec 02, 2006 at 05:47:58PM -0500, John Abrams wrote: > > I'm trying to make index on a FreeBSD 4.11-STABLE box, and for some time > > I keep getting this error (I have cvsupped several times): > >I have back-ported make(1) from a recent version of FreeBSD; you might >want to install it, from devel/make. This will save you a bit of >suffering. Install with PREFIX=/usr to overwrite the old make(1) in >base, or set MAKE=/usr/local/bin/make and use the full path to run it. > >Alternatively, the attached patch will fix this particular problem. > >-- >Shaun Amott // PGP: 0x6B387A9A >"A foolish consistency is the hobgoblin >of little minds." - Ralph Waldo Emerson Shaun, Thank you for your help - installed devel/make, tried /usr/local/bin/make index, but got the same error... -ja From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 11:10:58 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6FC1016A50E for ; Wed, 6 Dec 2006 11:10:58 +0000 (UTC) (envelope-from freebsd@orchid.homeunix.org) Received: from orchid.homeunix.org (ats128.neoplus.adsl.tpnet.pl [83.27.0.128]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0313343CAC for ; Wed, 6 Dec 2006 11:10:06 +0000 (GMT) (envelope-from freebsd@orchid.homeunix.org) Received: from [192.168.1.66] (blackacidevil.orchid.homeunix.org [192.168.1.66]) (authenticated bits=0) by orchid.homeunix.org (8.13.6/8.13.6) with ESMTP id kB6B9nfO001472 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 6 Dec 2006 12:10:03 +0100 (CET) (envelope-from freebsd@orchid.homeunix.org) Message-ID: <4576A4F6.7070407@orchid.homeunix.org> Date: Wed, 06 Dec 2006 12:09:42 +0100 From: Karol Kwiatkowski User-Agent: Thunderbird 1.5.0.8 (X11/20061203) MIME-Version: 1.0 To: "Marc G. Fournier" X-Enigmail-Version: 0.94.1.0 OpenPGP: id=06E09309; url=http://www.orchid.homeunix.org/carlos/gpg/0x06E09309.asc Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigA18133BF2615929216D697D3" X-Virus-Scanned: ClamAV 0.88.6/2292/Wed Dec 6 12:00:54 2006 on orchid.homeunix.org X-Virus-Status: Clean Cc: ports@freebsd.org Subject: bsdstats 5.3 on 6-STABLE and netcat weirdness X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: freebsd@orchid.homeunix.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 11:10:58 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigA18133BF2615929216D697D3 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Hello, I'm not sure what's to blame here: bsdstats port, ports, portupgrade or me :) I've got two problems - 'make clean' is cleaning net/netcat work directory (even though on 6-STABLE nc is a part of base system) and, more importantly, pkgdb reports stale dependency. That started after adding this line to the Makefile (ports/106373): RUN_DEPENDS=3D nc:${PORTSDIR}/net/netcat I haven't seen any problem reports, is it just me? Details below. Best regards, Karol # uname -srp FreeBSD 6.2-PRERELEASE i386 # which nc /usr/bin/nc # pkgdb -F ---> Checking the package registry database # cd /usr/ports/sysutils/bsdstats/ # make install clean =3D=3D=3D> Extracting for bsdstats-5.3 =3D=3D=3D> Patching for bsdstats-5.3 =3D=3D=3D> Configuring for bsdstats-5.3 =3D=3D=3D> Installing for bsdstats-5.3 =3D=3D=3D> bsdstats-5.3 depends on executable in : nc - found =3D=3D=3D> Generating temporary packing list [ snipped ] =3D=3D=3D> Registering installation for bsdstats-5.3 =3D=3D=3D> Cleaning for netcat-1.10_2 =3D=3D=3D> Cleaning for bsdstats-5.3 # pkgdb -F ---> Checking the package registry database [Updating the pkgdb in /var/db/pkg ... - 640 packages found (-0 +1) . done] Stale dependency: bsdstats-5.3 -> netcat-1.10_2 (net/netcat): netpbm-10.26.34 (score:17%) ? ([y]es/[n]o/[a]ll) [no] --=20 Karol Kwiatkowski OpenPGP: http://www.orchid.homeunix.org/carlos/gpg/0x06E09309.asc --------------enigA18133BF2615929216D697D3 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFdqT9ezeoPAwGIYsRCEdaAJwJmqFN0ea5EpCKc1oM3/WXNFx+cgCdFwM8 xeUHil0XltCFgpONWI8QIh8= =iJ02 -----END PGP SIGNATURE----- --------------enigA18133BF2615929216D697D3-- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 11:52:59 2006 Return-Path: X-Original-To: freebsd-ports@FreeBSD.ORG Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD4F216A4CA for ; Wed, 6 Dec 2006 11:52:59 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from dione.picobyte.net (host-212-158-207-124.bulldogdsl.com [212.158.207.124]) by mx1.FreeBSD.org (Postfix) with SMTP id 9ED38440AC for ; Wed, 6 Dec 2006 11:46:49 +0000 (GMT) (envelope-from shaun@FreeBSD.org) Received: from charon.picobyte.net (charon.picobyte.net [IPv6:2001:4bd0:201e::fe03]) by dione.picobyte.net (Postfix) with ESMTP for ; Wed, 6 Dec 2006 11:47:03 +0000 (GMT) Date: Wed, 6 Dec 2006 11:46:59 +0000 From: Shaun Amott To: freebsd-ports@FreeBSD.ORG Message-ID: <20061206114659.GA1226@charon.picobyte.net> References: <20061203023213.GA3139@charon.picobyte.net> <6.2.1.2.0.20061206041404.043a1528@imap.telissant.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="82I3+IH0IqGh5yIs" Content-Disposition: inline In-Reply-To: <6.2.1.2.0.20061206041404.043a1528@imap.telissant.com> User-Agent: Mutt/1.5.11 (FreeBSD i386) Cc: Subject: Re: Index build fails at audio/gstreamer-plugins-esound X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 11:52:59 -0000 --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Dec 06, 2006 at 04:17:29AM -0500, John Abrams wrote: >=20 > At 09:32 PM 12/2/2006, you wrote: > >On Sat, Dec 02, 2006 at 05:47:58PM -0500, John Abrams wrote: > >> I'm trying to make index on a FreeBSD 4.11-STABLE box, and for some ti= me > >> I keep getting this error (I have cvsupped several times): > > > >I have back-ported make(1) from a recent version of FreeBSD; you might > >want to install it, from devel/make. This will save you a bit of > >suffering. Install with PREFIX=3D/usr to overwrite the old make(1) in > >base, or set MAKE=3D/usr/local/bin/make and use the full path to run it. > > > >Alternatively, the attached patch will fix this particular problem. > > >=20 > Shaun, >=20 > Thank you for your help - installed devel/make, tried /usr/local/bin/make= =20 > index, but got the same error... >=20 You also need to set MAKE: /usr/local/bin/make MAKE=3D/usr/local/bin/make index PS: I'm not CC'ing you, because your mail server bounced my message last time. --=20 Shaun Amott // PGP: 0x6B387A9A "A foolish consistency is the hobgoblin of little minds." - Ralph Waldo Emerson --82I3+IH0IqGh5yIs Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFFdq2zkmhdCGs4epoRAiqwAJ9Jzz6xn/ty50Vf4HeGIhF2NW1zEgCg6s8h VFCvZdV9vmwcNgai0ifS20c= =BO9z -----END PGP SIGNATURE----- --82I3+IH0IqGh5yIs-- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 12:56:46 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C626016A403 for ; Wed, 6 Dec 2006 12:56:46 +0000 (UTC) (envelope-from roam@straylight.ringlet.net) Received: from straylight.ringlet.net (nat102.cnsys.bg [85.95.80.102]) by mx1.FreeBSD.org (Postfix) with SMTP id A78DE43CA3 for ; Wed, 6 Dec 2006 12:55:59 +0000 (GMT) (envelope-from roam@straylight.ringlet.net) Received: (qmail 87986 invoked by uid 1000); 6 Dec 2006 12:56:57 -0000 Date: Wed, 6 Dec 2006 14:56:57 +0200 From: Peter Pentchev To: ports@FreeBSD.org Message-ID: <20061206125657.GB1814@straylight.m.ringlet.net> Mail-Followup-To: ports@FreeBSD.org, curl-ports-maintainers@ringlet.net MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="FFoLq8A0u+X9iRU8" Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) Cc: curl-ports-maintainers@ringlet.net Subject: [CFR] ftp/curl update and API incompatibility X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 12:56:46 -0000 --FFoLq8A0u+X9iRU8 Content-Type: multipart/mixed; boundary="lCAWRPmW1mITcIfM" Content-Disposition: inline --lCAWRPmW1mITcIfM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, I'm writing to you all because you are listed as maintainers of ports that depend directly on ftp/curl. Attached is a patch that updates ftp/curl to version 7.16.0; however, this update might need some testing. There are some cURL options (CURLOPT_MUTE, CURLOPT_PASSWDFUNCTION, etc.) that have been deprecated for a long time now, yet they were still defined as compile-time constants to provide some kind of backwards compatibility. Well, 7.16.0 puts a stop to this - these options are now completely removed, and programs and libraries that still use them without checking will be broken. Thus, the libcurl library version was bumped, hence my request for testing the update. Attached is a patch that fixes all ports that depend on ftp/curl directly. The fixes consist of bumping the curl library version, bumping PORTREVISION, and, here and there, ifdef'ing the obsolete options. I have verified that all the ports build now, except for astro/gaia and www/osb-nrcit; however, for most of them I could not very well check if they *work* :) There is also the little matter of the PORTREVISION bump for the PHP ports, and the c-ares dependency of irc/unreal; but see below. The patch itself is also available at http://people.FreeBSD.org/~roam/patches/curl/ So - this patch updates cURL to 7.16.0, and tries to fix all dependent ports. The updates to the ports are trivial, with the following exceptions: astro/gaia - Update blindly, it's forbidden for license reasons. audio/vorbis-tools ftp/py-curl ftp/rexx-curl net/nepenthes security/authforce - #ifdef the obsolete options based on the libcurl version. audio/xmms2 - Fix the packing list for the !lastfm and !apple_mdns cases. ftp/php4-curl ftp/php5-curl - #ifdef more obsolete options based on their definitions, as is already done for CURLOPT_MUTE. - Not sure how to proceed with the PORTREVISION here, and also in www/pecl-pecl_http - it seems that it is not customary for a PHP extension to have a different PORTREVISION from the main port? irc/unreal - Remove the dependency on dns/ares - it is not used at all, Unreal uses its own bundled copy of c-ares! - Add a dependency on dns/c-ares, now that version 1.3.2 of the port comes with the ares_config_info patch. - Patch the configure script not to build the bundled c-ares, and the Makefile not to try to link against it. security/gnupg - Add an explicit library version number to the curl dependency. www/osb-nrcit - Update blindly, it does not build because lang/osb-jscore is broken. x11/ecore - Fix the packing list for the !x11 case. I'd appreciate any comments and suggestions for this update; thanks in advance! G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@cnsys.bg 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 This sentence no verb. --lCAWRPmW1mITcIfM Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="curl-16-01.patch" Content-Transfer-Encoding: quoted-printable Index: ftp/curl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/curl/Makefile,v retrieving revision 1.82 diff -u -r1.82 Makefile --- ftp/curl/Makefile 7 Nov 2006 17:07:41 -0000 1.82 +++ ftp/curl/Makefile 6 Dec 2006 12:29:18 -0000 @@ -6,8 +6,7 @@ # =20 PORTNAME=3D curl -PORTVERSION=3D 7.15.5 -PORTREVISION=3D 1 +PORTVERSION=3D 7.16.0 CATEGORIES=3D ftp ipv6 www MASTER_SITES=3D http://curl.haxx.se/download/ \ ${MASTER_SITE_SOURCEFORGE} \ @@ -40,7 +39,7 @@ libcurl-multi.3 libcurl-share.3 libcurl-tutorial.3 =20 USE_LDCONFIG=3D yes -SHLIB_VER=3D 3 +SHLIB_VER=3D 4 =20 MAKE_ENV=3D SHLIB_VER=3D"${SHLIB_VER}" PLIST_SUB=3D SHLIB_VER=3D"${SHLIB_VER}" Index: ftp/curl/distinfo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/ftp/curl/distinfo,v retrieving revision 1.46 diff -u -r1.46 distinfo --- ftp/curl/distinfo 18 Sep 2006 12:46:29 -0000 1.46 +++ ftp/curl/distinfo 6 Dec 2006 12:29:18 -0000 @@ -1,3 +1,3 @@ -MD5 (curl-7.15.5.tar.bz2) =3D 594142c7d53bbdd988e8cef6354eeeff -SHA256 (curl-7.15.5.tar.bz2) =3D 2980815e53f4caeafc5e35d183d9379bcaaec49f7= 59be1a4ac628cfb6c392fe0 -SIZE (curl-7.15.5.tar.bz2) =3D 1543007 +MD5 (curl-7.16.0.tar.bz2) =3D 5819f56e93d04cde2992fe88b54cbfad +SHA256 (curl-7.16.0.tar.bz2) =3D fc8dcda5a933c370c15c832bf1e7316a0690f473f= dd6000454d233edaa33bc23 +SIZE (curl-7.16.0.tar.bz2) =3D 1566391 Index: ftp/curl/pkg-plist =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/ftp/curl/pkg-plist,v retrieving revision 1.21 diff -u -r1.21 pkg-plist --- ftp/curl/pkg-plist 18 Sep 2006 12:46:29 -0000 1.21 +++ ftp/curl/pkg-plist 6 Dec 2006 12:29:18 -0000 @@ -45,6 +45,7 @@ %%PORTDOCS%%%%DOCSDIR%%/curl.1 %%PORTDOCS%%%%DOCSDIR%%/curl.html %%PORTDOCS%%%%DOCSDIR%%/curl.pdf +%%PORTDOCS%%%%DOCSDIR%%/examples/10-at-a-time.c %%PORTDOCS%%%%DOCSDIR%%/examples/Makefile %%PORTDOCS%%%%DOCSDIR%%/examples/Makefile.am %%PORTDOCS%%%%DOCSDIR%%/examples/Makefile.example @@ -65,6 +66,8 @@ %%PORTDOCS%%%%DOCSDIR%%/examples/ftpuploadresume.c %%PORTDOCS%%%%DOCSDIR%%/examples/getinfo.c %%PORTDOCS%%%%DOCSDIR%%/examples/getinmemory.c +%%PORTDOCS%%%%DOCSDIR%%/examples/ghiper.c +%%PORTDOCS%%%%DOCSDIR%%/examples/hiperfifo.c %%PORTDOCS%%%%DOCSDIR%%/examples/htmltidy.c %%PORTDOCS%%%%DOCSDIR%%/examples/htmltitle.cc %%PORTDOCS%%%%DOCSDIR%%/examples/http-post.c Index: ftp/curl/files/patch-lib::url.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/ftp/curl/files/patch-lib::url.c,v retrieving revision 1.2 diff -u -r1.2 patch-lib::url.c --- ftp/curl/files/patch-lib::url.c 3 Jun 2004 22:41:40 -0000 1.2 +++ ftp/curl/files/patch-lib::url.c 6 Dec 2006 12:29:18 -0000 @@ -1,6 +1,6 @@ ---- lib/url.c.orig Wed Jun 2 14:45:18 2004 -+++ lib/url.c Wed Jun 2 14:45:40 2004 -@@ -329,6 +329,10 @@ +--- lib/url.c.orig Mon Oct 30 00:46:27 2006 ++++ lib/url.c Fri Dec 1 14:04:02 2006 +@@ -542,6 +542,10 @@ data->set.httpauth =3D CURLAUTH_BASIC; /* defaults to basic */ data->set.proxyauth =3D CURLAUTH_BASIC; /* defaults to basic */ =20 @@ -8,6 +8,6 @@ + data->set.no_signal =3D TRUE; /* different handling of signals and th= reads */ +#endif /* __FreeBSD_version */ + - /* create an array with connection data struct pointers */ - data->state.numconnects =3D 5; /* hard-coded right now */ - data->state.connects =3D (struct connectdata **) + /* This no longer creates a connection cache here. It is instead made= on + the first call to curl_easy_perform() or when the handle is added = to a + multi stack. */ Index: astro/gaia/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/astro/gaia/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- astro/gaia/Makefile 26 Nov 2006 22:58:06 -0000 1.3 +++ astro/gaia/Makefile 6 Dec 2006 11:22:18 -0000 @@ -7,13 +7,14 @@ =20 PORTNAME=3D gaia PORTVERSION=3D 0.1.0 +PORTREVISION=3D 1 CATEGORIES=3D astro MASTER_SITES=3D http://gaia.serezhkin.com/ =20 MAINTAINER=3D se@FreeBSD.org COMMENT=3D Display geographic maps with optional GPS tracking support =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ jpeg.9:${PORTSDIR}/graphics/jpeg \ png.5:${PORTSDIR}/graphics/png \ SDL.11:${PORTSDIR}/devel/sdl12 Index: audio/gmpccaa/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/gmpccaa/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- audio/gmpccaa/Makefile 10 Apr 2006 11:07:55 -0000 1.1 +++ audio/gmpccaa/Makefile 6 Dec 2006 11:25:05 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D gmpccaa PORTVERSION=3D 0.1.0 +PORTREVISION=3D 1 CATEGORIES=3D audio MASTER_SITES=3D http://download.qballcow.nl/programs/gmpc-0.13/Plugins/ =20 @@ -14,7 +15,7 @@ COMMENT=3D Amazon cover art provider for gmpc =20 LIB_DEPENDS=3D mpd:${PORTSDIR}/audio/libmpd \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl BUILD_DEPENDS=3D ${X11BASE}/include/gmpc/cover-art.h:${PORTSDIR}/audio/gmpc RUN_DEPEND=3D gmpc:${PORTSDIR}/audio/gmpc =20 Index: audio/grip/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/grip/Makefile,v retrieving revision 1.73 diff -u -r1.73 Makefile --- audio/grip/Makefile 14 Oct 2006 08:52:32 -0000 1.73 +++ audio/grip/Makefile 6 Dec 2006 11:17:41 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D grip PORTVERSION=3D 3.2.0 -PORTREVISION=3D 11 +PORTREVISION=3D 12 CATEGORIES=3D audio MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -16,7 +16,7 @@ COMMENT=3D GTK front-end to external cd rippers and audio encoders =20 LIB_DEPENDS=3D id3-3.8.3:${PORTSDIR}/audio/id3lib \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl PATCH_DEPENDS=3D iconv:${PORTSDIR}/converters/libiconv =20 USE_XLIB=3D yes Index: audio/libofa/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/libofa/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- audio/libofa/Makefile 3 Nov 2006 03:49:33 -0000 1.8 +++ audio/libofa/Makefile 6 Dec 2006 11:25:12 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D libofa PORTVERSION=3D 0.9.3 +PORTREVISION=3D 1 CATEGORIES=3D audio MASTER_SITES=3D http://www.musicdns.org/files/ =20 @@ -15,7 +16,7 @@ =20 LIB_DEPENDS=3D fftw3.4:${PORTSDIR}/math/fftw3 \ expat.6:${PORTSDIR}/textproc/expat2 \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 USE_GNOME=3D pkgconfig GNU_CONFIGURE=3D yes Index: audio/moc/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/moc/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- audio/moc/Makefile 15 Apr 2006 16:00:18 -0000 1.11 +++ audio/moc/Makefile 6 Dec 2006 11:25:22 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D moc PORTVERSION=3D 2.4.0 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D audio MASTER_SITES=3D ftp://ftp.daper.net/pub/soft/moc/stable/ =20 @@ -111,7 +111,7 @@ .endif =20 .if defined(WITH_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl .else CONFIGURE_ARGS+=3D --without-curl .endif Index: audio/scrobbler/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/scrobbler/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- audio/scrobbler/Makefile 23 Feb 2006 10:34:40 -0000 1.7 +++ audio/scrobbler/Makefile 6 Dec 2006 11:25:16 -0000 @@ -6,7 +6,7 @@ =20 PORTNAME?=3D scrobbler PORTVERSION=3D 0.3.8.1 -PORTREVISION=3D 3 +PORTREVISION=3D 4 CATEGORIES=3D audio MASTER_SITES=3D http://static.audioscrobbler.com/plugins/ \ http://www.pipian.com/stuffforchat/ @@ -16,7 +16,7 @@ COMMENT?=3D XMMS/BMP plugin for Audioscrobbler.com =20 LIB_DEPENDS=3D musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 CONFLICTS=3D bmp-scrobbler-[0-9]* \ xmms-scrobbler-[0-9]* Index: audio/vorbis-tools/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/vorbis-tools/Makefile,v retrieving revision 1.39 diff -u -r1.39 Makefile --- audio/vorbis-tools/Makefile 9 Jul 2006 20:59:24 -0000 1.39 +++ audio/vorbis-tools/Makefile 6 Dec 2006 11:25:19 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D vorbis-tools PORTVERSION=3D 1.1.1 -PORTREVISION=3D 1 +PORTREVISION=3D 2 PORTEPOCH=3D 3 CATEGORIES=3D audio MASTER_SITES=3D http://downloads.xiph.org/releases/vorbis/ @@ -16,7 +16,7 @@ COMMENT=3D Play, encode, and manage Ogg Vorbis files =20 LIB_DEPENDS=3D ao.3:${PORTSDIR}/audio/libao \ - curl.3:${PORTSDIR}/ftp/curl \ + curl.4:${PORTSDIR}/ftp/curl \ FLAC.7:${PORTSDIR}/audio/flac \ speex.3:${PORTSDIR}/audio/speex \ vorbis.3:${PORTSDIR}/audio/libvorbis Index: audio/vorbis-tools/files/patch-ogg123_http_transport.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: audio/vorbis-tools/files/patch-ogg123_http_transport.c diff -N audio/vorbis-tools/files/patch-ogg123_http_transport.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ audio/vorbis-tools/files/patch-ogg123_http_transport.c 1 Dec 2006 14:30= :21 -0000 @@ -0,0 +1,12 @@ +--- ogg123/http_transport.c.orig Fri Dec 1 16:25:40 2006 ++++ ogg123/http_transport.c Fri Dec 1 16:29:16 2006 +@@ -116,7 +116,9 @@ + if (inputOpts.ProxyTunnel) + curl_easy_setopt (handle, CURLOPT_HTTPPROXYTUNNEL, inputOpts.ProxyTun= nel); + */ ++#if LIBCURL_VERSION_NUM < 0x071000 + curl_easy_setopt(handle, CURLOPT_MUTE, 1); ++#endif + curl_easy_setopt(handle, CURLOPT_ERRORBUFFER, private->error); + curl_easy_setopt(handle, CURLOPT_PROGRESSFUNCTION, progress_callback); + curl_easy_setopt(handle, CURLOPT_PROGRESSDATA, private); Index: audio/xmms2/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/xmms2/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- audio/xmms2/Makefile 3 Dec 2006 04:10:25 -0000 1.22 +++ audio/xmms2/Makefile 6 Dec 2006 11:17:51 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME?=3D xmms2 PORTVERSION=3D 0.2.d.8 +PORTREVISION=3D 1 DISTVERSION=3D 0.2DrHouse CATEGORIES?=3D audio MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} @@ -77,7 +78,7 @@ =20 .if !defined(XMMS2_SLAVE) .if !defined(WITHOUT_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl PLIST_SUB+=3D CURL=3D"" .else EXCLUDE+=3D curl @@ -91,7 +92,7 @@ PLIST_SUB+=3D LASTFM=3D"" .else EXCLUDE+=3D lastfm lastfmeta -PLIST_SUB+=3D LASTMFM=3D"@comment " +PLIST_SUB+=3D LASTFM=3D"@comment " .endif =20 .if defined(WITH_SID) Index: audio/xmms2/pkg-plist =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/audio/xmms2/pkg-plist,v retrieving revision 1.11 diff -u -r1.11 pkg-plist --- audio/xmms2/pkg-plist 3 Dec 2006 04:10:25 -0000 1.11 +++ audio/xmms2/pkg-plist 6 Dec 2006 11:13:20 -0000 @@ -101,7 +101,7 @@ libdata/pkgconfig/xmms2-plugin.pc %%DATADIR%%/mind.in.a.box-lament_snipplet.ogg %%DATADIR%%/scripts/startup.d/xmms2-et-launcher.sh -%%DATADIR%%/scripts/startup.d/xmms2-mdns-launcher.sh +%%MDNS_APPLE%%%%DATADIR%%/scripts/startup.d/xmms2-mdns-launcher.sh @dirrm %%DATADIR%%/scripts/startup.d @dirrm %%DATADIR%%/scripts @dirrm %%DATADIR%% Index: deskutils/drivel/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/deskutils/drivel/Makefile,v retrieving revision 1.31 diff -u -r1.31 Makefile --- deskutils/drivel/Makefile 14 Oct 2006 08:52:41 -0000 1.31 +++ deskutils/drivel/Makefile 6 Dec 2006 11:24:57 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D drivel PORTVERSION=3D 2.0.2 -PORTREVISION=3D 2 +PORTREVISION=3D 3 CATEGORIES=3D deskutils gnome MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -15,7 +15,7 @@ MAINTAINER=3D jbq@caraldi.com COMMENT=3D Blog editor for GNOME =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 INSTALLS_ICONS=3D yes USE_X_PREFIX=3D yes Index: deskutils/ljit/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/deskutils/ljit/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- deskutils/ljit/Makefile 4 May 2006 21:40:15 -0000 1.7 +++ deskutils/ljit/Makefile 6 Dec 2006 11:24:51 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D ljit PORTVERSION=3D 0.2.5 -PORTREVISION=3D 4 +PORTREVISION=3D 5 CATEGORIES=3D deskutils MASTER_SITES=3D http://kir.vtx.ru/ljit/dl/ \ http://freebsd.nsu.ru/distfiles/ @@ -15,7 +15,7 @@ MAINTAINER=3D danfe@FreeBSD.org COMMENT=3D GUI tool to help LiveJournal users post images =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS=3D convert:${PORTSDIR}/graphics/ImageMagick =20 GNU_CONFIGURE=3D yes Index: deskutils/logjam/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/deskutils/logjam/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- deskutils/logjam/Makefile 20 Aug 2006 09:35:46 -0000 1.24 +++ deskutils/logjam/Makefile 6 Dec 2006 11:24:14 -0000 @@ -7,14 +7,14 @@ =20 PORTNAME=3D logjam PORTVERSION=3D 4.5.3 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D deskutils MASTER_SITES=3D http://logjam.danga.com/download/ =20 MAINTAINER=3D novel@FreeBSD.org COMMENT=3D A GTK2 interface to livejournals, ie www.livejournal.com =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 MAN1=3D logjam.1 =20 Index: deskutils/mdh/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/deskutils/mdh/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- deskutils/mdh/Makefile 28 May 2006 05:04:55 -0000 1.13 +++ deskutils/mdh/Makefile 6 Dec 2006 11:24:54 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D mdh PORTVERSION=3D 1.9.59 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D deskutils gnome MASTER_SITES=3D http://www.gozer.org/my_stuff/gtk/gtk/mdh/ =20 @@ -34,7 +34,7 @@ .if defined(WITHOUT_CURL) CONFIGURE_ARGS+=3D --disable-curl .else -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl .endif =20 post-patch: Index: devel/evfs/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/devel/evfs/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/evfs/Makefile 8 Oct 2006 13:48:22 -0000 1.1 +++ devel/evfs/Makefile 6 Dec 2006 11:24:10 -0000 @@ -8,6 +8,7 @@ =20 PORTNAME=3D evfs PORTVERSION=3D 20060926 +PORTREVISION=3D 1 CATEGORIES=3D devel MASTER_SITES=3D http://sunner.elcomnet.ru/~stas/ =20 @@ -38,8 +39,8 @@ CONFIGURE_ARGS+=3D--disable-samba .endif =20 -.if !defined(WITHOUT_FTP) || exists(${LOCALBASE}/lib/libcurl.so.3) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +.if !defined(WITHOUT_FTP) || exists(${LOCALBASE}/lib/libcurl.so.4) +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl PLIST_SUB+=3D FTP=3D"" .else PLIST_SUB+=3D FTP=3D"@comment " Index: finance/libofx/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/finance/libofx/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- finance/libofx/Makefile 9 Oct 2006 08:00:11 -0000 1.17 +++ finance/libofx/Makefile 6 Dec 2006 11:24:04 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D libofx PORTVERSION=3D 0.8.2 +PORTREVISION=3D 1 CATEGORIES=3D finance MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -14,7 +15,7 @@ MAINTAINER=3D ports@FreeBSD.org COMMENT=3D OpenSource implementation of the OFX (Open Financial eXchange) =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ xml\\+\\+-1.0.1:${PORTSDIR}/textproc/libxml++ \ osp.3:${PORTSDIR}/textproc/opensp =20 Index: ftp/curlpp/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/curlpp/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- ftp/curlpp/Makefile 26 Sep 2006 14:46:01 -0000 1.15 +++ ftp/curlpp/Makefile 6 Dec 2006 11:23:56 -0000 @@ -8,13 +8,14 @@ =20 PORTNAME=3D curlpp PORTVERSION=3D 0.6.1 +PORTREVISION=3D 1 CATEGORIES=3D ftp MASTER_SITES=3D http://rrette.com/downloads/sources/ =20 MAINTAINER=3D roam@FreeBSD.org COMMENT=3D A C++ wrapper for libcurl =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GCC=3D 3.4 GNU_CONFIGURE=3D yes Index: ftp/ocaml-ocurl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/ocaml-ocurl/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- ftp/ocaml-ocurl/Makefile 14 Jun 2006 21:38:07 -0000 1.7 +++ ftp/ocaml-ocurl/Makefile 6 Dec 2006 11:23:49 -0000 @@ -5,6 +5,7 @@ =20 PORTNAME=3D ocurl PORTVERSION=3D 0.2.1 +PORTREVISION=3D 1 CATEGORIES=3D ftp MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -17,7 +18,7 @@ ocamlfind:${PORTSDIR}/devel/ocaml-findlib RUN_DEPENDS=3D ocamlc:${PORTSDIR}/lang/ocaml \ ocamlfind:${PORTSDIR}/devel/ocaml-findlib -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GMAKE=3D yes GNU_CONFIGURE=3D yes Index: ftp/php4-curl/files/patch-curl.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: ftp/php4-curl/files/patch-curl.c diff -N ftp/php4-curl/files/patch-curl.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ ftp/php4-curl/files/patch-curl.c 6 Dec 2006 09:13:39 -0000 @@ -0,0 +1,22 @@ +--- curl.c.orig Wed Dec 6 11:12:37 2006 ++++ curl.c Wed Dec 6 11:13:27 2006 +@@ -258,7 +258,9 @@ + REGISTER_CURL_CONSTANT(CURLOPT_FTPAPPEND); + REGISTER_CURL_CONSTANT(CURLOPT_NETRC); + REGISTER_CURL_CONSTANT(CURLOPT_FOLLOWLOCATION); ++#if CURLOPT_FTPASCII !=3D 0 + REGISTER_CURL_CONSTANT(CURLOPT_FTPASCII); ++#endif + REGISTER_CURL_CONSTANT(CURLOPT_PUT); + #if CURLOPT_MUTE !=3D 0 + REGISTER_CURL_CONSTANT(CURLOPT_MUTE); +@@ -296,7 +298,9 @@ + REGISTER_CURL_CONSTANT(CURLOPT_FILETIME); + REGISTER_CURL_CONSTANT(CURLOPT_WRITEFUNCTION); + REGISTER_CURL_CONSTANT(CURLOPT_READFUNCTION); ++#if CURLOPT_PASSWDFUNCTION !=3D 0 + REGISTER_CURL_CONSTANT(CURLOPT_PASSWDFUNCTION); ++#endif + REGISTER_CURL_CONSTANT(CURLOPT_HEADERFUNCTION); + REGISTER_CURL_CONSTANT(CURLOPT_MAXREDIRS); + REGISTER_CURL_CONSTANT(CURLOPT_MAXCONNECTS); Index: ftp/php5-curl/files/patch-ext_curl_interface.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: ftp/php5-curl/files/patch-ext_curl_interface.c diff -N ftp/php5-curl/files/patch-ext_curl_interface.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ ftp/php5-curl/files/patch-ext_curl_interface.c 5 Dec 2006 14:55:10 -0000 @@ -0,0 +1,48 @@ +--- interface.c.orig Tue Dec 5 16:50:11 2006 ++++ interface.c Tue Dec 5 16:50:25 2006 +@@ -369,7 +369,9 @@ + REGISTER_CURL_CONSTANT(CURLOPT_FTPAPPEND); + REGISTER_CURL_CONSTANT(CURLOPT_NETRC); + REGISTER_CURL_CONSTANT(CURLOPT_FOLLOWLOCATION); ++#if CURLOPT_FTPASCII !=3D 0 + REGISTER_CURL_CONSTANT(CURLOPT_FTPASCII); ++#endif + REGISTER_CURL_CONSTANT(CURLOPT_PUT); + #if CURLOPT_MUTE !=3D 0 + REGISTER_CURL_CONSTANT(CURLOPT_MUTE); +@@ -409,7 +411,9 @@ + REGISTER_CURL_CONSTANT(CURLOPT_FILETIME); + REGISTER_CURL_CONSTANT(CURLOPT_WRITEFUNCTION); + REGISTER_CURL_CONSTANT(CURLOPT_READFUNCTION); ++#if CURLOPT_PASSWDFUNCTION !=3D 0 + REGISTER_CURL_CONSTANT(CURLOPT_PASSWDFUNCTION); ++#endif + REGISTER_CURL_CONSTANT(CURLOPT_HEADERFUNCTION); + REGISTER_CURL_CONSTANT(CURLOPT_MAXREDIRS); + REGISTER_CURL_CONSTANT(CURLOPT_MAXCONNECTS); +@@ -1158,11 +1162,13 @@ + dupch->handlers->read->fp =3D ch->handlers->read->fp; + dupch->handlers->read->fd =3D ch->handlers->read->fd; +=20 ++#if CURLOPT_PASSWDFUNCTION !=3D 0 + if (ch->handlers->passwd) { + zval_add_ref(&ch->handlers->passwd); + dupch->handlers->passwd =3D ch->handlers->passwd; + curl_easy_setopt(ch->cp, CURLOPT_PASSWDDATA, (void *) dupch); + } ++#endif + if (ch->handlers->write->func_name) { + zval_add_ref(&ch->handlers->write->func_name); + dupch->handlers->write->func_name =3D ch->handlers->write->func_name; +@@ -1915,9 +1921,11 @@ + if (ch->handlers->write_header->func_name) { + zval_ptr_dtor(&ch->handlers->write_header->func_name); + } ++#if CURLOPT_PASSWDFUNCTION !=3D 0 + if (ch->handlers->passwd) { + zval_ptr_dtor(&ch->handlers->passwd); + } ++#endif + if (ch->header.str_len > 0) { + efree(ch->header.str); + } Index: ftp/php5-curl/files/patch-ext_curl_php_curl.h =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: ftp/php5-curl/files/patch-ext_curl_php_curl.h diff -N ftp/php5-curl/files/patch-ext_curl_php_curl.h --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ ftp/php5-curl/files/patch-ext_curl_php_curl.h 5 Dec 2006 14:55:15 -0000 @@ -0,0 +1,12 @@ +--- php_curl.h.orig Tue Dec 5 16:50:16 2006 ++++ php_curl.h Tue Dec 5 16:50:25 2006 +@@ -100,7 +100,9 @@ + php_curl_write *write; + php_curl_write *write_header; + php_curl_read *read; ++#if CURLOPT_PASSWDFUNCTION !=3D 0 + zval *passwd; ++#endif + } php_curl_handlers; +=20 + struct _php_curl_error { Index: ftp/py-curl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/py-curl/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- ftp/py-curl/Makefile 22 Apr 2006 05:20:19 -0000 1.24 +++ ftp/py-curl/Makefile 6 Dec 2006 11:23:39 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D curl PORTVERSION=3D 7.15.2 +PORTREVISION=3D 1 CATEGORIES=3D ftp python MASTER_SITES=3D http://pycurl.sourceforge.net/download/ \ http://pycurl.sourceforge.net/download/00-OLD-VERSIONS/ @@ -16,7 +17,7 @@ MAINTAINER=3D perky@FreeBSD.org COMMENT=3D Python interface to libcurl =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_PYTHON=3D yes USE_PYDISTUTILS=3D yes Index: ftp/py-curl/files/patch-src-pycurl.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: ftp/py-curl/files/patch-src-pycurl.c diff -N ftp/py-curl/files/patch-src-pycurl.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ ftp/py-curl/files/patch-src-pycurl.c 5 Dec 2006 15:13:27 -0000 @@ -0,0 +1,48 @@ +--- src/pycurl.c.orig Tue Dec 5 17:11:38 2006 ++++ src/pycurl.c Tue Dec 5 17:13:03 2006 +@@ -1109,9 +1109,11 @@ + case CURLOPT_URL: + case CURLOPT_USERAGENT: + case CURLOPT_USERPWD: ++#if LIBCURL_VERSION_NUM < 0x071000 + case CURLOPT_SOURCE_HOST: + case CURLOPT_SOURCE_USERPWD: + case CURLOPT_SOURCE_PATH: ++#endif + /* FIXME: check if more of these options allow binary data */ + str =3D PyString_AsString_NoNUL(obj); + if (str =3D=3D NULL) +@@ -1279,12 +1281,14 @@ + case CURLOPT_PREQUOTE: + old_slist =3D &self->prequote; + break; ++#if LIBCURL_VERSION_NUM < 0x071000 + case CURLOPT_SOURCE_PREQUOTE: + old_slist =3D &self->source_prequote; + break; + case CURLOPT_SOURCE_POSTQUOTE: + old_slist =3D &self->source_postquote; + break; ++#endif + case CURLOPT_HTTPPOST: + break; + default: +@@ -2689,14 +2693,18 @@ + insint_c(d, "FTP_SSL", CURLOPT_FTP_SSL); + insint_c(d, "POSTFIELDSIZE_LARGE", CURLOPT_POSTFIELDSIZE_LARGE); + insint_c(d, "TCP_NODELAY", CURLOPT_TCP_NODELAY); ++#if LIBCURL_VERSION_NUM < 0x071000 + insint_c(d, "SOURCE_USERPWD", CURLOPT_SOURCE_USERPWD); + insint_c(d, "SOURCE_PREQUOTE", CURLOPT_SOURCE_PREQUOTE); + insint_c(d, "SOURCE_POSTQUOTE", CURLOPT_SOURCE_POSTQUOTE); ++#endif + insint_c(d, "FTPSSLAUTH", CURLOPT_FTPSSLAUTH); + insint_c(d, "IOCTLFUNCTION", CURLOPT_IOCTLFUNCTION); + insint_c(d, "IOCTLDATA", CURLOPT_IOCTLDATA); ++#if LIBCURL_VERSION_NUM < 0x071000 + insint_c(d, "SOURCE_URL", CURLOPT_SOURCE_URL); + insint_c(d, "SOURCE_QUOTE", CURLOPT_SOURCE_QUOTE); ++#endif + insint_c(d, "FTP_ACCOUNT", CURLOPT_FTP_ACCOUNT); + insint_c(d, "IGNORE_CONTENT_LENGTH", CURLOPT_IGNORE_CONTENT_LENGTH); + insint_c(d, "COOKIELIST", CURLOPT_COOKIELIST); Index: ftp/rexx-curl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/rexx-curl/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- ftp/rexx-curl/Makefile 14 Aug 2006 23:06:29 -0000 1.11 +++ ftp/rexx-curl/Makefile 6 Dec 2006 11:23:25 -0000 @@ -8,6 +8,7 @@ =20 PORTNAME=3D curl PORTVERSION=3D 1.4 +PORTREVISION=3D 1 CATEGORIES=3D ftp MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D rexx${PORTNAME} @@ -18,7 +19,7 @@ COMMENT=3D External function package providing an interface to the cURL pa= ckage =20 BUILD_DEPENDS=3D rexx:${PORTSDIR}/lang/rexx-regina -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS=3D rexx:${PORTSDIR}/lang/rexx-regina =20 USE_GMAKE=3D yes Index: ftp/rexx-curl/files/patch-rexxcurl.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: ftp/rexx-curl/files/patch-rexxcurl.c diff -N ftp/rexx-curl/files/patch-rexxcurl.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ ftp/rexx-curl/files/patch-rexxcurl.c 5 Dec 2006 14:31:26 -0000 @@ -0,0 +1,11 @@ +--- rexxcurl.c.orig Tue Dec 5 16:30:55 2006 ++++ rexxcurl.c Tue Dec 5 16:31:14 2006 +@@ -323,7 +323,7 @@ + { "RANGE" ,CURLOPT_RANGE ,RXCURLOPT_STRING }, + { "REFERER" ,CURLOPT_REFERER ,RXCURLOPT_STRING }, + { "RESUMEFROM" ,CURLOPT_RESUME_FROM ,RXCURLOPT_LONGLONG }, +-#if LIBCURL_VERSION_NUM >=3D 0x070d00 ++#if LIBCURL_VERSION_NUM >=3D 0x070d00 && LIBCURL_VERSION_NUM < 0x071000 + { "SOURCEPOSTQUOTE" ,CURLOPT_SOURCE_POSTQUOTE,RXCURLOPT_LIST }, + { "SOURCEPREQUOTE" ,CURLOPT_SOURCE_PREQUOTE ,RXCURLOPT_LIST }, + { "SOURCEQUOTE" ,CURLOPT_SOURCE_QUOTE ,RXCURLOPT_LIST }, Index: ftp/urlgfe/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/urlgfe/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- ftp/urlgfe/Makefile 7 May 2006 11:09:21 -0000 1.8 +++ ftp/urlgfe/Makefile 6 Dec 2006 11:23:17 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D urlgfe PORTVERSION=3D 0.7.1 -PORTREVISION?=3D 4 +PORTREVISION?=3D 5 CATEGORIES=3D ftp www MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D urlget @@ -15,7 +15,7 @@ MAINTAINER=3D chip-set@mail.ru COMMENT=3D A download manager =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GNOME=3D gtk20 lthack WANT_GNOME=3D yes Index: ftp/wmget/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/wmget/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- ftp/wmget/Makefile 29 May 2006 20:46:12 -0000 1.7 +++ ftp/wmget/Makefile 6 Dec 2006 11:23:13 -0000 @@ -6,6 +6,7 @@ =20 PORTNAME=3D wmget PORTVERSION=3D 0.6.0 +PORTREVISION=3D 1 CATEGORIES=3D ftp MASTER_SITES=3D http://amtrickey.net/download/ DISTNAME=3D ${PORTNAME}-${PORTVERSION}-src @@ -13,7 +14,7 @@ MAINTAINER=3D uspoerlein@gmail.com COMMENT=3D Dock app for Window Maker providing wget functionality =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_X_PREFIX=3D yes USE_GMAKE=3D yes Index: games/bzflag/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/bzflag/Makefile,v retrieving revision 1.38 diff -u -r1.38 Makefile --- games/bzflag/Makefile 20 Sep 2006 11:20:56 -0000 1.38 +++ games/bzflag/Makefile 6 Dec 2006 11:23:07 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D bzflag PORTVERSION=3D 2.0.8 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D games MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -15,7 +15,7 @@ MAINTAINER=3D chuck@pkix.net COMMENT=3D A multiplayer 3D tank battle game =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_BZIP2=3D yes USE_SDL=3D yes Index: games/mudmagic/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/mudmagic/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- games/mudmagic/Makefile 7 Oct 2006 09:33:44 -0000 1.2 +++ games/mudmagic/Makefile 6 Dec 2006 11:22:41 -0000 @@ -7,13 +7,14 @@ =20 PORTNAME=3D mudmagic PORTVERSION=3D 1.9 +PORTREVISION=3D 1 CATEGORIES=3D games MASTER_SITES=3D http://www.mudmagic.com/mud-client/downloads/ =20 MAINTAINER=3D trasz@pin.if.uz.zgora.pl COMMENT=3D A GTK+ based MUD client =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ pcre.0:${PORTSDIR}/devel/pcre \ png.5:${PORTSDIR}/graphics/png \ expat:${PORTSDIR}/textproc/expat2 \ Index: games/planeshift/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/planeshift/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- games/planeshift/Makefile 30 Nov 2006 20:25:32 -0000 1.6 +++ games/planeshift/Makefile 6 Dec 2006 11:22:47 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D planeshift PORTVERSION=3D 0.3.017 +PORTREVISION=3D 1 CATEGORIES=3D games MASTER_SITES=3D http://alex.foxybanana.com/freebsd/ =20 @@ -18,7 +19,7 @@ cel-config:${PORTSDIR}/graphics/crystalentitylayer-devel \ ${LOCALBASE}/lib/libbfd.a:${PORTSDIR}/devel/libbfd LIB_DEPENDS=3D cal3d.12:${PORTSDIR}/graphics/cal3d \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 USE_BZIP2=3D yes GNU_CONFIGURE=3D yes Index: games/r1q2/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/r1q2/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- games/r1q2/Makefile 20 Sep 2006 11:21:23 -0000 1.5 +++ games/r1q2/Makefile 6 Dec 2006 11:22:54 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D r1q2 PORTVERSION=3D 6557 -PORTREVISION=3D 3 +PORTREVISION=3D 4 CATEGORIES=3D games MASTER_SITES=3D http://www.r1ch.net/stuff/r1q2/src/ DISTNAME=3D ${PORTNAME}-b${PORTVERSION}-src @@ -93,7 +93,7 @@ .endif =20 .if !defined(WITHOUT_HTTP) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl MAKE_ENV+=3D WITH_HTTP_DOWNLOAD_SUPPORT=3DYES .endif =20 Index: games/tmw/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/tmw/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- games/tmw/Makefile 16 Nov 2006 21:20:29 -0000 1.9 +++ games/tmw/Makefile 6 Dec 2006 11:23:04 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D tmw PORTVERSION=3D 0.0.21.1 +PORTREVISION=3D 1 CATEGORIES=3D games MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D themanaworld @@ -16,7 +17,7 @@ =20 LIB_DEPENDS=3D xml2.5:${PORTSDIR}/textproc/libxml2 \ png.5:${PORTSDIR}/graphics/png \ - curl.3:${PORTSDIR}/ftp/curl \ + curl.4:${PORTSDIR}/ftp/curl \ physfs-1.0.1:${PORTSDIR}/devel/physfs BUILD_DEPENDS=3D guichan>=3D0.5.0:${PORTSDIR}/devel/guichan RUN_DEPENDS=3D guichan>=3D0.5.0:${PORTSDIR}/devel/guichan Index: games/warsow/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/warsow/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- games/warsow/Makefile 20 Sep 2006 11:21:35 -0000 1.6 +++ games/warsow/Makefile 6 Dec 2006 11:22:50 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D warsow PORTVERSION=3D 0.12 -PORTREVISION=3D 3 +PORTREVISION=3D 4 CATEGORIES=3D games MASTER_SITES=3D http://warsow.aditsystems.com/ \ http://ftp.club-internet.fr/pub/games/nofrag/warsow/ \ @@ -49,7 +49,7 @@ .endif =20 .if !defined(WITHOUT_CLIENT) -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ jpeg.9:${PORTSDIR}/graphics/jpeg USE_GL=3D yes USE_SDL=3D yes Index: games/xmoto/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/xmoto/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- games/xmoto/Makefile 6 Oct 2006 15:43:29 -0000 1.13 +++ games/xmoto/Makefile 6 Dec 2006 11:22:58 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D xmoto PORTVERSION=3D 0.2.2 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D games MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -47,7 +47,7 @@ .include =20 .if !defined(WITHOUT_WWW) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+=3D --with-enable-www=3D1 .else CONFIGURE_ARGS+=3D --with-enable-www=3D0 Index: graphics/jp2a/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/graphics/jp2a/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- graphics/jp2a/Makefile 25 Sep 2006 14:21:51 -0000 1.7 +++ graphics/jp2a/Makefile 6 Dec 2006 11:22:25 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D jp2a PORTVERSION=3D 1.0.6 +PORTREVISION=3D 1 CATEGORIES=3D graphics MASTER_SITES=3D SF =20 @@ -14,7 +15,7 @@ COMMENT=3D Converts JPG images to ASCII =20 LIB_DEPENDS=3D jpeg.9:${PORTSDIR}/graphics/jpeg \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 USE_BZIP2=3D yes GNU_CONFIGURE=3D yes Index: graphics/mapserver/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/graphics/mapserver/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- graphics/mapserver/Makefile 9 Oct 2006 08:18:34 -0000 1.14 +++ graphics/mapserver/Makefile 6 Dec 2006 11:22:35 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D mapserver PORTVERSION=3D 4.4.1 -PORTREVISION=3D 2 +PORTREVISION=3D 3 CATEGORIES=3D graphics www MASTER_SITES=3D http://cvs.gis.umn.edu/dist/ =20 @@ -106,7 +106,7 @@ .endif =20 .if defined(WITH_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+=3D --with-curl=3D${LOCALBASE} .endif =20 Index: graphics/telak/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/graphics/telak/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- graphics/telak/Makefile 16 Jun 2006 10:00:35 -0000 1.4 +++ graphics/telak/Makefile 6 Dec 2006 11:22:31 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D telak PORTVERSION=3D 0.5 +PORTREVISION=3D 1 CATEGORIES=3D graphics MASTER_SITES=3D http://julien.danjou.info/telak/ \ http://critical.ch/distfiles/ \ @@ -15,7 +16,7 @@ MAINTAINER=3D ehaupt@FreeBSD.org COMMENT=3D A tool to draw pictures on your root window =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ gcrypt.13:${PORTSDIR}/security/libgcrypt \ Imlib2.3:${PORTSDIR}/graphics/imlib2 =20 Index: irc/unreal/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/irc/unreal/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- irc/unreal/Makefile 1 Jul 2006 19:57:15 -0000 1.8 +++ irc/unreal/Makefile 6 Dec 2006 11:18:03 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D Unreal PORTVERSION=3D 3.2.5 +PORTREVISION=3D 1 CATEGORIES=3D irc MASTER_SITES=3D http://www.ilmarinen.us/unreal/ \ http://unrealircd.alert-net.com/ \ @@ -84,9 +85,10 @@ .endif =20 .if defined(WITH_REMOTE) -BUILD_DEPENDS+=3D ${LOCALBASE}/lib/libares.a:${PORTSDIR}/dns/ares -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D cares.1:${PORTSDIR}/dns/c-ares curl.4:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+=3D --enable-libcurl=3D${LOCALBASE} +CPPFLAGS+=3D -I${LOCALBASE}/include +LDFLAGS+=3D -L${LOCALBASE}/lib .endif =20 .if defined(WITH_PREFIXAQ) Index: irc/unreal/files/patch-Makefile.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: irc/unreal/files/patch-Makefile.in diff -N irc/unreal/files/patch-Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ irc/unreal/files/patch-Makefile.in 5 Dec 2006 14:00:09 -0000 @@ -0,0 +1,11 @@ +--- Makefile.in.orig Tue Dec 5 15:59:38 2006 ++++ Makefile.in Tue Dec 5 15:59:53 2006 +@@ -38,7 +38,7 @@ + CRYPTOLIB=3D@CRYPTOLIB@ + OPENSSLINCLUDES=3D +=20 +-XCFLAGS=3D-I@TREINCDIR@ -I@CARESINCDIR@ @CARESLIBDIR@ @CFLAGS@ ++XCFLAGS=3D-I@TREINCDIR@ @CFLAGS@ + # + # use the following on MIPS: + #CFLAGS=3D -systype bsd43 -DSYSTYPE_BSD43 -I$(INCLUDEDIR) Index: irc/unreal/files/patch-configure =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: irc/unreal/files/patch-configure diff -N irc/unreal/files/patch-configure --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ irc/unreal/files/patch-configure 5 Dec 2006 13:59:23 -0000 @@ -0,0 +1,37 @@ +--- configure.orig Tue Dec 5 15:55:45 2006 ++++ configure Tue Dec 5 15:59:10 2006 +@@ -12701,34 +12701,6 @@ + cd $cur_dir +=20 +=20 +-cares_version=3D"1.3.0" +-echo "$as_me:$LINENO: result: extracting c-ares resolver library" >&5 +-echo "${ECHO_T}extracting c-ares resolver library" >&6 +-cur_dir=3D`pwd` +-cd extras +-rm -rf c-ares-$cares_version +-if test "x$ac_cv_path_GUNZIP" =3D "x" ; then +- tar xfz c-ares.tar.gz +-else +- cp c-ares.tar.gz c-ares.tar.gz.bak +- gunzip -f c-ares.tar.gz +- cp c-ares.tar.gz.bak c-ares.tar.gz +- tar xf c-ares.tar +-fi +-echo "$as_me:$LINENO: result: configuring c-ares library" >&5 +-echo "${ECHO_T}configuring c-ares library" >&6 +-cd c-ares-$cares_version +-./configure --prefix=3D$cur_dir/extras/c-ares || exit 1 +-echo "$as_me:$LINENO: result: compiling c-ares resolver library" >&5 +-echo "${ECHO_T}compiling c-ares resolver library" >&6 +-$ac_cv_prog_MAKER || exit 1 +-echo "$as_me:$LINENO: result: installing c-ares resolver library" >&5 +-echo "${ECHO_T}installing c-ares resolver library" >&6 +-$ac_cv_prog_MAKER install || exit 1 +-CARESINCDIR=3D"$cur_dir/extras/c-ares/include" +- +-CARESLIBDIR=3D"-L../extras/c-ares/lib" +- + CARESLIBS=3D"-lcares" +=20 + cd $cur_dir Index: lang/gambas/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/lang/gambas/Makefile,v retrieving revision 1.51 diff -u -r1.51 Makefile --- lang/gambas/Makefile 20 Sep 2006 11:21:46 -0000 1.51 +++ lang/gambas/Makefile 6 Dec 2006 11:18:19 -0000 @@ -6,7 +6,7 @@ =20 PORTNAME=3D gambas PORTVERSION=3D 1.0.17 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D lang MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -14,7 +14,7 @@ MAINTAINER=3D thierry@FreeBSD.org COMMENT=3D Gambas Almost Means BASic =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ ml.0:${PORTSDIR}/math/ldouble =20 USE_AUTOTOOLS=3D libltdl:15 libtool:15 Index: lang/php4/Makefile.ext =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/php4/Makefile.ext,v retrieving revision 1.29 diff -u -r1.29 Makefile.ext --- lang/php4/Makefile.ext 10 Sep 2006 16:30:59 -0000 1.29 +++ lang/php4/Makefile.ext 6 Dec 2006 09:11:25 -0000 @@ -44,7 +44,7 @@ .endif =20 .if ${PHP_MODNAME} =3D=3D "curl" -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl =20 CONFIGURE_ARGS+=3D--with-curl=3D${LOCALBASE} .endif Index: lang/php5/Makefile.ext =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/php5/Makefile.ext,v retrieving revision 1.33 diff -u -r1.33 Makefile.ext --- lang/php5/Makefile.ext 6 Nov 2006 17:43:10 -0000 1.33 +++ lang/php5/Makefile.ext 5 Dec 2006 14:37:52 -0000 @@ -38,7 +38,7 @@ .endif =20 .if ${PHP_MODNAME} =3D=3D "curl" -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl =20 CONFIGURE_ARGS+=3D--with-curl=3D${LOCALBASE} .endif Index: lang/scriba/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/lang/scriba/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- lang/scriba/Makefile 9 May 2006 20:52:21 -0000 1.15 +++ lang/scriba/Makefile 6 Dec 2006 11:18:26 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D scriba PORTVERSION=3D 20b0 +PORTREVISION=3D 1 CATEGORIES=3D lang MASTER_SITES=3D http://www.scriptbasic.com/download/ DISTNAME=3D ${PORTNAME}-v2.0b0-source @@ -49,7 +50,7 @@ .endif =20 .if defined(WITH_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl PLIST_SUB+=3D CURL=3D"" .else PLIST_SUB+=3D CURL=3D"@comment " Index: mail/sylpheed-claws-gtkhtml2_viewer/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/mail/sylpheed-claws-gtkhtml2_viewer/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- mail/sylpheed-claws-gtkhtml2_viewer/Makefile 3 Dec 2006 18:43:56 -0000 = 1.7 +++ mail/sylpheed-claws-gtkhtml2_viewer/Makefile 6 Dec 2006 11:18:35 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D gtkhtml2_viewer PORTVERSION=3D 0.12 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D mail MASTER_SITES=3D http://sylpheed-claws.net/downloads/plugins/ PKGNAMEPREFIX=3D sylpheed-claws- @@ -15,7 +15,7 @@ MAINTAINER=3D c0rn@o2.pl COMMENT=3D HTML renderer plugin for sylpheed-claws =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl BUILD_DEPENDS=3D sylpheed-claws>=3D2.5:${PORTSDIR}/mail/sylpheed-claws RUN_DEPENDS=3D sylpheed-claws>=3D2.5:${PORTSDIR}/mail/sylpheed-claws =20 Index: mail/sylpheed-claws-rssyl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/mail/sylpheed-claws-rssyl/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- mail/sylpheed-claws-rssyl/Makefile 3 Dec 2006 18:43:57 -0000 1.10 +++ mail/sylpheed-claws-rssyl/Makefile 6 Dec 2006 11:18:31 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D rssyl PORTVERSION=3D 0.7 -PORTREVISION=3D 1 +PORTREVISION=3D 2 PORTEPOCH=3D 1 CATEGORIES=3D mail MASTER_SITES=3D http://sylpheed-claws.net/downloads/plugins/ @@ -16,7 +16,7 @@ MAINTAINER=3D c0rn@o2.pl COMMENT=3D A RSS/Atom plugin for sylheed-claws =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl BUILD_DEPENDS=3D sylpheed-claws>=3D2.5:${PORTSDIR}/mail/sylpheed-claws RUN_DEPENDS=3D sylpheed-claws>=3D2.5:${PORTSDIR}/mail/sylpheed-claws =20 Index: mail/sylpheed-claws-vcalendar/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/mail/sylpheed-claws-vcalendar/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- mail/sylpheed-claws-vcalendar/Makefile 3 Dec 2006 18:43:57 -0000 1.8 +++ mail/sylpheed-claws-vcalendar/Makefile 6 Dec 2006 11:18:38 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D vcalendar PORTVERSION=3D 1.89.1 -PORTREVISION=3D 2 +PORTREVISION=3D 3 CATEGORIES=3D mail MASTER_SITES=3D http://sylpheed-claws.net/downloads/plugins/ \ ${MASTER_SITE_LOCAL} @@ -17,7 +17,7 @@ MAINTAINER=3D c0rn@o2.pl COMMENT=3D vCalendar plugin for sylpheed-claws =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl BUILD_DEPENDS=3D sylpheed-claws>=3D2.5:${PORTSDIR}/mail/sylpheed-claws RUN_DEPENDS=3D sylpheed-claws>=3D2.5:${PORTSDIR}/mail/sylpheed-claws =20 Index: misc/bidwatcher/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/misc/bidwatcher/Makefile,v retrieving revision 1.54 diff -u -r1.54 Makefile --- misc/bidwatcher/Makefile 26 Jun 2006 18:01:17 -0000 1.54 +++ misc/bidwatcher/Makefile 6 Dec 2006 11:19:12 -0000 @@ -8,7 +8,7 @@ =20 PORTNAME=3D bidwatcher PORTVERSION=3D 1.3.17 -PORTREVISION?=3D 4 +PORTREVISION?=3D 5 CATEGORIES=3D misc MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -20,7 +20,7 @@ MAINTAINER=3D obrien@FreeBSD.org COMMENT=3D Bid monitor for eBay =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 PLIST_FILES=3D bin/bidwatcher USE_GCC=3D 3.2+ Index: misc/esniper/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/misc/esniper/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- misc/esniper/Makefile 8 Nov 2006 21:06:02 -0000 1.3 +++ misc/esniper/Makefile 6 Dec 2006 11:18:52 -0000 @@ -6,6 +6,7 @@ =20 PORTNAME=3D esniper DISTVERSION=3D 2-15-0 +PORTREVISION=3D 1 CATEGORIES=3D misc net MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -14,7 +15,7 @@ MAINTAINER=3D lewiz@compsoc.man.ac.uk COMMENT=3D Lightweight tool for sniping ebay auctions =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 GNU_CONFIGURE=3D yes USE_OPENSSL=3D yes Index: misc/gkrellm-helium/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/misc/gkrellm-helium/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- misc/gkrellm-helium/Makefile 10 May 2006 22:37:17 -0000 1.11 +++ misc/gkrellm-helium/Makefile 6 Dec 2006 11:19:18 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D gkrellm-helium PORTVERSION=3D 2.3.1 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D misc MASTER_SITES=3D http://kmlinux.fjfi.cvut.cz/~makovick/gkrellm/ EXTRACT_SUFX=3D .tgz @@ -16,7 +16,7 @@ COMMENT=3D GKrellM plugin reading data from helium thermometer at Strahov,= Prague =20 BUILD_DEPENDS=3D ${X11BASE}/include/gkrellm2/gkrellm.h:${PORTSDIR}/sysutil= s/gkrellm2 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS=3D gkrellm:${PORTSDIR}/sysutils/gkrellm2 =20 PLIST_FILES=3D libexec/gkrellm2/plugins/helium.so Index: misc/wmweather/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/misc/wmweather/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- misc/wmweather/Makefile 23 Apr 2005 23:01:56 -0000 1.17 +++ misc/wmweather/Makefile 6 Dec 2006 11:19:26 -0000 @@ -6,13 +6,14 @@ =20 PORTNAME=3D wmweather PORTVERSION=3D 2.4.3 +PORTREVISION=3D 1 CATEGORIES=3D misc windowmaker MASTER_SITES=3D http://www.godisch.de/debian/wmweather/ =20 MAINTAINER=3D kris@FreeBSD.org COMMENT=3D A WMaker dockapp which displays meteorological data for your ci= ty =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl BUILD_DEPENDS=3D xmessage:${X_CLIENTS_PORT} RUN_DEPENDS=3D xmessage:${X_CLIENTS_PORT} =20 Index: multimedia/xine/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/multimedia/xine/Makefile,v retrieving revision 1.68 diff -u -r1.68 Makefile --- multimedia/xine/Makefile 27 Aug 2006 13:04:36 -0000 1.68 +++ multimedia/xine/Makefile 6 Dec 2006 11:19:39 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D xine PORTVERSION=3D 0.99.4 -PORTREVISION=3D 7 +PORTREVISION=3D 8 CATEGORIES=3D multimedia MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -18,7 +18,7 @@ =20 LIB_DEPENDS=3D xine.15:${PORTSDIR}/multimedia/libxine \ png.5:${PORTSDIR}/graphics/png \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 USE_GETTEXT=3D yes USE_X_PREFIX=3D yes Index: net-im/centericq/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-im/centericq/Makefile,v retrieving revision 1.110 diff -u -r1.110 Makefile --- net-im/centericq/Makefile 13 Sep 2006 21:24:19 -0000 1.110 +++ net-im/centericq/Makefile 6 Dec 2006 11:21:36 -0000 @@ -8,7 +8,7 @@ =20 PORTNAME=3D centericq PORTVERSION=3D 4.21.0 -PORTREVISION=3D 6 +PORTREVISION=3D 7 CATEGORIES=3D net-im MASTER_SITES=3D http://centericq.de/archive/source/releases/ \ http://thekonst.net/download/ @@ -65,7 +65,7 @@ .if !defined(WITH_MSN) CONFIGURE_ARGS+=3D --disable-msn .else -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl .endif =20 .if !defined(WITH_YAHOO) Index: net-im/cli-msn/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-im/cli-msn/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- net-im/cli-msn/Makefile 23 Jul 2006 02:45:14 -0000 1.3 +++ net-im/cli-msn/Makefile 6 Dec 2006 11:21:46 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D msn PORTVERSION=3D 2.3 +PORTREVISION=3D 1 CATEGORIES=3D net-im MASTER_SITES=3D http://mor-pah.net/code/ PKGNAMEPREFIX=3D cli- @@ -15,7 +16,7 @@ MAINTAINER=3D acm@FreeBSD.org COMMENT=3D Command line msn messenger =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GMAKE=3D yes GNU_CONFIGURE=3D yes Index: net-im/libmsn/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-im/libmsn/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- net-im/libmsn/Makefile 15 Aug 2006 00:56:19 -0000 1.7 +++ net-im/libmsn/Makefile 6 Dec 2006 11:21:41 -0000 @@ -8,7 +8,7 @@ =20 PORTNAME=3D libmsn PORTVERSION=3D 3.2 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D net-im MASTER_SITES=3D http://libmsn.bdash.net.nz/files/ \ ${MASTER_SITE_SOURCEFORGE} @@ -17,7 +17,7 @@ MAINTAINER=3D ports@FreeBSD.org COMMENT=3D A library for connecting to MSN Messenger service =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 GNU_CONFIGURE=3D yes USE_LDCONFIG=3D yes Index: net-p2p/amule1/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-p2p/amule1/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- net-p2p/amule1/Makefile 1 Dec 2006 07:38:58 -0000 1.23 +++ net-p2p/amule1/Makefile 6 Dec 2006 11:21:50 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D aMule PORTVERSION=3D 1.2.8 -PORTREVISION=3D 5 +PORTREVISION=3D 6 CATEGORIES=3D net-p2p #MASTER_SITES=3D http://download.berlios.de/amule/ MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} @@ -18,7 +18,7 @@ =20 DEPRECATED=3D use net-p2p/amule2 if you are running OSVERSION > 500000 =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 LATEST_LINK=3D aMule1 CONFLICTS=3D aMule-2.* aMule-devel-[0-9]* Index: net-p2p/amule2/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-p2p/amule2/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- net-p2p/amule2/Makefile 1 Dec 2006 07:38:58 -0000 1.13 +++ net-p2p/amule2/Makefile 6 Dec 2006 11:21:56 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D aMule PORTVERSION=3D 2.1.3 +PORTREVISION=3D 1 CATEGORIES=3D net-p2p #MASTER_SITES=3D http://download.berlios.de/amule/ MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} @@ -15,7 +16,7 @@ MAINTAINER=3D boris@tagnet.ru COMMENT=3D The all-platform eMule p2p client =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl # gd.4:${PORTSDIR}/graphics/gd # png.5:${PORTSDIR}/graphics/png =20 Index: net-p2p/gtorrentviewer/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-p2p/gtorrentviewer/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- net-p2p/gtorrentviewer/Makefile 14 Oct 2006 08:54:41 -0000 1.9 +++ net-p2p/gtorrentviewer/Makefile 6 Dec 2006 11:22:00 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D gtorrentviewer PORTVERSION=3D 0.2b -PORTREVISION=3D 5 +PORTREVISION=3D 6 CATEGORIES=3D net-p2p MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -16,7 +16,7 @@ MAINTAINER=3D ports@FreeBSD.org COMMENT=3D GTK+2 viewer and editor for BitTorrent meta files =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GNOME=3D gtk20 gnomehier intlhack USE_XLIB=3D yes Index: net-p2p/libbt/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-p2p/libbt/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- net-p2p/libbt/Makefile 18 Sep 2006 10:20:32 -0000 1.17 +++ net-p2p/libbt/Makefile 6 Dec 2006 11:22:07 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D libbt PORTVERSION=3D 1.05 +PORTREVISION=3D 1 CATEGORIES=3D net-p2p devel MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -14,7 +15,7 @@ MAINTAINER=3D flz@FreeBSD.org COMMENT=3D C library implementing the core BitTorrent protocol =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 GNU_CONFIGURE=3D yes USE_GMAKE=3D yes Index: net-p2p/rtorrent/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-p2p/rtorrent/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- net-p2p/rtorrent/Makefile 8 Nov 2006 12:11:38 -0000 1.23 +++ net-p2p/rtorrent/Makefile 6 Dec 2006 11:22:12 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME?=3D rtorrent PORTVERSION?=3D 0.6.4 -PORTREVISION?=3D 0 +PORTREVISION?=3D 1 CATEGORIES=3D net-p2p MASTER_SITES=3D http://libtorrent.rakshasa.no/downloads/ =20 @@ -15,7 +15,7 @@ COMMENT?=3D BitTorrent Client written in C++ =20 LIB_DEPENDS?=3D torrent.9:${PORTSDIR}/net-p2p/libtorrent -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl =20 CONFLICTS?=3D rtorrent-devel-[0-9]* =20 Index: net/asterisk/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net/asterisk/Makefile,v retrieving revision 1.62 diff -u -r1.62 Makefile --- net/asterisk/Makefile 5 Dec 2006 10:14:29 -0000 1.62 +++ net/asterisk/Makefile 6 Dec 2006 11:19:45 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D asterisk PORTVERSION=3D 1.2.13 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D net MASTER_SITES=3D http://ftp.digium.com/pub/asterisk/ \ http://ftp.digium.com/pub/asterisk/old-releases/ @@ -26,7 +26,7 @@ BUILD_DEPENDS=3D mpg123:${PORTSDIR}/audio/mpg123 LIB_DEPENDS=3D speex.3:${PORTSDIR}/audio/speex \ newt.51:${PORTSDIR}/devel/newt \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS=3D mpg123:${PORTSDIR}/audio/mpg123 =20 ONLY_FOR_ARCHS=3D i386 sparc64 amd64 Index: net/asterisk-bristuff/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net/asterisk-bristuff/Makefile,v retrieving revision 1.63 diff -u -r1.63 Makefile --- net/asterisk-bristuff/Makefile 30 Nov 2006 18:24:51 -0000 1.63 +++ net/asterisk-bristuff/Makefile 6 Dec 2006 11:20:01 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D asterisk PORTVERSION=3D 1.2.13 -PORTREVISION=3D 2 +PORTREVISION=3D 3 CATEGORIES=3D net MASTER_SITES=3D http://ftp.digium.com/pub/asterisk/ \ http://ftp.digium.com/pub/asterisk/old-releases/ @@ -26,7 +26,7 @@ BUILD_DEPENDS=3D mpg123:${PORTSDIR}/audio/mpg123 LIB_DEPENDS=3D speex.3:${PORTSDIR}/audio/speex \ newt.51:${PORTSDIR}/devel/newt \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS=3D mpg123:${PORTSDIR}/audio/mpg123 =20 ONLY_FOR_ARCHS=3D i386 sparc64 amd64 Index: net/nepenthes/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net/nepenthes/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- net/nepenthes/Makefile 27 Nov 2006 01:19:55 -0000 1.8 +++ net/nepenthes/Makefile 6 Dec 2006 11:19:48 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D nepenthes PORTVERSION=3D 0.1.7 -PORTREVISION=3D 2 +PORTREVISION=3D 3 CATEGORIES=3D net MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D nepenthes @@ -15,7 +15,7 @@ MAINTAINER=3D systemoperator@gmail.com COMMENT=3D Determine the malware activity on a network =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ magic.1:${PORTSDIR}/sysutils/file \ pcre.0:${PORTSDIR}/devel/pcre \ adns.1:${PORTSDIR}/dns/adns Index: net/nepenthes/files/patch-modules-download-curl-download-curl.cpp =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: net/nepenthes/files/patch-modules-download-curl-download-curl.cpp diff -N net/nepenthes/files/patch-modules-download-curl-download-curl.cpp --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ net/nepenthes/files/patch-modules-download-curl-download-curl.cpp 5 Dec= 2006 13:54:33 -0000 @@ -0,0 +1,12 @@ +--- modules/download-curl/download-curl.cpp.orig Tue Dec 5 15:53:24 2006 ++++ modules/download-curl/download-curl.cpp Tue Dec 5 15:54:09 2006 +@@ -230,7 +230,9 @@ + down->getDownloadUrl()->getPort(), + down->getDownloadUrl()->getPath().c_str()); + // string auth =3D down->getDownloadUrl()->getUser() + ":" + down-= >getDownloadUrl()->getPass(); ++#if LIBCURL_VERSION_NUM < 0x071000 + curl_easy_setopt(pCurlHandle, CURLOPT_SOURCE_USERPWD,(char *)down->getD= ownloadUrl()->getAuth().c_str()); ++#endif + curl_easy_setopt(pCurlHandle, CURLOPT_USERPWD,(char *)down->getDownload= Url()->getAuth().c_str()); + curl_easy_setopt(pCurlHandle, CURLOPT_URL , url); + curl_easy_setopt(pCurlHandle, CURLOPT_FTP_RESPONSE_TIMEOUT, 120); // 2 = min ftp timeout Index: net/wmlj/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net/wmlj/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- net/wmlj/Makefile 7 Nov 2006 15:37:04 -0000 1.14 +++ net/wmlj/Makefile 6 Dec 2006 11:19:53 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D wmlj PORTVERSION=3D 0.4.0 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D net MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -15,7 +15,7 @@ MAINTAINER=3D laszlof@FreeBSD.org COMMENT=3D A dockapp that monitors your friends list at LiveJournal.com =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 GNU_CONFIGURE=3D yes USE_GNOME=3D gtk12 Index: polish/sms2/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/polish/sms2/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- polish/sms2/Makefile 8 Aug 2005 04:16:53 -0000 1.18 +++ polish/sms2/Makefile 6 Dec 2006 11:20:08 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D sms PORTVERSION=3D 2.0.3 +PORTREVISION=3D 1 CATEGORIES=3D polish MASTER_SITES=3D http://ceti.pl/~miki/komputery/download/sms/ \ http://radioemiter.pl/~mjd/slackware/sms2/ \ @@ -16,7 +17,7 @@ MAINTAINER=3D pyzmen@kam.pl COMMENT=3D Send SMS to cellular phones in Poland (Idea, ERA, Plus) =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ pcre.0:${PORTSDIR}/devel/pcre \ gdbm.3:${PORTSDIR}/databases/gdbm \ pcre\\+\\+.0:${PORTSDIR}/devel/pcre++ Index: print/foomatic-db/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/print/foomatic-db/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- print/foomatic-db/Makefile 6 Nov 2006 16:39:53 -0000 1.21 +++ print/foomatic-db/Makefile 6 Dec 2006 11:20:17 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D db PORTVERSION=3D 20061031 +PORTREVISION=3D 1 CATEGORIES=3D print MASTER_SITES=3D ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR=3D acm/foomatic @@ -18,7 +19,7 @@ COMMENT=3D Foomatic database =20 LIB_DEPENDS=3D xml2.5:${PORTSDIR}/textproc/libxml2 \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 USE_GMAKE=3D yes USE_PERL5=3D yes Index: security/authforce/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/security/authforce/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- security/authforce/Makefile 4 Dec 2005 10:58:18 -0000 1.11 +++ security/authforce/Makefile 6 Dec 2006 11:20:22 -0000 @@ -7,14 +7,14 @@ =20 PORTNAME=3D authforce PORTVERSION=3D 0.9.6 -PORTREVISION=3D 4 +PORTREVISION=3D 5 CATEGORIES=3D security www MASTER_SITES=3D http://www.divineinvasion.net/authforce/ =20 MAINTAINER=3D ache@FreeBSD.org COMMENT=3D HTTP authentication brute forcer =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_BZIP2=3D yes USE_GETOPT_LONG=3Dyes Index: security/authforce/files/patch-ae =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: security/authforce/files/patch-ae diff -N security/authforce/files/patch-ae --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ security/authforce/files/patch-ae 5 Dec 2006 14:06:52 -0000 @@ -0,0 +1,12 @@ +--- src/http.c.orig Tue Dec 5 16:06:36 2006 ++++ src/http.c Tue Dec 5 16:06:24 2006 +@@ -68,7 +68,9 @@ + curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1); + curl_easy_setopt(curl, CURLOPT_USERPWD, authstring); + curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1); ++#if LIBCURL_VERSION_NUM < 0x071000 + curl_easy_setopt(curl, CURLOPT_MUTE, 1); ++#endif + curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 1); + curl_easy_setopt(curl, CURLOPT_USERAGENT, user_agent); + if (strcmp(proxy, "undef")) Index: security/clamav/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/security/clamav/Makefile,v retrieving revision 1.84 diff -u -r1.84 Makefile --- security/clamav/Makefile 6 Nov 2006 11:03:43 -0000 1.84 +++ security/clamav/Makefile 6 Dec 2006 11:20:29 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D clamav PORTVERSION=3D 0.88.6 +PORTREVISION=3D 1 CATEGORIES=3D security MASTER_SITES=3D SF =20 @@ -115,7 +116,7 @@ .endif =20 .if defined(WITH_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+=3D --with-libcurl .else CONFIGURE_ARGS+=3D --without-libcurl Index: security/gnupg/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/security/gnupg/Makefile,v retrieving revision 1.90 diff -u -r1.90 Makefile --- security/gnupg/Makefile 27 Nov 2006 22:37:41 -0000 1.90 +++ security/gnupg/Makefile 6 Dec 2006 11:41:23 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D gnupg PORTVERSION=3D 1.4.5 -PORTREVISION=3D 2 +PORTREVISION=3D 3 CATEGORIES=3D security MASTER_SITES=3D ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR=3D gnupg @@ -72,7 +72,7 @@ .endif =20 .if !defined(WITHOUT_CURL) -LIB_DEPENDS+=3D curl:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+=3D--with-libcurl=3D${LOCALBASE} # Work around a GnuPG configure buglet CONFIGURE_ENV+=3D _libcurl_config=3D${LOCALBASE}/bin/curl-config Index: security/osslsigncode/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/security/osslsigncode/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- security/osslsigncode/Makefile 11 Nov 2006 13:55:05 -0000 1.1 +++ security/osslsigncode/Makefile 6 Dec 2006 11:20:34 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D osslsigncode PORTVERSION=3D 1.2 +PORTREVISION=3D 1 CATEGORIES=3D security devel MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -24,7 +25,7 @@ USE_OPENSSL=3D yes =20 .if !defined(WITHOUT_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl .endif =20 .include Index: sysutils/fusefs-curlftpfs/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/sysutils/fusefs-curlftpfs/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- sysutils/fusefs-curlftpfs/Makefile 30 Jul 2006 22:46:02 -0000 1.4 +++ sysutils/fusefs-curlftpfs/Makefile 6 Dec 2006 11:20:45 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D curlftpfs PORTVERSION=3D 0.8 +PORTREVISION=3D 1 CATEGORIES=3D sysutils MASTER_SITES=3D SF PKGNAMEPREFIX=3D fusefs- @@ -15,7 +16,7 @@ COMMENT=3D Mount remote ftp directories =20 LIB_DEPENDS=3D fuse.2:${PORTSDIR}/sysutils/fusefs-libs \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS=3D ${LOCALBASE}/modules/fuse.ko:${PORTSDIR}/sysutils/fusefs-km= od =20 GNU_CONFIGURE=3D yes Index: sysutils/heartbeat/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/sysutils/heartbeat/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- sysutils/heartbeat/Makefile 13 Nov 2006 12:33:03 -0000 1.9 +++ sysutils/heartbeat/Makefile 6 Dec 2006 11:20:39 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D heartbeat PORTVERSION=3D 1.2.5 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D sysutils MASTER_SITES=3D http://linux-ha.org/download/ =20 @@ -15,7 +15,7 @@ COMMENT=3D Subsystem for High-Availability Clustering =20 BUILD_DEPENDS=3D libnet*>=3D1.1.2,1:${PORTSDIR}/net/libnet -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ xml2.5:${PORTSDIR}/textproc/libxml2 =20 GNU_CONFIGURE=3D yes Index: textproc/libnxml/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/textproc/libnxml/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- textproc/libnxml/Makefile 8 Nov 2006 23:36:25 -0000 1.7 +++ textproc/libnxml/Makefile 6 Dec 2006 11:20:58 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D libnxml PORTVERSION=3D 0.15 +PORTREVISION=3D 1 CATEGORIES=3D textproc devel MASTER_SITES=3D http://www2.autistici.org/bakunin/libnxml/ \ http://nivi.interfree.it/distfiles/${PORTNAME}/${PORTVERSION}/ @@ -14,7 +15,7 @@ MAINTAINER=3D nivit@email.it COMMENT=3D A C library for writing XML 1.0/1.1 files or streams =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 GNU_CONFIGURE=3D yes CONFIGURE_ENV+=3D CFLAGS=3D"${CFLAGS} -I/${LOCALBASE}/include" LDFLAGS=3D"= ${LDFLAGS} -L${LOCALBASE}/lib" Index: textproc/raptor/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/textproc/raptor/Makefile,v retrieving revision 1.38 diff -u -r1.38 Makefile --- textproc/raptor/Makefile 28 Jul 2006 13:26:02 -0000 1.38 +++ textproc/raptor/Makefile 6 Dec 2006 11:20:51 -0000 @@ -8,7 +8,7 @@ =20 PORTNAME=3D raptor PORTVERSION=3D 1.4.9 -#PORTREVISION=3D 1 +PORTREVISION=3D 1 CATEGORIES=3D textproc MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} \ http://download.librdf.org/source/ @@ -17,7 +17,7 @@ MAINTAINER=3D chuck@pkix.net COMMENT=3D RDF Parser Toolkit for Redland =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GNOME=3D gnomehack gnometarget libxml2 USE_GETOPT_LONG=3D yes Index: www/osb-nrcit/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/www/osb-nrcit/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- www/osb-nrcit/Makefile 15 Aug 2006 01:11:32 -0000 1.10 +++ www/osb-nrcit/Makefile 6 Dec 2006 11:21:15 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D osb-nrcit PORTVERSION=3D 0.5.0 -PORTREVISION=3D 2 +PORTREVISION=3D 3 CATEGORIES=3D www MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D gtk-webcore @@ -16,7 +16,7 @@ COMMENT=3D Embeddable web component using KJS, KHTML and KWIQ =20 LIB_DEPENDS=3D nrcore.0:${PORTSDIR}/www/osb-nrcore \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 USE_GNOME=3D gtk20 gnomehack USE_LDCONFIG=3D yes Index: www/p5-WWW-Curl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/www/p5-WWW-Curl/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- www/p5-WWW-Curl/Makefile 13 Jul 2006 14:22:26 -0000 1.5 +++ www/p5-WWW-Curl/Makefile 6 Dec 2006 11:21:21 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D WWW-Curl PORTVERSION=3D 3.02 +PORTREVISION=3D 1 CATEGORIES=3D www ftp perl5 MASTER_SITES=3D ${MASTER_SITE_PERL_CPAN} \ http://curl.haxx.se/libcurl/perl/ @@ -16,7 +17,7 @@ MAINTAINER=3D roam@FreeBSD.org COMMENT=3D Perl binding interface for curl =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl:install +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl:install =20 PERL_CONFIGURE=3D yes =20 Index: www/pecl-pecl_http/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/www/pecl-pecl_http/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- www/pecl-pecl_http/Makefile 31 Oct 2006 06:40:04 -0000 1.11 +++ www/pecl-pecl_http/Makefile 6 Dec 2006 11:21:05 -0000 @@ -32,7 +32,7 @@ .include =20 .if defined(WITH_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+=3D--with-http-curl-requests=3D${LOCALBASE} .else CONFIGURE_ARGS+=3D--without-http-curl-requests Index: www/wsdlpull/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/www/wsdlpull/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- www/wsdlpull/Makefile 1 Dec 2006 23:48:07 -0000 1.11 +++ www/wsdlpull/Makefile 6 Dec 2006 11:21:28 -0000 @@ -8,6 +8,7 @@ =20 PORTNAME=3D wsdlpull PORTVERSION=3D 1.12 +PORTREVISION=3D 1 CATEGORIES=3D www MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -15,7 +16,7 @@ MAINTAINER=3D ports@FreeBSD.org COMMENT=3D C++ WSDL Parser =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GNOME=3D gnometarget USE_GCC=3D 3.4+ Index: x11/ecore/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/x11/ecore/Makefile,v retrieving revision 1.34 diff -u -r1.34 Makefile --- x11/ecore/Makefile 19 Oct 2006 13:30:29 -0000 1.34 +++ x11/ecore/Makefile 6 Dec 2006 11:21:32 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D ecore PORTVERSION=3D 20060926 -PORTREVISION=3D 1 +PORTREVISION=3D 2 PORTEPOCH=3D 1 CATEGORIES=3D x11 MASTER_SITES=3D http://sunner.elcomnet.ru/~stas/ @@ -55,7 +55,7 @@ =20 .if !defined(WITHOUT_CURL) CONFIGURE_ARGS+=3D --enable-curl -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl PLIST_SUB+=3D CURL=3D"" .else CONFIGURE_ARGS+=3D --disable-curl Index: x11/ecore/pkg-plist =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/x11/ecore/pkg-plist,v retrieving revision 1.6 diff -u -r1.6 pkg-plist --- x11/ecore/pkg-plist 8 Oct 2006 13:48:36 -0000 1.6 +++ x11/ecore/pkg-plist 4 Dec 2006 12:36:55 -0000 @@ -59,7 +59,7 @@ lib/libecore_txt.la lib/libecore_txt.so lib/libecore_txt.so.1 -lib/libecore_x.a +%%X11%%lib/libecore_x.a %%X11%%lib/libecore_x.la %%X11%%lib/libecore_x.so %%X11%%lib/libecore_x.so.1 --lCAWRPmW1mITcIfM Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="curl-16-01.patch.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQBFdrlA7Ri2jRYZRVMRAtDdAJ9s5G2joIAgelwXixsKqP+zDzemDgCeO0ov sfAMmV4BHyZpfzA0yw+mxVI= =XscR -----END PGP SIGNATURE----- --lCAWRPmW1mITcIfM-- --FFoLq8A0u+X9iRU8 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFdr4Z7Ri2jRYZRVMRAs/AAJ4uKYUfiXOhZ1GtoHPJZmq75NJ+EwCeO+9s EZf/GNQ+V/LzR0CNp+xBOys= =18Ae -----END PGP SIGNATURE----- --FFoLq8A0u+X9iRU8-- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 12:58:04 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2DE8C16A40F for ; Wed, 6 Dec 2006 12:58:04 +0000 (UTC) (envelope-from kei@delfi.lv) Received: from smtp2.delfi.lv (smtp2.delfi.lv [195.2.96.244]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55A8C43CA6 for ; Wed, 6 Dec 2006 12:57:17 +0000 (GMT) (envelope-from kei@delfi.lv) Received: from daemon.delfi.lv ([62.85.29.74]) by smtp2.delfi.lv (8.13.6/8.13.3/8.8.0) with ESMTP id kB6Cw0eS036806 for ; Wed, 6 Dec 2006 14:58:01 +0200 (EET) (envelope-from kei@delfi.lv) From: Kaspars Bankovskis To: freebsd-ports@freebsd.org Date: Wed, 6 Dec 2006 14:59:00 +0200 User-Agent: KMail/1.9.4 References: <197b81196801.196801197b81@ncf.ca> In-Reply-To: <197b81196801.196801197b81@ncf.ca> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200612061459.00595.kei@delfi.lv> X-Spam-Score: -2.4 () ALL_TRUSTED X-Scanned-By: MIMEDefang 2.52 on 195.2.96.244 Subject: Re: vim 7.0.168 problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 12:58:04 -0000 this problem exists since vim7 is ported. in my case there was PACKAGE_BUILD env variable set, and as i remember in the Makefile of vim7 port was defined "if this variable is set, build with WITH_TCL variable set". therefore i had to unset it. but yes, the problem is this tcl part - build the vim without tcl and there will be no problems. On Tuesday 05 December 2006 23:08, Dwayne MacKinnon wrote: > >Yes, this problem has existed for a long time but the maintainer says > >he's been unable to reproduce it. Maybe he can try again with your > >instructions (the -DWITH_TCL is presumably the relevant part). > > > >Kris > > I should have mentioned before: I use the following make flags with vim: > -DWITH_GTK2 -DWITH_PERL -DWITH_RUBY -DWITH_CSCOPE -DWITH_TCL > > The problem occurred with the above flags, and vanished when I took away > the -DWITH_TCL. > > Cheers, > DMK > _______________________________________________ > 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 Dec 6 13:09:06 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2461816A403 for ; Wed, 6 Dec 2006 13:09:06 +0000 (UTC) (envelope-from astrikwerda@netbasics.nl) Received: from NBMS01.netbasics.nl (smtp.netbasics.nl [217.115.207.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id B880943CC8 for ; Wed, 6 Dec 2006 13:08:09 +0000 (GMT) (envelope-from astrikwerda@netbasics.nl) Received: from localhost (localhost.netbasics.nl [127.0.0.1]) by NBMS01.netbasics.nl (Postfix) with ESMTP id D3EDD5C8CB; Wed, 6 Dec 2006 14:08:49 +0100 (CET) X-Virus-Scanned: amavisd-new at netbasics.nl Received: from NBMS01.netbasics.nl ([127.0.0.1]) by localhost (NBMS01.netbasics.nl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dq4LHRTvsqJn; Wed, 6 Dec 2006 14:08:43 +0100 (CET) Received: from [192.168.1.32] (a82-94-64-178.adsl.xs4all.nl [82.94.64.178]) by NBMS01.netbasics.nl (Postfix) with ESMTP id 6A8465C747; Wed, 6 Dec 2006 14:08:43 +0100 (CET) Message-ID: <4576C126.1040805@netbasics.nl> Date: Wed, 06 Dec 2006 14:09:58 +0100 From: Anne Strikwerda - Netbasics BV User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: mark_sf@kikg.ifmo.ru Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@FreeBSD.org Subject: FreeBSD Port: libsieve-2.1.13_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 13:09:06 -0000 Hi, I'm having an issue installing libSieve on FreeBSD 6.0 http://mailman.fastxs.net/pipermail/dbmail/2006-December/010736.html Please also read the response. It's suggested that you bump libSieve to 2.2.3 kind regards, Anne Strikwerda From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 14:02:35 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6084216A4D1 for ; Wed, 6 Dec 2006 14:02:35 +0000 (UTC) (envelope-from scrappy@hub.org) Received: from hub.org (hub.org [200.46.204.220]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2666C43D6B for ; Wed, 6 Dec 2006 13:58:59 +0000 (GMT) (envelope-from scrappy@hub.org) Received: from localhost (unknown [200.46.204.191]) by hub.org (Postfix) with ESMTP id 93BE5118C6FC; Wed, 6 Dec 2006 09:59:39 -0400 (AST) Received: from hub.org ([200.46.204.220]) by localhost (mx1.hub.org [200.46.204.191]) (amavisd-new, port 10024) with ESMTP id 08915-04; Wed, 6 Dec 2006 09:59:44 -0400 (AST) Received: from ganymede.hub.org (blk-137-79-174.eastlink.ca [24.137.79.174]) by hub.org (Postfix) with ESMTP id 1BCCB118C6FB; Wed, 6 Dec 2006 09:59:39 -0400 (AST) Received: from localhost (localhost [127.0.0.1]) by ganymede.hub.org (Postfix) with ESMTP id A8B293DA18; Wed, 6 Dec 2006 09:59:48 -0400 (AST) Date: Wed, 06 Dec 2006 09:59:48 -0400 From: "Marc G. Fournier" To: freebsd@orchid.homeunix.org Message-ID: <8194EEE8E22BA574C20015C8@ganymede.hub.org> In-Reply-To: <4576A4F6.7070407@orchid.homeunix.org> References: <4576A4F6.7070407@orchid.homeunix.org> X-Mailer: Mulberry/4.0.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline Cc: ports@freebsd.org Subject: Re: bsdstats 5.3 on 6-STABLE and netcat weirdness X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 14:02:35 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 'k, I don't know how to fix this one ... I thought about doing: .if ${OSVERSION} <= 492101 RUN_DEPENDS= nc:${PORTSDIR}/net/netcat .endif not sure which version brought in nc, but 492101 is the last of the 4.x series ... but it portlint fails miserably if I don't put bsd.port.pre.mk before it, but also fails if I do: WARN: Makefile: no MASTER_SITES found. is it ok? WARN: Makefile: "RUN_DEPENDS" has to appear earlier. 0 fatal errors and 2 warnings found. Is there a better way of doing this ... ? - --On Wednesday, December 06, 2006 12:09:42 +0100 Karol Kwiatkowski wrote: > Hello, > > I'm not sure what's to blame here: bsdstats port, ports, portupgrade > or me :) > > I've got two problems - 'make clean' is cleaning net/netcat work > directory (even though on 6-STABLE nc is a part of base system) and, > more importantly, pkgdb reports stale dependency. > > That started after adding this line to the Makefile (ports/106373): > RUN_DEPENDS= nc:${PORTSDIR}/net/netcat > > I haven't seen any problem reports, is it just me? Details below. > > Best regards, > > Karol > > ># uname -srp > FreeBSD 6.2-PRERELEASE i386 ># which nc > /usr/bin/nc > ># pkgdb -Fr > ---> Checking the package registry database ># cd /usr/ports/sysutils/bsdstats/ ># make install clean > ===> Extracting for bsdstats-5.3 > ===> Patching for bsdstats-5.3 > ===> Configuring for bsdstats-5.3 > ===> Installing for bsdstats-5.3 > ===> bsdstats-5.3 depends on executable in : nc - found > ===> Generating temporary packing list > [ snipped ] > ===> Registering installation for bsdstats-5.3 > ===> Cleaning for netcat-1.10_2 > ===> Cleaning for bsdstats-5.3 ># pkgdb -F > ---> Checking the package registry database > [Updating the pkgdb in /var/db/pkg ... - 640 > packages found (-0 +1) . done] > Stale dependency: bsdstats-5.3 -> netcat-1.10_2 (net/netcat): > netpbm-10.26.34 (score:17%) ? ([y]es/[n]o/[a]ll) [no] > > -- > Karol Kwiatkowski > OpenPGP: http://www.orchid.homeunix.org/carlos/gpg/0x06E09309.asc > - ---- Marc G. Fournier Hub.Org Networking Services (http://www.hub.org) Email . scrappy@hub.org MSN . scrappy@hub.org Yahoo . yscrappy Skype: hub.org ICQ . 7615664 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFdszU4QvfyHIvDvMRAvUrAKCmSYaEa8by3oYbgWr+0mBiS+33JQCgnM45 AKxZlt46J0+snTI+o8V4Oys= =kCmR -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 14:19:56 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3DF0716A407; Wed, 6 Dec 2006 14:19:56 +0000 (UTC) (envelope-from delphij@delphij.net) Received: from tarsier.geekcn.org (tarsier.geekcn.org [210.51.165.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D6EE43CAD; Wed, 6 Dec 2006 14:19:00 +0000 (GMT) (envelope-from delphij@delphij.net) Received: from localhost (tarsier.geekcn.org [210.51.165.229]) by tarsier.geekcn.org (Postfix) with ESMTP id ABE71EB5803; Wed, 6 Dec 2006 22:19:45 +0800 (CST) X-Virus-Scanned: amavisd-new at geekcn.org Received: from tarsier.geekcn.org ([210.51.165.229]) by localhost (mail.geekcn.org [210.51.165.229]) (amavisd-new, port 10024) with ESMTP id 1Ic53FYPYhYw; Wed, 6 Dec 2006 22:19:41 +0800 (CST) Received: from [192.168.1.32] (unknown [61.49.106.138]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by tarsier.geekcn.org (Postfix) with ESMTP id DC9FAEB51DB; Wed, 6 Dec 2006 22:19:40 +0800 (CST) DomainKey-Signature: a=rsa-sha1; s=default; d=delphij.net; c=nofws; q=dns; h=message-id:date:from:organization:user-agent:mime-version:to:cc: subject:references:in-reply-to:x-enigmail-version:content-type; b=kQF4U5IY793CRJPDsJhsIL0u/H+FRwmaFyt/7UFfhl9cpkm/i9P0wajioOXXDCj44 sGAIYmpGzNBmHAypugiQA== Message-ID: <4576D15A.2070101@delphij.net> Date: Wed, 06 Dec 2006 22:19:06 +0800 From: LI Xin Organization: The FreeBSD Project User-Agent: Thunderbird 1.5.0.8 (Macintosh/20061025) MIME-Version: 1.0 To: "Marc G. Fournier" References: <4576A4F6.7070407@orchid.homeunix.org> <8194EEE8E22BA574C20015C8@ganymede.hub.org> In-Reply-To: <8194EEE8E22BA574C20015C8@ganymede.hub.org> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-ripemd160; protocol="application/pgp-signature"; boundary="------------enig021C8DF14C19623A78BB42F9" Cc: freebsd@orchid.homeunix.org, ports@freebsd.org, dd@freebsd.org Subject: Re: bsdstats 5.3 on 6-STABLE and netcat weirdness X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 14:19:56 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig021C8DF14C19623A78BB42F9 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Marc G. Fournier wrote: >=20 > 'k, I don't know how to fix this one ... I thought about doing: >=20 > .if ${OSVERSION} <=3D 492101 > RUN_DEPENDS=3D nc:${PORTSDIR}/net/netcat > .endif >=20 > not sure which version brought in nc, but 492101 is the last of the 4.x= series=20 > ... but it portlint fails miserably if I don't put bsd.port.pre.mk befo= re it,=20 > but also fails if I do: >=20 > WARN: Makefile: no MASTER_SITES found. is it ok? > WARN: Makefile: "RUN_DEPENDS" has to appear earlier. > 0 fatal errors and 2 warnings found. >=20 > Is there a better way of doing this ... ? I think you want something like: =2Eif ${OSVERSION} < 503102 || (${OSVERSION} >=3D 600000 && ${OSVERSION} = < 600010) instead of just considering 492101. Also, I think net/obnc should be used instead of net/netcat, and obnc itself should be set to 'deprecated' mode... Cheers, --=20 Xin LI http://www.delphij.net/ FreeBSD - The Power to Serve! --------------enig021C8DF14C19623A78BB42F9 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (Darwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFdtFbOfuToMruuMARAw83AJ9TgrvwqyxheOvRMTCfbonpV85eTQCeMM4/ hC6OZitpcQopFKNMlDv8Ajk= =1kPf -----END PGP SIGNATURE----- --------------enig021C8DF14C19623A78BB42F9-- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 14:44:58 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1815816A4A0; Wed, 6 Dec 2006 14:44:58 +0000 (UTC) (envelope-from pgollucci@p6m7g8.com) Received: from piccollo.p6m7g8.net (c66-236-219-70.ip.panth.com [66.236.219.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1EA143CD0; Wed, 6 Dec 2006 14:43:43 +0000 (GMT) (envelope-from pgollucci@p6m7g8.com) Received: from [192.168.0.2] (cpe-76-171-241-62.socal.res.rr.com [76.171.241.62]) (authenticated bits=0) by piccollo.p6m7g8.net (8.13.6/8.13.6) with ESMTP id kB324TeW008971 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO); Sat, 2 Dec 2006 21:04:32 -0500 (EST) (envelope-from pgollucci@p6m7g8.com) Message-ID: <457230A8.9040403@p6m7g8.com> Date: Sat, 02 Dec 2006 18:04:24 -0800 From: "Philip M. Gollucci" Organization: P6M7G8 Consulting User-Agent: Thunderbird 1.5 (X11/20060317) MIME-Version: 1.0 To: Eric References: <4571BAF8.8070406@mikestammer.com> <4571BC0F.6040902@mikestammer.com> In-Reply-To: <4571BC0F.6040902@mikestammer.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.88.4/2269/Fri Dec 1 13:17:05 2006 on piccollo.p6m7g8.net X-Virus-Status: Clean X-Spam-Status: No, score=-2.4 required=5.0 tests=AWL,BAYES_00, DK_POLICY_SIGNSOME autolearn=ham version=3.1.5 X-Spam-Checker-Version: SpamAssassin 3.1.5 (2006-08-29) on piccollo.p6m7g8.net Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: mod_perl update issue X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 14:44:58 -0000 Eric wrote: > CPUTYPE?=athlon64 > > either way, its installed now. i have never seen that happen before. > thanks! We all just found this when I submitted the 2.0.3 update. A patch will be added to the ports tree and I've committed a fix to mp2 svn upstream so 2.0.4 will not need it. Patch below (which should also work with 2.0.2 until 2.0.3 catches up) root% cat files/patch-xs-APR-APR-Makefile.PL --- xs/APR/APR/Makefile.PL.orig Sat Dec 2 03:52:51 2006 +++ xs/APR/APR/Makefile.PL Sat Dec 2 03:52:59 2006 @@ -15,7 +15,7 @@ my %args; -%args = map { split /=/, $_ } @ARGV; +%args = map { split /=/, $_, 2 } @ARGV; $args{NAME} = 'APR'; $args{VERSION_FROM} = 'APR.pm'; -- ------------------------------------------------------------------------ Philip M. Gollucci (pgollucci@p6m7g8.com) 323.219.4708 Consultant / http://p6m7g8.net/Resume/resume.shtml Senior Software Engineer - TicketMaster - http://ticketmaster.com 1024D/EC88A0BF 0DE5 C55C 6BF3 B235 2DAB B89E 1324 9B4F EC88 A0BF I never had a dream come true 'Til the day that I found you. Even though I pretend that I've moved on You'll always be my baby. I never found the words to say You're the one I think about each day And I know no matter where life takes me to A part of me will always be... A part of me will always be with you. From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 14:56:52 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8865316A403; Wed, 6 Dec 2006 14:56:52 +0000 (UTC) (envelope-from vd@datamax.bg) Received: from jengal.datamax.bg (jengal.datamax.bg [82.103.104.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11D5F43CA8; Wed, 6 Dec 2006 14:56:06 +0000 (GMT) (envelope-from vd@datamax.bg) Received: from qlovarnika.bg.datamax (qlovarnika.bg.datamax [192.168.10.2]) by jengal.datamax.bg (Postfix) with SMTP id BB2D1B864; Wed, 6 Dec 2006 16:56:50 +0200 (EET) Received: (nullmailer pid 47742 invoked by uid 1002); Wed, 06 Dec 2006 14:56:50 -0000 Date: Wed, 6 Dec 2006 16:56:50 +0200 From: Vasil Dimov To: ports@FreeBSD.org, curl-ports-maintainers@ringlet.net Message-ID: <20061206145650.GA47553@qlovarnika.bg.datamax> References: <20061206125657.GB1814@straylight.m.ringlet.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0F1p//8PRICkK4MW" Content-Disposition: inline In-Reply-To: <20061206125657.GB1814@straylight.m.ringlet.net> Cc: Subject: Re: [CFR] ftp/curl update and API incompatibility X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vd@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 14:56:52 -0000 --0F1p//8PRICkK4MW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Dec 06, 2006 at 02:56:57PM +0200, Peter Pentchev wrote: > Hi, >=20 > I'm writing to you all because you are listed as maintainers of ports > that depend directly on ftp/curl. Attached is a patch that updates > ftp/curl to version 7.16.0; however, this update might need some testing. It seems to me that you have done tremendous amount of work (the patch you sent is 2119 lines). Thanks! --=20 Vasil Dimov gro.DSBeerF@dv % Grelb's Reminder: Eighty percent of all people consider themselves to be above average drivers. --0F1p//8PRICkK4MW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iD8DBQFFdtoyFw6SP/bBpCARAk6lAJ91TmR04TnPq/y80WgbqV5kSGSLxACgnjUM 4Le9L3KurFksTg3phPz7AhM= =7fLx -----END PGP SIGNATURE----- --0F1p//8PRICkK4MW-- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 16:22:11 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E99DE16A407 for ; Wed, 6 Dec 2006 16:22:10 +0000 (UTC) (envelope-from laszlof@FreeBSD.org) Received: from main.vonostingroup.com (main.vonostingroup.com [216.32.84.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E43E43CA3 for ; Wed, 6 Dec 2006 16:21:24 +0000 (GMT) (envelope-from laszlof@FreeBSD.org) Received: from c-71-227-23-200.hsd1.mi.comcast.net ([71.227.23.200] helo=[192.168.0.3]) by main.vonostingroup.com with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GrzWr-000AC1-93; Wed, 06 Dec 2006 09:21:53 -0700 Message-ID: <4576EE1E.9020604@FreeBSD.org> Date: Wed, 06 Dec 2006 11:21:50 -0500 From: "Frank J. Laszlo" User-Agent: Thunderbird 1.5.0.8 (X11/20061122) MIME-Version: 1.0 To: roam@ringlet.net References: <20061206125657.GB1814@straylight.m.ringlet.net> In-Reply-To: <20061206125657.GB1814@straylight.m.ringlet.net> X-Enigmail-Version: 0.94.1.0 OpenPGP: id=012360EC Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - main.vonostingroup.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [26 6] X-AntiAbuse: Sender Address Domain - FreeBSD.org X-Source: X-Source-Args: X-Source-Dir: Cc: ports@freebsd.org, curl-ports-maintainers@ringlet.net Subject: Re: [CFR] ftp/curl update and API incompatibility X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 16:22:11 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Peter Pentchev wrote: > Hi, > > I'm writing to you all because you are listed as maintainers of ports > that depend directly on ftp/curl. Attached is a patch that updates > ftp/curl to version 7.16.0; however, this update might need some testing. > > There are some cURL options (CURLOPT_MUTE, CURLOPT_PASSWDFUNCTION, etc.) > that have been deprecated for a long time now, yet they were still defined > as compile-time constants to provide some kind of backwards compatibility. > Well, 7.16.0 puts a stop to this - these options are now completely > removed, and programs and libraries that still use them without checking > will be broken. Thus, the libcurl library version was bumped, hence my > request for testing the update. > > Attached is a patch that fixes all ports that depend on ftp/curl directly. > The fixes consist of bumping the curl library version, bumping PORTREVISION, > and, here and there, ifdef'ing the obsolete options. I have verified that > all the ports build now, except for astro/gaia and www/osb-nrcit; however, > for most of them I could not very well check if they *work* :) There is > also the little matter of the PORTREVISION bump for the PHP ports, and > the c-ares dependency of irc/unreal; but see below. > > The patch itself is also available at > http://people.FreeBSD.org/~roam/patches/curl/ > > So - this patch updates cURL to 7.16.0, and tries to fix all dependent > ports. The updates to the ports are trivial, with the following exceptions: > > astro/gaia > - Update blindly, it's forbidden for license reasons. > > audio/vorbis-tools > ftp/py-curl > ftp/rexx-curl > net/nepenthes > security/authforce > - #ifdef the obsolete options based on the libcurl version. > > audio/xmms2 > - Fix the packing list for the !lastfm and !apple_mdns cases. > > ftp/php4-curl > ftp/php5-curl > - #ifdef more obsolete options based on their definitions, as is already > done for CURLOPT_MUTE. > - Not sure how to proceed with the PORTREVISION here, and also in > www/pecl-pecl_http - it seems that it is not customary for a PHP extension > to have a different PORTREVISION from the main port? > > irc/unreal > - Remove the dependency on dns/ares - it is not used at all, Unreal uses > its own bundled copy of c-ares! > - Add a dependency on dns/c-ares, now that version 1.3.2 of the port comes > with the ares_config_info patch. > - Patch the configure script not to build the bundled c-ares, and > the Makefile not to try to link against it. > > security/gnupg > - Add an explicit library version number to the curl dependency. > > www/osb-nrcit > - Update blindly, it does not build because lang/osb-jscore is broken. > > x11/ecore > - Fix the packing list for the !x11 case. > > I'd appreciate any comments and suggestions for this update; thanks in > advance! > > G'luck, > Peter > > Nice work peter, looks good to me. It may be wise to run them all through a tinderbox. :) - -Frank -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iQIVAwUBRXbuHq1QwXwBI2DsAQK+lQ/+MXI4PpQB4HZc3rtNmzhjGRELkHs87nU9 aihWPuqGLynoowXdilYduzNSSdq7dRb7VpnnGvjJoAZagu4ot3DYX7vzjMyn7OrQ ybVfhCGXfSRUr+t8Lswbor3h3eOf1LRf0hCpoyv1kF782Ao4JPoXW0csOtw2V3jQ CtMObM0G5M5LhvcNXhh+6nFbtVPpQZcM1BfUMVOUSkv6NHS1kDim2tGZ410zNMTY BSieLom5ouZfzvXmni+bO3qnLJ3PTw4gNrusP1J+BVtsBL0G4gig7paAfjD1lpTV M1K3UEBuOLHqJDxumBihvLFYU8yhSfMptSzEtXpb9NE+xVeRZiAZliWBFlHiiGcW iT2gl+MzqOcOjl6d7DNBNQ//7zzzH0ywsyN1B5sqWBAV/lwgPqcMwBkdec6ulbP1 lgmP8+l76Gu66EAExKHGA/Xo0Uc7KTL5icj6AkcUzYkNuM6PQakIzqrzlRmsta/z XvFhfzIAT4UEjs97IWdh0q0TSHQO2E/WTr4dJl3Bab4Ia4EDzyY84GDyHiCTm6Is NvCI2iXPNk6WSbgrwo9lVjtTb0u3nNQVDHZc9tXeFZmLEBHPYZNYYL92S+YxcIEi slfqRz39/MSrYqU9JVJyThVv+9/Aq8MikCuacIF0EIIVL8/ketgLtn9G54JZ8u8d dwPtSPc2TiU= =6tXv -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 18:24:19 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2619C16A415 for ; Wed, 6 Dec 2006 18:24:19 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx22.fluidhosting.com [204.14.89.5]) by mx1.FreeBSD.org (Postfix) with SMTP id 083CE440C9 for ; Wed, 6 Dec 2006 18:15:00 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 7968 invoked by uid 399); 6 Dec 2006 18:15:01 -0000 Received: from localhost (HELO ?192.168.0.7?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 6 Dec 2006 18:15:01 -0000 X-Originating-IP: 127.0.0.1 Message-ID: <457708A3.3080306@FreeBSD.org> Date: Wed, 06 Dec 2006 10:14:59 -0800 From: Doug Barton Organization: http://www.freebsd.org/ User-Agent: Thunderbird 1.5.0.8 (X11/20061125) MIME-Version: 1.0 To: Ade Lovett References: <17771.24717.95357.989644@jerusalem.litteratus.org> <456B70E9.4030408@FreeBSD.org> <20061204213106.GA42084@atarininja.org> <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> <20061205172803.GA51892@atarininja.org> <4575C568.70905@FreeBSD.org> <20061205194146.GC52966@atarininja.org> <20061205203120.GA53894@atarininja.org> <4575EBA8.3020601@FreeBSD.org> In-Reply-To: X-Enigmail-Version: 0.94.1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 18:24:19 -0000 Ade Lovett wrote: > > On Dec 05, 2006, at 13:59 , Doug Barton wrote: > >> Wesley Shields wrote: >>>> @comment DISTFILE:$filename:$size:$md5:$sha256 >> >> I think that's good, the other information might come in handy down >> the road. One thing you might want to consider is to put the md5 sum >> at the end, since at some point down the road (maybe years from now, >> but still ...) we're likely to drop md5 altogether. > > Better still would be: > > @comment DISTFILE:[':' =]* > > eg: DISTFILE:foo:SIZE=1234:MD5=...:SHA256=... > > Relying on the specific position of an item in a delimited list almost > always comes back and bites in painful spots later on down the way. > Minimal extra parsing required by consumers, and bits and pieces can be > added/removed almost at will. Personally I think this is overkill, but I won't argue against it. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 16:32:46 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DC15216A494; Wed, 6 Dec 2006 16:32:46 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from com1.ht-systems.ru (com1.ht-systems.ru [83.97.104.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06C4F43DA9; Wed, 6 Dec 2006 16:28:38 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from [213.87.86.61] (helo=fonon.mbsd.msk.ru) by com1.ht-systems.ru with esmtpa (Exim 4.62) (envelope-from ) id 1GrzYM-0002e1-I1; Wed, 06 Dec 2006 19:23:30 +0300 Received: from localhost (localhost [127.0.0.1]) by fonon.mbsd.msk.ru (Postfix) with SMTP id 732D011F3D; Wed, 6 Dec 2006 19:28:00 +0300 (MSK) Date: Wed, 6 Dec 2006 19:28:00 +0300 From: Stanislav Sedov To: "[LoN]Kamikaze" Message-Id: <20061206192800.f78d3883.stas@FreeBSD.org> In-Reply-To: <45752E45.6070202@gmx.de> References: <4572F08A.3030109@computer.org> <20061204223954.95349230.stas@FreeBSD.org> <4574F00E.90501@computer.org> <45752E45.6070202@gmx.de> Organization: The FreeBSD Project X-Mailer: carrier-pigeon X-Voice: +7 916 849 20 23 X-XMPP: ssedov@jabber.ru X-ICQ: 208105021 X-Yahoo: stanislav_sedov X-PGP-Fingerprint: F21E D6CC 5626 9609 6CE2 A385 2BF5 5993 EB26 9581 X-University: MEPhI Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Wed__6_Dec_2006_19_28_00_+0300_VpTcCnxZbK2881KE" X-Spam-Flag: SKIP X-Spam-Yversion: Spamooborona 1.6.0 X-Mailman-Approved-At: Wed, 06 Dec 2006 19:22:17 +0000 Cc: Stanislav Sedov , freebsd-ports , Eric Schuele Subject: Re: (x11-wm\enlightenment-devel) e17, pam, and "Lock Screen"... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 16:32:46 -0000 --Signature=_Wed__6_Dec_2006_19_28_00_+0300_VpTcCnxZbK2881KE Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7bit On Tue, 05 Dec 2006 09:31:01 +0100 "[LoN]Kamikaze" mentioned: > > I've been using that a lot without recognizing it doesn't actually work... Hmm... Probably the FreeBSD's login doesn't work too?;-) -- Stanislav Sedov http://people.freebsd.org/~stas/stas.key.asc --Signature=_Wed__6_Dec_2006_19_28_00_+0300_VpTcCnxZbK2881KE Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFdu+QK/VZk+smlYERAmqmAJ9rUXYWPcSsK7EQqBbVq8YVVRHFlQCfZnO8 XRaNSGQ3xb1MjwVfY456JiQ= =slf+ -----END PGP SIGNATURE----- --Signature=_Wed__6_Dec_2006_19_28_00_+0300_VpTcCnxZbK2881KE-- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 19:47:24 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7140D16A407 for ; Wed, 6 Dec 2006 19:47:24 +0000 (UTC) (envelope-from karel@lovetemple.net) Received: from mta1.siol.net (mta1.siol.net [193.189.160.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20C6143FA5 for ; Wed, 6 Dec 2006 19:40:33 +0000 (GMT) (envelope-from karel@lovetemple.net) Received: from edge2.siol.net ([10.10.10.211]) by mta1.siol.net with ESMTP id <20061206194040.IOMK15340.mta1.siol.net@edge2.siol.net>; Wed, 6 Dec 2006 20:40:40 +0100 Received: from [192.168.0.149] (really [86.61.115.70]) by edge2.siol.net with ESMTP id <20061206194035.HDQL1846.edge2.siol.net@[192.168.0.149]>; Wed, 6 Dec 2006 20:40:35 +0100 Message-ID: <45771CB1.7090809@lovetemple.net> Date: Wed, 06 Dec 2006 20:40:33 +0100 From: Karel Miklav User-Agent: Thunderbird 1.5.0.8 (X11/20061111) MIME-Version: 1.0 To: Petr Holub References: <004301c71806$c6d53380$c8a423c0@KLOBOUCEK> In-Reply-To: <004301c71806$c6d53380$c8a423c0@KLOBOUCEK> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: lang/gnat-gcc41 build error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 19:47:24 -0000 Petr Holub wrote: > ... maybe because I have lang/gnat already installed? I don't know at the moment about this. Maybe you could try and help me a little? > And why do we need gnat-gcc34 anyway? I figured out you must have some other GNAT installed, and that caused the GCC configure to break. I have problems maintaining the existing framework, so I choose to use a known compiler for bootstrapping and that's gnat-gcc34. I'll send you patches after I reproduce the error. From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 19:50:26 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CCF7516A501 for ; Wed, 6 Dec 2006 19:50:26 +0000 (UTC) (envelope-from jacula@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB261440AF for ; Wed, 6 Dec 2006 19:45:01 +0000 (GMT) (envelope-from jacula@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so218471uge for ; Wed, 06 Dec 2006 11:45:37 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:date:from:to:subject:message-id:mail-followup-to:references:mime-version:content-type:content-disposition:in-reply-to:x-disclaimer:x-operating-system:x-editor:x-face:user-agent:x-virus-scanned:x-virus-status; b=rxvHKCPa/slTv1H1VhMQLumEl592XQ305F+wXB98jiuTMM05+1kogjsjDS/91A38pdkB+X5DudNGbW+oZCF1eral0oU7M+gQyIrhRuJebPmKOy0Ka/OIHdYKWgWS4OPQnwZ/JoCRCsrBk9Mh7LBWWvx2DouCPi63TQg9nHRY4nA= Received: by 10.67.19.20 with SMTP id w20mr1421462ugi.1165434336737; Wed, 06 Dec 2006 11:45:36 -0800 (PST) Received: from splork.wirewater.yow ( [82.58.198.220]) by mx.google.com with ESMTP id u1sm5841586uge.2006.12.06.11.45.35; Wed, 06 Dec 2006 11:45:36 -0800 (PST) Received: from localhost.wirewater.yow [127.0.0.1] by splork.wirewater.yow (Sendmail: 8.13.8/8.13.8) with ESMTP id kB6JjXb2059478 for ; Wed, 6 Dec 2006 19:45:33 GMT Received: by splork.wirewater.yow (Sendmail: 8.13.8/8.13.8/Submit) id kB6JjWKG059476 for freebsd-ports@freebsd.org; Wed, 6 Dec 2006 19:45:32 GMT Date: Wed, 6 Dec 2006 19:45:32 +0000 From: Jacula Modyun To: freebsd-ports@freebsd.org Message-ID: Mail-Followup-To: freebsd-ports@freebsd.org References: <188207188481.188481188207@ncf.ca> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="XsQoSWH+UP9D9v3l" Content-Disposition: inline In-Reply-To: <188207188481.188481188207@ncf.ca> X-Disclaimer: Freebsd...you are my daemon! X-Operating-System: FreeBSD 6.2-PRERELEASE X-Editor: VIM - Vi IMproved 7.0 X-Face: ak5rwz4-aUa>hPFZlcg,bXxn.(TN}e9DGFrKU\.i_'B[&5=pAd9o"j)5VSUYW:BRQG#^42Ev$Il|; Ztn=,C User-Agent: Mutt/1.5.13 (2006-08-11) X-Virus-Scanned: ClamAV 0.88.6/2294/Wed Dec 6 16:28:02 2006 on splork.wirewater.yow X-Virus-Status: Clean Subject: Re: vim 7.0.168 problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 19:50:27 -0000 --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Dec 05, 2006 at 09:52:25AM -0500, Dwayne MacKinnon wro= te: > Hello, >=20 > I ran into an odd compile problem when trying to upgrade to vim 7.0.168 > using the -DWITH_TCL flag. I'm on FreeBSD 6.1-RELEASE-p10 using ccache > and portupgrade. >=20 > Cheers, > DMK Delete the /usr/ports/vim/files/patch-configure file and install with tcl. This file, for me, is the problem. Jacula Modyun --=20 After all is said and done, a hell of a lot more is said than done. --XsQoSWH+UP9D9v3l Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- iQIVAwUBRXcd3NlCXyCLn0uLAQoT5A//SWPtmpOxols/6h6BwkdS/odAF2DkPHub CDeh4bXrVz8CA30QyvAteESMdJZkPh/OIy2TdgfCzwwAABI7tb5x9C9IT5eswIQw +TEZW7+paPxoD++HtoSWRN7Mhp1IZqgsiAoKbPzX1a6lQfFvsqGUGcPumb9eZrx6 O/dUtX4CY6np1tHH28dFPNhmTcSRmGzEgimIJJTwQxDcqYeTd0PEJr2cyfSW9v2t xQVMBOmOPfDqdbHSXhGHK4mm62gF1kLu/Fhhl1cH8h/vnoCkFO2FxGAsB9hq9GfD NvtsZMAtYse1JRlkyG3ewiynKXKR51FGExB4OH3DdTDGYxifU1xOGVl2s5TBj76B gtj9xppVqD2xYo9hWlu/t4Kfulde7q/NSRJnHYfqY5WZemiqI4aw2wxiWKeF+nJS HTMc0xarIZo26rABpC4eBIJ2IhgESNSEHZ6XZPEjtkzfvj69K0av5lCWHJO5Yilo IotF80my0Oegks+3v3g4T5yHC6ePE/XysfINXaScaCpzt+JWN03PLxK96Ef7PlRD QRiDS7L7qW1PRfbal9QiS6hC3/41xiHSnrdayZG9hpWuZQ8Oswru+0uSb1ld+uZb 8jZGgNsQ2Kxhmaauoc9JYs4i8sc3UAAZzNCM09whpww6Bzdomkkj1zyaGTQwHiNk o2ba7cYRabc= =YHA1 -----END PGP SIGNATURE----- --XsQoSWH+UP9D9v3l-- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 19:04:14 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A11EC16A54B for ; Wed, 6 Dec 2006 19:04:14 +0000 (UTC) (envelope-from dhutch9999@yahoo.com) Received: from web31102.mail.mud.yahoo.com (web31102.mail.mud.yahoo.com [68.142.200.35]) by mx1.FreeBSD.org (Postfix) with SMTP id 9A7D744729 for ; Wed, 6 Dec 2006 18:36:45 +0000 (GMT) (envelope-from dhutch9999@yahoo.com) Received: (qmail 7377 invoked by uid 60001); 6 Dec 2006 18:37:04 -0000 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; h=Message-ID:X-YMail-OSG:Received:Date:From:Subject:To:MIME-Version:Content-Type:Content-Transfer-Encoding; b=QfbBudAR0VEp8z1nuR6WJE0+0fw8lcjsWzNeFAvHgABdWvGSUNTaKZm/aYV+g4Ffwmull7Cm1asE7TvLMzH/QGDDqEq55pmrjhmxTnUoQpTJuv342S39oRICkq67uKSo5ydlrmug6Vd3yUpuDnUaBTJ7uoQcN1ImZWiZuuVWbgQ= ; Message-ID: <20061206183704.7375.qmail@web31102.mail.mud.yahoo.com> X-YMail-OSG: l.2UCqMVM1kr5ozunCQCgy4waJPQXA4iVdUKxdNnLimy0bePKtnIDG2hXxufpsaxuKES2t_m7RJbjSLIf8o8nLwa0sMwBxv2AxjcbTfYMAIYFBPCdR84LX8lsQ51dZ.OAzk2DnW.zBjXsfmgktwlEdmyzCCuK550uw-- Received: from [12.153.72.219] by web31102.mail.mud.yahoo.com via HTTP; Wed, 06 Dec 2006 10:37:04 PST Date: Wed, 6 Dec 2006 10:37:04 -0800 (PST) From: DH To: ports@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="0-904460031-1165430224=:4964" Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Wed, 06 Dec 2006 20:08:26 +0000 Cc: Subject: Compiler error portupgrading bash2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 19:04:15 -0000 --0-904460031-1165430224=:4964 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit Content-Id: Content-Disposition: inline Good Afternoon; Please be aware that bash2 is failing to build via portupgrade. I've attached the output from my last build attempt which shows the specific compiler error. The three machines experiencing this error are 4.11-release-p18 +manually applied security patches. If I may be of further assistance please let me know. Thank you for your support-time & effort, it is appreciated. David Hutchens III Network Administrator DRS Surveillance Support Systems - A division of DRS Technologies. ____________________________________________________________________________________ Do you Yahoo!? Everyone is raving about the all-new Yahoo! Mail beta. http://new.mail.yahoo.com --0-904460031-1165430224=:4964 Content-Type: application/octet-stream; name=bash-fail Content-Transfer-Encoding: base64 Content-Description: 1092836922-bash-fail Content-Disposition: attachment; filename=bash-fail U2NyaXB0IHN0YXJ0ZWQgb24gV2VkIERlYyAgNiAxMzoyNjo0OCAyMDA2CmJh c2gtMi4wNWIjIHBwb29ycnR0dXVwcGdncnJhYWRkZWUgIGJiYWFzc2hoDQ0K LS0tPiAgVXBncmFkaW5nICdiYXNoLTIuMDViLjAwN181JyB0byAnYmFzaC0y LjA1Yi4wMDdfNicgKHNoZWxscy9iYXNoMikNCi0tLT4gIEJ1aWxkaW5nICcv dXNyL3BvcnRzL3NoZWxscy9iYXNoMicNCj09PT4gIENsZWFuaW5nIGZvciBi YXNoLTIuMDViLjAwN182DQo9PT0+ICBWdWxuZXJhYmlsaXR5IGNoZWNrIGRp c2FibGVkLCBkYXRhYmFzZSBub3QgZm91bmQNCj09PT4gIEV4dHJhY3Rpbmcg Zm9yIGJhc2gtMi4wNWIuMDA3XzYNCj0+IE1ENSBDaGVja3N1bSBPSyBmb3Ig YmFzaC0yLjA1Yi50YXIuZ3ouDQo9PiBNRDUgQ2hlY2tzdW0gT0sgZm9yIGJh c2gtZG9jLTIuMDViLnRhci5nei4NCj0+IE1ENSBDaGVja3N1bSBPSyBmb3Ig YmFzaDIwNWItMDAxLg0KPT4gTUQ1IENoZWNrc3VtIE9LIGZvciBiYXNoMjA1 Yi0wMDIuDQo9PiBNRDUgQ2hlY2tzdW0gT0sgZm9yIGJhc2gyMDViLTAwMy4N Cj0+IE1ENSBDaGVja3N1bSBPSyBmb3IgYmFzaDIwNWItMDA0Lg0KPT4gTUQ1 IENoZWNrc3VtIE9LIGZvciBiYXNoMjA1Yi0wMDUuDQo9PiBNRDUgQ2hlY2tz dW0gT0sgZm9yIGJhc2gyMDViLTAwNi4NCj0+IE1ENSBDaGVja3N1bSBPSyBm b3IgYmFzaDIwNWItMDA3Lg0KPT09PiAgUGF0Y2hpbmcgZm9yIGJhc2gtMi4w NWIuMDA3XzYNCj09PT4gIEFwcGx5aW5nIGRpc3RyaWJ1dGlvbiBwYXRjaGVz IGZvciBiYXNoLTIuMDViLjAwN182DQo9PT0+ICBBcHBseWluZyBGcmVlQlNE IHBhdGNoZXMgZm9yIGJhc2gtMi4wNWIuMDA3XzYNCj09PT4gIENvbmZpZ3Vy aW5nIGZvciBiYXNoLTIuMDViLjAwN182DQpjaGVja2luZyBidWlsZCBzeXN0 ZW0gdHlwZS4uLiBpMzg2LXBvcnRibGQtZnJlZWJzZDQuMTENCmNoZWNraW5n IGhvc3Qgc3lzdGVtIHR5cGUuLi4gaTM4Ni1wb3J0YmxkLWZyZWVic2Q0LjEx DQoNCkJlZ2lubmluZyBjb25maWd1cmF0aW9uIGZvciBiYXNoLTIuMDViLXJl bGVhc2UgZm9yIGkzODYtcG9ydGJsZC1mcmVlYnNkNC4xMQ0KDQpjaGVja2lu ZyBmb3IgZ2NjLi4uIGNjDQpjaGVja2luZyBmb3IgQyBjb21waWxlciBkZWZh dWx0IG91dHB1dC4uLiBhLm91dA0KY2hlY2tpbmcgd2hldGhlciB0aGUgQyBj b21waWxlciB3b3Jrcy4uLiB5ZXMNCmNoZWNraW5nIHdoZXRoZXIgd2UgYXJl IGNyb3NzIGNvbXBpbGluZy4uLiBubw0KY2hlY2tpbmcgZm9yIGV4ZWN1dGFi bGUgc3VmZml4Li4uIA0KY2hlY2tpbmcgZm9yIG9iamVjdCBzdWZmaXguLi4g bw0KY2hlY2tpbmcgd2hldGhlciB3ZSBhcmUgdXNpbmcgdGhlIEdOVSBDIGNv bXBpbGVyLi4uIHllcw0KY2hlY2tpbmcgd2hldGhlciBjYyBhY2NlcHRzIC1n Li4uIHllcw0KY2hlY2tpbmcgZm9yIFBPU0lYaXplZCBJU0MuLi4gbm8NCmNo ZWNraW5nIGhvdyB0byBydW4gdGhlIEMgcHJlcHJvY2Vzc29yLi4uIGNjIC1F DQpjaGVja2luZyBmb3IgbWluaXgvY29uZmlnLmguLi4gbm8NCmNoZWNraW5n IGZvciBzcGVjaWFsIEMgY29tcGlsZXIgb3B0aW9ucyBuZWVkZWQgZm9yIGxh cmdlIGZpbGVzLi4uIG5vDQpjaGVja2luZyBmb3IgX0ZJTEVfT0ZGU0VUX0JJ VFMgdmFsdWUgbmVlZGVkIGZvciBsYXJnZSBmaWxlcy4uLiBubw0KY2hlY2tp bmcgZm9yIF9MQVJHRV9GSUxFUyB2YWx1ZSBuZWVkZWQgZm9yIGxhcmdlIGZp bGVzLi4uIG5vDQpjaGVja2luZyB3aGV0aGVyIGNjIG5lZWRzIC10cmFkaXRp b25hbC4uLiBubw0KY2hlY2tpbmcgZm9yIHRnZXRlbnQgaW4gLWx0ZXJtY2Fw Li4uIHllcw0KY2hlY2tpbmcgd2hpY2ggbGlicmFyeSBoYXMgdGhlIHRlcm1j YXAgZnVuY3Rpb25zLi4uIHVzaW5nIGxpYnRlcm1jYXANCmNoZWNraW5nIHZl cnNpb24gb2YgaW5zdGFsbGVkIHJlYWRsaW5lIGxpYnJhcnkuLi4gNC4xDQpj b25maWd1cmU6IFdBUk5JTkc6IGluc3RhbGxlZCByZWFkbGluZSBsaWJyYXJ5 IGlzIHRvbyBvbGQgdG8gYmUgbGlua2VkIHdpdGggYmFzaA0KY29uZmlndXJl OiBXQVJOSU5HOiB1c2luZyBwcml2YXRlIGJhc2ggdmVyc2lvbg0KY2hlY2tp bmcgZm9yIGEgQlNEIGNvbXBhdGlibGUgaW5zdGFsbC4uLiAvdXNyL2Jpbi9p bnN0YWxsIC1jIC1vIHJvb3QgLWcgd2hlZWwNCmNoZWNraW5nIGZvciBhci4u LiBhcg0KY2hlY2tpbmcgZm9yIHJhbmxpYi4uLiByYW5saWINCmNoZWNraW5n IGZvciBiaXNvbi4uLiBiaXNvbiAteQ0KY2hlY2tpbmcgd2hldGhlciBtYWtl IHNldHMgJHtNQUtFfS4uLiB5ZXMNCmNoZWNraW5nIGZvciBjYyBvcHRpb24g dG8gYWNjZXB0IEFOU0kgQy4uLiBub25lIG5lZWRlZA0KY2hlY2tpbmcgZm9y IGFuIEFOU0kgQy1jb25mb3JtaW5nIGNvbnN0Li4uIHllcw0KY2hlY2tpbmcg Zm9yIGlubGluZS4uLiBpbmxpbmUNCmNoZWNraW5nIHdoZXRoZXIgYnl0ZSBv cmRlcmluZyBpcyBiaWdlbmRpYW4uLi4gbm8NCmNoZWNraW5nIGZvciBwcmVw cm9jZXNzb3Igc3RyaW5naXppbmcgb3BlcmF0b3IuLi4geWVzDQpjaGVja2lu ZyBmb3IgbG9uZyBkb3VibGUuLi4geWVzDQpjaGVja2luZyBmb3IgZnVuY3Rp b24gcHJvdG90eXBlcy4uLiB5ZXMNCmNoZWNraW5nIGZvciBBTlNJIEMgaGVh ZGVyIGZpbGVzLi4uIHllcw0KY2hlY2tpbmcgZm9yIHN5cy90eXBlcy5oLi4u IHllcw0KY2hlY2tpbmcgZm9yIHN5cy9zdGF0LmguLi4geWVzDQpjaGVja2lu ZyBmb3Igc3RkbGliLmguLi4geWVzDQpjaGVja2luZyBmb3Igc3RyaW5nLmgu Li4geWVzDQpjaGVja2luZyBmb3IgbWVtb3J5LmguLi4geWVzDQpjaGVja2lu ZyBmb3Igc3RyaW5ncy5oLi4uIHllcw0KY2hlY2tpbmcgZm9yIGludHR5cGVz LmguLi4geWVzDQpjaGVja2luZyBmb3Igc3RkaW50LmguLi4gbm8NCmNoZWNr aW5nIGZvciB1bmlzdGQuaC4uLiB5ZXMNCmNoZWNraW5nIHdoZXRoZXIgY2hh ciBpcyB1bnNpZ25lZC4uLiBubw0KY2hlY2tpbmcgZm9yIGRpcmVudC5oIHRo YXQgZGVmaW5lcyBESVIuLi4geWVzDQpjaGVja2luZyBmb3Igb3BlbmRpciBp biAtbGRpci4uLiBubw0KY2hlY2tpbmcgd2hldGhlciB0aW1lLmggYW5kIHN5 cy90aW1lLmggbWF5IGJvdGggYmUgaW5jbHVkZWQuLi4geWVzDQpjaGVja2lu ZyBmb3IgaW50dHlwZXMuaC4uLiAoY2FjaGVkKSB5ZXMNCmNoZWNraW5nIGZv ciB1bmlzdGQuaC4uLiAoY2FjaGVkKSB5ZXMNCmNoZWNraW5nIGZvciBzdGRs aWIuaC4uLiAoY2FjaGVkKSB5ZXMNCmNoZWNraW5nIGZvciBzdGRhcmcuaC4u LiB5ZXMNCmNoZWNraW5nIGZvciB2YXJhcmdzLmguLi4geWVzDQpjaGVja2lu ZyBmb3IgbGltaXRzLmguLi4geWVzDQpjaGVja2luZyBmb3Igc3RyaW5nLmgu Li4gKGNhY2hlZCkgeWVzDQpjaGVja2luZyBmb3IgbWVtb3J5LmguLi4gKGNh Y2hlZCkgeWVzDQpjaGVja2luZyBmb3IgbG9jYWxlLmguLi4geWVzDQpjaGVj a2luZyBmb3IgdGVybWNhcC5oLi4uIHllcw0KY2hlY2tpbmcgZm9yIHRlcm1p by5oLi4uIG5vDQpjaGVja2luZyBmb3IgdGVybWlvcy5oLi4uIHllcw0KY2hl Y2tpbmcgZm9yIGRsZmNuLmguLi4geWVzDQpjaGVja2luZyBmb3Igc3RkZGVm LmguLi4geWVzDQpjaGVja2luZyBmb3Igc3RkaW50LmguLi4gKGNhY2hlZCkg bm8NCmNoZWNraW5nIGZvciBuZXRkYi5oLi4uIHllcw0KY2hlY2tpbmcgZm9y IGdycC5oLi4uIHllcw0KY2hlY2tpbmcgZm9yIHN0cmluZ3MuaC4uLiAoY2Fj aGVkKSB5ZXMNCmNoZWNraW5nIGZvciBzeXMvcHRlbS5oLi4uIG5vDQpjaGVj a2luZyBmb3Igc3lzL3B0ZS5oLi4uIG5vDQpjaGVja2luZyBmb3Igc3lzL3N0 cmVhbS5oLi4uIG5vDQpjaGVja2luZyBmb3Igc3lzL3NlbGVjdC5oLi4uIHll cw0KY2hlY2tpbmcgZm9yIHN5cy9maWxlLmguLi4geWVzDQpjaGVja2luZyBm b3Igc3lzL3Jlc291cmNlLmguLi4geWVzDQpjaGVja2luZyBmb3Igc3lzL3Bh cmFtLmguLi4geWVzDQpjaGVja2luZyBmb3Igc3lzL3NvY2tldC5oLi4uIHll cw0KY2hlY2tpbmcgZm9yIHN5cy90aW1lLmguLi4geWVzDQpjaGVja2luZyBm b3Igc3lzL3RpbWVzLmguLi4geWVzDQpjaGVja2luZyBmb3Igc3lzL3dhaXQu aC4uLiB5ZXMNCmNoZWNraW5nIGZvciBuZXRpbmV0L2luLmguLi4geWVzDQpj aGVja2luZyBmb3IgYXJwYS9pbmV0LmguLi4geWVzDQpjaGVja2luZyBmb3Ig d29ya2luZyBhbGxvY2EuaC4uLiBubw0KY2hlY2tpbmcgZm9yIGFsbG9jYS4u LiB5ZXMNCmNoZWNraW5nIHdoZXRoZXIgZ2V0cGdycCB0YWtlcyBubyBhcmd1 bWVudC4uLiB5ZXMNCmNoZWNraW5nIHdoZXRoZXIgc2V0dmJ1ZiBhcmd1bWVu dHMgYXJlIHJldmVyc2VkLi4uIG5vDQpjaGVja2luZyBmb3IgdnByaW50Zi4u LiB5ZXMNCmNoZWNraW5nIGZvciBfZG9wcm50Li4uIG5vDQpjaGVja2luZyBm b3Igd29ya2luZyBzdHJjb2xsLi4uIHllcw0KY2hlY2tpbmcgcmV0dXJuIHR5 cGUgb2Ygc2lnbmFsIGhhbmRsZXJzLi4uIHZvaWQNCmNoZWNraW5nIGZvciBf X3NldG9zdHlwZS4uLiBubw0KY2hlY2tpbmcgZm9yIHdhaXQzLi4uIHllcw0K Y2hlY2tpbmcgZm9yIGlzaW5mLi4uIHllcw0KY2hlY2tpbmcgZm9yIG1rZmlm by4uLiB5ZXMNCmNoZWNraW5nIGZvciBkdXAyLi4uIHllcw0KY2hlY2tpbmcg Zm9yIHNlbGVjdC4uLiB5ZXMNCmNoZWNraW5nIGZvciBnZXRkdGFibGVzaXpl Li4uIHllcw0KY2hlY2tpbmcgZm9yIGdldGdyb3Vwcy4uLiB5ZXMNCmNoZWNr aW5nIGZvciBnZXRob3N0bmFtZS4uLiB5ZXMNCmNoZWNraW5nIGZvciBzZXRk dGFibGVzaXplLi4uIG5vDQpjaGVja2luZyBmb3IgZ2V0cGFnZXNpemUuLi4g eWVzDQpjaGVja2luZyBmb3Iga2lsbHBnLi4uIHllcw0KY2hlY2tpbmcgZm9y IGxzdGF0Li4uIHllcw0KY2hlY2tpbmcgZm9yIGdldHBlZXJuYW1lLi4uIHll cw0KY2hlY2tpbmcgZm9yIHNicmsuLi4geWVzDQpjaGVja2luZyBmb3IgZ2V0 cmxpbWl0Li4uIHllcw0KY2hlY2tpbmcgZm9yIGdldHJ1c2FnZS4uLiB5ZXMN CmNoZWNraW5nIGZvciBnZXR0aW1lb2ZkYXkuLi4geWVzDQpjaGVja2luZyBm b3Igd2FpdHBpZC4uLiB5ZXMNCmNoZWNraW5nIGZvciB0Y2dldHBncnAuLi4g eWVzDQpjaGVja2luZyBmb3IgcmVhZGxpbmsuLi4geWVzDQpjaGVja2luZyBm b3IgcmVuYW1lLi4uIHllcw0KY2hlY2tpbmcgZm9yIGJjb3B5Li4uIHllcw0K Y2hlY2tpbmcgZm9yIGJ6ZXJvLi4uIHllcw0KY2hlY2tpbmcgZm9yIGNvbmZz dHIuLi4geWVzDQpjaGVja2luZyBmb3Igc3lzY29uZi4uLiB5ZXMNCmNoZWNr aW5nIGZvciBwYXRoY29uZi4uLiB5ZXMNCmNoZWNraW5nIGZvciBzZXRlbnYu Li4geWVzDQpjaGVja2luZyBmb3IgcHV0ZW52Li4uIHllcw0KY2hlY2tpbmcg Zm9yIHVuc2V0ZW52Li4uIHllcw0KY2hlY2tpbmcgZm9yIHNldGxpbmVidWYu Li4geWVzDQpjaGVja2luZyBmb3Igc2V0dmJ1Zi4uLiB5ZXMNCmNoZWNraW5n IGZvciBzZXRsb2NhbGUuLi4geWVzDQpjaGVja2luZyBmb3Igc3RyY2hyLi4u IHllcw0KY2hlY2tpbmcgZm9yIHRjZ2V0YXR0ci4uLiB5ZXMNCmNoZWNraW5n IGZvciB1bmFtZS4uLiB5ZXMNCmNoZWNraW5nIGZvciB1bGltaXQuLi4gbm8N CmNoZWNraW5nIGZvciB0enNldC4uLiB5ZXMNCmNoZWNraW5nIGZvciBzaWdp bnRlcnJ1cHQuLi4geWVzDQpjaGVja2luZyBmb3IgbWVtbW92ZS4uLiB5ZXMN CmNoZWNraW5nIGZvciB0dHluYW1lLi4uIHllcw0KY2hlY2tpbmcgZm9yIHRp bWVzLi4uIHllcw0KY2hlY2tpbmcgZm9yIGdldGFkZHJpbmZvLi4uIHllcw0K Y2hlY2tpbmcgZm9yIGdldGhvc3RieW5hbWUuLi4geWVzDQpjaGVja2luZyBm b3IgZ2V0c2VydmJ5bmFtZS4uLiB5ZXMNCmNoZWNraW5nIGZvciBnZXRzZXJ2 ZW50Li4uIHllcw0KY2hlY2tpbmcgZm9yIGluZXRfYXRvbi4uLiB5ZXMNCmNo ZWNraW5nIGZvciB2c25wcmludGYuLi4geWVzDQpjaGVja2luZyBmb3Igc25w cmludGYuLi4geWVzDQpjaGVja2luZyBmb3IgdmFzcHJpbnRmLi4uIHllcw0K Y2hlY2tpbmcgZm9yIGFzcHJpbnRmLi4uIHllcw0KY2hlY2tpbmcgZm9yIGZu bWF0Y2guLi4geWVzDQpjaGVja2luZyBmb3IgaXNhc2NpaS4uLiB5ZXMNCmNo ZWNraW5nIGZvciBpc2JsYW5rLi4uIHllcw0KY2hlY2tpbmcgZm9yIGlzZ3Jh cGguLi4geWVzDQpjaGVja2luZyBmb3IgaXNwcmludC4uLiB5ZXMNCmNoZWNr aW5nIGZvciBpc3NwYWNlLi4uIHllcw0KY2hlY2tpbmcgZm9yIGlzeGRpZ2l0 Li4uIHllcw0KY2hlY2tpbmcgZm9yIGdldGN3ZC4uLiB5ZXMNCmNoZWNraW5n IGZvciBzdHJjYXNlY21wLi4uIHllcw0KY2hlY2tpbmcgZm9yIHN0cmVycm9y Li4uIHllcw0KY2hlY2tpbmcgZm9yIHN0cmZ0aW1lLi4uIHllcw0KY2hlY2tp bmcgZm9yIHN0cnBicmsuLi4geWVzDQpjaGVja2luZyBmb3IgbWVtc2V0Li4u IHllcw0KY2hlY2tpbmcgZm9yIHN0cnRvZC4uLiB5ZXMNCmNoZWNraW5nIGZv ciBzdHJ0b2wuLi4geWVzDQpjaGVja2luZyBmb3Igc3RydG91bC4uLiB5ZXMN CmNoZWNraW5nIGZvciBzdHJ0b2xsLi4uIHllcw0KY2hlY2tpbmcgZm9yIHN0 cnRvdWxsLi4uIHllcw0KY2hlY2tpbmcgZm9yIHN0cnRvaW1heC4uLiBubw0K Y2hlY2tpbmcgZm9yIHN0cnRvdW1heC4uLiBubw0KY2hlY2tpbmcgd2hldGhl ciBjb25mc3RyIGlzIGRlY2xhcmVkLi4uIHllcw0KY2hlY2tpbmcgd2hldGhl ciBwcmludGYgaXMgZGVjbGFyZWQuLi4geWVzDQpjaGVja2luZyB3aGV0aGVy IHNicmsgaXMgZGVjbGFyZWQuLi4geWVzDQpjaGVja2luZyB3aGV0aGVyIHN0 cmNweSBpcyBkZWNsYXJlZC4uLiB5ZXMNCmNoZWNraW5nIHdoZXRoZXIgc3Ry c2lnbmFsIGlzIGRlY2xhcmVkLi4uIHllcw0KY2hlY2tpbmcgd2hldGhlciBz dHJ0b2xkIGlzIGRlY2xhcmVkLi4uIG5vDQpjaGVja2luZyBmb3IgZGVjbGFy YXRpb24gb2Ygc3RydG9pbWF4Li4uIG5vDQpjaGVja2luZyBmb3IgZGVjbGFy YXRpb24gb2Ygc3RydG9sLi4uIHllcw0KY2hlY2tpbmcgZm9yIGRlY2xhcmF0 aW9uIG9mIHN0cnRvbGwuLi4geWVzDQpjaGVja2luZyBmb3IgZGVjbGFyYXRp b24gb2Ygc3RydG91bC4uLiB5ZXMNCmNoZWNraW5nIGZvciBkZWNsYXJhdGlv biBvZiBzdHJ0b3VsbC4uLiB5ZXMNCmNoZWNraW5nIGZvciBkZWNsYXJhdGlv biBvZiBzdHJ0b3VtYXguLi4gbm8NCmNoZWNraW5nIGZvciBzeXMvdGltZS5o Li4uIChjYWNoZWQpIHllcw0KY2hlY2tpbmcgZm9yIHVuaXN0ZC5oLi4uIChj YWNoZWQpIHllcw0KY2hlY2tpbmcgZm9yIGFsYXJtLi4uIHllcw0KY2hlY2tp bmcgZm9yIHdvcmtpbmcgbWt0aW1lLi4uIG5vDQpjaGVja2luZyBmb3IgbGli aW50bC5oLi4uIG5vDQpjaGVja2luZyBmb3IgZ2V0dGV4dC4uLiBubw0KY2hl Y2tpbmcgZm9yIHRleHRkb21haW4uLi4gbm8NCmNoZWNraW5nIGZvciBiaW5k dGV4dGRvbWFpbi4uLiBubw0KY2hlY2tpbmcgZm9yIGJpbmR0ZXh0ZG9tYWlu IGluIC1saW50bC4uLiBubw0KY2hlY2tpbmcgZm9yIHdjdHlwZS5oLi4uIHll cw0KY2hlY2tpbmcgZm9yIHdjaGFyLmguLi4geWVzDQpjaGVja2luZyBmb3Ig bGFuZ2luZm8uaC4uLiB5ZXMNCmNoZWNraW5nIGZvciBtYnNydG93Y3MuLi4g bm8NCmNoZWNraW5nIGZvciB3Y3dpZHRoLi4uIG5vDQpjaGVja2luZyBmb3Ig bWJzdGF0ZV90Li4uIHllcw0KY2hlY2tpbmcgZm9yIG5sX2xhbmdpbmZvIGFu ZCBDT0RFU0VULi4uIHllcw0KY2hlY2tpbmcgZm9yIGRsb3BlbiBpbiAtbGRs Li4uIG5vDQpjaGVja2luZyBmb3IgZGxvcGVuLi4uIHllcw0KY2hlY2tpbmcg Zm9yIGRsY2xvc2UuLi4geWVzDQpjaGVja2luZyBmb3IgZGxzeW0uLi4geWVz DQpjaGVja2luZyBmb3Igc3lzX3NpZ2xpc3QgZGVjbGFyYXRpb24gaW4gc2ln bmFsLmggb3IgdW5pc3RkLmguLi4geWVzDQpjaGVja2luZyBmb3IgdWlkX3Qg aW4gc3lzL3R5cGVzLmguLi4geWVzDQpjaGVja2luZyB0eXBlIG9mIGFycmF5 IGFyZ3VtZW50IHRvIGdldGdyb3Vwcy4uLiBnaWRfdA0KY2hlY2tpbmcgZm9y IG9mZl90Li4uIHllcw0KY2hlY2tpbmcgZm9yIG1vZGVfdC4uLiB5ZXMNCmNo ZWNraW5nIGZvciB1aWRfdCBpbiBzeXMvdHlwZXMuaC4uLiAoY2FjaGVkKSB5 ZXMNCmNoZWNraW5nIGZvciBwaWRfdC4uLiB5ZXMNCmNoZWNraW5nIGZvciBz aXplX3QuLi4geWVzDQpjaGVja2luZyBmb3Igc3NpemVfdC4uLiB5ZXMNCmNo ZWNraW5nIGZvciB0aW1lX3QuLi4geWVzDQpjaGVja2luZyBmb3IgbG9uZyBs b25nLi4uIGxvbmcgbG9uZw0KY2hlY2tpbmcgZm9yIHVuc2lnbmVkIGxvbmcg bG9uZy4uLiB1bnNpZ25lZCBsb25nIGxvbmcNCmNoZWNraW5nIHJldHVybiB0 eXBlIG9mIHNpZ25hbCBoYW5kbGVycy4uLiAoY2FjaGVkKSB2b2lkDQpjaGVj a2luZyBmb3IgY2hhci4uLiB5ZXMNCmNoZWNraW5nIHNpemUgb2YgY2hhci4u LiAxDQpjaGVja2luZyBmb3Igc2hvcnQuLi4geWVzDQpjaGVja2luZyBzaXpl IG9mIHNob3J0Li4uIDINCmNoZWNraW5nIGZvciBpbnQuLi4geWVzDQpjaGVj a2luZyBzaXplIG9mIGludC4uLiA0DQpjaGVja2luZyBmb3IgbG9uZy4uLiB5 ZXMNCmNoZWNraW5nIHNpemUgb2YgbG9uZy4uLiA0DQpjaGVja2luZyBmb3Ig Y2hhciAqLi4uIHllcw0KY2hlY2tpbmcgc2l6ZSBvZiBjaGFyICouLi4gNA0K Y2hlY2tpbmcgZm9yIGRvdWJsZS4uLiB5ZXMNCmNoZWNraW5nIHNpemUgb2Yg ZG91YmxlLi4uIDgNCmNoZWNraW5nIGZvciBsb25nIGxvbmcuLi4geWVzDQpj aGVja2luZyBzaXplIG9mIGxvbmcgbG9uZy4uLiA4DQpjaGVja2luZyBmb3Ig dV9pbnQuLi4geWVzDQpjaGVja2luZyBmb3IgdV9sb25nLi4uIHllcw0KY2hl Y2tpbmcgZm9yIGJpdHMxNl90Li4uIG5vDQpjaGVja2luZyBmb3IgdV9iaXRz MTZfdC4uLiBubw0KY2hlY2tpbmcgZm9yIGJpdHMzMl90Li4uIG5vDQpjaGVj a2luZyBmb3IgdV9iaXRzMzJfdC4uLiBubw0KY2hlY2tpbmcgZm9yIGJpdHM2 NF90Li4uIG5vDQpjaGVja2luZyBmb3IgcHRyZGlmZl90Li4uIHllcw0KY2hl Y2tpbmcgd2hldGhlciBzdGF0IGZpbGUtbW9kZSBtYWNyb3MgYXJlIGJyb2tl bi4uLiBubw0KY2hlY2tpbmcgd2hldGhlciAjISB3b3JrcyBpbiBzaGVsbCBz Y3JpcHRzLi4uIHllcw0KY2hlY2tpbmcgaWYgZHVwMiBmYWlscyB0byBjbGVh ciB0aGUgY2xvc2Utb24tZXhlYyBmbGFnLi4uIG5vDQpjaGVja2luZyB3aGV0 aGVyIHBncnBzIG5lZWQgc3luY2hyb25pemF0aW9uLi4uIG5vDQpjaGVja2lu ZyBmb3IgdHlwZSBvZiBzaWduYWwgZnVuY3Rpb25zLi4uIHBvc2l4DQpjaGVj a2luZyBmb3Igc3lzX2Vycmxpc3QgYW5kIHN5c19uZXJyLi4uIHllcw0KY2hl Y2tpbmcgZm9yIHN5c19zaWdsaXN0IGluIHN5c3RlbSBDIGxpYnJhcnkuLi4g eWVzDQpjaGVja2luZyBmb3IgX3N5c19zaWdsaXN0IGluIHNpZ25hbC5oIG9y IHVuaXN0ZC5oLi4uIG5vDQpjaGVja2luZyBmb3IgX3N5c19zaWdsaXN0IGlu IHN5c3RlbSBDIGxpYnJhcnkuLi4gbm8NCmNoZWNraW5nIHdoZXRoZXIgc2ln bmFsIGhhbmRsZXJzIGFyZSBvZiB0eXBlIHZvaWQuLi4geWVzDQpjaGVja2lu ZyBmb3IgY2xvY2tfdC4uLiB5ZXMNCmNoZWNraW5nIGZvciBzaWdzZXRfdC4u LiB5ZXMNCmNoZWNraW5nIGZvciBxdWFkX3QuLi4geWVzDQpjaGVja2luZyBm b3IgaW50bWF4X3QuLi4gbm8NCmNoZWNraW5nIGZvciB1aW50bWF4X3QuLi4g bm8NCmNoZWNraW5nIGZvciBzb2NrbGVuX3QuLi4geWVzDQpjaGVja2luZyBm b3Igc2l6ZSBhbmQgdHlwZSBvZiBzdHJ1Y3QgcmxpbWl0IGZpZWxkcy4uLiBx dWFkX3QNCmNoZWNraW5nIGZvciBzdHJ1Y3QgdGVybWlvcy5jX2xpbmUuLi4g bm8NCmNoZWNraW5nIGZvciBzdHJ1Y3QgdGVybWlvLmNfbGluZS4uLiBubw0K Y2hlY2tpbmcgaWYgc3RydWN0IGRpcmVudCBoYXMgYSBkX2lubyBtZW1iZXIu Li4geWVzDQpjaGVja2luZyBpZiBzdHJ1Y3QgZGlyZW50IGhhcyBhIGRfZmls ZW5vIG1lbWJlci4uLiB5ZXMNCmNoZWNraW5nIGZvciBzdHJ1Y3Qgd2luc2l6 ZSBpbiBzeXMvaW9jdGwuaCBhbmQgdGVybWlvcy5oLi4uIHN5cy9pb2N0bC5o DQpjaGVja2luZyBmb3Igc3RydWN0IHRpbWV2YWwgaW4gc3lzL3RpbWUuaCBh bmQgdGltZS5oLi4uIHllcw0KY2hlY2tpbmcgZm9yIHN0cnVjdCBzdGF0LnN0 X2Jsb2Nrcy4uLiB5ZXMNCmNoZWNraW5nIHdoZXRoZXIgc3RydWN0IHRtIGlz IGluIHN5cy90aW1lLmggb3IgdGltZS5oLi4uIHRpbWUuaA0KY2hlY2tpbmcg Zm9yIHN0cnVjdCB0bS50bV96b25lLi4uIHllcw0KY2hlY2tpbmcgZm9yIHRo ZSBleGlzdGVuY2Ugb2Ygc3Ryc2lnbmFsLi4uIHllcw0KY2hlY2tpbmcgaWYg b3BlbmRpcigpIG9wZW5zIG5vbi1kaXJlY3Rvcmllcy4uLiBubw0KY2hlY2tp bmcgd2hldGhlciB1bGltaXQgY2FuIHN1YnN0aXR1dGUgZm9yIGdldGR0YWJs ZXNpemUuLi4gbm8NCmNoZWNraW5nIHRvIHNlZSBpZiBnZXRlbnYgY2FuIGJl IHJlZGVmaW5lZC4uLiB5ZXMNCmNoZWNraW5nIGlmIGdldGN3ZCgpIGNhbGxz IHBvcGVuKCkuLi4gbm8NCmNoZWNraW5nIGZvciBwcmVzZW5jZSBvZiBQT1NJ WC1zdHlsZSBzaWdzZXRqbXAvc2lnbG9uZ2ptcC4uLiBwcmVzZW50DQpjaGVj a2luZyB3aGV0aGVyIG9yIG5vdCBzdHJjb2xsIGFuZCBzdHJjbXAgZGlmZmVy Li4uIG5vDQpjaGVja2luZyBmb3Igc3RhbmRhcmQtY29uZm9ybWFudCBwdXRl bnYgZGVjbGFyYXRpb24uLi4gbm8NCmNoZWNraW5nIGZvciBzdGFuZGFyZC1j b25mb3JtYW50IHVuc2V0ZW52IGRlY2xhcmF0aW9uLi4uIG5vDQpjaGVja2lu ZyBmb3IgcHJpbnRmIGZsb2F0aW5nIHBvaW50IG91dHB1dCBpbiBoZXggbm90 YXRpb24uLi4gbm8NCmNoZWNraW5nIGlmIHNpZ25hbCBoYW5kbGVycyBtdXN0 IGJlIHJlaW5zdGFsbGVkIHdoZW4gaW52b2tlZC4uLiBubw0KY2hlY2tpbmcg Zm9yIHByZXNlbmNlIG9mIG5lY2Vzc2FyeSBqb2IgY29udHJvbCBkZWZpbml0 aW9ucy4uLiBwcmVzZW50DQpjaGVja2luZyBmb3IgcHJlc2VuY2Ugb2YgbmFt ZWQgcGlwZXMuLi4gcHJlc2VudA0KY2hlY2tpbmcgUE9TSVggdGVybWlvcy4u LiB5ZXMNCmNoZWNraW5nIHdoZXRoZXIgdGVybWlvcy5oIGRlZmluZXMgVElP Q0dXSU5TWi4uLiB5ZXMNCmNoZWNraW5nIGZvciBUSU9DU1RBVCBpbiBzeXMv aW9jdGwuaC4uLiB5ZXMNCmNoZWNraW5nIGZvciBGSU9OUkVBRCBpbiBzeXMv aW9jdGwuaC4uLiB5ZXMNCmNoZWNraW5nIGZvciBzcGVlZF90IGluIHN5cy90 eXBlcy5oLi4uIG5vDQpjaGVja2luZyB3aGV0aGVyIGdldHB3IGZ1bmN0aW9u cyBhcmUgZGVjbGFyZWQgaW4gcHdkLmguLi4geWVzDQpjaGVja2luZyBmb3Ig dW51c2FibGUgcmVhbC10aW1lIHNpZ25hbHMgZHVlIHRvIGxhcmdlIHZhbHVl cy4uLiBubw0KY2hlY2tpbmcgd2hpY2ggbGlicmFyeSBoYXMgdGhlIHRlcm1j YXAgZnVuY3Rpb25zLi4uIChjYWNoZWQpIHVzaW5nIGxpYnRlcm1jYXANCmNo ZWNraW5nIHdoZXRoZXIgL2Rldi9mZCBpcyBhdmFpbGFibGUuLi4gc3RhbmRh cmQNCmNoZWNraW5nIHdoZXRoZXIgL2Rldi9zdGRpbiBzdGRvdXQgc3RkZXJy IGFyZSBhdmFpbGFibGUuLi4gcHJlc2VudA0KY2hlY2tpbmcgZm9yIGRlZmF1 bHQgbWFpbCBkaXJlY3RvcnkuLi4gL3Zhci9tYWlsDQpjaGVja2luZyBzaGFy ZWQgb2JqZWN0IGNvbmZpZ3VyYXRpb24gZm9yIGxvYWRhYmxlIGJ1aWx0aW5z Li4uIHN1cHBvcnRlZA0KY29uZmlndXJlOiBjcmVhdGluZyAuL2NvbmZpZy5z dGF0dXMNCmNvbmZpZy5zdGF0dXM6IGNyZWF0aW5nIE1ha2VmaWxlDQpjb25m aWcuc3RhdHVzOiBjcmVhdGluZyBidWlsdGlucy9NYWtlZmlsZQ0KY29uZmln LnN0YXR1czogY3JlYXRpbmcgbGliL3JlYWRsaW5lL01ha2VmaWxlDQpjb25m aWcuc3RhdHVzOiBjcmVhdGluZyBsaWIvZ2xvYi9NYWtlZmlsZQ0KY29uZmln LnN0YXR1czogY3JlYXRpbmcgbGliL21hbGxvYy9NYWtlZmlsZQ0KY29uZmln LnN0YXR1czogY3JlYXRpbmcgbGliL3NoL01ha2VmaWxlDQpjb25maWcuc3Rh dHVzOiBjcmVhdGluZyBsaWIvdGVybWNhcC9NYWtlZmlsZQ0KY29uZmlnLnN0 YXR1czogY3JlYXRpbmcgbGliL3RpbGRlL01ha2VmaWxlDQpjb25maWcuc3Rh dHVzOiBjcmVhdGluZyBkb2MvTWFrZWZpbGUNCmNvbmZpZy5zdGF0dXM6IGNy ZWF0aW5nIHN1cHBvcnQvTWFrZWZpbGUNCmNvbmZpZy5zdGF0dXM6IGNyZWF0 aW5nIGV4YW1wbGVzL2xvYWRhYmxlcy9NYWtlZmlsZQ0KY29uZmlnLnN0YXR1 czogY3JlYXRpbmcgZXhhbXBsZXMvbG9hZGFibGVzL3BlcmwvTWFrZWZpbGUN CmNvbmZpZy5zdGF0dXM6IGNyZWF0aW5nIGNvbmZpZy5oDQo9PT0+ICBCdWls ZGluZyBmb3IgYmFzaC0yLjA1Yi4wMDdfNg0KY2MgIC1EUFJPR1JBTT0nImJh c2giJyAtRENPTkZfSE9TVFRZUEU9JyJpMzg2IicgLURDT05GX09TVFlQRT0n ImZyZWVic2Q0LjExIicgLURDT05GX01BQ0hUWVBFPSciaTM4Ni1wb3J0Ymxk LWZyZWVic2Q0LjExIicgLURDT05GX1ZFTkRPUj0nInBvcnRibGQiJyAtRFNI RUxMICAtREhBVkVfQ09ORklHX0ggIC1JLiAgLUkuIC1JLi9pbmNsdWRlIC1J Li9saWIgIC1nIC1vIG1rc3ludGF4IC4vbWtzeW50YXguYw0Kcm0gLWYgc3lu dGF4LmMNCi4vbWtzeW50YXggLW8gc3ludGF4LmMNCi9iaW4vc2ggLi9zdXBw b3J0L21rdmVyc2lvbi5zaCAtYiAtUyAuIC1zIHJlbGVhc2UgLWQgMi4wNWIg LW8gbmV3dmVyc2lvbi5oICAmJiBtdiBuZXd2ZXJzaW9uLmggdmVyc2lvbi5o DQpjYyAgLURQUk9HUkFNPSciYmFzaCInIC1EQ09ORl9IT1NUVFlQRT0nImkz ODYiJyAtRENPTkZfT1NUWVBFPSciZnJlZWJzZDQuMTEiJyAtRENPTkZfTUFD SFRZUEU9JyJpMzg2LXBvcnRibGQtZnJlZWJzZDQuMTEiJyAtRENPTkZfVkVO RE9SPScicG9ydGJsZCInIC1EU0hFTEwgIC1ESEFWRV9DT05GSUdfSCAgLUku ICAtSS4gLUkuL2luY2x1ZGUgLUkuL2xpYiAgLWcgLWMgLW8gYnVpbGR2ZXJz aW9uLm8gLi92ZXJzaW9uLmMNCmNjICAtRFBST0dSQU09JyJiYXNoIicgLURD T05GX0hPU1RUWVBFPSciaTM4NiInIC1EQ09ORl9PU1RZUEU9JyJmcmVlYnNk NC4xMSInIC1EQ09ORl9NQUNIVFlQRT0nImkzODYtcG9ydGJsZC1mcmVlYnNk NC4xMSInIC1EQ09ORl9WRU5ET1I9JyJwb3J0YmxkIicgLURTSEVMTCAgLURI QVZFX0NPTkZJR19IICAtSS4gIC1JLiAtSS4vaW5jbHVkZSAtSS4vbGliICAt ZyAtbyBiYXNodmVyc2lvbiAuL3N1cHBvcnQvYmFzaHZlcnNpb24uYyBidWls ZHZlcnNpb24ubw0KDQoJICAqKioqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKg0KCSAgKiAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICoNCgkgICogR05VIGJhc2gsIHZlcnNpb24gMi4wNWIuMCgxKS1yZWxl YXNlIChpMzg2LXBvcnRibGQtZnJlZWJzZDQuMTEpDQoJICAqICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgKg0KCSAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioq KioqKioqKioqKioqKioqKioqKioqKioNCg0Kcm0gLWYgc2hlbGwubw0KY2Mg IC1EUFJPR1JBTT0nImJhc2giJyAtRENPTkZfSE9TVFRZUEU9JyJpMzg2Iicg LURDT05GX09TVFlQRT0nImZyZWVic2Q0LjExIicgLURDT05GX01BQ0hUWVBF PSciaTM4Ni1wb3J0YmxkLWZyZWVic2Q0LjExIicgLURDT05GX1ZFTkRPUj0n InBvcnRibGQiJyAtRFNIRUxMICAtREhBVkVfQ09ORklHX0ggIC1JLiAgLUku IC1JLi9pbmNsdWRlIC1JLi9saWIgIC1PIC1waXBlIC1tYXJjaD1wZW50aXVt cHJvIC1jIHNoZWxsLmMNCnJtIC1mIGV2YWwubw0KY2MgIC1EUFJPR1JBTT0n ImJhc2giJyAtRENPTkZfSE9TVFRZUEU9JyJpMzg2IicgLURDT05GX09TVFlQ RT0nImZyZWVic2Q0LjExIicgLURDT05GX01BQ0hUWVBFPSciaTM4Ni1wb3J0 YmxkLWZyZWVic2Q0LjExIicgLURDT05GX1ZFTkRPUj0nInBvcnRibGQiJyAt RFNIRUxMICAtREhBVkVfQ09ORklHX0ggIC1JLiAgLUkuIC1JLi9pbmNsdWRl IC1JLi9saWIgIC1PIC1waXBlIC1tYXJjaD1wZW50aXVtcHJvIC1jIGV2YWwu Yw0Kcm0gLWYgbWtidWlsdGlucy5vDQpjYyAtYyAgLURIQVZFX0NPTkZJR19I IC1EU0hFTEwgICAtSS4gLUkuLiAgLUkuLiAtSS4uL2luY2x1ZGUgLUkuLi9s aWIgLUkuICAgLWcgbWtidWlsdGlucy5jDQpjYyAtcmR5bmFtaWMgLU8gLXBp cGUgLW1hcmNoPXBlbnRpdW1wcm8gLW8gbWtidWlsdGlucyBta2J1aWx0aW5z Lm8gDQouL21rYnVpbHRpbnMgLWV4dGVybmZpbGUgYnVpbHRleHQuaCAtc3Ry dWN0ZmlsZSBidWlsdGlucy5jICAtbm9wcm9kdWN0aW9uIC1EIC4gIC4vYWxp YXMuZGVmIC4vYmluZC5kZWYgLi9icmVhay5kZWYgIC4vYnVpbHRpbi5kZWYg Li9jZC5kZWYgLi9jb2xvbi5kZWYgIC4vY29tbWFuZC5kZWYgLi9kZWNsYXJl LmRlZiAuL2VjaG8uZGVmICAuL2VuYWJsZS5kZWYgLi9ldmFsLmRlZiAuL2dl dG9wdHMuZGVmICAuL2V4ZWMuZGVmIC4vZXhpdC5kZWYgLi9mYy5kZWYgIC4v ZmdfYmcuZGVmIC4vaGFzaC5kZWYgLi9oZWxwLmRlZiAgLi9oaXN0b3J5LmRl ZiAuL2pvYnMuZGVmIC4va2lsbC5kZWYgIC4vbGV0LmRlZiAuL3JlYWQuZGVm IC4vcmV0dXJuLmRlZiAgLi9zZXQuZGVmIC4vc2V0YXR0ci5kZWYgLi9zaGlm dC5kZWYgIC4vc291cmNlLmRlZiAuL3N1c3BlbmQuZGVmIC4vdGVzdC5kZWYg IC4vdGltZXMuZGVmIC4vdHJhcC5kZWYgLi90eXBlLmRlZiAgLi91bGltaXQu ZGVmIC4vdW1hc2suZGVmIC4vd2FpdC5kZWYgIC4vcmVzZXJ2ZWQuZGVmIC4v cHVzaGQuZGVmIC4vc2hvcHQuZGVmICAuL3ByaW50Zi5kZWYgLi9jb21wbGV0 ZS5kZWYNCnJtIC1mIHkudGFiLm8NCmNjICAtRFBST0dSQU09JyJiYXNoIicg LURDT05GX0hPU1RUWVBFPSciaTM4NiInIC1EQ09ORl9PU1RZUEU9JyJmcmVl YnNkNC4xMSInIC1EQ09ORl9NQUNIVFlQRT0nImkzODYtcG9ydGJsZC1mcmVl YnNkNC4xMSInIC1EQ09ORl9WRU5ET1I9JyJwb3J0YmxkIicgLURTSEVMTCAg LURIQVZFX0NPTkZJR19IICAtSS4gIC1JLiAtSS4vaW5jbHVkZSAtSS4vbGli ICAtTyAtcGlwZSAtbWFyY2g9cGVudGl1bXBybyAtYyB5LnRhYi5jDQpJbiBm aWxlIGluY2x1ZGVkIGZyb20gL3Vzci9pbmNsdWRlL3JlYWRsaW5lL2tleW1h cHMuaDozNSwNCiAgICAgICAgICAgICAgICAgZnJvbSAvdXNyL2luY2x1ZGUv cmVhZGxpbmUvcmVhZGxpbmUuaDozNywNCiAgICAgICAgICAgICAgICAgZnJv bSAvdXNyL2hvbWVzL2NoZXQvc3JjL2Jhc2gvc3JjL3BhcnNlLnk6NTg6DQov dXNyL2luY2x1ZGUvcmVhZGxpbmUvY2hhcmRlZnMuaDo2MTogd2FybmluZzog YFVOQ1RSTCcgcmVkZWZpbmVkDQppbmNsdWRlL2NoYXJ0eXBlcy5oOjExMDog d2FybmluZzogdGhpcyBpcyB0aGUgbG9jYXRpb24gb2YgdGhlIHByZXZpb3Vz IGRlZmluaXRpb24NCnJtIC1mIGdlbmVyYWwubw0KY2MgIC1EUFJPR1JBTT0n ImJhc2giJyAtRENPTkZfSE9TVFRZUEU9JyJpMzg2IicgLURDT05GX09TVFlQ RT0nImZyZWVic2Q0LjExIicgLURDT05GX01BQ0hUWVBFPSciaTM4Ni1wb3J0 YmxkLWZyZWVic2Q0LjExIicgLURDT05GX1ZFTkRPUj0nInBvcnRibGQiJyAt RFNIRUxMICAtREhBVkVfQ09ORklHX0ggIC1JLiAgLUkuIC1JLi9pbmNsdWRl IC1JLi9saWIgIC1PIC1waXBlIC1tYXJjaD1wZW50aXVtcHJvIC1jIGdlbmVy YWwuYw0Kcm0gLWYgbWFrZV9jbWQubw0KY2MgIC1EUFJPR1JBTT0nImJhc2gi JyAtRENPTkZfSE9TVFRZUEU9JyJpMzg2IicgLURDT05GX09TVFlQRT0nImZy ZWVic2Q0LjExIicgLURDT05GX01BQ0hUWVBFPSciaTM4Ni1wb3J0YmxkLWZy ZWVic2Q0LjExIicgLURDT05GX1ZFTkRPUj0nInBvcnRibGQiJyAtRFNIRUxM ICAtREhBVkVfQ09ORklHX0ggIC1JLiAgLUkuIC1JLi9pbmNsdWRlIC1JLi9s aWIgIC1PIC1waXBlIC1tYXJjaD1wZW50aXVtcHJvIC1jIG1ha2VfY21kLmMN CnJtIC1mIHByaW50X2NtZC5vDQpjYyAgLURQUk9HUkFNPSciYmFzaCInIC1E Q09ORl9IT1NUVFlQRT0nImkzODYiJyAtRENPTkZfT1NUWVBFPSciZnJlZWJz ZDQuMTEiJyAtRENPTkZfTUFDSFRZUEU9JyJpMzg2LXBvcnRibGQtZnJlZWJz ZDQuMTEiJyAtRENPTkZfVkVORE9SPScicG9ydGJsZCInIC1EU0hFTEwgIC1E SEFWRV9DT05GSUdfSCAgLUkuICAtSS4gLUkuL2luY2x1ZGUgLUkuL2xpYiAg LU8gLXBpcGUgLW1hcmNoPXBlbnRpdW1wcm8gLWMgcHJpbnRfY21kLmMNCnJt IC1mIGRpc3Bvc2VfY21kLm8NCmNjICAtRFBST0dSQU09JyJiYXNoIicgLURD T05GX0hPU1RUWVBFPSciaTM4NiInIC1EQ09ORl9PU1RZUEU9JyJmcmVlYnNk NC4xMSInIC1EQ09ORl9NQUNIVFlQRT0nImkzODYtcG9ydGJsZC1mcmVlYnNk NC4xMSInIC1EQ09ORl9WRU5ET1I9JyJwb3J0YmxkIicgLURTSEVMTCAgLURI QVZFX0NPTkZJR19IICAtSS4gIC1JLiAtSS4vaW5jbHVkZSAtSS4vbGliICAt TyAtcGlwZSAtbWFyY2g9cGVudGl1bXBybyAtYyBkaXNwb3NlX2NtZC5jDQpy bSAtZiBleGVjdXRlX2NtZC5vDQpjYyAgLURQUk9HUkFNPSciYmFzaCInIC1E Q09ORl9IT1NUVFlQRT0nImkzODYiJyAtRENPTkZfT1NUWVBFPSciZnJlZWJz ZDQuMTEiJyAtRENPTkZfTUFDSFRZUEU9JyJpMzg2LXBvcnRibGQtZnJlZWJz ZDQuMTEiJyAtRENPTkZfVkVORE9SPScicG9ydGJsZCInIC1EU0hFTEwgIC1E SEFWRV9DT05GSUdfSCAgLUkuICAtSS4gLUkuL2luY2x1ZGUgLUkuL2xpYiAg LU8gLXBpcGUgLW1hcmNoPXBlbnRpdW1wcm8gLWMgZXhlY3V0ZV9jbWQuYw0K cm0gLWYgdmFyaWFibGVzLm8NCmNjICAtRFBST0dSQU09JyJiYXNoIicgLURD T05GX0hPU1RUWVBFPSciaTM4NiInIC1EQ09ORl9PU1RZUEU9JyJmcmVlYnNk NC4xMSInIC1EQ09ORl9NQUNIVFlQRT0nImkzODYtcG9ydGJsZC1mcmVlYnNk NC4xMSInIC1EQ09ORl9WRU5ET1I9JyJwb3J0YmxkIicgLURTSEVMTCAgLURI QVZFX0NPTkZJR19IICAtSS4gIC1JLiAtSS4vaW5jbHVkZSAtSS4vbGliICAt TyAtcGlwZSAtbWFyY2g9cGVudGl1bXBybyAtYyB2YXJpYWJsZXMuYw0KSW4g ZmlsZSBpbmNsdWRlZCBmcm9tIC91c3IvaW5jbHVkZS9yZWFkbGluZS9rZXlt YXBzLmg6MzUsDQogICAgICAgICAgICAgICAgIGZyb20gL3Vzci9pbmNsdWRl L3JlYWRsaW5lL3JlYWRsaW5lLmg6MzcsDQogICAgICAgICAgICAgICAgIGZy b20gdmFyaWFibGVzLmM6NTQ6DQovdXNyL2luY2x1ZGUvcmVhZGxpbmUvY2hh cmRlZnMuaDo2MTogd2FybmluZzogYFVOQ1RSTCcgcmVkZWZpbmVkDQppbmNs dWRlL2NoYXJ0eXBlcy5oOjExMDogd2FybmluZzogdGhpcyBpcyB0aGUgbG9j YXRpb24gb2YgdGhlIHByZXZpb3VzIGRlZmluaXRpb24NCnJtIC1mIGNvcHlf Y21kLm8NCmNjICAtRFBST0dSQU09JyJiYXNoIicgLURDT05GX0hPU1RUWVBF PSciaTM4NiInIC1EQ09ORl9PU1RZUEU9JyJmcmVlYnNkNC4xMSInIC1EQ09O Rl9NQUNIVFlQRT0nImkzODYtcG9ydGJsZC1mcmVlYnNkNC4xMSInIC1EQ09O Rl9WRU5ET1I9JyJwb3J0YmxkIicgLURTSEVMTCAgLURIQVZFX0NPTkZJR19I ICAtSS4gIC1JLiAtSS4vaW5jbHVkZSAtSS4vbGliICAtTyAtcGlwZSAtbWFy Y2g9cGVudGl1bXBybyAtYyBjb3B5X2NtZC5jDQpybSAtZiBlcnJvci5vDQpj YyAgLURQUk9HUkFNPSciYmFzaCInIC1EQ09ORl9IT1NUVFlQRT0nImkzODYi JyAtRENPTkZfT1NUWVBFPSciZnJlZWJzZDQuMTEiJyAtRENPTkZfTUFDSFRZ UEU9JyJpMzg2LXBvcnRibGQtZnJlZWJzZDQuMTEiJyAtRENPTkZfVkVORE9S PScicG9ydGJsZCInIC1EU0hFTEwgIC1ESEFWRV9DT05GSUdfSCAgLUkuICAt SS4gLUkuL2luY2x1ZGUgLUkuL2xpYiAgLU8gLXBpcGUgLW1hcmNoPXBlbnRp dW1wcm8gLWMgZXJyb3IuYw0Kcm0gLWYgZXhwci5vDQpjYyAgLURQUk9HUkFN PSciYmFzaCInIC1EQ09ORl9IT1NUVFlQRT0nImkzODYiJyAtRENPTkZfT1NU WVBFPSciZnJlZWJzZDQuMTEiJyAtRENPTkZfTUFDSFRZUEU9JyJpMzg2LXBv cnRibGQtZnJlZWJzZDQuMTEiJyAtRENPTkZfVkVORE9SPScicG9ydGJsZCIn IC1EU0hFTEwgIC1ESEFWRV9DT05GSUdfSCAgLUkuICAtSS4gLUkuL2luY2x1 ZGUgLUkuL2xpYiAgLU8gLXBpcGUgLW1hcmNoPXBlbnRpdW1wcm8gLWMgZXhw ci5jDQpybSAtZiBmbGFncy5vDQpjYyAgLURQUk9HUkFNPSciYmFzaCInIC1E Q09ORl9IT1NUVFlQRT0nImkzODYiJyAtRENPTkZfT1NUWVBFPSciZnJlZWJz ZDQuMTEiJyAtRENPTkZfTUFDSFRZUEU9JyJpMzg2LXBvcnRibGQtZnJlZWJz ZDQuMTEiJyAtRENPTkZfVkVORE9SPScicG9ydGJsZCInIC1EU0hFTEwgIC1E SEFWRV9DT05GSUdfSCAgLUkuICAtSS4gLUkuL2luY2x1ZGUgLUkuL2xpYiAg LU8gLXBpcGUgLW1hcmNoPXBlbnRpdW1wcm8gLWMgZmxhZ3MuYw0Kcm0gLWYg am9icy5vDQpjYyAgLURQUk9HUkFNPSciYmFzaCInIC1EQ09ORl9IT1NUVFlQ RT0nImkzODYiJyAtRENPTkZfT1NUWVBFPSciZnJlZWJzZDQuMTEiJyAtRENP TkZfTUFDSFRZUEU9JyJpMzg2LXBvcnRibGQtZnJlZWJzZDQuMTEiJyAtRENP TkZfVkVORE9SPScicG9ydGJsZCInIC1EU0hFTEwgIC1ESEFWRV9DT05GSUdf SCAgLUkuICAtSS4gLUkuL2luY2x1ZGUgLUkuL2xpYiAgLU8gLXBpcGUgLW1h cmNoPXBlbnRpdW1wcm8gLWMgam9icy5jDQpybSAtZiBzdWJzdC5vDQpjYyAg LURQUk9HUkFNPSciYmFzaCInIC1EQ09ORl9IT1NUVFlQRT0nImkzODYiJyAt RENPTkZfT1NUWVBFPSciZnJlZWJzZDQuMTEiJyAtRENPTkZfTUFDSFRZUEU9 JyJpMzg2LXBvcnRibGQtZnJlZWJzZDQuMTEiJyAtRENPTkZfVkVORE9SPSci cG9ydGJsZCInIC1EU0hFTEwgIC1ESEFWRV9DT05GSUdfSCAgLUkuICAtSS4g LUkuL2luY2x1ZGUgLUkuL2xpYiAgLU8gLXBpcGUgLW1hcmNoPXBlbnRpdW1w cm8gLWMgc3Vic3QuYw0Kcm0gLWYgaGFzaGNtZC5vDQpjYyAgLURQUk9HUkFN PSciYmFzaCInIC1EQ09ORl9IT1NUVFlQRT0nImkzODYiJyAtRENPTkZfT1NU WVBFPSciZnJlZWJzZDQuMTEiJyAtRENPTkZfTUFDSFRZUEU9JyJpMzg2LXBv cnRibGQtZnJlZWJzZDQuMTEiJyAtRENPTkZfVkVORE9SPScicG9ydGJsZCIn IC1EU0hFTEwgIC1ESEFWRV9DT05GSUdfSCAgLUkuICAtSS4gLUkuL2luY2x1 ZGUgLUkuL2xpYiAgLU8gLXBpcGUgLW1hcmNoPXBlbnRpdW1wcm8gLWMgaGFz aGNtZC5jDQpybSAtZiBoYXNobGliLm8NCmNjICAtRFBST0dSQU09JyJiYXNo IicgLURDT05GX0hPU1RUWVBFPSciaTM4NiInIC1EQ09ORl9PU1RZUEU9JyJm cmVlYnNkNC4xMSInIC1EQ09ORl9NQUNIVFlQRT0nImkzODYtcG9ydGJsZC1m cmVlYnNkNC4xMSInIC1EQ09ORl9WRU5ET1I9JyJwb3J0YmxkIicgLURTSEVM TCAgLURIQVZFX0NPTkZJR19IICAtSS4gIC1JLiAtSS4vaW5jbHVkZSAtSS4v bGliICAtTyAtcGlwZSAtbWFyY2g9cGVudGl1bXBybyAtYyBoYXNobGliLmMN CnJtIC1mIG1haWxjaGVjay5vDQpjYyAgLURQUk9HUkFNPSciYmFzaCInIC1E Q09ORl9IT1NUVFlQRT0nImkzODYiJyAtRENPTkZfT1NUWVBFPSciZnJlZWJz ZDQuMTEiJyAtRENPTkZfTUFDSFRZUEU9JyJpMzg2LXBvcnRibGQtZnJlZWJz ZDQuMTEiJyAtRENPTkZfVkVORE9SPScicG9ydGJsZCInIC1EU0hFTEwgIC1E SEFWRV9DT05GSUdfSCAgLUkuICAtSS4gLUkuL2luY2x1ZGUgLUkuL2xpYiAg LU8gLXBpcGUgLW1hcmNoPXBlbnRpdW1wcm8gLWMgbWFpbGNoZWNrLmMNCmNj ICAtRFBST0dSQU09JyJiYXNoIicgLURDT05GX0hPU1RUWVBFPSciaTM4NiIn IC1EQ09ORl9PU1RZUEU9JyJmcmVlYnNkNC4xMSInIC1EQ09ORl9NQUNIVFlQ RT0nImkzODYtcG9ydGJsZC1mcmVlYnNkNC4xMSInIC1EQ09ORl9WRU5ET1I9 JyJwb3J0YmxkIicgLURTSEVMTCAgLURIQVZFX0NPTkZJR19IICAtSS4gIC1J LiAtSS4vaW5jbHVkZSAtSS4vbGliICAtZyAtbyBta3NpZ25hbWVzIC4vc3Vw cG9ydC9ta3NpZ25hbWVzLmMNCnJtIC1mIGxzaWduYW1lcy5oDQouL21rc2ln bmFtZXMgbHNpZ25hbWVzLmgNCmlmIGNtcCAtcyBsc2lnbmFtZXMuaCBzaWdu YW1lcy5oIDsgdGhlbiA6OyBlbHNlIHJtIC1mIHNpZ25hbWVzLmggOyBjcCBs c2lnbmFtZXMuaCBzaWduYW1lcy5oIDsgZmkNCnJtIC1mIHRyYXAubw0KY2Mg IC1EUFJPR1JBTT0nImJhc2giJyAtRENPTkZfSE9TVFRZUEU9JyJpMzg2Iicg LURDT05GX09TVFlQRT0nImZyZWVic2Q0LjExIicgLURDT05GX01BQ0hUWVBF PSciaTM4Ni1wb3J0YmxkLWZyZWVic2Q0LjExIicgLURDT05GX1ZFTkRPUj0n InBvcnRibGQiJyAtRFNIRUxMICAtREhBVkVfQ09ORklHX0ggIC1JLiAgLUku IC1JLi9pbmNsdWRlIC1JLi9saWIgIC1PIC1waXBlIC1tYXJjaD1wZW50aXVt cHJvIC1jIHRyYXAuYw0Kcm0gLWYgaW5wdXQubw0KY2MgIC1EUFJPR1JBTT0n ImJhc2giJyAtRENPTkZfSE9TVFRZUEU9JyJpMzg2IicgLURDT05GX09TVFlQ RT0nImZyZWVic2Q0LjExIicgLURDT05GX01BQ0hUWVBFPSciaTM4Ni1wb3J0 YmxkLWZyZWVic2Q0LjExIicgLURDT05GX1ZFTkRPUj0nInBvcnRibGQiJyAt RFNIRUxMICAtREhBVkVfQ09ORklHX0ggIC1JLiAgLUkuIC1JLi9pbmNsdWRl IC1JLi9saWIgIC1PIC1waXBlIC1tYXJjaD1wZW50aXVtcHJvIC1jIGlucHV0 LmMNCnJtIC1mIHVud2luZF9wcm90Lm8NCmNjICAtRFBST0dSQU09JyJiYXNo IicgLURDT05GX0hPU1RUWVBFPSciaTM4NiInIC1EQ09ORl9PU1RZUEU9JyJm cmVlYnNkNC4xMSInIC1EQ09ORl9NQUNIVFlQRT0nImkzODYtcG9ydGJsZC1m cmVlYnNkNC4xMSInIC1EQ09ORl9WRU5ET1I9JyJwb3J0YmxkIicgLURTSEVM TCAgLURIQVZFX0NPTkZJR19IICAtSS4gIC1JLiAtSS4vaW5jbHVkZSAtSS4v bGliICAtTyAtcGlwZSAtbWFyY2g9cGVudGl1bXBybyAtYyB1bndpbmRfcHJv dC5jDQpybSAtZiBwYXRoZXhwLm8NCmNjICAtRFBST0dSQU09JyJiYXNoIicg LURDT05GX0hPU1RUWVBFPSciaTM4NiInIC1EQ09ORl9PU1RZUEU9JyJmcmVl YnNkNC4xMSInIC1EQ09ORl9NQUNIVFlQRT0nImkzODYtcG9ydGJsZC1mcmVl YnNkNC4xMSInIC1EQ09ORl9WRU5ET1I9JyJwb3J0YmxkIicgLURTSEVMTCAg LURIQVZFX0NPTkZJR19IICAtSS4gIC1JLiAtSS4vaW5jbHVkZSAtSS4vbGli ICAtTyAtcGlwZSAtbWFyY2g9cGVudGl1bXBybyAtYyBwYXRoZXhwLmMNCnJt IC1mIHNpZy5vDQpjYyAgLURQUk9HUkFNPSciYmFzaCInIC1EQ09ORl9IT1NU VFlQRT0nImkzODYiJyAtRENPTkZfT1NUWVBFPSciZnJlZWJzZDQuMTEiJyAt RENPTkZfTUFDSFRZUEU9JyJpMzg2LXBvcnRibGQtZnJlZWJzZDQuMTEiJyAt RENPTkZfVkVORE9SPScicG9ydGJsZCInIC1EU0hFTEwgIC1ESEFWRV9DT05G SUdfSCAgLUkuICAtSS4gLUkuL2luY2x1ZGUgLUkuL2xpYiAgLU8gLXBpcGUg LW1hcmNoPXBlbnRpdW1wcm8gLWMgc2lnLmMNCnJtIC1mIHRlc3Qubw0KY2Mg IC1EUFJPR1JBTT0nImJhc2giJyAtRENPTkZfSE9TVFRZUEU9JyJpMzg2Iicg LURDT05GX09TVFlQRT0nImZyZWVic2Q0LjExIicgLURDT05GX01BQ0hUWVBF PSciaTM4Ni1wb3J0YmxkLWZyZWVic2Q0LjExIicgLURDT05GX1ZFTkRPUj0n InBvcnRibGQiJyAtRFNIRUxMICAtREhBVkVfQ09ORklHX0ggIC1JLiAgLUku IC1JLi9pbmNsdWRlIC1JLi9saWIgIC1PIC1waXBlIC1tYXJjaD1wZW50aXVt cHJvIC1jIHRlc3QuYw0Kcm0gLWYgdmVyc2lvbi5vDQpjYyAgLURQUk9HUkFN PSciYmFzaCInIC1EQ09ORl9IT1NUVFlQRT0nImkzODYiJyAtRENPTkZfT1NU WVBFPSciZnJlZWJzZDQuMTEiJyAtRENPTkZfTUFDSFRZUEU9JyJpMzg2LXBv cnRibGQtZnJlZWJzZDQuMTEiJyAtRENPTkZfVkVORE9SPScicG9ydGJsZCIn IC1EU0hFTEwgIC1ESEFWRV9DT05GSUdfSCAgLUkuICAtSS4gLUkuL2luY2x1 ZGUgLUkuL2xpYiAgLU8gLXBpcGUgLW1hcmNoPXBlbnRpdW1wcm8gLWMgdmVy c2lvbi5jDQpybSAtZiBhbGlhcy5vDQpjYyAgLURQUk9HUkFNPSciYmFzaCIn IC1EQ09ORl9IT1NUVFlQRT0nImkzODYiJyAtRENPTkZfT1NUWVBFPSciZnJl ZWJzZDQuMTEiJyAtRENPTkZfTUFDSFRZUEU9JyJpMzg2LXBvcnRibGQtZnJl ZWJzZDQuMTEiJyAtRENPTkZfVkVORE9SPScicG9ydGJsZCInIC1EU0hFTEwg IC1ESEFWRV9DT05GSUdfSCAgLUkuICAtSS4gLUkuL2luY2x1ZGUgLUkuL2xp YiAgLU8gLXBpcGUgLW1hcmNoPXBlbnRpdW1wcm8gLWMgYWxpYXMuYw0Kcm0g LWYgYXJyYXkubw0KY2MgIC1EUFJPR1JBTT0nImJhc2giJyAtRENPTkZfSE9T VFRZUEU9JyJpMzg2IicgLURDT05GX09TVFlQRT0nImZyZWVic2Q0LjExIicg LURDT05GX01BQ0hUWVBFPSciaTM4Ni1wb3J0YmxkLWZyZWVic2Q0LjExIicg LURDT05GX1ZFTkRPUj0nInBvcnRibGQiJyAtRFNIRUxMICAtREhBVkVfQ09O RklHX0ggIC1JLiAgLUkuIC1JLi9pbmNsdWRlIC1JLi9saWIgIC1PIC1waXBl IC1tYXJjaD1wZW50aXVtcHJvIC1jIGFycmF5LmMNCnJtIC1mIGFycmF5ZnVu Yy5vDQpjYyAgLURQUk9HUkFNPSciYmFzaCInIC1EQ09ORl9IT1NUVFlQRT0n ImkzODYiJyAtRENPTkZfT1NUWVBFPSciZnJlZWJzZDQuMTEiJyAtRENPTkZf TUFDSFRZUEU9JyJpMzg2LXBvcnRibGQtZnJlZWJzZDQuMTEiJyAtRENPTkZf VkVORE9SPScicG9ydGJsZCInIC1EU0hFTEwgIC1ESEFWRV9DT05GSUdfSCAg LUkuICAtSS4gLUkuL2luY2x1ZGUgLUkuL2xpYiAgLU8gLXBpcGUgLW1hcmNo PXBlbnRpdW1wcm8gLWMgYXJyYXlmdW5jLmMNCnJtIC1mIGJyYWNlcy5vDQpj YyAgLURQUk9HUkFNPSciYmFzaCInIC1EQ09ORl9IT1NUVFlQRT0nImkzODYi JyAtRENPTkZfT1NUWVBFPSciZnJlZWJzZDQuMTEiJyAtRENPTkZfTUFDSFRZ UEU9JyJpMzg2LXBvcnRibGQtZnJlZWJzZDQuMTEiJyAtRENPTkZfVkVORE9S PScicG9ydGJsZCInIC1EU0hFTEwgIC1ESEFWRV9DT05GSUdfSCAgLUkuICAt SS4gLUkuL2luY2x1ZGUgLUkuL2xpYiAgLU8gLXBpcGUgLW1hcmNoPXBlbnRp dW1wcm8gLWMgYnJhY2VzLmMNCnJtIC1mIGJyYWNlY29tcC5vDQpjYyAgLURQ Uk9HUkFNPSciYmFzaCInIC1EQ09ORl9IT1NUVFlQRT0nImkzODYiJyAtRENP TkZfT1NUWVBFPSciZnJlZWJzZDQuMTEiJyAtRENPTkZfTUFDSFRZUEU9JyJp Mzg2LXBvcnRibGQtZnJlZWJzZDQuMTEiJyAtRENPTkZfVkVORE9SPScicG9y dGJsZCInIC1EU0hFTEwgIC1ESEFWRV9DT05GSUdfSCAgLUkuICAtSS4gLUku L2luY2x1ZGUgLUkuL2xpYiAgLU8gLXBpcGUgLW1hcmNoPXBlbnRpdW1wcm8g LWMgYnJhY2Vjb21wLmMNCmJyYWNlY29tcC5jOiBJbiBmdW5jdGlvbiBgYmFz aF9icmFjZV9jb21wbGV0aW9uJzoNCmJyYWNlY29tcC5jOjE3MjogYHJsX2Nv bXBpZ25vcmVfZnVuY190JyB1bmRlY2xhcmVkIChmaXJzdCB1c2UgaW4gdGhp cyBmdW5jdGlvbikNCmJyYWNlY29tcC5jOjE3MjogKEVhY2ggdW5kZWNsYXJl ZCBpZGVudGlmaWVyIGlzIHJlcG9ydGVkIG9ubHkgb25jZQ0KYnJhY2Vjb21w LmM6MTcyOiBmb3IgZWFjaCBmdW5jdGlvbiBpdCBhcHBlYXJzIGluLikNCmJy YWNlY29tcC5jOjE3MjogYG9yaWdfaWdub3JlX2Z1bmMnIHVuZGVjbGFyZWQg KGZpcnN0IHVzZSBpbiB0aGlzIGZ1bmN0aW9uKQ0KYnJhY2Vjb21wLmM6MTcz OiBgcmxfY29tcGVudHJ5X2Z1bmNfdCcgdW5kZWNsYXJlZCAoZmlyc3QgdXNl IGluIHRoaXMgZnVuY3Rpb24pDQpicmFjZWNvbXAuYzoxNzM6IGBvcmlnX2Vu dHJ5X2Z1bmMnIHVuZGVjbGFyZWQgKGZpcnN0IHVzZSBpbiB0aGlzIGZ1bmN0 aW9uKQ0KYnJhY2Vjb21wLmM6MTc0OiBgcmxfcXVvdGVfZnVuY190JyB1bmRl Y2xhcmVkIChmaXJzdCB1c2UgaW4gdGhpcyBmdW5jdGlvbikNCmJyYWNlY29t cC5jOjE3NDogYG9yaWdfcXVvdGluZ19mdW5jJyB1bmRlY2xhcmVkIChmaXJz dCB1c2UgaW4gdGhpcyBmdW5jdGlvbikNCmJyYWNlY29tcC5jOjE3NTogYHJs X2NvbXBsZXRpb25fZnVuY190JyB1bmRlY2xhcmVkIChmaXJzdCB1c2UgaW4g dGhpcyBmdW5jdGlvbikNCmJyYWNlY29tcC5jOjE3NTogYG9yaWdfYXR0ZW1w dF9mdW5jJyB1bmRlY2xhcmVkIChmaXJzdCB1c2UgaW4gdGhpcyBmdW5jdGlv bikNCmJyYWNlY29tcC5jOjE3Njogc3ludGF4IGVycm9yIGJlZm9yZSBgaW50 Jw0KYnJhY2Vjb21wLmM6MTgyOiBgb3JpZ19xdW90aW5nX2Rlc2lyZWQnIHVu ZGVjbGFyZWQgKGZpcnN0IHVzZSBpbiB0aGlzIGZ1bmN0aW9uKQ0KYnJhY2Vj b21wLmM6MTg0OiBgcmxfZmlsZW5hbWVfY29tcGxldGlvbl9mdW5jdGlvbicg dW5kZWNsYXJlZCAoZmlyc3QgdXNlIGluIHRoaXMgZnVuY3Rpb24pDQpicmFj ZWNvbXAuYzoxODU6IHN5bnRheCBlcnJvciBiZWZvcmUgYCknDQpicmFjZWNv bXAuYzoxODc6IHN5bnRheCBlcnJvciBiZWZvcmUgYCknDQpicmFjZWNvbXAu YzoxOTA6IGByJyB1bmRlY2xhcmVkIChmaXJzdCB1c2UgaW4gdGhpcyBmdW5j dGlvbikNCioqKiBFcnJvciBjb2RlIDENCg0KU3RvcCBpbiAvdXNyL3BvcnRz L3NoZWxscy9iYXNoMi93b3JrL2Jhc2gtMi4wNWIuDQoqKiogRXJyb3IgY29k ZSAxDQoNClN0b3AgaW4gL3Vzci9wb3J0cy9zaGVsbHMvYmFzaDIuDQoqKiBD b21tYW5kIGZhaWxlZCBbZXhpdCBjb2RlIDFdOiAvdXNyL2Jpbi9zY3JpcHQg LXFhIC90bXAvcG9ydHVwZ3JhZGUxNDAxNi4wIGVudiBVUEdSQURFX1RPT0w9 cG9ydHVwZ3JhZGUgVVBHUkFERV9QT1JUPWJhc2gtMi4wNWIuMDA3XzUgVVBH UkFERV9QT1JUX1ZFUj0yLjA1Yi4wMDdfNSBtYWtlDQoqKiBGaXggdGhlIHBy b2JsZW0gYW5kIHRyeSBhZ2Fpbi4NCioqIExpc3RpbmcgdGhlIGZhaWxlZCBw YWNrYWdlcyAoKjpza2lwcGVkIC8gITpmYWlsZWQpDQoJISBzaGVsbHMvYmFz aDIgKGJhc2gtMi4wNWIuMDA3XzUpCShjb21waWxlciBlcnJvcikNCi0tLT4g IFBhY2thZ2VzIHByb2Nlc3NlZDogMCBkb25lLCAwIGlnbm9yZWQsIDAgc2tp cHBlZCBhbmQgMSBmYWlsZWQNCmJhc2gtMi4wNWIjIGV4aXQNCgpTY3JpcHQg ZG9uZSBvbiBXZWQgRGVjICA2IDEzOjI4OjE2IDIwMDYK --0-904460031-1165430224=:4964-- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 22:04:24 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 31AC116A522 for ; Wed, 6 Dec 2006 22:04:24 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0905643E18 for ; Wed, 6 Dec 2006 21:55:35 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1Gs4k2-0001kd-G4 for freebsd-ports@freebsd.org; Wed, 06 Dec 2006 22:55:50 +0100 Received: from r5h168.net.upc.cz ([86.49.7.168]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 06 Dec 2006 22:55:50 +0100 Received: from gamato by r5h168.net.upc.cz with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 06 Dec 2006 22:55:50 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: martinko Date: Wed, 06 Dec 2006 22:55:40 +0100 Lines: 16 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: r5h168.net.upc.cz User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.0.8) Gecko/20061111 SeaMonkey/1.0.6 Sender: news Cc: freebsd-questions@freebsd.org Subject: portupgrade refusin to upgrade a port .. when it shouldn't imho X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 22:04:24 -0000 Hello, According to freshports.org the newest multimedia/win32-codecs port (3.1.0.r1,1) is not vulnerable. I'm trying to upgrade version win32-codecs-3.1.0.p8,1 on my system but portupgrade + portaudit refuse me to do so: ** Port marked as IGNORE: multimedia/win32-codecs: is forbidden: Remote code execution: http://vuxml.FreeBSD.org/24f6b1eb-43d5-11db-81e1-000e0c2e438a.html Isn't this behaviour flawed ?? Or am I missing something ? Regards, Martin From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 22:09:50 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D0B5416A52D for ; Wed, 6 Dec 2006 22:09:50 +0000 (UTC) (envelope-from jonathan.chen@solnetsolutions.co.nz) Received: from wlmlc.solnetsolutions.co.nz (wlmlc.solnetsolutions.co.nz [202.135.38.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF87243CF5 for ; Wed, 6 Dec 2006 22:08:51 +0000 (GMT) (envelope-from jonathan.chen@solnetsolutions.co.nz) Received: from wlmlc.solnetsolutions.co.nz (localhost.localdomain [127.0.0.1]) by localhost (Postfix) with SMTP id 127FD6D4159; Thu, 7 Dec 2006 11:09:33 +1300 (NZDT) Received: from [127.0.0.1] (keyhole.solnetsolutions.co.nz [202.135.38.5]) by wlmlc.solnetsolutions.co.nz (Postfix) with ESMTP id AF86F6D4152; Thu, 7 Dec 2006 11:09:32 +1300 (NZDT) Message-ID: <45773F9C.50606@solnetsolutions.co.nz> Date: Thu, 07 Dec 2006 11:09:32 +1300 From: Jonathan Chen User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-GB; rv:1.7.13) Gecko/20061024 X-Accept-Language: en-gb, en MIME-Version: 1.0 To: mad@madpilot.net Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Copyrighted-Material: Please read the disclaimer at the bottom of this email. Cc: freebsd-ports@freebsd.org Subject: comms/openobex 1.3 fails to build on 6-STABLE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 22:09:51 -0000 Hi Guido, I'm trying to build openobex 1.3 from the ports on 6.2-PRERELEASE as of Nov 16 2006, and it's failing with the following error: [...] gmake all-recursive gmake[1]: Entering directory `/usr/ports/comms/openobex/work/openobex-1.3' Making all in include gmake[2]: Entering directory `/usr/ports/comms/openobex/work/openobex-1.3/includ e' gmake[2]: Leaving directory `/usr/ports/comms/openobex/work/openobex-1.3/include ' Making all in lib gmake[2]: Entering directory `/usr/ports/comms/openobex/work/openobex-1.3/lib' if /bin/sh /usr/local/bin/libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -O2 -fno-strict-aliasing -pipe -D_FORTIFY_SOURCE=2 -M T obex.lo -MD -MP -MF ".deps/obex.Tpo" -c -o obex.lo obex.c; \ then mv -f ".deps/obex.Tpo" ".deps/obex.Plo"; else rm -f ".deps/obex.Tpo "; exit 1; fi mkdir .libs cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -O2 -fno-strict-aliasing -pipe -D_ FORTIFY_SOURCE=2 -MT obex.lo -MD -MP -MF .deps/obex.Tpo -c obex.c -fPIC -DPIC - o .libs/obex.o In file included from obex_main.h:61, from obex.c:49: obex_transport.h:43:33: bluetooth/bluetooth.h: No such file or directory obex_transport.h:44:30: bluetooth/rfcomm.h: No such file or directory In file included from obex_main.h:61, from obex.c:49: obex_transport.h:58: error: field `rfcomm' has incomplete type In file included from obex.c:62: btobex.h:33: error: syntax error before "bdaddr_t" btobex.h:34: error: syntax error before "bdaddr_t" obex.c:1026: error: syntax error before "bdaddr_t" obex.c: In function `BtOBEX_ServerRegister': obex.c:1030: error: `self' undeclared (first use in this function) obex.c:1030: error: (Each undeclared identifier is reported only once obex.c:1030: error: for each function it appears in.) obex.c:1033: error: `src' undeclared (first use in this function) obex.c:1034: error: `BDADDR_ANY' undeclared (first use in this function) obex.c:1035: error: `channel' undeclared (first use in this function) obex.c: At top level: obex.c:1049: error: syntax error before "bdaddr_t" obex.c: In function `BtOBEX_TransportConnect': obex.c:1053: error: `self' undeclared (first use in this function) obex.c:1060: error: `dst' undeclared (first use in this function) obex.c:1063: error: `src' undeclared (first use in this function) obex.c:1064: error: `BDADDR_ANY' undeclared (first use in this function) obex.c:1065: error: `channel' undeclared (first use in this function) gmake[2]: *** [obex.lo] Error 1 gmake[2]: Leaving directory `/usr/ports/comms/openobex/work/openobex-1.3/lib' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/comms/openobex/work/openobex-1.3' gmake: *** [all] Error 2 *** Error code 2 Any idea what could be causing this? -- Jonathan Chen Attention: This email may contain information intended for the sole use of the original recipient. Please respect this when sharing or disclosing this email's contents with any third party. If you believe you have received this email in error, please delete it and notify the sender or postmaster@solnetsolutions.co.nz as soon as possible. The content of this email does not necessarily reflect the views of SolNet Solutions Ltd. From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 22:32:45 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4BE3816A416 for ; Wed, 6 Dec 2006 22:32:45 +0000 (UTC) (envelope-from laszlof@FreeBSD.org) Received: from main.vonostingroup.com (main.vonostingroup.com [216.32.84.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EC4F43CEE for ; Wed, 6 Dec 2006 22:30:33 +0000 (GMT) (envelope-from laszlof@FreeBSD.org) Received: from c-71-227-23-200.hsd1.mi.comcast.net ([71.227.23.200] helo=[192.168.0.3]) by main.vonostingroup.com with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1Gs5Hy-000OYo-Mm; Wed, 06 Dec 2006 15:30:55 -0700 Message-ID: <45774492.3010100@FreeBSD.org> Date: Wed, 06 Dec 2006 17:30:42 -0500 From: "Frank J. Laszlo" User-Agent: Thunderbird 1.5.0.8 (X11/20061122) MIME-Version: 1.0 To: Jonathan Chen References: <45773F9C.50606@solnetsolutions.co.nz> In-Reply-To: <45773F9C.50606@solnetsolutions.co.nz> X-Enigmail-Version: 0.94.1.0 OpenPGP: id=012360EC Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - main.vonostingroup.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [26 6] X-AntiAbuse: Sender Address Domain - FreeBSD.org X-Source: X-Source-Args: X-Source-Dir: Cc: mad@madpilot.net, freebsd-ports@freebsd.org Subject: Re: comms/openobex 1.3 fails to build on 6-STABLE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 22:32:45 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Jonathan Chen wrote: > Hi Guido, > > I'm trying to build openobex 1.3 from the ports on 6.2-PRERELEASE as of > Nov 16 2006, and it's failing with the following error: > > [...] > gmake all-recursive > gmake[1]: Entering directory `/usr/ports/comms/openobex/work/openobex-1.3' > Making all in include > gmake[2]: Entering directory > `/usr/ports/comms/openobex/work/openobex-1.3/includ > e' > gmake[2]: Leaving directory > `/usr/ports/comms/openobex/work/openobex-1.3/include > ' > Making all in lib > gmake[2]: Entering directory > `/usr/ports/comms/openobex/work/openobex-1.3/lib' > if /bin/sh /usr/local/bin/libtool --tag=CC --mode=compile cc > -DHAVE_CONFIG_H -I. > -I. -I.. -I../include -O2 -fno-strict-aliasing -pipe > -D_FORTIFY_SOURCE=2 -M > T obex.lo -MD -MP -MF ".deps/obex.Tpo" -c -o obex.lo obex.c; \ > then mv -f ".deps/obex.Tpo" ".deps/obex.Plo"; else rm -f > ".deps/obex.Tpo > "; exit 1; fi > mkdir .libs > cc -DHAVE_CONFIG_H -I. -I. -I.. -I../include -O2 -fno-strict-aliasing > -pipe -D_ > FORTIFY_SOURCE=2 -MT obex.lo -MD -MP -MF .deps/obex.Tpo -c obex.c -fPIC > -DPIC - > o .libs/obex.o > In file included from obex_main.h:61, > from obex.c:49: > obex_transport.h:43:33: bluetooth/bluetooth.h: No such file or directory > obex_transport.h:44:30: bluetooth/rfcomm.h: No such file or directory > In file included from obex_main.h:61, from obex.c:49: > obex_transport.h:58: error: field `rfcomm' has incomplete type > In file included from obex.c:62: > btobex.h:33: error: syntax error before "bdaddr_t" > btobex.h:34: error: syntax error before "bdaddr_t" > obex.c:1026: error: syntax error before "bdaddr_t" > obex.c: In function `BtOBEX_ServerRegister': > obex.c:1030: error: `self' undeclared (first use in this function) > obex.c:1030: error: (Each undeclared identifier is reported only once > obex.c:1030: error: for each function it appears in.) > obex.c:1033: error: `src' undeclared (first use in this function) > obex.c:1034: error: `BDADDR_ANY' undeclared (first use in this function) > obex.c:1035: error: `channel' undeclared (first use in this function) > obex.c: At top level: > obex.c:1049: error: syntax error before "bdaddr_t" > obex.c: In function `BtOBEX_TransportConnect': > obex.c:1053: error: `self' undeclared (first use in this function) > obex.c:1060: error: `dst' undeclared (first use in this function) > obex.c:1063: error: `src' undeclared (first use in this function) > obex.c:1064: error: `BDADDR_ANY' undeclared (first use in this function) > obex.c:1065: error: `channel' undeclared (first use in this function) > gmake[2]: *** [obex.lo] Error 1 > gmake[2]: Leaving directory > `/usr/ports/comms/openobex/work/openobex-1.3/lib' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory `/usr/ports/comms/openobex/work/openobex-1.3' > gmake: *** [all] Error 2 > *** Error code 2 > > Any idea what could be causing this? > -- > Jonathan Chen I just committed a fix for this. Please update your ports tree. Thanks - -Frank -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iQIVAwUBRXdEka1QwXwBI2DsAQJOmg/+KpSr2JkPCRgpbFS+O8SbyKy75xDo49TU V3wqm3azLdCL++6MD1t5lSm7sSV/vPzrXGeQCuujw4mEP3DakuFR0HDgbHdwlRWz qGMiQxTfgp3qZOViNUK2m0be5AQujQvlK/1XcnQ9jTMCvlqJzs7vaaVav//EitbY tCCWk0qxzT2x+rpdDv8WNc0e6FfsGzHAIIvGmoiZTJyeXR7r5lHBAGfbiyLc0a04 DJxsTmkZ8USMtzB1qX6IbdtBG91MWZtYXc+t06dZDFfC/u9bjRpryVvMab1Eec7Q gQWOp8fkT59zDr33Y/6+2cnp6d6y3OsZnBggdgxW2GPnRKea791fJpz4X7d1kpcN V0K/l8WrcMw75dNR06hokroxXrFcKe/VkcgoD+YAgGApSjxdzMGhjcE4Jm0tbAzV oRs2XF/TaAp0d2v0g59eKA824Y1rteg/Ne1Uz9sQuhjA48fN7rNPgtWFE8nxuqF3 Kqc7Drb8+/JUpwhtjeH2499imvWzzZO31CFR82a9H4aItbiYUYcl6XCfr84gbdoN qcR7uLjxLyKf7eX6LeUwo7pAkepPW32os0Wh+BPLEWytHDbYxeh9onwqKt+RPHMC pVTqXSwnSALx3ok9yNDZ6PqDl8zAH2G3qm7KnX6KcWxsw/0ehjcNzEcF0XwofM8g M5n9aEh9yiA= =OJvT -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Wed Dec 6 23:32:55 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2C67216A62A; Wed, 6 Dec 2006 23:32:55 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id B79A443CA5; Wed, 6 Dec 2006 23:32:05 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id F252D1A4D94; Wed, 6 Dec 2006 15:32:52 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 308DD513BC; Wed, 6 Dec 2006 18:32:32 -0500 (EST) Date: Wed, 6 Dec 2006 18:32:32 -0500 From: Kris Kennaway To: martinko Message-ID: <20061206233232.GA72778@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="zYM0uCDKw75PZbzx" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.2i Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: portupgrade refusin to upgrade a port .. when it shouldn't imho X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Dec 2006 23:32:55 -0000 --zYM0uCDKw75PZbzx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Dec 06, 2006 at 10:55:40PM +0100, martinko wrote: > Hello, >=20 > According to freshports.org the newest multimedia/win32-codecs port > (3.1.0.r1,1) is not vulnerable. I'm trying to upgrade version > win32-codecs-3.1.0.p8,1 on my system but portupgrade + portaudit refuse > me to do so: >=20 > ** Port marked as IGNORE: multimedia/win32-codecs: > is forbidden: Remote code execution: > http://vuxml.FreeBSD.org/24f6b1eb-43d5-11db-81e1-000e0c2e438a.html >=20 > Isn't this behaviour flawed ?? Or am I missing something ? Did you update your portaudit database? Kris --zYM0uCDKw75PZbzx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFd1MPWry0BWjoQKURArdrAJ9kFH/6bOesPXTSpvb/njiokSOkSgCg54pg uw0XcMN/ysAaj5GrfI2lMoM= =dQuB -----END PGP SIGNATURE----- --zYM0uCDKw75PZbzx-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 00:26:44 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 06B5416A416 for ; Thu, 7 Dec 2006 00:26:44 +0000 (UTC) (envelope-from freebsd-ports@m.gmane.org) Received: from ciao.gmane.org (main.gmane.org [80.91.229.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC96643CAE for ; Thu, 7 Dec 2006 00:25:51 +0000 (GMT) (envelope-from freebsd-ports@m.gmane.org) Received: from list by ciao.gmane.org with local (Exim 4.43) id 1Gs75i-0003O2-30 for freebsd-ports@freebsd.org; Thu, 07 Dec 2006 01:26:22 +0100 Received: from r5h168.net.upc.cz ([86.49.7.168]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 07 Dec 2006 01:26:22 +0100 Received: from gamato by r5h168.net.upc.cz with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Thu, 07 Dec 2006 01:26:22 +0100 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-ports@freebsd.org From: martinko Date: Thu, 07 Dec 2006 01:26:08 +0100 Lines: 42 Message-ID: <45775FA0.7020206@users.sf.net> References: <20061206233232.GA72778@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: r5h168.net.upc.cz User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.0.8) Gecko/20061111 SeaMonkey/1.0.6 In-Reply-To: <20061206233232.GA72778@xor.obsecurity.org> Sender: news Cc: freebsd-questions@freebsd.org Subject: Re: portupgrade refusin to upgrade a port .. when it shouldn't imho X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 00:26:44 -0000 Kris Kennaway wrote: > On Wed, Dec 06, 2006 at 10:55:40PM +0100, martinko wrote: >> Hello, >> >> According to freshports.org the newest multimedia/win32-codecs port >> (3.1.0.r1,1) is not vulnerable. I'm trying to upgrade version >> win32-codecs-3.1.0.p8,1 on my system but portupgrade + portaudit refuse >> me to do so: >> >> ** Port marked as IGNORE: multimedia/win32-codecs: >> is forbidden: Remote code execution: >> http://vuxml.FreeBSD.org/24f6b1eb-43d5-11db-81e1-000e0c2e438a.html >> >> Isn't this behaviour flawed ?? Or am I missing something ? > > Did you update your portaudit database? > > Kris Sure thing: mb-aw1n-bsd[/root]# portaudit -Fda New database installed. Database created: Thu Dec 7 01:10:04 CET 2006 Affected package: win32-codecs-3.1.0.p8,1 Type of problem: win32-codecs -- multiple vulnerabilities. Reference: 1 problem(s) in your installed packages found. You are advised to update or deinstall the affected package(s) immediately. mb-aw1n-bsd[/root]# portupgrade -if win32-codecs ---> Session started at: Thu, 07 Dec 2006 01:24:42 +0100 ** Port marked as IGNORE: multimedia/win32-codecs: is forbidden: Remote code execution: http://vuxml.FreeBSD.org/24f6b1eb-43d5-11db-81e1-000e0c2e438a.html ---> ** Upgrade tasks 1: 0 done, 1 ignored, 0 skipped and 0 failed ---> Listing the results (+:done / -:ignored / *:skipped / !:failed) - multimedia/win32-codecs (win32-codecs-3.1.0.p8,1) ---> Packages processed: 0 done, 1 ignored, 0 skipped and 0 failed ---> Session ended at: Thu, 07 Dec 2006 01:24:43 +0100 (consumed 00:00:01) From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 00:46:26 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B154116A407 for ; Thu, 7 Dec 2006 00:46:26 +0000 (UTC) (envelope-from josh.carroll@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.191]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73E7C43CA6 for ; Thu, 7 Dec 2006 00:45:37 +0000 (GMT) (envelope-from josh.carroll@gmail.com) Received: by nf-out-0910.google.com with SMTP id x37so694740nfc for ; Wed, 06 Dec 2006 16:46:24 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=H+BrzoLKX+9KB86DVhlRek9o62pGu62s3H7MFZL+JPiYgiUXHu2HWx1i+jXyGfR5v58C6wRhdVDqdcpQ6iuCu4EhSCKl4nCw6gCX5LgY6mhtqxJPEqnlUv0Co3I6xhI6wrOq2GjzNCJgDxHmrwHLgXA7T4tU6Oy0RrCTGkxPmgc= Received: by 10.82.179.9 with SMTP id b9mr349164buf.1165452384084; Wed, 06 Dec 2006 16:46:24 -0800 (PST) Received: by 10.82.163.14 with HTTP; Wed, 6 Dec 2006 16:46:24 -0800 (PST) Message-ID: <8cb6106e0612061646m1a9b9f94nc33bdb36ad25594d@mail.gmail.com> Date: Wed, 6 Dec 2006 16:46:24 -0800 From: "Josh Carroll" To: martinko In-Reply-To: <45775FA0.7020206@users.sf.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20061206233232.GA72778@xor.obsecurity.org> <45775FA0.7020206@users.sf.net> Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: portupgrade refusin to upgrade a port .. when it shouldn't imho X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: josh.carroll@psualum.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 00:46:26 -0000 > >> ** Port marked as IGNORE: multimedia/win32-codecs: > >> is forbidden: Remote code execution: > >> http://vuxml.FreeBSD.org/24f6b1eb-43d5-11db-81e1-000e0c2e438a.html > >> > >> Isn't this behaviour flawed ?? Or am I missing something ? You need to make config in /usr/ports/multimedia/win32-codecs, and unselect quicktime. Then the port should install. This is assuming, of course, that you can live without the QT codec(s). Josh From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 05:02:48 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E023616A40F for ; Thu, 7 Dec 2006 05:02:48 +0000 (UTC) (envelope-from e.schuele@computer.org) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [204.127.192.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49D2043CAA for ; Thu, 7 Dec 2006 05:01:59 +0000 (GMT) (envelope-from e.schuele@computer.org) Received: from [192.168.214.215] (cpe-76-184-133-124.tx.res.rr.com[76.184.133.124]) by comcast.net (rwcrmhc12) with ESMTP id <20061207050247m1200sacp8e>; Thu, 7 Dec 2006 05:02:47 +0000 Message-ID: <4577A076.5030102@computer.org> Date: Wed, 06 Dec 2006 23:02:46 -0600 From: Eric Schuele User-Agent: Thunderbird 1.5.0.8 (X11/20061111) MIME-Version: 1.0 To: ports Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: [OT] Trying to build some software.... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 05:02:49 -0000 Hello, Off topic? Maybe. I'm trying to build some software that has a port... yet the code I'm attempting to build is a *later* cvs snapshot. I'm trying to build it using the instructions on the originators website, not by using the port. When I run ./autogen.sh... it ends with the following: checking for zlib.h... yes checking jpeglib.h usability... no checking jpeglib.h presence... no checking for jpeglib.h... no configure: error: "Cannot find jpeglib.h. Make sure your CFLAGS environment variable contains include lines for the location of this file" I *do* have jpeglib.h in /usr/local/include, yet modifying CFLAGS has no effect. Nor does modifying CPPFLAGS (as the port does, I think). Presently my make.conf has in it: CFLAGS= -O -pipe COPTFLAGS= -O -pipe On someone's advice I tried setting PKG_CONFIG_PATH as well. But no luck. Any help is appreciated. -- Regards, Eric From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 06:14:39 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1100416A403 for ; Thu, 7 Dec 2006 06:14:39 +0000 (UTC) (envelope-from lawrance@FreeBSD.org) Received: from pecan.exetel.com.au (pecan-mail.exetel.com.au [220.233.0.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3D0843C9D for ; Thu, 7 Dec 2006 06:13:48 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from 180.205.233.220.exetel.com.au ([220.233.205.180] helo=[192.168.0.148]) by pecan.exetel.com.au with esmtp (Exim 4.63) (envelope-from ) id 1GsCWi-0002pV-4g; Thu, 07 Dec 2006 17:14:36 +1100 In-Reply-To: <4577A076.5030102@computer.org> References: <4577A076.5030102@computer.org> Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <853D7AE4-78E3-4CE8-95FB-FEF635B791C6@FreeBSD.org> Content-Transfer-Encoding: 7bit From: Sam Lawrance Date: Thu, 7 Dec 2006 17:14:35 +1100 To: Eric Schuele X-Mailer: Apple Mail (2.752.3) Cc: ports Subject: Re: [OT] Trying to build some software.... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 06:14:39 -0000 On 07/12/2006, at 4:02 PM, Eric Schuele wrote: > Hello, > > Off topic? Maybe. > > I'm trying to build some software that has a port... yet the code > I'm attempting to build is a *later* cvs snapshot. > > I'm trying to build it using the instructions on the originators > website, not by using the port. > > When I run ./autogen.sh... it ends with the following: > checking for zlib.h... yes > checking jpeglib.h usability... no > checking jpeglib.h presence... no > checking for jpeglib.h... no > configure: error: "Cannot find jpeglib.h. Make sure your CFLAGS > environment variable contains include lines for the location of > this file" > > I *do* have jpeglib.h in /usr/local/include, yet modifying CFLAGS > has no effect. Nor does modifying CPPFLAGS (as the port does, I > think). Take a look in config.log. Find out the command it's running to check for jpeglib.h - once you know what it's doing, you can try to fix it. From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 08:10:40 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5F63B16A585; Thu, 7 Dec 2006 08:10:40 +0000 (UTC) (envelope-from dmitry@atlantis.dp.ua) Received: from postman.atlantis.dp.ua (postman.atlantis.dp.ua [193.108.47.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AADD43CAE; Thu, 7 Dec 2006 08:09:48 +0000 (GMT) (envelope-from dmitry@atlantis.dp.ua) Received: from smtp.atlantis.dp.ua (smtp.atlantis.dp.ua [193.108.46.231]) by postman.atlantis.dp.ua (8.13.1/8.13.1) with ESMTP id kB78ARWA021691; Thu, 7 Dec 2006 10:10:27 +0200 (EET) (envelope-from dmitry@atlantis.dp.ua) Date: Thu, 7 Dec 2006 10:10:27 +0200 (EET) From: Dmitry Pryanishnikov To: Vasil Dimov In-Reply-To: <20061201081518.GA17962@qlovarnika.bg.datamax> Message-ID: <20061207100900.V11417@atlantis.atlantis.dp.ua> References: <20061130103911.E14131@atlantis.atlantis.dp.ua> <456EA5DD.1040608@FreeBSD.org> <456F22EC.1030106@FreeBSD.org> <20061130211623.W96066@atlantis.atlantis.dp.ua> <20061201081518.GA17962@qlovarnika.bg.datamax> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: ports@FreeBSD.org Subject: Re: apache + php + mysql startup order X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 08:10:40 -0000 Hello! On Fri, 1 Dec 2006, Vasil Dimov wrote: > On Thu, Nov 30, 2006 at 09:34:11PM +0200, Dmitry Pryanishnikov wrote: >> And yes, I can just replace >> >> # REQUIRE: DAEMON >> # BEFORE: LOGIN >> >> with >> >> # REQUIRE: LOGIN >> >> in apache.sh, and all works correctly. Yet I prefer (as usually in >> open-source >> software world) not to keep local fixes for obvious bugs (and reapply them >> during every [re]install of apache), but to report them upstream instead. > [...] > > Please submit your patch using send-pr(1) so it does not get overlooked. Done (ports/106429). > Vasil Dimov > gro.DSBeerF@dv Sincerely, Dmitry -- Atlantis ISP, System Administrator e-mail: dmitry@atlantis.dp.ua nic-hdl: LYNX-RIPE From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 09:03:23 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 464D416A403 for ; Thu, 7 Dec 2006 09:03:23 +0000 (UTC) (envelope-from marko@freebsd.org) Received: from pih-relay05.plus.net (pih-relay05.plus.net [212.159.14.132]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA70C43CB6 for ; Thu, 7 Dec 2006 09:02:30 +0000 (GMT) (envelope-from marko@freebsd.org) Received: from [80.229.231.20] (helo=[192.168.1.4]) by pih-relay05.plus.net with esmtp (Exim) id 1GsF9x-0008TJ-Mi for freebsd-ports@freebsd.org; Thu, 07 Dec 2006 09:03:18 +0000 Message-ID: <4577D8BE.6020105@freebsd.org> Date: Thu, 07 Dec 2006 09:02:54 +0000 From: Mark Ovens User-Agent: Thunderbird 1.5.0.7 (X11/20061107) MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Firefox & thunderbird crash saving a file X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 09:03:23 -0000 This started around the late 1.5.0.x versions and also happens in FF 2.0 When saving a file, e.g. an e-mail attachment, right-click->Save Link As... on a webpage, or uploading a file to a web forum, it will work once - maybe twice - but on subsequent saves the dialogue opens but the cursor stays as 'busy' for ~15 seconds, then FF/TB segfault and crash. % uname -a FreeBSD redshift 6.1-RC FreeBSD 6.1-RC #0: Mon May 1 14:05:04 BST 2006 root@redshift:/usr/obj/usr/src/sys/REDSHIFT i386 This is a stack trace of the core dump - both FF and TB give the same trace. (gdb) bt #0 0x28c0a1ab in pthread_testcancel () from /usr/lib/libpthread.so.2 #1 0x28bf86dd in sigaction () from /usr/lib/libpthread.so.2 #2 0x28bf1c45 in pthread_kill () from /usr/lib/libpthread.so.2 #3 0x28bf14c4 in raise () from /usr/lib/libpthread.so.2 #4 0x08060134 in ?? () #5 0x0000000b in ?? () #6 0xbfbfb6d0 in ?? () #7 0x00000000 in ?? () #8 0x0806e048 in ?? () #9 0x00000400 in ?? () #10 0x00000000 in ?? () #11 0x00000000 in ?? () #12 0x00000000 in ?? () #13 0xbfbfb7b0 in ?? () #14 0x0000000f in ?? () #15 0x00000000 in ?? () #16 0x28c0d4b4 in ?? () from /usr/lib/libpthread.so.2 #17 0xbfbfba60 in ?? () #18 0x0000000b in ?? () #19 0xbfbfb728 in ?? () #20 0x28bf6598 in sigaction () from /usr/lib/libpthread.so.2 Previous frame identical to this frame (corrupt stack?) (gdb) total 19 What is very suspicious is the last line if the trace about a corrupt stack. Looks like it is a threading problem but since I can't find any other posts about this happening I guess it's just my system. Since my system is 6 months old (6.1-RC) do you think doing a make world to bring it up to 6.2 would solve the problem? Thanks. Regards, Mark From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 09:10:08 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EC17816A415 for ; Thu, 7 Dec 2006 09:10:08 +0000 (UTC) (envelope-from jamesoff@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id B48BB43CAE for ; Thu, 7 Dec 2006 09:09:17 +0000 (GMT) (envelope-from jamesoff@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so360592uge for ; Thu, 07 Dec 2006 01:10:06 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=RIlh2H55WT5DzaD+2iJdlJDFbKLm+nRTIJAbSdeNcqMpvNTNI1rwvHw6Ln5GhQQdchRhDjmCAKvQIKjtkcBVa//Qr+Q6IkFLfNExRMnfdPNxR5N6VUBxvLylGYLXVybqCpb2CHccYiRQsCGdEwUK708bTyL7aX+S6EM05/0GHRw= Received: by 10.49.10.19 with SMTP id n19mr3549441nfi.1165482606645; Thu, 07 Dec 2006 01:10:06 -0800 (PST) Received: by 10.78.151.14 with HTTP; Thu, 7 Dec 2006 01:10:05 -0800 (PST) Message-ID: <720051dc0612070110q6f31b798q5d308af7c853b5f5@mail.gmail.com> Date: Thu, 7 Dec 2006 09:10:05 +0000 From: "James Seward" To: "Mark Ovens" In-Reply-To: <4577D8BE.6020105@freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4577D8BE.6020105@freebsd.org> Cc: freebsd-ports@freebsd.org Subject: Re: Firefox & thunderbird crash saving a file X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 09:10:09 -0000 On 12/7/06, Mark Ovens wrote: > This started around the late 1.5.0.x versions and also happens in FF 2.0 > > When saving a file, e.g. an e-mail attachment, right-click->Save Link > As... on a webpage, or uploading a file to a web forum, it will work > once - maybe twice - but on subsequent saves the dialogue opens but the > cursor stays as 'busy' for ~15 seconds, then FF/TB segfault and crash. I have also recently experienced this behaviour when doing "Save Image As..." from the shortcut menu in Firefox. I did look at the core file but my conclusions were similar to Mark's - the backtrace was some thousands of frames long and looked corrupted. % uname -a FreeBSD tomo 6.2-RC1 FreeBSD 6.2-RC1 #0: Mon Nov 20 23:48:08 GMT 2006 root@tomo:/usr/obj/usr/src/sys/TOMO i386 I also had this behaviour on 6.2-PRERELEASE. /JMS From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 09:51:47 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9376F16A47E for ; Thu, 7 Dec 2006 09:51:47 +0000 (UTC) (envelope-from infofarmer@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10AE543CBC for ; Thu, 7 Dec 2006 09:50:53 +0000 (GMT) (envelope-from infofarmer@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so368619uge for ; Thu, 07 Dec 2006 01:51:43 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:sender:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition:x-google-sender-auth; b=AFkm1emiiY4IaHemDENB/GoEf9lrTjDhKbhi0JUmGDYPkBBWi9k3UyWvyksqLeiN16hP+8hL4v8XbwqZWH/1f4AK+NmBWHFNCwymTTXHumSaBJix/Wfts5sgsGVRjwGM6S6AB8zKHYHkwLJAaiSDTtM+xA67T3u8Vujd4jOo7bQ= Received: by 10.49.26.18 with SMTP id d18mr3655574nfj.1165484732766; Thu, 07 Dec 2006 01:45:32 -0800 (PST) Received: by 10.78.164.20 with HTTP; Thu, 7 Dec 2006 01:45:32 -0800 (PST) Message-ID: Date: Thu, 7 Dec 2006 12:45:32 +0300 From: "Andrew Pantyukhin" Sender: infofarmer@gmail.com To: "Frank Mayhar" , "FreeBSD Ports" MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Google-Sender-Auth: 654040a28fb26708 Cc: Subject: cups-pstoraster vs. ghostscript 8.15 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 09:51:47 -0000 It looks like both ports install some similar files into share/ghostscript/8.15, in particular share/ghostscript/8.15/lib/gs_init.ps. Frank, could you please look at it or should I mark the two ports as conflicting right away? Thanks! From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 10:06:55 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7B20F16A53C for ; Thu, 7 Dec 2006 10:06:55 +0000 (UTC) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BD3043CD1 for ; Thu, 7 Dec 2006 10:05:53 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (fenner@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kB7A6h2w027813 for ; Thu, 7 Dec 2006 10:06:43 GMT (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kB7A6hsV027812 for ports@freebsd.org; Thu, 7 Dec 2006 10:06:43 GMT (envelope-from fenner) Date: Thu, 7 Dec 2006 10:06:43 GMT From: Bill Fenner Message-Id: <200612071006.kB7A6hsV027812@freefall.freebsd.org> To: ports@freebsd.org Cc: Subject: Unfetchable distfiles reminder X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 10:06:55 -0000 Dear porters, This is just a reminder to please periodically check the list of unfetchable distfiles at http://people.freebsd.org/~fenner/portsurvey/ . In particular, the list of ports with no MAINTAINER with distfile problems, which currently has 223 bad ports, is http://people.freebsd.org/~fenner/portsurvey/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. In addition, the list of all ports with any unfetchable distfile is http://people.freebsd.org/~fenner/portsurvey/bad.html if you don't mind coordinating your fixes with the port MAINTAINER. Thanks for your help! Bill "distfiles" Fenner From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 10:42:00 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0634A16A50A for ; Thu, 7 Dec 2006 10:42:00 +0000 (UTC) (envelope-from cgi-mailer-bounces-188189862@kundenserver.de) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AB2C43EEF for ; Thu, 7 Dec 2006 10:38:28 +0000 (GMT) (envelope-from cgi-mailer-bounces-188189862@kundenserver.de) Received: from [212.227.126.202] (helo=mrvnet.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1GsGel-0006je-00 for freebsd-ports@freebsd.org; Thu, 07 Dec 2006 11:39:11 +0100 Received: from [212.227.34.97] (helo=infong427 ident=8) by mrvnet.kundenserver.de with smtp (Exim 3.35 #1) id 1GsGel-0001rN-00 for freebsd-ports@freebsd.org; Thu, 07 Dec 2006 11:39:11 +0100 Received: from [196.217.48.159](IP may be forged by CGI script) by infong427.kundenserver.de with HTTP; Thu, 7 Dec 2006 11:39:11 +0100 Date: Thu, 7 Dec 2006 11:39:11 +0100 Precedence: bulk To: freebsd-ports@freebsd.org From: Content-Transfer-Encoding: 8bit Message-Id: X-Provags-ID: kundenserver.de abuse@kundenserver.de sender-info:188189862@infong427 MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: **Updat Account** X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Reply-To: PINRobot_donotreply@e-gold.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 10:42:00 -0000 Dear E-gold customer We regret to inform you that your E-gold account could be suspended if you don't re-update your account information. To resolve this problems please [1]click here and re-enter your account information. If your problems could not be resolved your account will be suspended for a period of 24 hours, after this period your account will be terminated. For the User Agreement, Section 9, we may immediately issue a warning, temporarily suspend, indefinitely suspend or terminate your membership and refuse to provide our services to you if we believe that your actions may cause financial loss or legal liability for you, our users or us. We may also take these actions if we are unable to verify or authenticate any information you provide to us. Due to the suspension of this account, please be advised you are prohibited from using E-gold in any way. This includes the registering of a new account. Please note that this suspension does not relieve you of your agreed-upon obligation to pay any fees you may owe to E-gold. Regards,Safeharbor Department E-gold, Inc The E-gold team. This is an automatic message. Please do not reply. ______________________________________________________________________ |[2]Home |[3]Terms of Use |[4]About Us |[5]FAQ/Contact | References 1. http://e-gold-service.com/ 2. http://e-gold-service.com/ 3. http://e-gold-service.com/ 4. http://e-gold-service.com/ 5. http://e-gold-service.com/ From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 10:43:49 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7F17516A8C0 for ; Thu, 7 Dec 2006 10:43:49 +0000 (UTC) (envelope-from achilov-rn@askd.ru) Received: from to-495.askd.ru (master.askd.ru [80.242.75.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4FED43CAA for ; Thu, 7 Dec 2006 10:42:57 +0000 (GMT) (envelope-from achilov-rn@askd.ru) Received: from to-495.askd.ru (IDENT:shelton@localhost.askd.ru [127.0.0.1]) by to-495.askd.ru (8.13.6/8.13.6) with ESMTP id kB7Ahkfq002980 for ; Thu, 7 Dec 2006 16:43:46 +0600 (NOVT) (envelope-from achilov-rn@askd.ru) Received: from localhost (localhost [[UNIX: localhost]]) by to-495.askd.ru (8.13.6/8.13.6/Submit) id kB7AhkUJ002979 for ports@freebsd.org; Thu, 7 Dec 2006 16:43:46 +0600 (NOVT) (envelope-from achilov-rn@askd.ru) X-Authentication-Warning: to-495.askd.ru: shelton set sender to achilov-rn@askd.ru using -f From: "Rashid N. Achilov" Organization: =?koi8-r?b?7+/v?= "=?koi8-r?b?4fMt88nT1MXNwQ==?= =?koi8-r?b?IOvPzdDMxcvT?=" To: ports@freebsd.org Date: Thu, 7 Dec 2006 16:43:46 +0600 User-Agent: KMail/1.9.1 References: <200612071000.kB7A0LB7026323@freefall.freebsd.org> In-Reply-To: <200612071000.kB7A0LB7026323@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-r" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200612071643.46524.achilov-rn@askd.ru> Cc: Subject: Re: FreeBSD ports: 1 unfetchable distfile: net/smb4k X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: "Achilov, Rashid" List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 10:43:49 -0000 On Thursday 07 December 2006 16:00, Bill "distfiles" Fenner wrote: > Dear achilov-rn@askd.ru, > > You are listed as the FreeBSD port maintainer for 1 port > whose distfiles are not fetchable from their MASTER_SITES. Could > you please visit > > http://people.freebsd.org/~fenner/portsurvey/achilov-rn@askd.ru.html > > and correct the problems listed there? The individual port with > a problem is net/smb4k. Sorry, but port fetchable. to-495:[root] 107>make fetch ===> Vulnerability check disabled, database not found => smb4k-0.7.5.tar.bz2 doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from http://download.berlios.de/smb4k/. smb4k-0.7.5.tar.bz2 21% of 1774 kB 253 kBps^C fetch: transfer interrupted I had have stop fetch manually here. -- With Best Regards. Rashid N. Achilov (RNA1-RIPE), Web: http://www.askd.ru/~shelton OOO "ACK" telecommunications administrator, e-mail: achilov-rn [at] askd.ru PGP: 83 CD E2 A7 37 4A D5 81 D6 D6 52 BF C9 2F 85 AF 97 BE CB 0A From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 12:53:42 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B01A016A501; Thu, 7 Dec 2006 12:53:42 +0000 (UTC) (envelope-from ganael.laplanche@martymac.com) Received: from data.galacsys.net (data.galacsys.net [217.24.81.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 212B143D31; Thu, 7 Dec 2006 12:50:32 +0000 (GMT) (envelope-from ganael.laplanche@martymac.com) Received: from martymac.com (webmail.galacsys.net [217.24.81.215]) by data.galacsys.net (Postfix) with ESMTP id 278582089D; Thu, 7 Dec 2006 13:51:23 +0100 (CET) From: "ganael.laplanche" To: "James Seward" , "Mark Ovens" X-Openwebmail-Date: Thu, 7 Dec 2006 13:51:23 +0100 Message-Id: <20061207125032.M18462@martymac.com> In-Reply-To: <720051dc0612070110q6f31b798q5d308af7c853b5f5@mail.gmail.com> References: <4577D8BE.6020105@freebsd.org> <720051dc0612070110q6f31b798q5d308af7c853b5f5@mail.gmail.com> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 157.99.64.43 (ganael.laplanche@martymac.com) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Date: Thu, 7 Dec 2006 13:51:23 +0100 (CET) Cc: freebsd-ports@freebsd.org Subject: Re: Firefox & thunderbird crash saving a file X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 12:53:42 -0000 On Thu, 7 Dec 2006 09:10:05 +0000, James Seward wrote > On 12/7/06, Mark Ovens wrote: > I also had this behaviour on 6.2-PRERELEASE. Exactly the same bug at home on a 6.2-PRERELEASE :/ Ganaël LAPLANCHE ganael.laplanche@martymac.com http://www.martymac.com From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 13:12:16 2006 Return-Path: X-Original-To: freebsd-ports@hub.freebsd.org Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B7C2816A407 for ; Thu, 7 Dec 2006 13:12:16 +0000 (UTC) (envelope-from barnardochri@takiweb.com) Received: from takiweb.com (host93-54-dynamic.5-87-r.retail.telecomitalia.it [87.5.54.93]) by mx1.FreeBSD.org (Postfix) with SMTP id 0972D43DE6 for ; Thu, 7 Dec 2006 13:09:14 +0000 (GMT) (envelope-from barnardochri@takiweb.com) Message-ID: <01c71a01$04a218d0$5d360557@MICHELE> From: "Goro Chauez" To: "Lawahiz Pinion" Date: Thu, 7 Dec 2006 14:10:07 +0100 MIME-Version: 1.0 Content-Type: multipart/related; type="multipart/alternative"; boundary="----=_NextPart_000_00B5_01C71A09.49235A70" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1807 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1807 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Re: garne = uneatabl X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Goro Chauez List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 13:12:16 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_00B5_01C71A09.49235A70 Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable wreckage of a very armed and deadly machine-you did?, nod yes-good. be less trouble to them if I were safely dead. And there were only pull the swaying bodies back to the deck. vanished. I was wiping my lips with the back of my hand when Ljotur of costume but playing from a wheelchair. If this was to be the last They were good and they took no chances. They were big and mean and I The rest of the band stirred in their sleep when the smoke blew their There was little else I could do until the music was written, the nails. here is the access terminal. Nothing Iron John did seemed to affect the outcome. He was wary, he ------=_NextPart_000_00B5_01C71A09.49235A70-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 13:20:47 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AD85816A403; Thu, 7 Dec 2006 13:20:47 +0000 (UTC) (envelope-from gamato@users.sf.net) Received: from mail.pipni.cz (mail.pipni.cz [193.86.238.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95B2843CA2; Thu, 7 Dec 2006 13:19:55 +0000 (GMT) (envelope-from gamato@users.sf.net) Received: from mail.pipni.cz ([193.86.238.3]:34713 helo=gamato.org) id 1GsJB4-0002nG-AZ; Thu, 07 Dec 2006 14:20:42 +0100 From: "mato" To: josh.carroll@psualum.com Date: Thu, 7 Dec 2006 14:20:42 +0100 Message-Id: <20061207131208.M28770@users.sf.net> In-Reply-To: <8cb6106e0612061646m1a9b9f94nc33bdb36ad25594d@mail.gmail.com> References: <20061206233232.GA72778@xor.obsecurity.org> <45775FA0.7020206@users.sf.net> <8cb6106e0612061646m1a9b9f94nc33bdb36ad25594d@mail.gmail.com> X-Mailer: Open WebMail 2.51 20050627 X-OriginatingIP: 170.252.96.10 (m@gamato.org) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Cc: freebsd-questions@freebsd.org, freebsd-ports@freebsd.org Subject: Re: portupgrade refusin to upgrade a port .. when it shouldn't imho X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 13:20:47 -0000 On Wed, 6 Dec 2006 16:46:24 -0800, Josh Carroll wrote > > >> ** Port marked as IGNORE: multimedia/win32-codecs: > > >> is forbidden: Remote code execution: > > >> http://vuxml.FreeBSD.org/24f6b1eb-43d5-11db-81e1-000e0c2e438a.html > > >> > > >> Isn't this behaviour flawed ?? Or am I missing something ? > > You need to make config in /usr/ports/multimedia/win32-codecs, and > unselect quicktime. Then the port should install. This is assuming, > of course, that you can live without the QT codec(s). > > Josh OK, I will try it.. Thank you all. But the question remains -- if new port version is not vulnerable why i cannot upgrade to it ?? Cheers, Martin From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 13:46:30 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 949EE16A47B; Thu, 7 Dec 2006 13:46:30 +0000 (UTC) (envelope-from jhary@unsane.co.uk) Received: from unsane.co.uk (www.unsane.co.uk [85.233.185.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1E1343C9D; Thu, 7 Dec 2006 13:45:37 +0000 (GMT) (envelope-from jhary@unsane.co.uk) Received: from [192.168.10.217] (150.117-84-212.staticip.namesco.net [212.84.117.150]) (authenticated bits=0) by unsane.co.uk (8.13.7/8.13.3) with ESMTP id kB7Dkfco006940 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 7 Dec 2006 13:46:43 GMT (envelope-from jhary@unsane.co.uk) Message-ID: <45781B2A.4000300@unsane.co.uk> Date: Thu, 07 Dec 2006 13:46:18 +0000 From: Vince User-Agent: Thunderbird 1.5.0.8 (X11/20061204) MIME-Version: 1.0 To: mato References: <20061206233232.GA72778@xor.obsecurity.org> <45775FA0.7020206@users.sf.net> <8cb6106e0612061646m1a9b9f94nc33bdb36ad25594d@mail.gmail.com> <20061207131208.M28770@users.sf.net> In-Reply-To: <20061207131208.M28770@users.sf.net> X-Enigmail-Version: 0.94.0.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: 7bit Cc: josh.carroll@psualum.com, freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Subject: Re: portupgrade refusin to upgrade a port .. when it shouldn't imho X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 13:46:30 -0000 mato wrote: > On Wed, 6 Dec 2006 16:46:24 -0800, Josh Carroll wrote >>>>> ** Port marked as IGNORE: multimedia/win32-codecs: >>>>> is forbidden: Remote code execution: >>>>> http://vuxml.FreeBSD.org/24f6b1eb-43d5-11db-81e1-000e0c2e438a.html >>>>> >>>>> Isn't this behaviour flawed ?? Or am I missing something ? >> You need to make config in /usr/ports/multimedia/win32-codecs, and >> unselect quicktime. Then the port should install. This is assuming, >> of course, that you can live without the QT codec(s). >> >> Josh > > > OK, I will try it.. Thank you all. > > But the question remains -- if new port version is not vulnerable why i cannot > upgrade to it ?? > Its only not vulnerable if you unselect the quicktime codec. the vulnerability is in the quicktime codec. The port will by default use the stored config in /var/db/ports/win32-codecs/options and if this says to use the quicktime codec then it will not upgrade. This seems pretty sensible to me. Vince > Cheers, > > Martin > _______________________________________________ > freebsd-questions@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > To unsubscribe, send any mail to "freebsd-questions-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 14:08:30 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 35DAD16A47B; Thu, 7 Dec 2006 14:08:30 +0000 (UTC) (envelope-from gamato@users.sf.net) Received: from mail.pipni.cz (mail.pipni.cz [193.86.238.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2881E43CB8; Thu, 7 Dec 2006 14:07:37 +0000 (GMT) (envelope-from gamato@users.sf.net) Received: from mail.pipni.cz ([193.86.238.3]:44568 helo=gamato.org) id 1GsJvB-0000no-DA; Thu, 07 Dec 2006 15:08:21 +0100 From: "mato" To: Vince Date: Thu, 7 Dec 2006 15:08:21 +0100 Message-Id: <20061207140329.M59390@pobox.sk> In-Reply-To: <45781B2A.4000300@unsane.co.uk> References: <20061206233232.GA72778@xor.obsecurity.org> <45775FA0.7020206@users.sf.net> <8cb6106e0612061646m1a9b9f94nc33bdb36ad25594d@mail.gmail.com> <20061207131208.M28770@users.sf.net> <45781B2A.4000300@unsane.co.uk> X-Mailer: Open WebMail 2.51 20050627 X-OriginatingIP: 170.252.96.10 (m@gamato.org) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Cc: josh.carroll@psualum.com, freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Subject: Re: portupgrade refusin to upgrade a port .. when it shouldn't imho X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 14:08:30 -0000 On Thu, 07 Dec 2006 13:46:18 +0000, Vince wrote > mato wrote: > > On Wed, 6 Dec 2006 16:46:24 -0800, Josh Carroll wrote > >>>>> ** Port marked as IGNORE: multimedia/win32-codecs: > >>>>> is forbidden: Remote code execution: > >>>>> http://vuxml.FreeBSD.org/24f6b1eb-43d5-11db-81e1-000e0c2e438a.html > >>>>> > >>>>> Isn't this behaviour flawed ?? Or am I missing something ? > >> You need to make config in /usr/ports/multimedia/win32-codecs, and > >> unselect quicktime. Then the port should install. This is assuming, > >> of course, that you can live without the QT codec(s). > >> > >> Josh > > > > > > OK, I will try it.. Thank you all. > > > > But the question remains -- if new port version is not vulnerable why i cannot > > upgrade to it ?? > > > Its only not vulnerable if you unselect the quicktime codec. the > vulnerability is in the quicktime codec. > > The port will by default use the stored config in > /var/db/ports/win32-codecs/options and if this says to use the quicktime > codec then it will not upgrade. This seems pretty sensible to me. > > Vince > I cannot access and check the port's Makefile right now ... Is it Makefile which says (conditionally) "hey i'm vulnerable" or is it portaudit/VuXML database which says that. I guess the former, otherwise freshports.org should mark the port as vulnerable. Right? Cheers, Martin From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 14:37:34 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 47EAE16A47E; Thu, 7 Dec 2006 14:37:34 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (ns0.infracaninophile.co.uk [81.187.76.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6904743CEA; Thu, 7 Dec 2006 14:35:06 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from [172.16.3.238] (gateway.ash.thebunker.net [213.129.64.4]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.13.8/8.13.8) with ESMTP id kB7EZOKn001162 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 7 Dec 2006 14:35:35 GMT (envelope-from m.seaman@infracaninophile.co.uk) Authentication-Results: smtp.infracaninophile.co.uk from=m.seaman@infracaninophile.co.uk; sender-id=permerror; spf=permerror X-SenderID: Sendmail Sender-ID Filter v0.2.14 smtp.infracaninophile.co.uk kB7EZOKn001162 Message-ID: <457826A3.9020702@infracaninophile.co.uk> Date: Thu, 07 Dec 2006 14:35:15 +0000 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 1.5.0.8 (X11/20061120) MIME-Version: 1.0 To: mato References: <20061206233232.GA72778@xor.obsecurity.org> <45775FA0.7020206@users.sf.net> <8cb6106e0612061646m1a9b9f94nc33bdb36ad25594d@mail.gmail.com> <20061207131208.M28770@users.sf.net> <45781B2A.4000300@unsane.co.uk> <20061207140329.M59390@pobox.sk> In-Reply-To: <20061207140329.M59390@pobox.sk> X-Enigmail-Version: 0.94.0.0 Content-Type: multipart/signed; micalg=pgp-ripemd160; protocol="application/pgp-signature"; boundary="------------enig4115E309C75B607C2E2A6D40" X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (smtp.infracaninophile.co.uk [81.187.76.162]); Thu, 07 Dec 2006 14:35:49 +0000 (GMT) X-Virus-Scanned: ClamAV version 0.88.6, clamav-milter version 0.88.6 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-2.1 required=5.0 tests=AWL,BAYES_00, DKIM_POLICY_TESTING autolearn=ham version=3.1.7 X-Spam-Checker-Version: SpamAssassin 3.1.7 (2006-10-05) on happy-idiot-talk.infracaninophile.co.uk Cc: Vince , josh.carroll@psualum.com, freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Subject: Re: portupgrade refusin to upgrade a port .. when it shouldn't imho X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 14:37:34 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig4115E309C75B607C2E2A6D40 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: quoted-printable mato wrote: > On Thu, 07 Dec 2006 13:46:18 +0000, Vince wrote >> mato wrote: >>> On Wed, 6 Dec 2006 16:46:24 -0800, Josh Carroll wrote >>>>>>> ** Port marked as IGNORE: multimedia/win32-codecs: >>>>>>> is forbidden: Remote code execution: >>>>>>> http://vuxml.FreeBSD.org/24f6b1eb-43d5-11db-81e1-000e0c2e438a.htm= l >>>>>>> >>>>>>> Isn't this behaviour flawed ?? Or am I missing something ? >>>> You need to make config in /usr/ports/multimedia/win32-codecs, and >>>> unselect quicktime. Then the port should install. This is assuming, >>>> of course, that you can live without the QT codec(s). >>>> >>>> Josh >>> >>> OK, I will try it.. Thank you all. >>> >>> But the question remains -- if new port version is not vulnerable why= i cannot >>> upgrade to it ?? >>> >> Its only not vulnerable if you unselect the quicktime codec. the >> vulnerability is in the quicktime codec. >> >> The port will by default use the stored config in >> /var/db/ports/win32-codecs/options and if this says to use the quickti= me >> codec then it will not upgrade. This seems pretty sensible to me. >> >> Vince >> >=20 >=20 > I cannot access and check the port's Makefile right now ... Is it Makef= ile > which says (conditionally) "hey i'm vulnerable" or is it portaudit/VuXM= L > database which says that. I guess the former, otherwise freshports.org= should > mark the port as vulnerable. Right? In general, this sort of security flagging is done via portaudit's own da= tabase which is derived mostly from VuXML. To get around the lockout imposed by= portaudit you can do: make DISABLE_VULNERABILITIES=3Dyes but a) this doesn't disable any actual vulnerabilities, just the checking= for their presence, and b) on your own head be it. Now, in the case of the win32-codecs port, it is done differently. The p= ort Makefile says this: =2Eif defined(WITH_QUICKTIME) FORBIDDEN=3D Remote code execution: http://vuxml.FreeBSD.org/24f6b1e= b-43d5-11 db-81e1-000e0c2e438a.html ADDITIONAL_CODECS_DISTFILES+=3D qt63dlls-20050115.tar.bz2 \ qtextras-20041107.tar.bz2 PLIST_SUB+=3D QUICKTIME=3D"" =2Eelse PLIST_SUB+=3D QUICKTIME=3D"@comment " =2Eendif ie. selecting the Quicktime plugins in the OPTIONS dialog, which causes WITH_QUICKTIME to be defined, means that the port will be marked forbidde= n, and any attempt to install it will be blocked. A simple 'make config' and unchecking that option will let you install the port with all of the other codecs. Freshports parses the VuXML database to mark ports as vulnerable -- the V= uXML data contains a listing of the vulnerable package names and ranges of ver= sion numbers. VuXML doesn't actually have a way of distinguishing what option= s are enabled for the port, although the textual note in the entry explains the= situation fairly clearly. It doesn't say "Users are advised to reinstall the port = with the Quicktime support turned off" which might be a nice addition. The system= will however prompt users to upgrade to a version of the port after the code t= o forbid installation with Quicktime stuff enabled was added. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. Flat 3 7 Priory Courtyard PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW, UK --------------enig4115E309C75B607C2E2A6D40 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFeCap8Mjk52CukIwRAy6hAJ0aFo6JQZt6vmHv54BnzMznOhNI+QCfXEzh OT0VSOkkTBLUhuqmxjjZHY0= =9WMg -----END PGP SIGNATURE----- --------------enig4115E309C75B607C2E2A6D40-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 16:08:40 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AA44816A4FF; Thu, 7 Dec 2006 16:08:40 +0000 (UTC) (envelope-from frank@exit.com) Received: from tinker.exit.com (tinker.exit.com [206.223.0.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAAC543EB9; Thu, 7 Dec 2006 16:01:19 +0000 (GMT) (envelope-from frank@exit.com) Received: from jill.exit.com (jill.exit.com [206.223.0.4]) by tinker.exit.com (8.13.8/8.13.8) with ESMTP id kB7G21sQ018175; Thu, 7 Dec 2006 08:02:01 -0800 (PST) (envelope-from frank@exit.com) Received: from jill.exit.com (localhost [127.0.0.1]) by jill.exit.com (8.13.6/8.13.4) with ESMTP id kB7G21JE085184; Thu, 7 Dec 2006 08:02:01 -0800 (PST) (envelope-from frank@exit.com) Received: (from frank@localhost) by jill.exit.com (8.13.6/8.13.6/Submit) id kB7G218U085183; Thu, 7 Dec 2006 08:02:01 -0800 (PST) (envelope-from frank@exit.com) X-Authentication-Warning: jill.exit.com: frank set sender to frank@exit.com using -f From: Frank Mayhar To: Andrew Pantyukhin In-Reply-To: References: Content-Type: text/plain Content-Transfer-Encoding: 7bit Organization: Exit Consulting Date: Thu, 07 Dec 2006 08:02:01 -0800 Message-Id: <1165507321.84753.2.camel@jill.exit.com> Mime-Version: 1.0 X-Mailer: Evolution 2.8.2.1 FreeBSD GNOME Team Port X-Virus-Scanned: ClamAV 0.88.6/2301/Thu Dec 7 07:20:18 2006 on tinker.exit.com X-Virus-Status: Clean Cc: FreeBSD Ports Subject: Re: cups-pstoraster vs. ghostscript 8.15 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 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, 07 Dec 2006 16:08:40 -0000 On Thu, 2006-12-07 at 12:45 +0300, Andrew Pantyukhin wrote: > It looks like both ports install some similar > files into share/ghostscript/8.15, in particular > share/ghostscript/8.15/lib/gs_init.ps. > > Frank, could you please look at it or should I > mark the two ports as conflicting right away? Mark them as conflicting for now. Probably the right thing to do would be to force cups-pstoraster to install its files in someplace like share/espgs/... but that'll take a bit of investigation. I didn't run into this since I use ghostscript-afpl rather than -gnu. Hmm, maybe mention that as an alternative on the CONFLICTS message? Or is that possible? -- 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 Dec 7 16:31:41 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 25BBF16A403; Thu, 7 Dec 2006 16:31:41 +0000 (UTC) (envelope-from dsledge@appriss.com) Received: from intexch02.int.appriss.com (intexch02.int.appriss.com [63.126.72.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9741843E01; Thu, 7 Dec 2006 16:18:28 +0000 (GMT) (envelope-from dsledge@appriss.com) Received: from [10.11.3.10] ([10.11.3.10]) by intexch02.int.appriss.com with Microsoft SMTPSVC(6.0.3790.1830); Thu, 7 Dec 2006 11:19:07 -0500 Message-ID: <45783EFC.4030703@appriss.com> Date: Thu, 07 Dec 2006 11:19:08 -0500 From: David Sledge User-Agent: Thunderbird 1.5.0.8 (X11/20061127) To: "ganael.laplanche" References: <4577D8BE.6020105@freebsd.org> <720051dc0612070110q6f31b798q5d308af7c853b5f5@mail.gmail.com> <20061207125032.M18462@martymac.com> In-Reply-To: <20061207125032.M18462@martymac.com> Content-Transfer-Encoding: quoted-printable X-OriginalArrivalTime: 07 Dec 2006 16:19:07.0169 (UTC) FILETIME=[6B66D910:01C71A1B] MIME-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-15" X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-ports@freebsd.org, Mark Ovens , James Seward Subject: Re: Firefox & thunderbird crash saving a file X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 16:31:41 -0000 I have had this problem since the update to the gnome 2.16 libs. I have had problems with firefox, thunderbird and eclipse crashing. On thunderbird this seems to happen most to me when attaching files from the file directory browser window. ganael.laplanche wrote: = On Thu, 7 Dec 2006 09:10:05 +0000, James Seward wrote On 12/7/06, Mark Ovens [1] wrote= : I also had this behaviour on 6.2-PRERELEASE. Exactly the same bug at home on a 6.2-PRERELEASE :/ Gana=EBl LAPLANCHE [2]ganael.laplanche@martymac.com [3]http:= //www.martymac.com _______________________________________________ [4]freebsd-ports@freebsd.org mailing list [5]http://lists.freebsd.org/mailman/listinfo/free= bsd-ports To unsubscribe, send any mail to [6]"freebsd-ports-unsubscribe= @freebsd.org" References 1. 3D"mailto:marko@freebsd.org" 2. 3D"mailto:ganael.laplanche@mar= 3. 3D"http://www.martymac.com"/ 4. 3D"mailto:freebsd-ports@freebs= 5. 3D"http://lists.freebsd.org/mailm= 6. file://localhost/tmp/3D= From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 17:06:40 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 323E516A4C9; Thu, 7 Dec 2006 17:06:40 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao06.cox.net (eastrmmtao06.cox.net [68.230.240.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36635440E7; Thu, 7 Dec 2006 16:57:56 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from eastrmimpo02.cox.net ([68.1.16.120]) by eastrmmtao06.cox.net (InterMail vM.6.01.06.03 201-2131-130-104-20060516) with ESMTP id <20061207165848.EDTX19510.eastrmmtao06.cox.net@eastrmimpo02.cox.net>; Thu, 7 Dec 2006 11:58:48 -0500 Received: from mezz.mezzweb.com ([24.255.149.218]) by eastrmimpo02.cox.net with bizsmtp id vsxh1V00c4iy4EG0000000; Thu, 07 Dec 2006 11:57:42 -0500 Date: Thu, 07 Dec 2006 11:00:22 -0600 To: "David Sledge" From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=us-ascii MIME-Version: 1.0 References: <4577D8BE.6020105@freebsd.org> <720051dc0612070110q6f31b798q5d308af7c853b5f5@mail.gmail.com> <20061207125032.M18462@martymac.com> <45783EFC.4030703@appriss.com> Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: <45783EFC.4030703@appriss.com> User-Agent: Opera Mail/9.02 (Linux) Cc: "ganael.laplanche" , Mark Ovens , freebsd-ports@freebsd.org, James Seward Subject: Re: Firefox & thunderbird crash saving a file X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 17:06:40 -0000 Guys, more of 'me too' are so useless. Please make your bug report useful. marcus is still waiting for someone to fill out his request[1]. I can't fill out his request, because I still can't reproduce it on two systems. If I can reproduce it then his request will be complete, because all of my ports are always compile with the debug. [1] http://lists.freebsd.org/pipermail/freebsd-gnome/2006-November/016179.html Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team - FreeBSD Multimedia Hat (ports, not src) http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org http://wiki.freebsd.org/multimedia - multimedia@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 17:16:25 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9605716A47B for ; Thu, 7 Dec 2006 17:16:25 +0000 (UTC) (envelope-from gamato@users.sf.net) Received: from slimak.dkm.cz (smtp.dkm.cz [62.24.64.34]) by mx1.FreeBSD.org (Postfix) with SMTP id 38F8E43CAF for ; Thu, 7 Dec 2006 17:15:30 +0000 (GMT) (envelope-from gamato@users.sf.net) Received: (qmail 32949 invoked by uid 0); 7 Dec 2006 17:16:19 -0000 Received: from r5h168.net.upc.cz (HELO ?86.49.7.168?) (86.49.7.168) by smtp.dkm.cz with SMTP; 7 Dec 2006 17:16:19 -0000 Message-ID: <45784C62.80904@users.sf.net> Date: Thu, 07 Dec 2006 18:16:18 +0100 From: mato User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.8.0.8) Gecko/20061111 SeaMonkey/1.0.6 MIME-Version: 1.0 To: Matthew Seaman References: <20061206233232.GA72778@xor.obsecurity.org> <45775FA0.7020206@users.sf.net> <8cb6106e0612061646m1a9b9f94nc33bdb36ad25594d@mail.gmail.com> <20061207131208.M28770@users.sf.net> <45781B2A.4000300@unsane.co.uk> <20061207140329.M59390@pobox.sk> <457826A3.9020702@infracaninophile.co.uk> In-Reply-To: <457826A3.9020702@infracaninophile.co.uk> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: Vince , josh.carroll@psualum.com, freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Subject: Re: portupgrade refusin to upgrade a port .. when it shouldn't imho X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 17:16:25 -0000 Matthew Seaman wrote: > mato wrote: > >> On Thu, 07 Dec 2006 13:46:18 +0000, Vince wrote >> >>> mato wrote: >>> >>>> On Wed, 6 Dec 2006 16:46:24 -0800, Josh Carroll wrote >>>> >>>>>>>> ** Port marked as IGNORE: multimedia/win32-codecs: >>>>>>>> is forbidden: Remote code execution: >>>>>>>> http://vuxml.FreeBSD.org/24f6b1eb-43d5-11db-81e1-000e0c2e438a.html >>>>>>>> >>>>>>>> Isn't this behaviour flawed ?? Or am I missing something ? >>>>>>>> >>>>> You need to make config in /usr/ports/multimedia/win32-codecs, and >>>>> unselect quicktime. Then the port should install. This is assuming, >>>>> of course, that you can live without the QT codec(s). >>>>> >>>>> Josh >>>>> >>>> OK, I will try it.. Thank you all. >>>> >>>> But the question remains -- if new port version is not vulnerable why i cannot >>>> upgrade to it ?? >>>> >>>> >>> Its only not vulnerable if you unselect the quicktime codec. the >>> vulnerability is in the quicktime codec. >>> >>> The port will by default use the stored config in >>> /var/db/ports/win32-codecs/options and if this says to use the quicktime >>> codec then it will not upgrade. This seems pretty sensible to me. >>> >>> Vince >>> >>> >> I cannot access and check the port's Makefile right now ... Is it Makefile >> which says (conditionally) "hey i'm vulnerable" or is it portaudit/VuXML >> database which says that. I guess the former, otherwise freshports.org should >> mark the port as vulnerable. Right? >> > > In general, this sort of security flagging is done via portaudit's own database > which is derived mostly from VuXML. To get around the lockout imposed by portaudit > you can do: > > make DISABLE_VULNERABILITIES=yes > > but a) this doesn't disable any actual vulnerabilities, just the checking > for their presence, and b) on your own head be it. > > Now, in the case of the win32-codecs port, it is done differently. The port > Makefile says this: > > .if defined(WITH_QUICKTIME) > FORBIDDEN= Remote code execution: http://vuxml.FreeBSD.org/24f6b1eb-43d5-11 > db-81e1-000e0c2e438a.html > ADDITIONAL_CODECS_DISTFILES+= qt63dlls-20050115.tar.bz2 \ > qtextras-20041107.tar.bz2 > PLIST_SUB+= QUICKTIME="" > .else > PLIST_SUB+= QUICKTIME="@comment " > .endif > > ie. selecting the Quicktime plugins in the OPTIONS dialog, which causes > WITH_QUICKTIME to be defined, means that the port will be marked forbidden, > and any attempt to install it will be blocked. > > A simple 'make config' and unchecking that option will let you install > the port with all of the other codecs. > > Freshports parses the VuXML database to mark ports as vulnerable -- the VuXML > data contains a listing of the vulnerable package names and ranges of version > numbers. VuXML doesn't actually have a way of distinguishing what options are > enabled for the port, although the textual note in the entry explains the situation > fairly clearly. It doesn't say "Users are advised to reinstall the port with the > Quicktime support turned off" which might be a nice addition. The system will > however prompt users to upgrade to a version of the port after the code to > forbid installation with Quicktime stuff enabled was added. > > Cheers, > > Matthew > > Matthew, that is a great answer!! Thank you! :-) The last question would be how to make make(1) /portupgrade/portsystem to ignore FORBIDDEN. Anyway, thanks again. Martin From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 17:29:34 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 166A116A4C9; Thu, 7 Dec 2006 17:29:34 +0000 (UTC) (envelope-from e.schuele@computer.org) Received: from rwcrmhc13.comcast.net (rwcrmhc13.comcast.net [204.127.192.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3813F43FB3; Thu, 7 Dec 2006 17:24:03 +0000 (GMT) (envelope-from e.schuele@computer.org) Received: from [208.206.151.59] (host59.gtisd.com?[208.206.151.59]) by comcast.net (rwcrmhc13) with ESMTP id <20061207172403m1300afj5ae>; Thu, 7 Dec 2006 17:24:03 +0000 Message-ID: <45784E31.5050905@computer.org> Date: Thu, 07 Dec 2006 11:24:01 -0600 From: Eric Schuele User-Agent: Thunderbird 1.5.0.8 (X11/20061111) MIME-Version: 1.0 To: Sam Lawrance References: <4577A076.5030102@computer.org> <853D7AE4-78E3-4CE8-95FB-FEF635B791C6@FreeBSD.org> In-Reply-To: <853D7AE4-78E3-4CE8-95FB-FEF635B791C6@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports Subject: Re: [OT] Trying to build some software.... X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 17:29:34 -0000 On 12/07/06 00:14, Sam Lawrance wrote: > > On 07/12/2006, at 4:02 PM, Eric Schuele wrote: > >> Hello, >> >> Off topic? Maybe. >> >> I'm trying to build some software that has a port... yet the code I'm >> attempting to build is a *later* cvs snapshot. >> >> I'm trying to build it using the instructions on the originators >> website, not by using the port. >> >> When I run ./autogen.sh... it ends with the following: >> checking for zlib.h... yes >> checking jpeglib.h usability... no >> checking jpeglib.h presence... no >> checking for jpeglib.h... no >> configure: error: "Cannot find jpeglib.h. Make sure your CFLAGS >> environment variable contains include lines for the location of this >> file" >> >> I *do* have jpeglib.h in /usr/local/include, yet modifying CFLAGS has >> no effect. Nor does modifying CPPFLAGS (as the port does, I think). > > Take a look in config.log. Find out the command it's running to check > for jpeglib.h - once you know what it's doing, you can try to fix it. > Thanks for the response. ok... figured it out. heh.. I kept manipulating variables in make.conf. :/ make is not being used at this point. oops. Thanks again! > _______________________________________________ > 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" > -- Regards, Eric From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 18:30:47 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4941016A4C2; Thu, 7 Dec 2006 18:30:47 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ED9743CFC; Thu, 7 Dec 2006 18:29:20 +0000 (GMT) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id F00D75C58; Thu, 7 Dec 2006 13:31:03 -0500 (EST) Date: Thu, 7 Dec 2006 13:31:03 -0500 From: Wesley Shields To: ports@freebsd.org, Doug Barton Message-ID: <20061207183103.GA73597@atarininja.org> References: <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> <20061205172803.GA51892@atarininja.org> <4575C568.70905@FreeBSD.org> <20061205194146.GC52966@atarininja.org> <20061205203120.GA53894@atarininja.org> <4575EBA8.3020601@FreeBSD.org> <20061206014049.GA43656@atarininja.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20061206014049.GA43656@atarininja.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 18:30:47 -0000 On Tue, Dec 05, 2006 at 08:40:49PM -0500, Wesley Shields wrote: > On Tue, Dec 05, 2006 at 05:08:45PM -0800, Ade Lovett wrote: > > > > On Dec 05, 2006, at 13:59 , Doug Barton wrote: > > > > >Wesley Shields wrote: > > >>>@comment DISTFILE:$filename:$size:$md5:$sha256 > > > > > >I think that's good, the other information might come in handy down > > >the road. One thing you might want to consider is to put the md5 sum > > >at the end, since at some point down the road (maybe years from now, > > >but still ...) we're likely to drop md5 altogether. > > > > Better still would be: > > > > @comment DISTFILE:[':' =]* > > > > eg: DISTFILE:foo:SIZE=1234:MD5=...:SHA256=... > > > > Relying on the specific position of an item in a delimited list > > almost always comes back and bites in painful spots later on down the > > way. Minimal extra parsing required by consumers, and bits and > > pieces can be added/removed almost at will. > > > > -aDe > > I agree. I'll modify Doug's latest patch to add this. I've reworked the two patches to take all of the suggestions in. Part 1 (the pkg_info piece): - Silently ignores the -F flag when distfile information is not recorded in +CONTENTS. - Prints the information out in a human readable format (still respects -q). Part 2 (the bsd.port.mk piece) is the patch posted by Doug with Ade's suggestions. The entire thing no longer requires a change to pkg_create in order to function. Anymore thoughts/comments/ideas before I send-pr these? http://www.atarininja.org/~wxs/patches/package-distinfo-part1.diff http://www.atarininja.org/~wxs/patches/package-distinfo-part2.diff -- WXS From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 18:32:57 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3982F16A416; Thu, 7 Dec 2006 18:32:57 +0000 (UTC) (envelope-from shaun@FreeBSD.org) Received: from dione.picobyte.net (host-212-158-207-124.bulldogdsl.com [212.158.207.124]) by mx1.FreeBSD.org (Postfix) with SMTP id DF81E43CF5; Thu, 7 Dec 2006 18:31:39 +0000 (GMT) (envelope-from shaun@FreeBSD.org) Received: from charon.picobyte.net (charon.picobyte.net [IPv6:2001:4bd0:201e::fe03]) by dione.picobyte.net (Postfix) with ESMTP; Thu, 7 Dec 2006 18:32:21 +0000 (GMT) Date: Thu, 7 Dec 2006 18:32:21 +0000 From: Shaun Amott To: mato Message-ID: <20061207183220.GA2771@charon.picobyte.net> References: <20061206233232.GA72778@xor.obsecurity.org> <45775FA0.7020206@users.sf.net> <8cb6106e0612061646m1a9b9f94nc33bdb36ad25594d@mail.gmail.com> <20061207131208.M28770@users.sf.net> <45781B2A.4000300@unsane.co.uk> <20061207140329.M59390@pobox.sk> <457826A3.9020702@infracaninophile.co.uk> <45784C62.80904@users.sf.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="oyUTqETQ0mS9luUI" Content-Disposition: inline In-Reply-To: <45784C62.80904@users.sf.net> User-Agent: Mutt/1.5.11 (FreeBSD i386) Cc: Vince , josh.carroll@psualum.com, freebsd-ports@freebsd.org, freebsd-questions@freebsd.org Subject: Re: portupgrade refusin to upgrade a port .. when it shouldn't imho X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 18:32:57 -0000 --oyUTqETQ0mS9luUI Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Dec 07, 2006 at 06:16:18PM +0100, mato wrote: >=20 > Matthew, that is a great answer!! > Thank you! :-) >=20 > The last question would be how to make make(1) /portupgrade/portsystem > to ignore FORBIDDEN. >=20 "make -DNO_IGNORE" will get around this. But bypassing FORBIDDEN is generally not wise. --=20 Shaun Amott // PGP: 0x6B387A9A "A foolish consistency is the hobgoblin of little minds." - Ralph Waldo Emerson --oyUTqETQ0mS9luUI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.2 (FreeBSD) iD8DBQFFeF40kmhdCGs4epoRAjCAAKCsord9RxiVmUq3meejhji3Kxf6pACfYN9J jr/p4kPBibVYObCjn4H1wc0= =Mjpu -----END PGP SIGNATURE----- --oyUTqETQ0mS9luUI-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 19:00:57 2006 Return-Path: X-Original-To: ports@FreeBSD.Org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 00C1816A403 for ; Thu, 7 Dec 2006 19:00:57 +0000 (UTC) (envelope-from question+fbsdports@closedsrc.org) Received: from q.closedsrc.org (q.closedsrc.org [72.1.133.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91E0243F1D for ; Thu, 7 Dec 2006 18:55:31 +0000 (GMT) (envelope-from question+fbsdports@closedsrc.org) Received: by q.closedsrc.org (Postfix, from userid 1001) id C24D245028; Thu, 7 Dec 2006 10:55:51 -0800 (PST) Date: Thu, 7 Dec 2006 10:55:51 -0800 From: Linh Pham To: ports@FreeBSD.Org Message-ID: <20061207185551.GB13838@q.internal.closedsrc.org> References: <200612071005.kB7A5kxr027583@freefall.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="G4iJoqBmSsgzjUCe" Content-Disposition: inline In-Reply-To: <200612071005.kB7A5kxr027583@freefall.freebsd.org> Organization: closedsrc.org Mail-Copies-To: poster X-PGP-Key: http://closedsrc.org/~question/pubkey.asc User-Agent: Mutt/1.5.13 (2006-08-11) Cc: Subject: Re: FreeBSD ports: 1 unfetchable distfile: sysutils/memtest X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 19:00:57 -0000 --G4iJoqBmSsgzjUCe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2006-12-07 10:05 +0000, "Bill \"distfiles\" Fenner" = wrote: # Dear question+fbsdports@closedsrc.org, #=20 # You are listed as the FreeBSD port maintainer for 1 port # whose distfiles are not fetchable from their MASTER_SITES. Could # you please visit #=20 # http://people.freebsd.org/~fenner/portsurvey/question+fbsdports@closedsrc= =2Eorg.html #=20 # and correct the problems listed there? The individual port with # a problem is sysutils/memtest. It looks like a new version came out and the software author deleted the old version. I've submitted a PR to update the port to the latest version and added a mirror. Thanks --=20 Linh Pham question+fbsdports@closedsrc.org http://closedsrc.org/ --G4iJoqBmSsgzjUCe Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFeGO3whofDeWkDMIRAg3lAKCTN36IpXJaGXH2eB753ynTPC4bQwCgsHqR 3d8E/Bo4/iPDeFP4EJdBDZs= =va8b -----END PGP SIGNATURE----- --G4iJoqBmSsgzjUCe-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 20:08:13 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C965A16A407; Thu, 7 Dec 2006 20:08:13 +0000 (UTC) (envelope-from penny@bangj.com) Received: from jj.bangj.com (jj.bangj.com [24.106.203.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3783A43CAA; Thu, 7 Dec 2006 20:07:20 +0000 (GMT) (envelope-from penny@bangj.com) Received: from [24.106.203.86] (dj1.bangj.com [24.106.203.86]) (using TLSv1 with cipher AES128-SHA (128/128 bits)) (No client certificate requested) by jj.bangj.com (Postfix) with ESMTP id B6782B855; Thu, 7 Dec 2006 15:08:12 -0500 (EST) Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <8589451A-1799-448E-B269-57727EB8F71B@bangj.com> Content-Transfer-Encoding: 7bit From: Doug Penny Date: Thu, 7 Dec 2006 15:08:13 -0500 To: clsung@FreeBSD.org X-Mailer: Apple Mail (2.752.3) Cc: ports@FreeBSD.org Subject: FreeBSD Port: trac-0.10.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 20:08:13 -0000 We are running into a fairly annoying bug in trac 0.10.2 that has been fixed in 0.10-stable. Would it be possible for the port to be upgraded to include these patches? Our issues are with ticket #4132. They can be seen here: http://trac.edgewall.org/milestone/0.10.3 Thank you, Doug Penny From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 20:51:02 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 582EE16A51F for ; Thu, 7 Dec 2006 20:51:02 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.FreeBSD.org (Postfix) with SMTP id AC85143CAF for ; Thu, 7 Dec 2006 20:50:07 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 28793 invoked by uid 399); 7 Dec 2006 20:51:00 -0000 Received: from localhost (HELO ?192.168.0.7?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 7 Dec 2006 20:51:00 -0000 X-Originating-IP: 127.0.0.1 Message-ID: <45787EAD.4030104@FreeBSD.org> Date: Thu, 07 Dec 2006 12:50:53 -0800 From: Doug Barton Organization: http://www.freebsd.org/ User-Agent: Thunderbird 1.5.0.8 (X11/20061125) MIME-Version: 1.0 To: Wesley Shields References: <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> <20061205172803.GA51892@atarininja.org> <4575C568.70905@FreeBSD.org> <20061205194146.GC52966@atarininja.org> <20061205203120.GA53894@atarininja.org> <4575EBA8.3020601@FreeBSD.org> <20061206014049.GA43656@atarininja.org> <20061207183103.GA73597@atarininja.org> In-Reply-To: <20061207183103.GA73597@atarininja.org> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig94BD94A04526D74A4FF852C9" Cc: ports@freebsd.org Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 20:51:02 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig94BD94A04526D74A4FF852C9 Content-Type: multipart/mixed; boundary="------------060309030503010505070601" This is a multi-part message in MIME format. --------------060309030503010505070601 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Wesley Shields wrote: > Part 2 (the bsd.port.mk piece) is the patch posted by Doug with Ade's > suggestions. You missed the second patch I sent with the ${file%:*} changes. I've attached a modified version of that patch which incorporates Ade's change. I plan to start adding the DISTFILE string to +CONTENTS files in portmaster until it's supported in bsd.port.mk, so if anyone has a comment on the format, please speak up now. > The entire thing no longer requires a change to pkg_create in order to > function. Cool! Thanks again for taking this on, Doug --=20 This .signature sanitized for your protection --------------060309030503010505070601 Content-Type: text/plain; name="package-distinfo.diff" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline; filename="package-distinfo.diff" Index: bsd.port.mk =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: /usr/local/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.544 diff -u -r1.544 bsd.port.mk --- bsd.port.mk 30 Sep 2006 19:25:45 -0000 1.544 +++ bsd.port.mk 5 Dec 2006 22:16:53 -0000 @@ -5395,11 +5395,20 @@ # files exist. =20 .if !target(generate-plist) +.if defined(DIST_SUBDIR) +PDS=3D ${DIST_SUBDIR}/ +.endif generate-plist: @${ECHO_MSG} "=3D=3D=3D> Generating temporary packing list" @${MKDIR} `${DIRNAME} ${TMPPLIST}` @if [ ! -f ${DESCR} ]; then ${ECHO_CMD} "** Missing pkg-descr for ${PKG= NAME}."; exit 1; fi @>${TMPPLIST} + @for file in ${DISTFILES} ${PATCHFILES}; do \ + distsize=3D`${GREP} "^SIZE (${PDS}$${file%:*})" ${MD5_FILE} | ${CUT} -= f4 -d' '`; \ + distsha256=3D`${GREP} "^SHA256 (${PDS}$${file%:*})" ${MD5_FILE} | ${CU= T} -f4 -d' '`; \ + distmd5=3D`${GREP} "^MD5 (${PDS}$${file%:*})" ${MD5_FILE} | ${CUT} -f4= -d' '`; \ + ${ECHO_CMD} "@comment DISTFILE:${PDS}$${file%:*}:SIZE=3D$${distsize}:S= HA256=3D$${distsha256}:MD5=3D$${distmd5}" >> ${TMPPLIST}; \ + done @for file in ${PLIST_FILES}; do \ ${ECHO_CMD} $${file} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=3D/= %%!/} >> ${TMPPLIST}; \ done --------------060309030503010505070601-- --------------enig94BD94A04526D74A4FF852C9 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.1 (FreeBSD) iD8DBQFFeH6xyIakK9Wy8PsRAoQpAKDNqz+T/+002cZc8jyuS5Ouk1esbgCguXoD bwYl8gN+F3ERmq/Lvdge5EE= =54+0 -----END PGP SIGNATURE----- --------------enig94BD94A04526D74A4FF852C9-- From owner-freebsd-ports@FreeBSD.ORG Thu Dec 7 21:49:58 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6664616A40F for ; Thu, 7 Dec 2006 21:49:58 +0000 (UTC) (envelope-from stas@FreeBSD.org) Received: from com1.ht-systems.ru (com1.ht-systems.ru [83.97.104.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0CE843CAC for ; Thu, 7 Dec 2006 21:48:39 +0000 (GMT) (envelope-from stas@FreeBSD.org) Received: from [213.87.86.27] (helo=fonon.mbsd.msk.ru) by com1.ht-systems.ru with esmtpa (Exim 4.62) (envelope-from ) id 1GsR2P-0002fw-4G; Fri, 08 Dec 2006 00:44:19 +0300 Received: from localhost (localhost [127.0.0.1]) by fonon.mbsd.msk.ru (Postfix) with SMTP id 189701207F; Fri, 8 Dec 2006 00:48:57 +0300 (MSK) Date: Fri, 8 Dec 2006 00:48:52 +0300 From: Stanislav Sedov To: Peter Pentchev Message-Id: <20061208004852.31063900.stas@FreeBSD.org> In-Reply-To: <20061206125657.GB1814@straylight.m.ringlet.net> References: <20061206125657.GB1814@straylight.m.ringlet.net> Organization: The FreeBSD Project X-Mailer: carrier-pigeon X-Voice: +7 916 849 20 23 X-XMPP: ssedov@jabber.ru X-ICQ: 208105021 X-Yahoo: stanislav_sedov X-PGP-Fingerprint: F21E D6CC 5626 9609 6CE2 A385 2BF5 5993 EB26 9581 X-University: MEPhI Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="PGP-SHA1"; boundary="Signature=_Fri__8_Dec_2006_00_48_52_+0300_UP=LB5eg=2JWE0AU" X-Spam-Flag: SKIP X-Spam-Yversion: Spamooborona 1.6.0 Cc: ports@FreeBSD.org, curl-ports-maintainers@ringlet.net Subject: Re: [CFR] ftp/curl update and API incompatibility X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2006 21:49:58 -0000 --Signature=_Fri__8_Dec_2006_00_48_52_+0300_UP=LB5eg=2JWE0AU Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7bit On Wed, 6 Dec 2006 14:56:57 +0200 Peter Pentchev mentioned: > > x11/ecore > - Fix the packing list for the !x11 case. > Thanks for fixing the pkg-plist;-) Stupid error. -- Stanislav Sedov http://people.freebsd.org/~stas/stas.key.asc --Signature=_Fri__8_Dec_2006_00_48_52_+0300_UP=LB5eg=2JWE0AU Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFeIxIK/VZk+smlYERAv/WAJ0SDYyX5O1DgwouYq1KZJkhZHqNmgCfa2Ea HBkv4JbW8u6a2N103LGGBPc= =FTXS -----END PGP SIGNATURE----- --Signature=_Fri__8_Dec_2006_00_48_52_+0300_UP=LB5eg=2JWE0AU-- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 00:24:03 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4437316A403 for ; Fri, 8 Dec 2006 00:24:03 +0000 (UTC) (envelope-from jumpyboy@infinito.it) Received: from fe-relay03.albacom.net (fe-relay03.albacom.net [217.220.57.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 028C443CA7 for ; Fri, 8 Dec 2006 00:23:07 +0000 (GMT) (envelope-from jumpyboy@infinito.it) Received: (qmail 9607 invoked by uid 508); 8 Dec 2006 00:24:00 -0000 Received: from jumpyboy@infinito.it by fe-relay03.albacom.net with qmail-scanner (rbl: ???. spamassassin: ???. Clear:RC:1(89.119.19.254):CR:PGP(signed):RBL:0:SA:0(0.3/7.5):. Processed in 0.46799 secs); 08 Dec 2006 00:24:00 -0000 Received: from unknown (HELO destino.ilmandarino.org) (89.119.19.254) by fe-relay03.albacom.net with ESMTP; 8 Dec 2006 00:24:00 -0000 From: Gianni To: matthias.andree@gmx.de Date: Fri, 8 Dec 2006 01:31:17 +0100 User-Agent: KMail/1.9.5 MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1429400.R35oP16DdD"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200612080131.26401.jumpyboy@infinito.it> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on fe-relay03.albacom.net X-Spam-Level: X-Spam-Status: No, hits=0.3 required=7.5 tests=AWL autolearn=no version=2.63 X-Spam-Report: * 0.3 AWL AWL: Auto-whitelist adjustment Cc: ports@freebsd.org Subject: FreeBSD Port: bogofilter-1.0.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 00:24:03 -0000 --nextPart1429400.R35oP16DdD Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Hello, was released the stable version 1.1.1 some months ago. When you are going t= o=20 update the port? Bye, Giovanni --nextPart1429400.R35oP16DdD Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (GNU/Linux) iD8DBQBFeLJePfGQefXd0v0RAh0fAJ4l5udJjwKv6S9NWyx/bsDwdjw99gCfd4SY EwqrYHGz9zxVOvkX9uZlVaM= =d47K -----END PGP SIGNATURE----- --nextPart1429400.R35oP16DdD-- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 02:16:47 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5092416A415 for ; Fri, 8 Dec 2006 02:16:47 +0000 (UTC) (envelope-from zaa@ulstu.ru) Received: from kernel.ulstu.ru (kernel.ulstu.ru [62.76.34.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id 698EF43CA2 for ; Fri, 8 Dec 2006 02:15:48 +0000 (GMT) (envelope-from zaa@ulstu.ru) Received: from localhost (localhost [127.0.0.1]) by kernel.ulstu.ru (ulstuMail) with ESMTP id 5B3004AE24; Fri, 8 Dec 2006 05:16:32 +0300 (MSK) X-Virus-Scanned: by amavisd-new at ulstu.ru Received: from kernel.ulstu.ru ([127.0.0.1]) by localhost (kernel.ulstu.ru [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id XGdAFZBeEKyb; Fri, 8 Dec 2006 05:16:26 +0300 (MSK) Received: from orion.ulstu.ru (orion.ulstu.ru [62.76.34.33]) by kernel.ulstu.ru (ulstuMail) with ESMTP id 7F3EF4AE21 for ; Fri, 8 Dec 2006 05:16:25 +0300 (MSK) Received: by orion.ulstu.ru (Postfix, from userid 3909) id DC2A41AFE; Fri, 8 Dec 2006 05:16:25 +0300 (MSK) Date: Fri, 8 Dec 2006 05:16:25 +0300 From: Alexander Zhuravlev To: ports@FreeBSD.org Message-ID: <20061208021625.GB3574@orion.ulstu.ru> Mail-Followup-To: ports@FreeBSD.org References: <20061206125657.GB1814@straylight.m.ringlet.net> MIME-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline In-Reply-To: <20061206125657.GB1814@straylight.m.ringlet.net> Cc: Subject: Re: [CFR] ftp/curl update and API incompatibility X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 02:16:47 -0000 On Wed, Dec 06, 2006 at 02:56:57PM +0200, Peter Pentchev wrote: > - Not sure how to proceed with the PORTREVISION here, and also in > www/pecl-pecl_http - it seems that it is not customary for a PHP extension > to have a different PORTREVISION from the main port? Patch for pecl-pecl_http looks ok. Also, you may bump PORTREVISION in pecl ports also. Thank you for your efforts. -- Alexander Zhuravlev From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 06:22:25 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5070616A596 for ; Fri, 8 Dec 2006 06:22:25 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.FreeBSD.org (Postfix) with SMTP id 6D5B043CB5 for ; Fri, 8 Dec 2006 06:21:20 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 1086 invoked by uid 399); 8 Dec 2006 06:22:15 -0000 Received: from localhost (HELO ?192.168.0.5?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 8 Dec 2006 06:22:15 -0000 X-Originating-IP: 127.0.0.1 Message-ID: <45790495.6010403@FreeBSD.org> Date: Thu, 07 Dec 2006 22:22:13 -0800 From: Doug Barton Organization: http://www.freebsd.org/ User-Agent: Thunderbird 1.5.0.8 (X11/20061125) MIME-Version: 1.0 To: Wesley Shields References: <45749998.3070308@FreeBSD.org> <20061204232125.GA42307@atarininja.org> <790a9fff0612050838s66c655fapfde80d4038f64ca2@mail.gmail.com> <20061205172803.GA51892@atarininja.org> <4575C568.70905@FreeBSD.org> <20061205194146.GC52966@atarininja.org> <20061205203120.GA53894@atarininja.org> <4575EBA8.3020601@FreeBSD.org> <20061206014049.GA43656@atarininja.org> <20061207183103.GA73597@atarininja.org> <45787EAD.4030104@FreeBSD.org> In-Reply-To: <45787EAD.4030104@FreeBSD.org> X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/mixed; boundary="------------080806020304090104040301" Cc: ports@freebsd.org Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 06:22:25 -0000 This is a multi-part message in MIME format. --------------080806020304090104040301 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Doug Barton wrote: > Wesley Shields wrote: > >> Part 2 (the bsd.port.mk piece) is the patch posted by Doug with Ade's >> suggestions. > > You missed the second patch I sent with the ${file%:*} changes. One more for fun. :) I was looking through bsd.port.mk for another purpose tonight and came across ${ALLFILES}. Not only does it combine dist and patch files into one variable, it has the benefit of not adding the : stuff to the filenames in the first place. Learning as I go, Doug --------------080806020304090104040301 Content-Type: text/plain; name="package-distinfo.diff" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="package-distinfo.diff" Index: bsd.port.mk =================================================================== RCS file: /usr/local/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.544 diff -u -r1.544 bsd.port.mk --- bsd.port.mk 30 Sep 2006 19:25:45 -0000 1.544 +++ bsd.port.mk 8 Dec 2006 06:11:25 -0000 @@ -5395,11 +5395,20 @@ # files exist. .if !target(generate-plist) +.if defined(DIST_SUBDIR) +PDS= ${DIST_SUBDIR}/ +.endif generate-plist: @${ECHO_MSG} "===> Generating temporary packing list" @${MKDIR} `${DIRNAME} ${TMPPLIST}` @if [ ! -f ${DESCR} ]; then ${ECHO_CMD} "** Missing pkg-descr for ${PKGNAME}."; exit 1; fi @>${TMPPLIST} + @for file in ${ALLFILES}; do \ + distsize=`${GREP} "^SIZE (${PDS}$${file})" ${MD5_FILE} | ${CUT} -f4 -d' '`; \ + distsha256=`${GREP} "^SHA256 (${PDS}$${file})" ${MD5_FILE} | ${CUT} -f4 -d' '`; \ + distmd5=`${GREP} "^MD5 (${PDS}$${file})" ${MD5_FILE} | ${CUT} -f4 -d' '`; \ + ${ECHO_CMD} "@comment DISTFILE:${PDS}$${file}:SIZE=$${distsize}:SHA256=$${distsha256}:MD5=$${distmd5}" >> ${TMPPLIST}; \ + done @for file in ${PLIST_FILES}; do \ ${ECHO_CMD} $${file} | ${SED} ${PLIST_SUB:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} >> ${TMPPLIST}; \ done --------------080806020304090104040301-- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 09:12:31 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A2FC816A403 for ; Fri, 8 Dec 2006 09:12:31 +0000 (UTC) (envelope-from jamesoff@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C14143CA3 for ; Fri, 8 Dec 2006 09:11:31 +0000 (GMT) (envelope-from jamesoff@gmail.com) Received: by nf-out-0910.google.com with SMTP id x37so1043284nfc for ; Fri, 08 Dec 2006 01:12:27 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Xw2aI+e4kNrBxZaECOKu2tpuIkDaNoVvuHT+C9Eb9DZbufM42/sgsOXmYg4cN8DYRx+2oSZqjc6SY3ArDEM/Q9hwUCbonMKPYi3OQV7PPNzncbmrLcSBWRoXeLRVzgJuLzD9HcKpz88i+OYuq63/ZrHmxShUMnYF5ROGyAQezYA= Received: by 10.78.149.15 with SMTP id w15mr1714113hud.1165569147252; Fri, 08 Dec 2006 01:12:27 -0800 (PST) Received: by 10.78.151.14 with HTTP; Fri, 8 Dec 2006 01:12:27 -0800 (PST) Message-ID: <720051dc0612080112t24a47614pecdace38cace1b32@mail.gmail.com> Date: Fri, 8 Dec 2006 09:12:27 +0000 From: "James Seward" To: "Jeremy Messenger" In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <4577D8BE.6020105@freebsd.org> <720051dc0612070110q6f31b798q5d308af7c853b5f5@mail.gmail.com> <20061207125032.M18462@martymac.com> <45783EFC.4030703@appriss.com> Cc: freebsd-ports@freebsd.org Subject: Re: Firefox & thunderbird crash saving a file X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 09:12:31 -0000 On 12/7/06, Jeremy Messenger wrote: > Guys, more of 'me too' are so useless. Please make your bug report useful. > marcus is still waiting for someone to fill out his request[1]. I can't > fill out his request, because I still can't reproduce it on two systems. > If I can reproduce it then his request will be complete, because all of my > ports are always compile with the debug. I shall rebuild things with debugging enabled and see if I can get a meaningful trace next time it happens. /JMS From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 09:16:12 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D3B1816A407 for ; Fri, 8 Dec 2006 09:16:12 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.FreeBSD.org (Postfix) with SMTP id 50BD943CA3 for ; Fri, 8 Dec 2006 09:15:15 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 12635 invoked by uid 399); 8 Dec 2006 09:16:11 -0000 Received: from localhost (HELO ?192.168.0.5?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 8 Dec 2006 09:16:11 -0000 X-Originating-IP: 127.0.0.1 Message-ID: <45792D51.8070402@FreeBSD.org> Date: Fri, 08 Dec 2006 01:16:01 -0800 From: Doug Barton Organization: http://www.freebsd.org/ User-Agent: Thunderbird 1.5.0.8 (X11/20061125) MIME-Version: 1.0 To: Jeremy Messenger References: <4577D8BE.6020105@freebsd.org> <720051dc0612070110q6f31b798q5d308af7c853b5f5@mail.gmail.com> <20061207125032.M18462@martymac.com> <45783EFC.4030703@appriss.com> In-Reply-To: X-Enigmail-Version: 0.94.1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: "ganael.laplanche" , David Sledge , freebsd-ports@freebsd.org, Mark Ovens , James Seward Subject: Re: Firefox & thunderbird crash saving a file X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 09:16:12 -0000 Jeremy Messenger wrote: > > > Guys, more of 'me too' are so useless. Please make your bug report > useful. marcus is still waiting for someone to fill out his request[1]. > I can't fill out his request, because I still can't reproduce it on two > systems. If I can reproduce it then his request will be complete, > because all of my ports are always compile with the debug. > > [1] > http://lists.freebsd.org/pipermail/freebsd-gnome/2006-November/016179.html I'm about half way through rebuilding everything with debug symbols, but FYI I can reproduce this at will just by trying to print with CUPS from either thunderbird or firefox 2.0. The traces I have gotten make it look like threading problems, and they persist using libpthread or libthr. hth, Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 09:39:35 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D504616A403 for ; Fri, 8 Dec 2006 09:39:35 +0000 (UTC) (envelope-from spil.oss@googlemail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.170]) by mx1.FreeBSD.org (Postfix) with ESMTP id A144943C9D for ; Fri, 8 Dec 2006 09:38:36 +0000 (GMT) (envelope-from spil.oss@googlemail.com) Received: by ug-out-1314.google.com with SMTP id o2so654401uge for ; Fri, 08 Dec 2006 01:39:31 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=googlemail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=hVFD1PQM7iMbA6sS0fpzYoxbV9axazHksoximYhsj9XnQHUmJixmVpFKHd98bm1ZW7kHO4YaaR3wkQyrlrUS2yPUFs84ExaKYCcdnMshVwUXkAaz+Wpi7hBXr+Dt9PB0gO2nKuLi7yRwlwtY/MRksJ5GilXGPKPFnl4ZT+VU5HI= Received: by 10.67.26.7 with SMTP id d7mr4858713ugj.1165570771851; Fri, 08 Dec 2006 01:39:31 -0800 (PST) Received: by 10.67.98.7 with HTTP; Fri, 8 Dec 2006 01:39:31 -0800 (PST) Message-ID: <5fbf03c20612080139l3f714bf2m79245be8689d5395@mail.gmail.com> Date: Fri, 8 Dec 2006 10:39:31 +0100 From: "Spil Oss" To: "Jonathan Horne" In-Reply-To: <200612070635.00668.freebsd@dfwlp.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <200611072108.40934.freebsd@dfwlp.com> <5fbf03c20612070351s6ff64b66vf61065cd8bcb839b@mail.gmail.com> <200612070635.00668.freebsd@dfwlp.com> Cc: freebsd-ports@freebsd.org Subject: Re: php 5.2.0... go boom! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: spil.oss@gmail.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 09:39:35 -0000 Hi Jonathan, You can check the order php loads it's extensions by looking at /usr/local/etc/php/extensions.ini Kind regards, Spil. On 07/12/06, Jonathan Horne wrote: > hi spil, > > i did end up getting my 5.1.6 back, i just reloaded that folder from some > nightly backups. for now, i am still on 5.1.6. about the only php > application im having trouble with, is phpsysinfo. apache 2.2.x and 2.0.x > both have the same behavior. can you tell me how to check the order the > modules are loading? phpsysinfo requires xml and pcre extensions. > > cheers, and thanks for remembering my thread, > jonathan > > On Thursday 07 December 2006 05:51, you wrote: > > Hi Jonathan, > > > > Have you found a solution yet to your segfaulting php 5.2.0? > > There are reports that it has to do with the order of loading the > > extensions (notably, session seems to have to be one of the last, and > > mysql last) > > > > Please let me know if it helps (and even if it doesn't) or any other > > solutions. My php 5.2.0 still won't fly (although the debug-version > > does!). > > > > See > > http://lists.freebsd.org/pipermail/freebsd-ports/2006-November/036596.html > > > > Kind regards, > > > > Spil > > > > On 08/11/06, Jonathan Horne wrote: > > > well, im franticly researching that bit of text that has flashed by > > > during countless portupgrades... "backing up previous version". right > > > about now, i would LOVE to have php 5.1.6_3 back... > > > > > > 1) anyone else have bad luck with the upgrade to 5.2.0? my httpd-error > > > logs are filling with this: > > > > > > [Tue Nov 07 20:49:09 2006] [notice] child pid 58928 exit signal > > > Segmentation fault (11 > > > > > > 2) can anyone shed light on the fabled "way of backing out of a > > > portupgrade gone awry? > > > > > > thanks, > > > jonathan > > > _______________________________________________ > > > freebsd-questions@freebsd.org mailing list > > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions > > > To unsubscribe, send any mail to > > > "freebsd-questions-unsubscribe@freebsd.org" > From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 09:54:36 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5FB3E16A403 for ; Fri, 8 Dec 2006 09:54:36 +0000 (UTC) (envelope-from mario@schmut.com) Received: from mail.schmut.com (mail.schmut.com [66.92.49.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 1D7DF43CA6 for ; Fri, 8 Dec 2006 09:53:39 +0000 (GMT) (envelope-from mario@schmut.com) Received: (qmail 9864 invoked by uid 89); 8 Dec 2006 09:54:35 -0000 Received: from schmut.com (localhost.my.domain [127.0.0.1]) by snoopy.schmut.com (tmda-ofmipd) with ESMTP; Fri, 08 Dec 2006 01:54:33 -0800 Received: from 192.168.223.4 (SquirrelMail authenticated user mario@schmut.com) by mail.schmut.com with HTTP; Fri, 8 Dec 2006 01:54:33 -0800 (PST) Message-ID: <45250.192.168.223.4.1165571673.squirrel@mail.schmut.com> Date: Fri, 8 Dec 2006 01:54:33 -0800 (PST) To: In-Reply-To: <5fbf03c20612080139l3f714bf2m79245be8689d5395@mail.gmail.com> References: <200611072108.40934.freebsd@dfwlp.com> <5fbf03c20612070351s6ff64b66vf61065cd8bcb839b@mail.gmail.com> <200612070635.00668.freebsd@dfwlp.com> <5fbf03c20612080139l3f714bf2m79245be8689d5395@mail.gmail.com> X-Priority: 3 Importance: Normal X-Mailer: SquirrelMail (the schmut version) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Delivery-Agent: TMDA/1.1.5 (Fettercairn) From: Mario Theodoridis X-Primary-Address: mario@schmut.com Cc: freebsd@dfwlp.com, spil.oss@googlemail.com, freebsd-ports@freebsd.org Subject: Re: php 5.2.0... go boom! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Mario Theodoridis List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 09:54:36 -0000 wait, wasn't the word on that to put extension=session.so up into the first line, else .... boom? mario;> So, Spil Oss wrote: > Hi Jonathan, > > You can check the order php loads it's extensions by looking at > /usr/local/etc/php/extensions.ini > > Kind regards, > > Spil. > > On 07/12/06, Jonathan Horne wrote: >> hi spil, >> >> i did end up getting my 5.1.6 back, i just reloaded that folder from >> some nightly backups. for now, i am still on 5.1.6. about the only >> php application im having trouble with, is phpsysinfo. apache 2.2.x >> and 2.0.x both have the same behavior. can you tell me how to check >> the order the modules are loading? phpsysinfo requires xml and pcre >> extensions. >> >> cheers, and thanks for remembering my thread, >> jonathan >> >> On Thursday 07 December 2006 05:51, you wrote: >> > Hi Jonathan, >> > >> > Have you found a solution yet to your segfaulting php 5.2.0? >> > There are reports that it has to do with the order of loading the >> extensions (notably, session seems to have to be one of the last, >> and mysql last) >> > >> > Please let me know if it helps (and even if it doesn't) or any other >> solutions. My php 5.2.0 still won't fly (although the debug-version >> does!). >> > >> > See >> > http://lists.freebsd.org/pipermail/freebsd-ports/2006-November/036596.html >> > >> > Kind regards, >> > >> > Spil >> > >> > On 08/11/06, Jonathan Horne wrote: >> > > well, im franticly researching that bit of text that has flashed >> by during countless portupgrades... "backing up previous version". >> right about now, i would LOVE to have php 5.1.6_3 back... >> > > >> > > 1) anyone else have bad luck with the upgrade to 5.2.0? my >> httpd-error logs are filling with this: >> > > >> > > [Tue Nov 07 20:49:09 2006] [notice] child pid 58928 exit signal >> Segmentation fault (11 >> > > >> > > 2) can anyone shed light on the fabled "way of backing out of a >> portupgrade gone awry? >> > > >> > > thanks, >> > > jonathan >> > > _______________________________________________ >> > > freebsd-questions@freebsd.org mailing list >> > > http://lists.freebsd.org/mailman/listinfo/freebsd-questions >> > > To unsubscribe, send any mail to >> > > "freebsd-questions-unsubscribe@freebsd.org" >> > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 10:04:52 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C37AE16A403 for ; Fri, 8 Dec 2006 10:04:52 +0000 (UTC) (envelope-from erwin.vandevelde@gmail.com) Received: from ug-out-1314.google.com (ug-out-1314.google.com [66.249.92.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC2EE43CB1 for ; Fri, 8 Dec 2006 10:03:53 +0000 (GMT) (envelope-from erwin.vandevelde@gmail.com) Received: by ug-out-1314.google.com with SMTP id o2so658874uge for ; Fri, 08 Dec 2006 02:04:49 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:mime-version:content-type:content-transfer-encoding:content-disposition:message-id; b=CFtoL24AjKMU6T34+FPLjFGpxnUwF2C410oywCwhD6ZLyx0u4t6BTKD3nd94ujMmZktZcWf0rC2HwiZTC5U9CImwqFEktgfGBgxIq1oCJQgniE7lQ4MZwWZoV4uCPwAxMRClIXjEk1lroilbCWNDuOIiF42Na3uyL6jDZkKzJsg= Received: by 10.67.21.11 with SMTP id y11mr4891145ugi.1165572289400; Fri, 08 Dec 2006 02:04:49 -0800 (PST) Received: from sylvesterjr.local ( [143.129.80.37]) by mx.google.com with ESMTP id u6sm2612387uge.2006.12.08.02.04.49; Fri, 08 Dec 2006 02:04:49 -0800 (PST) From: Erwin Van de Velde To: freebsd-ports@freebsd.org Date: Fri, 8 Dec 2006 11:04:49 +0100 User-Agent: KMail/1.9.5 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200612081104.50013.erwin.vandevelde@gmail.com> Subject: Cleaning out the ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 10:04:52 -0000 Dear all, I am looking for a good way to clean out the installed ports: when having used a system for some time, one is often left with leave ports that do not have any direct use (e.g. a library) and are not required anymore by any other installed port. Is there a way to find such ports and remove them easily? Best regards, Erwin Van de Velde From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 10:13:24 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A98BD16A412 for ; Fri, 8 Dec 2006 10:13:24 +0000 (UTC) (envelope-from lawrance@FreeBSD.org) Received: from pecan.exetel.com.au (pecan-mail.exetel.com.au [220.233.0.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 211A543CA2 for ; Fri, 8 Dec 2006 10:12:26 +0000 (GMT) (envelope-from lawrance@FreeBSD.org) Received: from 180.205.233.220.exetel.com.au ([220.233.205.180] helo=[192.168.0.148]) by pecan.exetel.com.au with esmtp (Exim 4.63) (envelope-from ) id 1GscjJ-0004hc-Q9; Fri, 08 Dec 2006 21:13:21 +1100 In-Reply-To: <200612081104.50013.erwin.vandevelde@gmail.com> References: <200612081104.50013.erwin.vandevelde@gmail.com> Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <344DFAC8-F3D2-4449-B236-F1C9DBA80CE9@FreeBSD.org> Content-Transfer-Encoding: 7bit From: Sam Lawrance Date: Fri, 8 Dec 2006 21:13:21 +1100 To: Erwin Van de Velde X-Mailer: Apple Mail (2.752.3) Cc: freebsd-ports@freebsd.org Subject: Re: Cleaning out the ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 10:13:24 -0000 On 08/12/2006, at 9:04 PM, Erwin Van de Velde wrote: > Dear all, > > I am looking for a good way to clean out the installed ports: when > having used > a system for some time, one is often left with leave ports that do > not have > any direct use (e.g. a library) and are not required anymore by any > other > installed port. Is there a way to find such ports and remove them > easily? pkg_cutleaves (available from sysutils/pkg_cutleaves) will help you to identify packages that are not required. From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 10:14:21 2006 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id F034816A407 for ; Fri, 8 Dec 2006 10:14:21 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from mx.critical.ch (milkyway.critical.ch [62.2.45.169]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D78F43CAD for ; Fri, 8 Dec 2006 10:13:23 +0000 (GMT) (envelope-from ehaupt@FreeBSD.org) Received: from wiggles.cablecom.ch (mx.critical.ch [62.2.45.171]) by mx.critical.ch (8.13.6/8.13.6/critical-1.0) with SMTP id kB8AEHYu046170; Fri, 8 Dec 2006 11:14:19 +0100 (CET) (envelope-from ehaupt@FreeBSD.org) Date: Fri, 8 Dec 2006 11:14:17 +0100 From: Emanuel Haupt To: Erwin Van de Velde Message-Id: <20061208111417.4ca33ecd.ehaupt@FreeBSD.org> In-Reply-To: <200612081104.50013.erwin.vandevelde@gmail.com> References: <200612081104.50013.erwin.vandevelde@gmail.com> X-Mailer: Sylpheed version 1.0.6 (GTK+ 1.2.10; i386-portbld-freebsd6.1) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.88.6/2303/Fri Dec 8 06:07:51 2006 on milkyway.critical.ch X-Virus-Status: Clean Cc: freebsd-ports@FreeBSD.org Subject: Re: Cleaning out the ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 10:14:22 -0000 > Dear all, > > I am looking for a good way to clean out the installed ports: when > having used a system for some time, one is often left with leave > ports that do not have any direct use (e.g. a library) and are not > required anymore by any other installed port. Is there a way to find > such ports and remove them easily? Have a look at sysutils/pkg_cutleaves and sysutils/pkg_rmleaves. Emanuel From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 10:18:30 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5BFAA16A4C2 for ; Fri, 8 Dec 2006 10:18:30 +0000 (UTC) (envelope-from ale@FreeBSD.org) Received: from lab.alexdupre.com (lab.alexdupre.com [81.174.31.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8654243CCF for ; Fri, 8 Dec 2006 10:17:22 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: (qmail 21294 invoked from network); 8 Dec 2006 10:18:18 -0000 Received: from unknown (HELO ?192.168.178.2?) (192.168.178.2) by lab.alexdupre.com with SMTP; 8 Dec 2006 10:18:18 -0000 Message-ID: <45793BE9.60503@FreeBSD.org> Date: Fri, 08 Dec 2006 11:18:17 +0100 From: Alex Dupre User-Agent: Thunderbird 1.5.0.8 (X11/20061114) MIME-Version: 1.0 To: Erwin Van de Velde References: <200612081104.50013.erwin.vandevelde@gmail.com> In-Reply-To: <200612081104.50013.erwin.vandevelde@gmail.com> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: Cleaning out the ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 10:18:30 -0000 Erwin Van de Velde wrote: > I am looking for a good way to clean out the installed ports: when having used > a system for some time, one is often left with leave ports that do not have > any direct use (e.g. a library) and are not required anymore by any other > installed port. Is there a way to find such ports and remove them easily? sysutils/pkg_rmleaves -- Alex Dupre From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 11:32:11 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 410EE16A403 for ; Fri, 8 Dec 2006 11:32:11 +0000 (UTC) (envelope-from neuhauser@sigpipe.cz) Received: from isis.sigpipe.cz (fw.sigpipe.cz [62.245.70.224]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55F0A43CA3 for ; Fri, 8 Dec 2006 11:31:12 +0000 (GMT) (envelope-from neuhauser@sigpipe.cz) Received: from dagan.sigpipe.cz (dagan.sigpipe.cz [10.9.8.90]) by isis.sigpipe.cz (Postfix) with ESMTP id D55541F87BF0 for ; Fri, 8 Dec 2006 12:32:08 +0100 (CET) Received: by dagan.sigpipe.cz (Postfix, from userid 1001) id 52C592C990C; Fri, 8 Dec 2006 13:35:23 +0000 (UTC) Date: Fri, 8 Dec 2006 13:35:23 +0000 From: Roman Neuhauser To: freebsd-ports Message-ID: <20061208133523.GH3213@dagan.sigpipe.cz> Mail-Followup-To: freebsd-ports MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.13 (2006-08-11) Subject: x11-toolkits/py-wxPython26-unicode build failure with python2.5 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 11:32:11 -0000 wxPython-2.6.3.3 fails to build on my FreeBSD-6.1 with Python-2.5, with cc -DNDEBUG -O -pipe -D__wchar_t=wchar_t -DTHREAD_STACK_SIZE=0x100000 -O -pipe -fPIC -DSWIG_TYPE_TABLE=_wxPython_table -DHAVE_CONFIG_H -DWXP_USE_THREAD=1 -UNDEBUG -DGTK_NO_CHECK_CASTS -D__WXGTK__ -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES -DNO_GCC_PRAGMA -DXTHREADS -DXUSE_MTSAFE_API -Iinclude -Isrc -I/usr/X11R6/include/wx-2.6/gtk2-unicode-release-2.6 -I/usr/X11R6/include/wx-2.6 -I/usr/local/include/atk-1.0 -I/usr/local/include/cairo -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/X11R6/include/gtk-2.0 -I/usr/X11R6/lib/gtk-2.0/include -I/usr/X11R6/include/pango-1.0 -I/usr/X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/local/include/python2.5 -c src/gtk/_core_wrap.cpp -o build-gtk2.unicode/temp.freebsd-6.1-PRERELEASE-amd64-2.5/src/gtk/_core_wrap.o -O3 src/gtk/_core_wrap.cpp: In function `void wxSizerItem_SetUserData(wxSizerItem*, PyObject*)': src/gtk/_core_wrap.cpp:3193: error: 'class wxSizerItem' has no member named 'SetUserData' The wxSizerItem declaration in include/wx/sizer.h includes: #if wxABI_VERSION > 20602 void SetUserData(wxObject* userData) { delete m_userData; m_userData = userData; } #endif but the code seems to indicate that wxABI_VERSION should be 20699 automatically when building wxPython itself. -- How many Vietnam vets does it take to screw in a light bulb? You don't know, man. You don't KNOW. Cause you weren't THERE. http://bash.org/?255991 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 12:24:24 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BD54116A403 for ; Fri, 8 Dec 2006 12:24:24 +0000 (UTC) (envelope-from rabe@p-i-n.com) Received: from dns.p-i-n.com (dns.p-i-n.com [145.253.185.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3432F43CA7 for ; Fri, 8 Dec 2006 12:23:25 +0000 (GMT) (envelope-from rabe@p-i-n.com) Received: from p-i-n.com (pinserv2.p-i-n.com [10.101.240.52]) by dns.p-i-n.com (8.12.9p2/8.12.9) with ESMTP id kB8COLUf073094 for ; Fri, 8 Dec 2006 13:24:21 +0100 (CET) (envelope-from rabe@p-i-n.com) Received: from pinserv2.p-i-n.com (localhost.p-i-n.com [127.0.0.1]) by p-i-n.com (8.13.6/8.13.6) with ESMTP id kB8COMqn099143 for ; Fri, 8 Dec 2006 13:24:22 +0100 (CET) (envelope-from rabe@pinserv2.p-i-n.com) Received: (from rabe@localhost) by pinserv2.p-i-n.com (8.13.6/8.13.6/Submit) id kB8COMGI099142 for freebsd-ports@freebsd.org; Fri, 8 Dec 2006 13:24:22 +0100 (CET) (envelope-from rabe) Date: Fri, 8 Dec 2006 13:24:22 +0100 From: "Raphael H. Becker" To: freebsd-ports@freebsd.org Message-ID: <20061208122421.GA73042@p-i-n.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Organization: PHOENIX Pharmahandel AG & Co KG, Mannheim, Deutschland Subject: rsync with --flags patch: unable to rsync hardlinks to files w/ schg X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 12:24:24 -0000 Hi *, we're running two jail-hosts with some jails in it. The two hosts (will) replicate the active jails to each other to have a fallback. On the backup-host I run the following command: rsync -avHWx -e ssh --flags --delete root@jailhost1.dmz:/data/jails/ /data/jails Doing so brings me the following errors for each jail: rsync: link "/data/jails/jail4711/usr/bin/chfn" => jail4711/usr/bin/ypchsh failed: Operation not permitted (1) rsync: link "/data/jails/jail4711/usr/bin/chpass" => jail4711/usr/bin/ypchsh failed: Operation not permitted (1) rsync: link "/data/jails/jail4711/usr/bin/chsh" => jail4711/usr/bin/ypchsh failed: Operation not permitted (1) rsync: link "/data/jails/jail4711/usr/bin/ypchfn" => jail4711/usr/bin/ypchsh failed: Operation not permitted (1) rsync: link "/data/jails/jail4711/usr/bin/ypchpass" => jail4711/usr/bin/ypchsh failed: Operation not permitted (1) rsync: link "/data/jails/jail4711/usr/bin/passwd" => jail4711/usr/bin/yppasswd failed: Operation not permitted (1) These files have the "schg" flag on jailhost1, which get rsynced to jailhost2. Theese files are not present on jailhost2 after this: ls: /data/jails/jail4711/usr/bin/passwd: No such file or directory Any idea how to get rid of this? Regards Raphael Becker From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 13:35:45 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2571B16A407 for ; Fri, 8 Dec 2006 13:35:45 +0000 (UTC) (envelope-from nobody@smtp.snscrew.net) Received: from smtp.snscrew.net (smtp.snscrew.net [82.232.230.128]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95E6A43CB3 for ; Fri, 8 Dec 2006 13:34:46 +0000 (GMT) (envelope-from nobody@smtp.snscrew.net) Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.snscrew.net (Postfix) with ESMTP id BE0573E8B7 for ; Fri, 8 Dec 2006 14:25:59 +0100 (CET) Received: from smtp.snscrew.net ([127.0.0.1]) by localhost (ns1 [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 16220-02-12 for ; Fri, 8 Dec 2006 14:25:59 +0100 (CET) Received: by smtp.snscrew.net (Postfix, from userid 65534) id 1ACE73E886; Fri, 8 Dec 2006 14:25:58 +0100 (CET) To: ports@FreeBSD.org From: CommonWealth Bank Message-Id: <130746103.24@cba.com.au> Content-Transfer-Encoding: 8bit Date: Fri, 8 Dec 2006 14:25:58 +0100 (CET) X-Virus-Scanned: amavisd-new at snscrew.net X-Amavis-Alert: BAD HEADER Improper use of control character (char 0D hex) in message header 'From': From: ...Wealth Bank \r\n MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Account Details Verification. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 13:35:45 -0000 Dear Valued Customer, Commonwealth Bank Groups is currently working to increase security for all Online Banking users. To ensure the integrity of our online payment system, we periodically review your accounts. Your account might be restricted due to numerous login attempts into your online account. Restricted accounts continue to receive payments, but they are limited in their ability to send or withdraw funds. To lift up this restriction, you need to confirm your online banking details..In order to confirm your account stability. Click on the following link to confirm your online banking details. [1]http://www.commbank.com.au/update _________________________________________________________________ *Important* You are required to provide all necessary information completely and correctly otherwise, due to security reasons, we may have to close your account temporarily. Yours sincerely, Commonwealth Bank of Australia commbank.com.au/NetBank References 1. http://www.ladelund.eu/pics/I/www/www3.netbank.commbank.com.au/ From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 13:35:51 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id DE97D16A403 for ; Fri, 8 Dec 2006 13:35:51 +0000 (UTC) (envelope-from nobody@smtp.snscrew.net) Received: from smtp.snscrew.net (smtp.snscrew.net [82.232.230.128]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D3A543CB1 for ; Fri, 8 Dec 2006 13:34:53 +0000 (GMT) (envelope-from nobody@smtp.snscrew.net) Received: from localhost (localhost.localdomain [127.0.0.1]) by smtp.snscrew.net (Postfix) with ESMTP id 956CD3E8A4 for ; Fri, 8 Dec 2006 14:26:09 +0100 (CET) Received: from smtp.snscrew.net ([127.0.0.1]) by localhost (ns1 [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 16220-02-64 for ; Fri, 8 Dec 2006 14:26:09 +0100 (CET) Received: by smtp.snscrew.net (Postfix, from userid 65534) id 526A93E8EC; Fri, 8 Dec 2006 14:26:03 +0100 (CET) To: ports@FreeBSD.org From: CommonWealth Bank Message-Id: <130746103.24@cba.com.au> Content-Transfer-Encoding: 8bit Date: Fri, 8 Dec 2006 14:26:03 +0100 (CET) X-Virus-Scanned: amavisd-new at snscrew.net X-Amavis-Alert: BAD HEADER Improper use of control character (char 0D hex) in message header 'From': From: ...Wealth Bank \r\n MIME-Version: 1.0 Content-Type: text/plain X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: Account Details Verification. X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 13:35:52 -0000 Dear Valued Customer, Commonwealth Bank Groups is currently working to increase security for all Online Banking users. To ensure the integrity of our online payment system, we periodically review your accounts. Your account might be restricted due to numerous login attempts into your online account. Restricted accounts continue to receive payments, but they are limited in their ability to send or withdraw funds. To lift up this restriction, you need to confirm your online banking details..In order to confirm your account stability. Click on the following link to confirm your online banking details. [1]http://www.commbank.com.au/update _________________________________________________________________ *Important* You are required to provide all necessary information completely and correctly otherwise, due to security reasons, we may have to close your account temporarily. Yours sincerely, Commonwealth Bank of Australia commbank.com.au/NetBank References 1. http://www.ladelund.eu/pics/I/www/www3.netbank.commbank.com.au/ From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 17:00:58 2006 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D611C16A47B; Fri, 8 Dec 2006 17:00:58 +0000 (UTC) (envelope-from flz@xbsd.org) Received: from smtp7-g19.free.fr (smtp7-g19.free.fr [212.27.42.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96E1843CA2; Fri, 8 Dec 2006 16:59:59 +0000 (GMT) (envelope-from flz@xbsd.org) Received: from smtp.xbsd.org (unknown [82.233.2.192]) by smtp7-g19.free.fr (Postfix) with ESMTP id 44847558A; Fri, 8 Dec 2006 18:00:57 +0100 (CET) Received: from localhost (localhost.xbsd.org [127.0.0.1]) by smtp.xbsd.org (Postfix) with ESMTP id 118CE1175F; Fri, 8 Dec 2006 18:00:50 +0100 (CET) X-Virus-Scanned: amavisd-new at xbsd.org Received: from smtp.xbsd.org ([127.0.0.1]) by localhost (srv1.xbsd.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Kh0dA09qgRjr; Fri, 8 Dec 2006 18:00:43 +0100 (CET) Received: from [193.95.134.156] (mayday.esat.net [193.95.134.156]) by smtp.xbsd.org (Postfix) with ESMTP id C657211410; Fri, 8 Dec 2006 18:00:42 +0100 (CET) Message-ID: <45799A55.6000402@xbsd.org> Date: Fri, 08 Dec 2006 17:01:09 +0000 From: Florent Thoumie User-Agent: Thunderbird 1.5.0.8 (X11/20061121) MIME-Version: 1.0 To: freebsd-bugbusters@FreeBSD.org X-Enigmail-Version: 0.94.1.0 Content-Type: multipart/signed; micalg=pgp-sha512; protocol="application/pgp-signature"; boundary="------------enig66C13A2FD7820A1982CAE552" Cc: freebsd-ports@FreeBSD.org Subject: (Bug|Port)athon next weekend (Dec. 16/17) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 17:00:58 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig66C13A2FD7820A1982CAE552 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Hey folks, We're going to hold the next (bug|port)athon next weekend. Same place as usual (@freebsd-bugbusters on EFNet). As you may know, some of our ports committers have been working hard on fixing ports to be X11BASE-clean so that the PREFIX merge can be done without (too much) hassle. Anyway, work isn't finished and we could probably use your help. The ports PR count is approximately 815 and we could easily do better than that, so join IRC next weekend and help us close some of those PRs. Cheers. PS: A PR a day keeps the doctor away. --=20 Florent Thoumie flz@FreeBSD.org FreeBSD Committer --------------enig66C13A2FD7820A1982CAE552 Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFFeZpaMxEkbVFH3PQRCoFwAJ97+KqNNUtBVH1+zNSneM2SGcQKTwCeNhBi 6daqwataws1rFGahke6EWA4= =Hc1k -----END PGP SIGNATURE----- --------------enig66C13A2FD7820A1982CAE552-- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 17:14:59 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3C07816A416; Fri, 8 Dec 2006 17:14:59 +0000 (UTC) (envelope-from wxs@atarininja.org) Received: from syn.atarininja.org (syn.csh.rit.edu [129.21.60.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFC0643CA6; Fri, 8 Dec 2006 17:13:59 +0000 (GMT) (envelope-from wxs@atarininja.org) Received: by syn.atarininja.org (Postfix, from userid 1001) id B356B5C57; Fri, 8 Dec 2006 12:16:04 -0500 (EST) Date: Fri, 8 Dec 2006 12:16:04 -0500 From: Wesley Shields To: Doug Barton Message-ID: <20061208171604.GA99857@atarininja.org> References: <20061205172803.GA51892@atarininja.org> <4575C568.70905@FreeBSD.org> <20061205194146.GC52966@atarininja.org> <20061205203120.GA53894@atarininja.org> <4575EBA8.3020601@FreeBSD.org> <20061206014049.GA43656@atarininja.org> <20061207183103.GA73597@atarininja.org> <45787EAD.4030104@FreeBSD.org> <45790495.6010403@FreeBSD.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <45790495.6010403@FreeBSD.org> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: ports@freebsd.org Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 17:14:59 -0000 On Thu, Dec 07, 2006 at 10:22:13PM -0800, Doug Barton wrote: > Doug Barton wrote: > > Wesley Shields wrote: > > > >> Part 2 (the bsd.port.mk piece) is the patch posted by Doug with Ade's > >> suggestions. > > > > You missed the second patch I sent with the ${file%:*} changes. > > One more for fun. :) I was looking through bsd.port.mk for another > purpose tonight and came across ${ALLFILES}. Not only does it combine > dist and patch files into one variable, it has the benefit of not > adding the : stuff to the filenames in the first place. > > Learning as I go, Me too! I've just sent your patch (thanks again) and the pkg_info piece. http://www.freebsd.org/cgi/query-pr.cgi?pr=106483 We'll see where things go from here! -- WXS From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 17:52:49 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6375B16A417 for ; Fri, 8 Dec 2006 17:52:49 +0000 (UTC) (envelope-from cristiano.panvel@gmail.com) Received: from nf-out-0910.google.com (nf-out-0910.google.com [64.233.182.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9783543CAD for ; Fri, 8 Dec 2006 17:51:49 +0000 (GMT) (envelope-from cristiano.panvel@gmail.com) Received: by nf-out-0910.google.com with SMTP id x37so1145145nfc for ; Fri, 08 Dec 2006 09:52:47 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:mime-version:content-type:content-transfer-encoding:content-disposition; b=qc15UnrnhvepQQIk7U9kc0CaiZPX1TBDgWi1yPnHH2S9Bo7awKDNJ9bM5v+E6xwtNOMnpiYfNs0qZvfCVvdYVx2+UeovzZh84uqw1u08Djh0diCHqlnofkIVEHit3bGEehX2gBQ7Akyusekeqza2vss7TVdNfAUqd8Kh/9p1rDc= Received: by 10.49.27.17 with SMTP id e17mr681912nfj.1165600366948; Fri, 08 Dec 2006 09:52:46 -0800 (PST) Received: by 10.48.163.6 with HTTP; Fri, 8 Dec 2006 09:52:46 -0800 (PST) Message-ID: <8e8b996b0612080952j7df1ea9cs9dbf237239866f90@mail.gmail.com> Date: Fri, 8 Dec 2006 15:52:46 -0200 From: "Cristiano Panvel" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Subject: Qt4 in Ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 17:52:49 -0000 Hi, Would like to know if the forecast to include the Qt4 in ports. Therefore still I am developing my applications in Qt3 and would like to use Qt4. Thanks, Cristiano Panvel From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 17:57:45 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4A34E16A417 for ; Fri, 8 Dec 2006 17:57:45 +0000 (UTC) (envelope-from roam@ringlet.net) Received: from straylight.ringlet.net (nat114.cnsys.bg [85.95.80.114]) by mx1.FreeBSD.org (Postfix) with SMTP id 15BEF43CA8 for ; Fri, 8 Dec 2006 17:56:43 +0000 (GMT) (envelope-from roam@ringlet.net) Received: (qmail 14127 invoked by uid 1000); 8 Dec 2006 17:57:59 -0000 Date: Fri, 8 Dec 2006 19:57:59 +0200 From: Peter Pentchev To: ports@FreeBSD.org Message-ID: <20061208175759.GA53807@straylight.m.ringlet.net> Mail-Followup-To: ports@FreeBSD.org References: <20061206125657.GB1814@straylight.m.ringlet.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="W5WqUoFLvi1M7tJE" Content-Disposition: inline In-Reply-To: <20061206125657.GB1814@straylight.m.ringlet.net> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: Subject: Re: [CFR] ftp/curl update and API incompatibility X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 17:57:45 -0000 --W5WqUoFLvi1M7tJE Content-Type: multipart/mixed; boundary="XWOWbaMNXpFDWE00" Content-Disposition: inline --XWOWbaMNXpFDWE00 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Dec 06, 2006 at 02:56:57PM +0200, Peter Pentchev wrote: > Hi, >=20 > I'm writing to you all because you are listed as maintainers of ports > that depend directly on ftp/curl. Attached is a patch that updates > ftp/curl to version 7.16.0; however, this update might need some testing. After some comments from some of the maintainers, here's an updated version of the patch, which also takes care of the ports that do not specify a shared library version in the curl dependency (i.e. they depend on "curl", not "curl.3"). This patch also: - bumps the PORTREVISION of the ftp/php4-curl, ftp/php5-curl, and www/pecl-pecl_http ports; - no longer adds an explicit curl library version dependency to gnupg; - drops net-p2p/amule2, since it does not use curl at all. The patch itself is also available at http://people.FreeBSD.org/~roam/patches/curl/ If there are no objections, I will commit it in a couple of days. So - this patch updates cURL to 7.16.0, and tries to fix all dependent ports. The updates to the ports are trivial, with the following exceptions: arhivers/epkg - Fix dependencies: move curl to LIB_DEPENDS, since epkg picks up the shared library to link with. astro/gaia - Update blindly, it's forbidden for license reasons. audio/icecast2 audio/vorbis-tools ftp/php4-curl ftp/php5-curl ftp/py-curl ftp/rexx-curl lang/q net/nepenthes security/authforce - #ifdef the obsolete options based on the libcurl version. audio/xmms2 - Fix the packing list for the !lastfm case and the !mdns cases. - Do not allow both MDNS_APPLE and MDNS_AVAHI to be selected. irc/unreal - Remove the dependency on dns/ares - it is not used at all, Unreal uses its own bundled copy of c-ares! - Add a dependency on dns/c-ares, now that version 1.3.2 of the port comes with the ares_config_info patch. - Patch the configure script not to build the bundled c-ares, and the Makefile not to try to link against it. www/osb-nrcit - Update blindly, it does not build because lang/osb-jscore is broken. x11/ecore - Fix the packing list for the !x11 case. G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@cnsys.bg 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 Thit sentence is not self-referential because "thit" is not a word. --XWOWbaMNXpFDWE00 Content-Type: text/x-diff; charset=us-ascii Content-Disposition: attachment; filename="curl-16-02.patch" Content-Transfer-Encoding: quoted-printable Index: ftp/curl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/curl/Makefile,v retrieving revision 1.82 diff -u -r1.82 Makefile --- ftp/curl/Makefile 7 Nov 2006 17:07:41 -0000 1.82 +++ ftp/curl/Makefile 6 Dec 2006 12:29:18 -0000 @@ -6,8 +6,7 @@ # =20 PORTNAME=3D curl -PORTVERSION=3D 7.15.5 -PORTREVISION=3D 1 +PORTVERSION=3D 7.16.0 CATEGORIES=3D ftp ipv6 www MASTER_SITES=3D http://curl.haxx.se/download/ \ ${MASTER_SITE_SOURCEFORGE} \ @@ -40,7 +39,7 @@ libcurl-multi.3 libcurl-share.3 libcurl-tutorial.3 =20 USE_LDCONFIG=3D yes -SHLIB_VER=3D 3 +SHLIB_VER=3D 4 =20 MAKE_ENV=3D SHLIB_VER=3D"${SHLIB_VER}" PLIST_SUB=3D SHLIB_VER=3D"${SHLIB_VER}" Index: ftp/curl/distinfo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/ftp/curl/distinfo,v retrieving revision 1.46 diff -u -r1.46 distinfo --- ftp/curl/distinfo 18 Sep 2006 12:46:29 -0000 1.46 +++ ftp/curl/distinfo 6 Dec 2006 12:29:18 -0000 @@ -1,3 +1,3 @@ -MD5 (curl-7.15.5.tar.bz2) =3D 594142c7d53bbdd988e8cef6354eeeff -SHA256 (curl-7.15.5.tar.bz2) =3D 2980815e53f4caeafc5e35d183d9379bcaaec49f7= 59be1a4ac628cfb6c392fe0 -SIZE (curl-7.15.5.tar.bz2) =3D 1543007 +MD5 (curl-7.16.0.tar.bz2) =3D 5819f56e93d04cde2992fe88b54cbfad +SHA256 (curl-7.16.0.tar.bz2) =3D fc8dcda5a933c370c15c832bf1e7316a0690f473f= dd6000454d233edaa33bc23 +SIZE (curl-7.16.0.tar.bz2) =3D 1566391 Index: ftp/curl/pkg-plist =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/ftp/curl/pkg-plist,v retrieving revision 1.21 diff -u -r1.21 pkg-plist --- ftp/curl/pkg-plist 18 Sep 2006 12:46:29 -0000 1.21 +++ ftp/curl/pkg-plist 6 Dec 2006 12:29:18 -0000 @@ -45,6 +45,7 @@ %%PORTDOCS%%%%DOCSDIR%%/curl.1 %%PORTDOCS%%%%DOCSDIR%%/curl.html %%PORTDOCS%%%%DOCSDIR%%/curl.pdf +%%PORTDOCS%%%%DOCSDIR%%/examples/10-at-a-time.c %%PORTDOCS%%%%DOCSDIR%%/examples/Makefile %%PORTDOCS%%%%DOCSDIR%%/examples/Makefile.am %%PORTDOCS%%%%DOCSDIR%%/examples/Makefile.example @@ -65,6 +66,8 @@ %%PORTDOCS%%%%DOCSDIR%%/examples/ftpuploadresume.c %%PORTDOCS%%%%DOCSDIR%%/examples/getinfo.c %%PORTDOCS%%%%DOCSDIR%%/examples/getinmemory.c +%%PORTDOCS%%%%DOCSDIR%%/examples/ghiper.c +%%PORTDOCS%%%%DOCSDIR%%/examples/hiperfifo.c %%PORTDOCS%%%%DOCSDIR%%/examples/htmltidy.c %%PORTDOCS%%%%DOCSDIR%%/examples/htmltitle.cc %%PORTDOCS%%%%DOCSDIR%%/examples/http-post.c Index: ftp/curl/files/patch-lib::url.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/ftp/curl/files/patch-lib::url.c,v retrieving revision 1.2 diff -u -r1.2 patch-lib::url.c --- ftp/curl/files/patch-lib::url.c 3 Jun 2004 22:41:40 -0000 1.2 +++ ftp/curl/files/patch-lib::url.c 6 Dec 2006 12:29:18 -0000 @@ -1,6 +1,6 @@ ---- lib/url.c.orig Wed Jun 2 14:45:18 2004 -+++ lib/url.c Wed Jun 2 14:45:40 2004 -@@ -329,6 +329,10 @@ +--- lib/url.c.orig Mon Oct 30 00:46:27 2006 ++++ lib/url.c Fri Dec 1 14:04:02 2006 +@@ -542,6 +542,10 @@ data->set.httpauth =3D CURLAUTH_BASIC; /* defaults to basic */ data->set.proxyauth =3D CURLAUTH_BASIC; /* defaults to basic */ =20 @@ -8,6 +8,6 @@ + data->set.no_signal =3D TRUE; /* different handling of signals and th= reads */ +#endif /* __FreeBSD_version */ + - /* create an array with connection data struct pointers */ - data->state.numconnects =3D 5; /* hard-coded right now */ - data->state.connects =3D (struct connectdata **) + /* This no longer creates a connection cache here. It is instead made= on + the first call to curl_easy_perform() or when the handle is added = to a + multi stack. */ Index: archivers/epkg/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/archivers/epkg/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- archivers/epkg/Makefile 6 Sep 2006 15:28:19 -0000 1.2 +++ archivers/epkg/Makefile 7 Dec 2006 15:09:07 -0000 @@ -7,16 +7,16 @@ =20 PORTNAME=3D epkg PORTVERSION=3D 2.3.9 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D archivers MASTER_SITES=3D ftp://ftp.feep.net/pub/encap/epkg/ =20 MAINTAINER=3D pirzyk@freebsd.org COMMENT=3D Encap Package Manager =20 -BUILD_DEPENDS=3D ${LOCALBASE}/lib/libexpat.a:${PORTSDIR}/textproc/expat2 \ - ${LOCALBASE}/lib/libfget.a:${PORTSDIR}/ftp/fget \ - ${LOCALBASE}/lib/libcurl.a:${PORTSDIR}/ftp/curl +BUILD_DEPENDS=3D ${LOCALBASE}/lib/libfget.a:${PORTSDIR}/ftp/fget +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ + expat.6:${PORTSDIR}/textproc/expat2 =20 HAS_CONFIGURE=3D YES CONFIGURE_ENV=3D CPPFLAGS=3D-I${LOCALBASE}/include LDFLAGS=3D-L${PREFIX}/l= ib Index: archivers/xar/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/archivers/xar/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- archivers/xar/Makefile 15 Apr 2006 15:50:56 -0000 1.2 +++ archivers/xar/Makefile 7 Dec 2006 15:15:18 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D xar DISTVERSION=3D 1.4 +PORTREVISION=3D 1 CATEGORIES=3D archivers MASTER_SITES=3D http://www.opendarwin.org/projects/xar/ \ http://distfiles-msn.opendarwin.org/ \ Index: astro/gaia/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/astro/gaia/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- astro/gaia/Makefile 26 Nov 2006 22:58:06 -0000 1.3 +++ astro/gaia/Makefile 6 Dec 2006 11:22:18 -0000 @@ -7,13 +7,14 @@ =20 PORTNAME=3D gaia PORTVERSION=3D 0.1.0 +PORTREVISION=3D 1 CATEGORIES=3D astro MASTER_SITES=3D http://gaia.serezhkin.com/ =20 MAINTAINER=3D se@FreeBSD.org COMMENT=3D Display geographic maps with optional GPS tracking support =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ jpeg.9:${PORTSDIR}/graphics/jpeg \ png.5:${PORTSDIR}/graphics/png \ SDL.11:${PORTSDIR}/devel/sdl12 Index: audio/gmpccaa/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/gmpccaa/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- audio/gmpccaa/Makefile 10 Apr 2006 11:07:55 -0000 1.1 +++ audio/gmpccaa/Makefile 6 Dec 2006 11:25:05 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D gmpccaa PORTVERSION=3D 0.1.0 +PORTREVISION=3D 1 CATEGORIES=3D audio MASTER_SITES=3D http://download.qballcow.nl/programs/gmpc-0.13/Plugins/ =20 @@ -14,7 +15,7 @@ COMMENT=3D Amazon cover art provider for gmpc =20 LIB_DEPENDS=3D mpd:${PORTSDIR}/audio/libmpd \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl BUILD_DEPENDS=3D ${X11BASE}/include/gmpc/cover-art.h:${PORTSDIR}/audio/gmpc RUN_DEPEND=3D gmpc:${PORTSDIR}/audio/gmpc =20 Index: audio/grip/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/grip/Makefile,v retrieving revision 1.73 diff -u -r1.73 Makefile --- audio/grip/Makefile 14 Oct 2006 08:52:32 -0000 1.73 +++ audio/grip/Makefile 6 Dec 2006 11:17:41 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D grip PORTVERSION=3D 3.2.0 -PORTREVISION=3D 11 +PORTREVISION=3D 12 CATEGORIES=3D audio MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE_EXTENDED} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -16,7 +16,7 @@ COMMENT=3D GTK front-end to external cd rippers and audio encoders =20 LIB_DEPENDS=3D id3-3.8.3:${PORTSDIR}/audio/id3lib \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl PATCH_DEPENDS=3D iconv:${PORTSDIR}/converters/libiconv =20 USE_XLIB=3D yes Index: audio/herrie/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/herrie/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- audio/herrie/Makefile 3 Dec 2006 22:51:49 -0000 1.8 +++ audio/herrie/Makefile 7 Dec 2006 15:18:43 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D herrie PORTVERSION=3D 1.0.1 +PORTREVISION=3D 1 CATEGORIES=3D audio MASTER_SITES=3D http://www.il.fontys.nl/~ed/projects/herrie/distfiles/ \ http://www.stack.nl/~ed/projects/herrie/distfiles/ Index: audio/icecast2/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/icecast2/Makefile,v retrieving revision 1.53 diff -u -r1.53 Makefile --- audio/icecast2/Makefile 3 Aug 2006 20:39:08 -0000 1.53 +++ audio/icecast2/Makefile 7 Dec 2006 15:30:39 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D icecast2 PORTVERSION=3D 2.3.1 -PORTREVISION=3D 3 +PORTREVISION=3D 4 PORTEPOCH=3D 1 CATEGORIES=3D audio net ipv6 MASTER_SITES=3D http://svn.xiph.org/releases/icecast/ Index: audio/icecast2/files/patch-src::auth_url.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: audio/icecast2/files/patch-src::auth_url.c diff -N audio/icecast2/files/patch-src::auth_url.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ audio/icecast2/files/patch-src::auth_url.c 7 Dec 2006 15:27:24 -0000 @@ -0,0 +1,12 @@ +--- src/auth_url.c.orig Thu Dec 7 17:26:49 2006 ++++ src/auth_url.c Thu Dec 7 17:27:05 2006 +@@ -518,7 +518,9 @@ + curl_easy_setopt (url_info->handle, CURLOPT_WRITEDATA, url_info->hand= le); + curl_easy_setopt (url_info->handle, CURLOPT_NOSIGNAL, 1L); + curl_easy_setopt (url_info->handle, CURLOPT_TIMEOUT, 15L); ++#if LIBCURL_VERSION_NUM < 0x071000 + curl_easy_setopt (url_info->handle, CURLOPT_PASSWDFUNCTION, my_getpas= s); ++#endif + curl_easy_setopt (url_info->handle, CURLOPT_ERRORBUFFER, &url_info->e= rrormsg[0]); +=20 + if (url_info->username && url_info->password) Index: audio/libofa/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/libofa/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- audio/libofa/Makefile 3 Nov 2006 03:49:33 -0000 1.8 +++ audio/libofa/Makefile 6 Dec 2006 11:25:12 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D libofa PORTVERSION=3D 0.9.3 +PORTREVISION=3D 1 CATEGORIES=3D audio MASTER_SITES=3D http://www.musicdns.org/files/ =20 @@ -15,7 +16,7 @@ =20 LIB_DEPENDS=3D fftw3.4:${PORTSDIR}/math/fftw3 \ expat.6:${PORTSDIR}/textproc/expat2 \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 USE_GNOME=3D pkgconfig GNU_CONFIGURE=3D yes Index: audio/moc/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/moc/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- audio/moc/Makefile 15 Apr 2006 16:00:18 -0000 1.11 +++ audio/moc/Makefile 6 Dec 2006 11:25:22 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D moc PORTVERSION=3D 2.4.0 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D audio MASTER_SITES=3D ftp://ftp.daper.net/pub/soft/moc/stable/ =20 @@ -111,7 +111,7 @@ .endif =20 .if defined(WITH_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl .else CONFIGURE_ARGS+=3D --without-curl .endif Index: audio/scrobbler/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/scrobbler/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- audio/scrobbler/Makefile 23 Feb 2006 10:34:40 -0000 1.7 +++ audio/scrobbler/Makefile 6 Dec 2006 11:25:16 -0000 @@ -6,7 +6,7 @@ =20 PORTNAME?=3D scrobbler PORTVERSION=3D 0.3.8.1 -PORTREVISION=3D 3 +PORTREVISION=3D 4 CATEGORIES=3D audio MASTER_SITES=3D http://static.audioscrobbler.com/plugins/ \ http://www.pipian.com/stuffforchat/ @@ -16,7 +16,7 @@ COMMENT?=3D XMMS/BMP plugin for Audioscrobbler.com =20 LIB_DEPENDS=3D musicbrainz.4:${PORTSDIR}/audio/libmusicbrainz \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 CONFLICTS=3D bmp-scrobbler-[0-9]* \ xmms-scrobbler-[0-9]* Index: audio/streamtranscoder/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/streamtranscoder/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- audio/streamtranscoder/Makefile 3 May 2006 05:14:28 -0000 1.4 +++ audio/streamtranscoder/Makefile 7 Dec 2006 15:31:44 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D streamtranscoder PORTVERSION=3D 1.2.8 +PORTREVISION=3D 1 CATEGORIES=3D audio MASTER_SITES=3D http://www.oddsock.org/tools/streamTranscoder/ =20 Index: audio/streamtuner/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/streamtuner/Makefile,v retrieving revision 1.31 diff -u -r1.31 Makefile --- audio/streamtuner/Makefile 14 Oct 2006 08:52:35 -0000 1.31 +++ audio/streamtuner/Makefile 7 Dec 2006 15:33:32 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D streamtuner PORTVERSION=3D 0.99.99 -PORTREVISION=3D 5 +PORTREVISION=3D 6 CATEGORIES=3D audio www MASTER_SITES=3D ${MASTER_SITE_SAVANNAH} MASTER_SITE_SUBDIR=3D ${PORTNAME} Index: audio/vorbis-tools/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/vorbis-tools/Makefile,v retrieving revision 1.39 diff -u -r1.39 Makefile --- audio/vorbis-tools/Makefile 9 Jul 2006 20:59:24 -0000 1.39 +++ audio/vorbis-tools/Makefile 6 Dec 2006 11:25:19 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D vorbis-tools PORTVERSION=3D 1.1.1 -PORTREVISION=3D 1 +PORTREVISION=3D 2 PORTEPOCH=3D 3 CATEGORIES=3D audio MASTER_SITES=3D http://downloads.xiph.org/releases/vorbis/ @@ -16,7 +16,7 @@ COMMENT=3D Play, encode, and manage Ogg Vorbis files =20 LIB_DEPENDS=3D ao.3:${PORTSDIR}/audio/libao \ - curl.3:${PORTSDIR}/ftp/curl \ + curl.4:${PORTSDIR}/ftp/curl \ FLAC.7:${PORTSDIR}/audio/flac \ speex.3:${PORTSDIR}/audio/speex \ vorbis.3:${PORTSDIR}/audio/libvorbis Index: audio/vorbis-tools/files/patch-ogg123_http_transport.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: audio/vorbis-tools/files/patch-ogg123_http_transport.c diff -N audio/vorbis-tools/files/patch-ogg123_http_transport.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ audio/vorbis-tools/files/patch-ogg123_http_transport.c 1 Dec 2006 14:30= :21 -0000 @@ -0,0 +1,12 @@ +--- ogg123/http_transport.c.orig Fri Dec 1 16:25:40 2006 ++++ ogg123/http_transport.c Fri Dec 1 16:29:16 2006 +@@ -116,7 +116,9 @@ + if (inputOpts.ProxyTunnel) + curl_easy_setopt (handle, CURLOPT_HTTPPROXYTUNNEL, inputOpts.ProxyTun= nel); + */ ++#if LIBCURL_VERSION_NUM < 0x071000 + curl_easy_setopt(handle, CURLOPT_MUTE, 1); ++#endif + curl_easy_setopt(handle, CURLOPT_ERRORBUFFER, private->error); + curl_easy_setopt(handle, CURLOPT_PROGRESSFUNCTION, progress_callback); + curl_easy_setopt(handle, CURLOPT_PROGRESSDATA, private); Index: audio/xmms2/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/audio/xmms2/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- audio/xmms2/Makefile 3 Dec 2006 04:10:25 -0000 1.22 +++ audio/xmms2/Makefile 8 Dec 2006 17:43:56 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME?=3D xmms2 PORTVERSION=3D 0.2.d.8 +PORTREVISION=3D 1 DISTVERSION=3D 0.2DrHouse CATEGORIES?=3D audio MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} @@ -77,7 +78,7 @@ =20 .if !defined(XMMS2_SLAVE) .if !defined(WITHOUT_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl PLIST_SUB+=3D CURL=3D"" .else EXCLUDE+=3D curl @@ -91,7 +92,7 @@ PLIST_SUB+=3D LASTFM=3D"" .else EXCLUDE+=3D lastfm lastfmeta -PLIST_SUB+=3D LASTMFM=3D"@comment " +PLIST_SUB+=3D LASTFM=3D"@comment " .endif =20 .if defined(WITH_SID) @@ -229,6 +230,9 @@ .endif =20 .if defined(WITH_MDNS_AVAHI) +.if defined(WITH_MDNS_APPLE) +BROKEN=3D You may choose either MDNS_APPLE or MDNS_AVAHI, but not both +.endif LIB_DEPENDS+=3D avahi-core:${PORTSDIR}/net/avahi PLIST_SUB+=3D MDNS_AVAHI=3D"" .else @@ -237,6 +241,9 @@ .endif =20 .if !defined (WITHOUT_MDNS_APPLE) +.if defined(WITH_MDNS_AVAHI) +BROKEN=3D You may choose either MDNS_APPLE or MDNS_AVAHI, but not both +.endif LIB_DEPENDS+=3D dns_sd:${PORTSDIR}/net/mDNSResponder PLIST_SUB+=3D MDNS_APPLE=3D"" .else Index: audio/xmms2/pkg-plist =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/audio/xmms2/pkg-plist,v retrieving revision 1.11 diff -u -r1.11 pkg-plist --- audio/xmms2/pkg-plist 3 Dec 2006 04:10:25 -0000 1.11 +++ audio/xmms2/pkg-plist 8 Dec 2006 17:37:29 -0000 @@ -101,7 +101,8 @@ libdata/pkgconfig/xmms2-plugin.pc %%DATADIR%%/mind.in.a.box-lament_snipplet.ogg %%DATADIR%%/scripts/startup.d/xmms2-et-launcher.sh -%%DATADIR%%/scripts/startup.d/xmms2-mdns-launcher.sh +%%MDNS_AVAHI%%%%DATADIR%%/scripts/startup.d/xmms2-mdns-launcher.sh +%%MDNS_APPLE%%%%DATADIR%%/scripts/startup.d/xmms2-mdns-launcher.sh @dirrm %%DATADIR%%/scripts/startup.d @dirrm %%DATADIR%%/scripts @dirrm %%DATADIR%% Index: comms/xastir/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/comms/xastir/Makefile,v retrieving revision 1.12 diff -u -r1.12 Makefile --- comms/xastir/Makefile 23 Sep 2006 23:44:15 -0000 1.12 +++ comms/xastir/Makefile 7 Dec 2006 15:51:20 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D xastir PORTVERSION=3D 1.8.2 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D comms hamradio MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D xastir Index: deskutils/drivel/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/deskutils/drivel/Makefile,v retrieving revision 1.31 diff -u -r1.31 Makefile --- deskutils/drivel/Makefile 14 Oct 2006 08:52:41 -0000 1.31 +++ deskutils/drivel/Makefile 6 Dec 2006 11:24:57 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D drivel PORTVERSION=3D 2.0.2 -PORTREVISION=3D 2 +PORTREVISION=3D 3 CATEGORIES=3D deskutils gnome MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -15,7 +15,7 @@ MAINTAINER=3D jbq@caraldi.com COMMENT=3D Blog editor for GNOME =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 INSTALLS_ICONS=3D yes USE_X_PREFIX=3D yes Index: deskutils/ljit/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/deskutils/ljit/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- deskutils/ljit/Makefile 4 May 2006 21:40:15 -0000 1.7 +++ deskutils/ljit/Makefile 6 Dec 2006 11:24:51 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D ljit PORTVERSION=3D 0.2.5 -PORTREVISION=3D 4 +PORTREVISION=3D 5 CATEGORIES=3D deskutils MASTER_SITES=3D http://kir.vtx.ru/ljit/dl/ \ http://freebsd.nsu.ru/distfiles/ @@ -15,7 +15,7 @@ MAINTAINER=3D danfe@FreeBSD.org COMMENT=3D GUI tool to help LiveJournal users post images =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS=3D convert:${PORTSDIR}/graphics/ImageMagick =20 GNU_CONFIGURE=3D yes Index: deskutils/logjam/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/deskutils/logjam/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- deskutils/logjam/Makefile 20 Aug 2006 09:35:46 -0000 1.24 +++ deskutils/logjam/Makefile 6 Dec 2006 11:24:14 -0000 @@ -7,14 +7,14 @@ =20 PORTNAME=3D logjam PORTVERSION=3D 4.5.3 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D deskutils MASTER_SITES=3D http://logjam.danga.com/download/ =20 MAINTAINER=3D novel@FreeBSD.org COMMENT=3D A GTK2 interface to livejournals, ie www.livejournal.com =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 MAN1=3D logjam.1 =20 Index: deskutils/mdh/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/deskutils/mdh/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- deskutils/mdh/Makefile 28 May 2006 05:04:55 -0000 1.13 +++ deskutils/mdh/Makefile 6 Dec 2006 11:24:54 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D mdh PORTVERSION=3D 1.9.59 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D deskutils gnome MASTER_SITES=3D http://www.gozer.org/my_stuff/gtk/gtk/mdh/ =20 @@ -34,7 +34,7 @@ .if defined(WITHOUT_CURL) CONFIGURE_ARGS+=3D --disable-curl .else -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl .endif =20 post-patch: Index: devel/cogito/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/devel/cogito/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- devel/cogito/Makefile 9 Apr 2006 18:05:41 -0000 1.4 +++ devel/cogito/Makefile 7 Dec 2006 15:56:04 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D cogito PORTVERSION=3D 0.17.2 +PORTREVISION=3D 1 CATEGORIES=3D devel MASTER_SITES=3D http://www.kernel.org/pub/software/scm/cogito/ \ http://www.uk.kernel.org/pub/software/scm/cogito/ \ Index: devel/darcs/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/devel/darcs/Makefile,v retrieving revision 1.39 diff -u -r1.39 Makefile --- devel/darcs/Makefile 17 Jun 2006 10:37:44 -0000 1.39 +++ devel/darcs/Makefile 8 Dec 2006 12:53:27 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D darcs PORTVERSION=3D 1.0.8 +PORTREVISION=3D 1 CATEGORIES=3D devel MASTER_SITES=3D http://darcs.net/ =20 Index: devel/evfs/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/devel/evfs/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- devel/evfs/Makefile 8 Oct 2006 13:48:22 -0000 1.1 +++ devel/evfs/Makefile 6 Dec 2006 11:24:10 -0000 @@ -8,6 +8,7 @@ =20 PORTNAME=3D evfs PORTVERSION=3D 20060926 +PORTREVISION=3D 1 CATEGORIES=3D devel MASTER_SITES=3D http://sunner.elcomnet.ru/~stas/ =20 @@ -38,8 +39,8 @@ CONFIGURE_ARGS+=3D--disable-samba .endif =20 -.if !defined(WITHOUT_FTP) || exists(${LOCALBASE}/lib/libcurl.so.3) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +.if !defined(WITHOUT_FTP) || exists(${LOCALBASE}/lib/libcurl.so.4) +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl PLIST_SUB+=3D FTP=3D"" .else PLIST_SUB+=3D FTP=3D"@comment " Index: devel/libgutenfetch/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/devel/libgutenfetch/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- devel/libgutenfetch/Makefile 12 Apr 2005 03:25:12 -0000 1.3 +++ devel/libgutenfetch/Makefile 8 Dec 2006 14:57:29 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D libgutenfetch PORTVERSION=3D 1.2 +PORTREVISION=3D 1 CATEGORIES=3D devel MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D libgutenfetch Index: finance/libofx/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/finance/libofx/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- finance/libofx/Makefile 9 Oct 2006 08:00:11 -0000 1.17 +++ finance/libofx/Makefile 6 Dec 2006 11:24:04 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D libofx PORTVERSION=3D 0.8.2 +PORTREVISION=3D 1 CATEGORIES=3D finance MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -14,7 +15,7 @@ MAINTAINER=3D ports@FreeBSD.org COMMENT=3D OpenSource implementation of the OFX (Open Financial eXchange) =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ xml\\+\\+-1.0.1:${PORTSDIR}/textproc/libxml++ \ osp.3:${PORTSDIR}/textproc/opensp =20 Index: ftp/curlpp/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/curlpp/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- ftp/curlpp/Makefile 26 Sep 2006 14:46:01 -0000 1.15 +++ ftp/curlpp/Makefile 6 Dec 2006 11:23:56 -0000 @@ -8,13 +8,14 @@ =20 PORTNAME=3D curlpp PORTVERSION=3D 0.6.1 +PORTREVISION=3D 1 CATEGORIES=3D ftp MASTER_SITES=3D http://rrette.com/downloads/sources/ =20 MAINTAINER=3D roam@FreeBSD.org COMMENT=3D A C++ wrapper for libcurl =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GCC=3D 3.4 GNU_CONFIGURE=3D yes Index: ftp/ocaml-ocurl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/ocaml-ocurl/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- ftp/ocaml-ocurl/Makefile 14 Jun 2006 21:38:07 -0000 1.7 +++ ftp/ocaml-ocurl/Makefile 6 Dec 2006 11:23:49 -0000 @@ -5,6 +5,7 @@ =20 PORTNAME=3D ocurl PORTVERSION=3D 0.2.1 +PORTREVISION=3D 1 CATEGORIES=3D ftp MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -17,7 +18,7 @@ ocamlfind:${PORTSDIR}/devel/ocaml-findlib RUN_DEPENDS=3D ocamlc:${PORTSDIR}/lang/ocaml \ ocamlfind:${PORTSDIR}/devel/ocaml-findlib -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GMAKE=3D yes GNU_CONFIGURE=3D yes Index: ftp/php4-curl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/php4-curl/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- ftp/php4-curl/Makefile 19 Jul 2004 08:04:47 -0000 1.1 +++ ftp/php4-curl/Makefile 8 Dec 2006 17:19:10 -0000 @@ -11,4 +11,6 @@ =20 PKGNAMESUFFIX=3D -curl =20 +PORTREVISION=3D 2 + .include "${MASTERDIR}/Makefile" Index: ftp/php4-curl/files/patch-curl.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: ftp/php4-curl/files/patch-curl.c diff -N ftp/php4-curl/files/patch-curl.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ ftp/php4-curl/files/patch-curl.c 6 Dec 2006 09:13:39 -0000 @@ -0,0 +1,22 @@ +--- curl.c.orig Wed Dec 6 11:12:37 2006 ++++ curl.c Wed Dec 6 11:13:27 2006 +@@ -258,7 +258,9 @@ + REGISTER_CURL_CONSTANT(CURLOPT_FTPAPPEND); + REGISTER_CURL_CONSTANT(CURLOPT_NETRC); + REGISTER_CURL_CONSTANT(CURLOPT_FOLLOWLOCATION); ++#if CURLOPT_FTPASCII !=3D 0 + REGISTER_CURL_CONSTANT(CURLOPT_FTPASCII); ++#endif + REGISTER_CURL_CONSTANT(CURLOPT_PUT); + #if CURLOPT_MUTE !=3D 0 + REGISTER_CURL_CONSTANT(CURLOPT_MUTE); +@@ -296,7 +298,9 @@ + REGISTER_CURL_CONSTANT(CURLOPT_FILETIME); + REGISTER_CURL_CONSTANT(CURLOPT_WRITEFUNCTION); + REGISTER_CURL_CONSTANT(CURLOPT_READFUNCTION); ++#if CURLOPT_PASSWDFUNCTION !=3D 0 + REGISTER_CURL_CONSTANT(CURLOPT_PASSWDFUNCTION); ++#endif + REGISTER_CURL_CONSTANT(CURLOPT_HEADERFUNCTION); + REGISTER_CURL_CONSTANT(CURLOPT_MAXREDIRS); + REGISTER_CURL_CONSTANT(CURLOPT_MAXCONNECTS); Index: ftp/php5-curl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/php5-curl/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- ftp/php5-curl/Makefile 19 Jul 2004 09:08:46 -0000 1.1 +++ ftp/php5-curl/Makefile 8 Dec 2006 17:18:04 -0000 @@ -11,4 +11,6 @@ =20 PKGNAMESUFFIX=3D -curl =20 +PORTREVISION=3D 2 + .include "${MASTERDIR}/Makefile" Index: ftp/php5-curl/files/patch-interface.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: ftp/php5-curl/files/patch-interface.c diff -N ftp/php5-curl/files/patch-interface.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ ftp/php5-curl/files/patch-interface.c 5 Dec 2006 14:55:10 -0000 @@ -0,0 +1,48 @@ +--- interface.c.orig Tue Dec 5 16:50:11 2006 ++++ interface.c Tue Dec 5 16:50:25 2006 +@@ -369,7 +369,9 @@ + REGISTER_CURL_CONSTANT(CURLOPT_FTPAPPEND); + REGISTER_CURL_CONSTANT(CURLOPT_NETRC); + REGISTER_CURL_CONSTANT(CURLOPT_FOLLOWLOCATION); ++#if CURLOPT_FTPASCII !=3D 0 + REGISTER_CURL_CONSTANT(CURLOPT_FTPASCII); ++#endif + REGISTER_CURL_CONSTANT(CURLOPT_PUT); + #if CURLOPT_MUTE !=3D 0 + REGISTER_CURL_CONSTANT(CURLOPT_MUTE); +@@ -409,7 +411,9 @@ + REGISTER_CURL_CONSTANT(CURLOPT_FILETIME); + REGISTER_CURL_CONSTANT(CURLOPT_WRITEFUNCTION); + REGISTER_CURL_CONSTANT(CURLOPT_READFUNCTION); ++#if CURLOPT_PASSWDFUNCTION !=3D 0 + REGISTER_CURL_CONSTANT(CURLOPT_PASSWDFUNCTION); ++#endif + REGISTER_CURL_CONSTANT(CURLOPT_HEADERFUNCTION); + REGISTER_CURL_CONSTANT(CURLOPT_MAXREDIRS); + REGISTER_CURL_CONSTANT(CURLOPT_MAXCONNECTS); +@@ -1158,11 +1162,13 @@ + dupch->handlers->read->fp =3D ch->handlers->read->fp; + dupch->handlers->read->fd =3D ch->handlers->read->fd; +=20 ++#if CURLOPT_PASSWDFUNCTION !=3D 0 + if (ch->handlers->passwd) { + zval_add_ref(&ch->handlers->passwd); + dupch->handlers->passwd =3D ch->handlers->passwd; + curl_easy_setopt(ch->cp, CURLOPT_PASSWDDATA, (void *) dupch); + } ++#endif + if (ch->handlers->write->func_name) { + zval_add_ref(&ch->handlers->write->func_name); + dupch->handlers->write->func_name =3D ch->handlers->write->func_name; +@@ -1915,9 +1921,11 @@ + if (ch->handlers->write_header->func_name) { + zval_ptr_dtor(&ch->handlers->write_header->func_name); + } ++#if CURLOPT_PASSWDFUNCTION !=3D 0 + if (ch->handlers->passwd) { + zval_ptr_dtor(&ch->handlers->passwd); + } ++#endif + if (ch->header.str_len > 0) { + efree(ch->header.str); + } Index: ftp/py-curl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/py-curl/Makefile,v retrieving revision 1.24 diff -u -r1.24 Makefile --- ftp/py-curl/Makefile 22 Apr 2006 05:20:19 -0000 1.24 +++ ftp/py-curl/Makefile 6 Dec 2006 11:23:39 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D curl PORTVERSION=3D 7.15.2 +PORTREVISION=3D 1 CATEGORIES=3D ftp python MASTER_SITES=3D http://pycurl.sourceforge.net/download/ \ http://pycurl.sourceforge.net/download/00-OLD-VERSIONS/ @@ -16,7 +17,7 @@ MAINTAINER=3D perky@FreeBSD.org COMMENT=3D Python interface to libcurl =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_PYTHON=3D yes USE_PYDISTUTILS=3D yes Index: ftp/py-curl/files/patch-src-pycurl.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: ftp/py-curl/files/patch-src-pycurl.c diff -N ftp/py-curl/files/patch-src-pycurl.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ ftp/py-curl/files/patch-src-pycurl.c 5 Dec 2006 15:13:27 -0000 @@ -0,0 +1,48 @@ +--- src/pycurl.c.orig Tue Dec 5 17:11:38 2006 ++++ src/pycurl.c Tue Dec 5 17:13:03 2006 +@@ -1109,9 +1109,11 @@ + case CURLOPT_URL: + case CURLOPT_USERAGENT: + case CURLOPT_USERPWD: ++#if LIBCURL_VERSION_NUM < 0x071000 + case CURLOPT_SOURCE_HOST: + case CURLOPT_SOURCE_USERPWD: + case CURLOPT_SOURCE_PATH: ++#endif + /* FIXME: check if more of these options allow binary data */ + str =3D PyString_AsString_NoNUL(obj); + if (str =3D=3D NULL) +@@ -1279,12 +1281,14 @@ + case CURLOPT_PREQUOTE: + old_slist =3D &self->prequote; + break; ++#if LIBCURL_VERSION_NUM < 0x071000 + case CURLOPT_SOURCE_PREQUOTE: + old_slist =3D &self->source_prequote; + break; + case CURLOPT_SOURCE_POSTQUOTE: + old_slist =3D &self->source_postquote; + break; ++#endif + case CURLOPT_HTTPPOST: + break; + default: +@@ -2689,14 +2693,18 @@ + insint_c(d, "FTP_SSL", CURLOPT_FTP_SSL); + insint_c(d, "POSTFIELDSIZE_LARGE", CURLOPT_POSTFIELDSIZE_LARGE); + insint_c(d, "TCP_NODELAY", CURLOPT_TCP_NODELAY); ++#if LIBCURL_VERSION_NUM < 0x071000 + insint_c(d, "SOURCE_USERPWD", CURLOPT_SOURCE_USERPWD); + insint_c(d, "SOURCE_PREQUOTE", CURLOPT_SOURCE_PREQUOTE); + insint_c(d, "SOURCE_POSTQUOTE", CURLOPT_SOURCE_POSTQUOTE); ++#endif + insint_c(d, "FTPSSLAUTH", CURLOPT_FTPSSLAUTH); + insint_c(d, "IOCTLFUNCTION", CURLOPT_IOCTLFUNCTION); + insint_c(d, "IOCTLDATA", CURLOPT_IOCTLDATA); ++#if LIBCURL_VERSION_NUM < 0x071000 + insint_c(d, "SOURCE_URL", CURLOPT_SOURCE_URL); + insint_c(d, "SOURCE_QUOTE", CURLOPT_SOURCE_QUOTE); ++#endif + insint_c(d, "FTP_ACCOUNT", CURLOPT_FTP_ACCOUNT); + insint_c(d, "IGNORE_CONTENT_LENGTH", CURLOPT_IGNORE_CONTENT_LENGTH); + insint_c(d, "COOKIELIST", CURLOPT_COOKIELIST); Index: ftp/rexx-curl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/rexx-curl/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- ftp/rexx-curl/Makefile 14 Aug 2006 23:06:29 -0000 1.11 +++ ftp/rexx-curl/Makefile 6 Dec 2006 11:23:25 -0000 @@ -8,6 +8,7 @@ =20 PORTNAME=3D curl PORTVERSION=3D 1.4 +PORTREVISION=3D 1 CATEGORIES=3D ftp MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D rexx${PORTNAME} @@ -18,7 +19,7 @@ COMMENT=3D External function package providing an interface to the cURL pa= ckage =20 BUILD_DEPENDS=3D rexx:${PORTSDIR}/lang/rexx-regina -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS=3D rexx:${PORTSDIR}/lang/rexx-regina =20 USE_GMAKE=3D yes Index: ftp/rexx-curl/files/patch-rexxcurl.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: ftp/rexx-curl/files/patch-rexxcurl.c diff -N ftp/rexx-curl/files/patch-rexxcurl.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ ftp/rexx-curl/files/patch-rexxcurl.c 5 Dec 2006 14:31:26 -0000 @@ -0,0 +1,11 @@ +--- rexxcurl.c.orig Tue Dec 5 16:30:55 2006 ++++ rexxcurl.c Tue Dec 5 16:31:14 2006 +@@ -323,7 +323,7 @@ + { "RANGE" ,CURLOPT_RANGE ,RXCURLOPT_STRING }, + { "REFERER" ,CURLOPT_REFERER ,RXCURLOPT_STRING }, + { "RESUMEFROM" ,CURLOPT_RESUME_FROM ,RXCURLOPT_LONGLONG }, +-#if LIBCURL_VERSION_NUM >=3D 0x070d00 ++#if LIBCURL_VERSION_NUM >=3D 0x070d00 && LIBCURL_VERSION_NUM < 0x071000 + { "SOURCEPOSTQUOTE" ,CURLOPT_SOURCE_POSTQUOTE,RXCURLOPT_LIST }, + { "SOURCEPREQUOTE" ,CURLOPT_SOURCE_PREQUOTE ,RXCURLOPT_LIST }, + { "SOURCEQUOTE" ,CURLOPT_SOURCE_QUOTE ,RXCURLOPT_LIST }, Index: ftp/urlgfe/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/urlgfe/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- ftp/urlgfe/Makefile 7 May 2006 11:09:21 -0000 1.8 +++ ftp/urlgfe/Makefile 6 Dec 2006 11:23:17 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D urlgfe PORTVERSION=3D 0.7.1 -PORTREVISION?=3D 4 +PORTREVISION?=3D 5 CATEGORIES=3D ftp www MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D urlget @@ -15,7 +15,7 @@ MAINTAINER=3D chip-set@mail.ru COMMENT=3D A download manager =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GNOME=3D gtk20 lthack WANT_GNOME=3D yes Index: ftp/wmget/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/ftp/wmget/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- ftp/wmget/Makefile 29 May 2006 20:46:12 -0000 1.7 +++ ftp/wmget/Makefile 6 Dec 2006 11:23:13 -0000 @@ -6,6 +6,7 @@ =20 PORTNAME=3D wmget PORTVERSION=3D 0.6.0 +PORTREVISION=3D 1 CATEGORIES=3D ftp MASTER_SITES=3D http://amtrickey.net/download/ DISTNAME=3D ${PORTNAME}-${PORTVERSION}-src @@ -13,7 +14,7 @@ MAINTAINER=3D uspoerlein@gmail.com COMMENT=3D Dock app for Window Maker providing wget functionality =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_X_PREFIX=3D yes USE_GMAKE=3D yes Index: games/bzflag/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/bzflag/Makefile,v retrieving revision 1.38 diff -u -r1.38 Makefile --- games/bzflag/Makefile 20 Sep 2006 11:20:56 -0000 1.38 +++ games/bzflag/Makefile 6 Dec 2006 11:23:07 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D bzflag PORTVERSION=3D 2.0.8 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D games MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -15,7 +15,7 @@ MAINTAINER=3D chuck@pkix.net COMMENT=3D A multiplayer 3D tank battle game =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_BZIP2=3D yes USE_SDL=3D yes Index: games/fgsd/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/fgsd/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- games/fgsd/Makefile 10 Apr 2006 10:58:24 -0000 1.1 +++ games/fgsd/Makefile 8 Dec 2006 14:24:09 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D fgsd DISTVERSION=3D 0.3.1a +PORTREVISION=3D 1 CATEGORIES=3D games MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} Index: games/mudmagic/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/mudmagic/Makefile,v retrieving revision 1.2 diff -u -r1.2 Makefile --- games/mudmagic/Makefile 7 Oct 2006 09:33:44 -0000 1.2 +++ games/mudmagic/Makefile 6 Dec 2006 11:22:41 -0000 @@ -7,13 +7,14 @@ =20 PORTNAME=3D mudmagic PORTVERSION=3D 1.9 +PORTREVISION=3D 1 CATEGORIES=3D games MASTER_SITES=3D http://www.mudmagic.com/mud-client/downloads/ =20 MAINTAINER=3D trasz@pin.if.uz.zgora.pl COMMENT=3D A GTK+ based MUD client =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ pcre.0:${PORTSDIR}/devel/pcre \ png.5:${PORTSDIR}/graphics/png \ expat:${PORTSDIR}/textproc/expat2 \ Index: games/planeshift/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/planeshift/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- games/planeshift/Makefile 30 Nov 2006 20:25:32 -0000 1.6 +++ games/planeshift/Makefile 6 Dec 2006 11:22:47 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D planeshift PORTVERSION=3D 0.3.017 +PORTREVISION=3D 1 CATEGORIES=3D games MASTER_SITES=3D http://alex.foxybanana.com/freebsd/ =20 @@ -18,7 +19,7 @@ cel-config:${PORTSDIR}/graphics/crystalentitylayer-devel \ ${LOCALBASE}/lib/libbfd.a:${PORTSDIR}/devel/libbfd LIB_DEPENDS=3D cal3d.12:${PORTSDIR}/graphics/cal3d \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 USE_BZIP2=3D yes GNU_CONFIGURE=3D yes Index: games/r1q2/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/r1q2/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- games/r1q2/Makefile 20 Sep 2006 11:21:23 -0000 1.5 +++ games/r1q2/Makefile 6 Dec 2006 11:22:54 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D r1q2 PORTVERSION=3D 6557 -PORTREVISION=3D 3 +PORTREVISION=3D 4 CATEGORIES=3D games MASTER_SITES=3D http://www.r1ch.net/stuff/r1q2/src/ DISTNAME=3D ${PORTNAME}-b${PORTVERSION}-src @@ -93,7 +93,7 @@ .endif =20 .if !defined(WITHOUT_HTTP) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl MAKE_ENV+=3D WITH_HTTP_DOWNLOAD_SUPPORT=3DYES .endif =20 Index: games/tmw/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/tmw/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- games/tmw/Makefile 16 Nov 2006 21:20:29 -0000 1.9 +++ games/tmw/Makefile 6 Dec 2006 11:23:04 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D tmw PORTVERSION=3D 0.0.21.1 +PORTREVISION=3D 1 CATEGORIES=3D games MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D themanaworld @@ -16,7 +17,7 @@ =20 LIB_DEPENDS=3D xml2.5:${PORTSDIR}/textproc/libxml2 \ png.5:${PORTSDIR}/graphics/png \ - curl.3:${PORTSDIR}/ftp/curl \ + curl.4:${PORTSDIR}/ftp/curl \ physfs-1.0.1:${PORTSDIR}/devel/physfs BUILD_DEPENDS=3D guichan>=3D0.5.0:${PORTSDIR}/devel/guichan RUN_DEPENDS=3D guichan>=3D0.5.0:${PORTSDIR}/devel/guichan Index: games/warsow/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/warsow/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- games/warsow/Makefile 20 Sep 2006 11:21:35 -0000 1.6 +++ games/warsow/Makefile 6 Dec 2006 11:22:50 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D warsow PORTVERSION=3D 0.12 -PORTREVISION=3D 3 +PORTREVISION=3D 4 CATEGORIES=3D games MASTER_SITES=3D http://warsow.aditsystems.com/ \ http://ftp.club-internet.fr/pub/games/nofrag/warsow/ \ @@ -49,7 +49,7 @@ .endif =20 .if !defined(WITHOUT_CLIENT) -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ jpeg.9:${PORTSDIR}/graphics/jpeg USE_GL=3D yes USE_SDL=3D yes Index: games/xmoto/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/games/xmoto/Makefile,v retrieving revision 1.13 diff -u -r1.13 Makefile --- games/xmoto/Makefile 6 Oct 2006 15:43:29 -0000 1.13 +++ games/xmoto/Makefile 6 Dec 2006 11:22:58 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D xmoto PORTVERSION=3D 0.2.2 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D games MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -47,7 +47,7 @@ .include =20 .if !defined(WITHOUT_WWW) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+=3D --with-enable-www=3D1 .else CONFIGURE_ARGS+=3D --with-enable-www=3D0 Index: graphics/jp2a/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/graphics/jp2a/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- graphics/jp2a/Makefile 25 Sep 2006 14:21:51 -0000 1.7 +++ graphics/jp2a/Makefile 6 Dec 2006 11:22:25 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D jp2a PORTVERSION=3D 1.0.6 +PORTREVISION=3D 1 CATEGORIES=3D graphics MASTER_SITES=3D SF =20 @@ -14,7 +15,7 @@ COMMENT=3D Converts JPG images to ASCII =20 LIB_DEPENDS=3D jpeg.9:${PORTSDIR}/graphics/jpeg \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 USE_BZIP2=3D yes GNU_CONFIGURE=3D yes Index: graphics/mapserver/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/graphics/mapserver/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- graphics/mapserver/Makefile 9 Oct 2006 08:18:34 -0000 1.14 +++ graphics/mapserver/Makefile 6 Dec 2006 11:22:35 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D mapserver PORTVERSION=3D 4.4.1 -PORTREVISION=3D 2 +PORTREVISION=3D 3 CATEGORIES=3D graphics www MASTER_SITES=3D http://cvs.gis.umn.edu/dist/ =20 @@ -106,7 +106,7 @@ .endif =20 .if defined(WITH_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+=3D --with-curl=3D${LOCALBASE} .endif =20 Index: graphics/paintlib/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/graphics/paintlib/Makefile,v retrieving revision 1.6 diff -u -r1.6 Makefile --- graphics/paintlib/Makefile 14 Aug 2006 23:06:37 -0000 1.6 +++ graphics/paintlib/Makefile 8 Dec 2006 14:54:21 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D paintlib PORTVERSION=3D 2.6.1 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D graphics devel MASTER_SITES=3D http://www.paintlib.de/paintlib/ =20 Index: graphics/telak/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/graphics/telak/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- graphics/telak/Makefile 16 Jun 2006 10:00:35 -0000 1.4 +++ graphics/telak/Makefile 6 Dec 2006 11:22:31 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D telak PORTVERSION=3D 0.5 +PORTREVISION=3D 1 CATEGORIES=3D graphics MASTER_SITES=3D http://julien.danjou.info/telak/ \ http://critical.ch/distfiles/ \ @@ -15,7 +16,7 @@ MAINTAINER=3D ehaupt@FreeBSD.org COMMENT=3D A tool to draw pictures on your root window =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ gcrypt.13:${PORTSDIR}/security/libgcrypt \ Imlib2.3:${PORTSDIR}/graphics/imlib2 =20 Index: irc/unreal/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/irc/unreal/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- irc/unreal/Makefile 1 Jul 2006 19:57:15 -0000 1.8 +++ irc/unreal/Makefile 6 Dec 2006 11:18:03 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D Unreal PORTVERSION=3D 3.2.5 +PORTREVISION=3D 1 CATEGORIES=3D irc MASTER_SITES=3D http://www.ilmarinen.us/unreal/ \ http://unrealircd.alert-net.com/ \ @@ -84,9 +85,10 @@ .endif =20 .if defined(WITH_REMOTE) -BUILD_DEPENDS+=3D ${LOCALBASE}/lib/libares.a:${PORTSDIR}/dns/ares -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D cares.1:${PORTSDIR}/dns/c-ares curl.4:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+=3D --enable-libcurl=3D${LOCALBASE} +CPPFLAGS+=3D -I${LOCALBASE}/include +LDFLAGS+=3D -L${LOCALBASE}/lib .endif =20 .if defined(WITH_PREFIXAQ) Index: irc/unreal/files/patch-Makefile.in =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: irc/unreal/files/patch-Makefile.in diff -N irc/unreal/files/patch-Makefile.in --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ irc/unreal/files/patch-Makefile.in 5 Dec 2006 14:00:09 -0000 @@ -0,0 +1,11 @@ +--- Makefile.in.orig Tue Dec 5 15:59:38 2006 ++++ Makefile.in Tue Dec 5 15:59:53 2006 +@@ -38,7 +38,7 @@ + CRYPTOLIB=3D@CRYPTOLIB@ + OPENSSLINCLUDES=3D +=20 +-XCFLAGS=3D-I@TREINCDIR@ -I@CARESINCDIR@ @CARESLIBDIR@ @CFLAGS@ ++XCFLAGS=3D-I@TREINCDIR@ @CFLAGS@ + # + # use the following on MIPS: + #CFLAGS=3D -systype bsd43 -DSYSTYPE_BSD43 -I$(INCLUDEDIR) Index: irc/unreal/files/patch-configure =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: irc/unreal/files/patch-configure diff -N irc/unreal/files/patch-configure --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ irc/unreal/files/patch-configure 5 Dec 2006 13:59:23 -0000 @@ -0,0 +1,37 @@ +--- configure.orig Tue Dec 5 15:55:45 2006 ++++ configure Tue Dec 5 15:59:10 2006 +@@ -12701,34 +12701,6 @@ + cd $cur_dir +=20 +=20 +-cares_version=3D"1.3.0" +-echo "$as_me:$LINENO: result: extracting c-ares resolver library" >&5 +-echo "${ECHO_T}extracting c-ares resolver library" >&6 +-cur_dir=3D`pwd` +-cd extras +-rm -rf c-ares-$cares_version +-if test "x$ac_cv_path_GUNZIP" =3D "x" ; then +- tar xfz c-ares.tar.gz +-else +- cp c-ares.tar.gz c-ares.tar.gz.bak +- gunzip -f c-ares.tar.gz +- cp c-ares.tar.gz.bak c-ares.tar.gz +- tar xf c-ares.tar +-fi +-echo "$as_me:$LINENO: result: configuring c-ares library" >&5 +-echo "${ECHO_T}configuring c-ares library" >&6 +-cd c-ares-$cares_version +-./configure --prefix=3D$cur_dir/extras/c-ares || exit 1 +-echo "$as_me:$LINENO: result: compiling c-ares resolver library" >&5 +-echo "${ECHO_T}compiling c-ares resolver library" >&6 +-$ac_cv_prog_MAKER || exit 1 +-echo "$as_me:$LINENO: result: installing c-ares resolver library" >&5 +-echo "${ECHO_T}installing c-ares resolver library" >&6 +-$ac_cv_prog_MAKER install || exit 1 +-CARESINCDIR=3D"$cur_dir/extras/c-ares/include" +- +-CARESLIBDIR=3D"-L../extras/c-ares/lib" +- + CARESLIBS=3D"-lcares" +=20 + cd $cur_dir Index: lang/gambas/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/lang/gambas/Makefile,v retrieving revision 1.51 diff -u -r1.51 Makefile --- lang/gambas/Makefile 20 Sep 2006 11:21:46 -0000 1.51 +++ lang/gambas/Makefile 6 Dec 2006 11:18:19 -0000 @@ -6,7 +6,7 @@ =20 PORTNAME=3D gambas PORTVERSION=3D 1.0.17 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D lang MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -14,7 +14,7 @@ MAINTAINER=3D thierry@FreeBSD.org COMMENT=3D Gambas Almost Means BASic =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ ml.0:${PORTSDIR}/math/ldouble =20 USE_AUTOTOOLS=3D libltdl:15 libtool:15 Index: lang/php4/Makefile.ext =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/php4/Makefile.ext,v retrieving revision 1.29 diff -u -r1.29 Makefile.ext --- lang/php4/Makefile.ext 10 Sep 2006 16:30:59 -0000 1.29 +++ lang/php4/Makefile.ext 6 Dec 2006 09:11:25 -0000 @@ -44,7 +44,7 @@ .endif =20 .if ${PHP_MODNAME} =3D=3D "curl" -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl =20 CONFIGURE_ARGS+=3D--with-curl=3D${LOCALBASE} .endif Index: lang/php5/Makefile.ext =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/php5/Makefile.ext,v retrieving revision 1.33 diff -u -r1.33 Makefile.ext --- lang/php5/Makefile.ext 6 Nov 2006 17:43:10 -0000 1.33 +++ lang/php5/Makefile.ext 5 Dec 2006 14:37:52 -0000 @@ -38,7 +38,7 @@ .endif =20 .if ${PHP_MODNAME} =3D=3D "curl" -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl =20 CONFIGURE_ARGS+=3D--with-curl=3D${LOCALBASE} .endif Index: lang/q/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/lang/q/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- lang/q/Makefile 9 Oct 2006 18:51:19 -0000 1.21 +++ lang/q/Makefile 8 Dec 2006 12:00:08 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D q PORTVERSION=3D 6.2 -PORTREVISION=3D 5 +PORTREVISION=3D 6 CATEGORIES=3D lang MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D q-lang Index: lang/q/files/patch-modules-curl-curl.c =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: lang/q/files/patch-modules-curl-curl.c diff -N lang/q/files/patch-modules-curl-curl.c --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lang/q/files/patch-modules-curl-curl.c 8 Dec 2006 16:59:33 -0000 @@ -0,0 +1,35 @@ +--- modules/curl/curl.c.orig Fri Dec 8 18:58:07 2006 ++++ modules/curl/curl.c Fri Dec 8 18:59:12 2006 +@@ -461,7 +461,9 @@ + CURLOPT_WRITEFUNCTION, + CURLOPT_READFUNCTION, + CURLOPT_PROGRESSFUNCTION, ++#if LIBCURL_VERSION_NUM < 0x071000 + CURLOPT_PASSWDFUNCTION, ++#endif + CURLOPT_HEADERFUNCTION, + CURLOPT_DEBUGFUNCTION, +=20 +@@ -660,7 +662,9 @@ + mkint(CURLOPT_WRITEFUNCTION), + mkint(CURLOPT_READFUNCTION), + mkint(CURLOPT_PROGRESSFUNCTION), ++#if LIBCURL_VERSION_NUM < 0x071000 + mkint(CURLOPT_PASSWDFUNCTION), ++#endif + mkint(CURLOPT_HEADERFUNCTION), + mkint(CURLOPT_DEBUGFUNCTION), +=20 +@@ -964,10 +968,12 @@ + cb =3D (int(*)())progress_cb; + dataopt =3D CURLOPT_PROGRESSDATA; + break; ++#if LIBCURL_VERSION_NUM < 0x071000 + case CURLOPT_PASSWDFUNCTION: + cb =3D (int(*)())passwd_cb; + dataopt =3D CURLOPT_PASSWDDATA; + break; ++#endif + case CURLOPT_HEADERFUNCTION: + cb =3D (int(*)())header_cb; + dataopt =3D CURLOPT_WRITEHEADER; Index: lang/scriba/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/lang/scriba/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- lang/scriba/Makefile 9 May 2006 20:52:21 -0000 1.15 +++ lang/scriba/Makefile 6 Dec 2006 11:18:26 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D scriba PORTVERSION=3D 20b0 +PORTREVISION=3D 1 CATEGORIES=3D lang MASTER_SITES=3D http://www.scriptbasic.com/download/ DISTNAME=3D ${PORTNAME}-v2.0b0-source @@ -49,7 +50,7 @@ .endif =20 .if defined(WITH_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl PLIST_SUB+=3D CURL=3D"" .else PLIST_SUB+=3D CURL=3D"@comment " Index: mail/freepops/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/mail/freepops/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- mail/freepops/Makefile 10 May 2006 22:36:51 -0000 1.9 +++ mail/freepops/Makefile 8 Dec 2006 14:58:56 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D freepops PORTVERSION=3D 0.0.96 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D mail MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D freepops Index: mail/sylpheed-claws-gtkhtml2_viewer/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/mail/sylpheed-claws-gtkhtml2_viewer/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- mail/sylpheed-claws-gtkhtml2_viewer/Makefile 3 Dec 2006 18:43:56 -0000 = 1.7 +++ mail/sylpheed-claws-gtkhtml2_viewer/Makefile 6 Dec 2006 11:18:35 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D gtkhtml2_viewer PORTVERSION=3D 0.12 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D mail MASTER_SITES=3D http://sylpheed-claws.net/downloads/plugins/ PKGNAMEPREFIX=3D sylpheed-claws- @@ -15,7 +15,7 @@ MAINTAINER=3D c0rn@o2.pl COMMENT=3D HTML renderer plugin for sylpheed-claws =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl BUILD_DEPENDS=3D sylpheed-claws>=3D2.5:${PORTSDIR}/mail/sylpheed-claws RUN_DEPENDS=3D sylpheed-claws>=3D2.5:${PORTSDIR}/mail/sylpheed-claws =20 Index: mail/sylpheed-claws-rssyl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/mail/sylpheed-claws-rssyl/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- mail/sylpheed-claws-rssyl/Makefile 3 Dec 2006 18:43:57 -0000 1.10 +++ mail/sylpheed-claws-rssyl/Makefile 6 Dec 2006 11:18:31 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D rssyl PORTVERSION=3D 0.7 -PORTREVISION=3D 1 +PORTREVISION=3D 2 PORTEPOCH=3D 1 CATEGORIES=3D mail MASTER_SITES=3D http://sylpheed-claws.net/downloads/plugins/ @@ -16,7 +16,7 @@ MAINTAINER=3D c0rn@o2.pl COMMENT=3D A RSS/Atom plugin for sylheed-claws =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl BUILD_DEPENDS=3D sylpheed-claws>=3D2.5:${PORTSDIR}/mail/sylpheed-claws RUN_DEPENDS=3D sylpheed-claws>=3D2.5:${PORTSDIR}/mail/sylpheed-claws =20 Index: mail/sylpheed-claws-vcalendar/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/mail/sylpheed-claws-vcalendar/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- mail/sylpheed-claws-vcalendar/Makefile 3 Dec 2006 18:43:57 -0000 1.8 +++ mail/sylpheed-claws-vcalendar/Makefile 6 Dec 2006 11:18:38 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D vcalendar PORTVERSION=3D 1.89.1 -PORTREVISION=3D 2 +PORTREVISION=3D 3 CATEGORIES=3D mail MASTER_SITES=3D http://sylpheed-claws.net/downloads/plugins/ \ ${MASTER_SITE_LOCAL} @@ -17,7 +17,7 @@ MAINTAINER=3D c0rn@o2.pl COMMENT=3D vCalendar plugin for sylpheed-claws =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl BUILD_DEPENDS=3D sylpheed-claws>=3D2.5:${PORTSDIR}/mail/sylpheed-claws RUN_DEPENDS=3D sylpheed-claws>=3D2.5:${PORTSDIR}/mail/sylpheed-claws =20 Index: misc/bidwatcher/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/misc/bidwatcher/Makefile,v retrieving revision 1.54 diff -u -r1.54 Makefile --- misc/bidwatcher/Makefile 26 Jun 2006 18:01:17 -0000 1.54 +++ misc/bidwatcher/Makefile 6 Dec 2006 11:19:12 -0000 @@ -8,7 +8,7 @@ =20 PORTNAME=3D bidwatcher PORTVERSION=3D 1.3.17 -PORTREVISION?=3D 4 +PORTREVISION?=3D 5 CATEGORIES=3D misc MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -20,7 +20,7 @@ MAINTAINER=3D obrien@FreeBSD.org COMMENT=3D Bid monitor for eBay =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 PLIST_FILES=3D bin/bidwatcher USE_GCC=3D 3.2+ Index: misc/esniper/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/misc/esniper/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- misc/esniper/Makefile 8 Nov 2006 21:06:02 -0000 1.3 +++ misc/esniper/Makefile 6 Dec 2006 11:18:52 -0000 @@ -6,6 +6,7 @@ =20 PORTNAME=3D esniper DISTVERSION=3D 2-15-0 +PORTREVISION=3D 1 CATEGORIES=3D misc net MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -14,7 +15,7 @@ MAINTAINER=3D lewiz@compsoc.man.ac.uk COMMENT=3D Lightweight tool for sniping ebay auctions =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 GNU_CONFIGURE=3D yes USE_OPENSSL=3D yes Index: misc/gkrellm-helium/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/misc/gkrellm-helium/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- misc/gkrellm-helium/Makefile 10 May 2006 22:37:17 -0000 1.11 +++ misc/gkrellm-helium/Makefile 6 Dec 2006 11:19:18 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D gkrellm-helium PORTVERSION=3D 2.3.1 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D misc MASTER_SITES=3D http://kmlinux.fjfi.cvut.cz/~makovick/gkrellm/ EXTRACT_SUFX=3D .tgz @@ -16,7 +16,7 @@ COMMENT=3D GKrellM plugin reading data from helium thermometer at Strahov,= Prague =20 BUILD_DEPENDS=3D ${X11BASE}/include/gkrellm2/gkrellm.h:${PORTSDIR}/sysutil= s/gkrellm2 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS=3D gkrellm:${PORTSDIR}/sysutils/gkrellm2 =20 PLIST_FILES=3D libexec/gkrellm2/plugins/helium.so Index: misc/sword/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/misc/sword/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- misc/sword/Makefile 31 Oct 2006 04:56:09 -0000 1.23 +++ misc/sword/Makefile 8 Dec 2006 14:59:02 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D sword PORTVERSION=3D 1.5.9 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D misc MASTER_SITES=3D ftp://ftp.crosswire.org/pub/sword/source/v1.5/ \ http://www.goodking.ca/pub/files/ Index: misc/wmweather/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/misc/wmweather/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- misc/wmweather/Makefile 23 Apr 2005 23:01:56 -0000 1.17 +++ misc/wmweather/Makefile 6 Dec 2006 11:19:26 -0000 @@ -6,13 +6,14 @@ =20 PORTNAME=3D wmweather PORTVERSION=3D 2.4.3 +PORTREVISION=3D 1 CATEGORIES=3D misc windowmaker MASTER_SITES=3D http://www.godisch.de/debian/wmweather/ =20 MAINTAINER=3D kris@FreeBSD.org COMMENT=3D A WMaker dockapp which displays meteorological data for your ci= ty =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl BUILD_DEPENDS=3D xmessage:${X_CLIENTS_PORT} RUN_DEPENDS=3D xmessage:${X_CLIENTS_PORT} =20 Index: multimedia/xine/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/multimedia/xine/Makefile,v retrieving revision 1.69 diff -u -r1.69 Makefile --- multimedia/xine/Makefile 7 Dec 2006 17:17:44 -0000 1.69 +++ multimedia/xine/Makefile 8 Dec 2006 17:13:40 -0000 @@ -18,7 +18,7 @@ =20 LIB_DEPENDS=3D xine.16:${PORTSDIR}/multimedia/libxine \ png.5:${PORTSDIR}/graphics/png \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 USE_GETTEXT=3D yes USE_X_PREFIX=3D yes Index: net-im/centericq/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-im/centericq/Makefile,v retrieving revision 1.110 diff -u -r1.110 Makefile --- net-im/centericq/Makefile 13 Sep 2006 21:24:19 -0000 1.110 +++ net-im/centericq/Makefile 6 Dec 2006 11:21:36 -0000 @@ -8,7 +8,7 @@ =20 PORTNAME=3D centericq PORTVERSION=3D 4.21.0 -PORTREVISION=3D 6 +PORTREVISION=3D 7 CATEGORIES=3D net-im MASTER_SITES=3D http://centericq.de/archive/source/releases/ \ http://thekonst.net/download/ @@ -65,7 +65,7 @@ .if !defined(WITH_MSN) CONFIGURE_ARGS+=3D --disable-msn .else -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl .endif =20 .if !defined(WITH_YAHOO) Index: net-im/cli-msn/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-im/cli-msn/Makefile,v retrieving revision 1.3 diff -u -r1.3 Makefile --- net-im/cli-msn/Makefile 23 Jul 2006 02:45:14 -0000 1.3 +++ net-im/cli-msn/Makefile 6 Dec 2006 11:21:46 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D msn PORTVERSION=3D 2.3 +PORTREVISION=3D 1 CATEGORIES=3D net-im MASTER_SITES=3D http://mor-pah.net/code/ PKGNAMEPREFIX=3D cli- @@ -15,7 +16,7 @@ MAINTAINER=3D acm@FreeBSD.org COMMENT=3D Command line msn messenger =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GMAKE=3D yes GNU_CONFIGURE=3D yes Index: net-im/libmsn/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-im/libmsn/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- net-im/libmsn/Makefile 15 Aug 2006 00:56:19 -0000 1.7 +++ net-im/libmsn/Makefile 6 Dec 2006 11:21:41 -0000 @@ -8,7 +8,7 @@ =20 PORTNAME=3D libmsn PORTVERSION=3D 3.2 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D net-im MASTER_SITES=3D http://libmsn.bdash.net.nz/files/ \ ${MASTER_SITE_SOURCEFORGE} @@ -17,7 +17,7 @@ MAINTAINER=3D ports@FreeBSD.org COMMENT=3D A library for connecting to MSN Messenger service =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 GNU_CONFIGURE=3D yes USE_LDCONFIG=3D yes Index: net-p2p/amule1/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-p2p/amule1/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- net-p2p/amule1/Makefile 1 Dec 2006 07:38:58 -0000 1.23 +++ net-p2p/amule1/Makefile 6 Dec 2006 11:21:50 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D aMule PORTVERSION=3D 1.2.8 -PORTREVISION=3D 5 +PORTREVISION=3D 6 CATEGORIES=3D net-p2p #MASTER_SITES=3D http://download.berlios.de/amule/ MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} @@ -18,7 +18,7 @@ =20 DEPRECATED=3D use net-p2p/amule2 if you are running OSVERSION > 500000 =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 LATEST_LINK=3D aMule1 CONFLICTS=3D aMule-2.* aMule-devel-[0-9]* Index: net-p2p/gtorrentviewer/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-p2p/gtorrentviewer/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- net-p2p/gtorrentviewer/Makefile 14 Oct 2006 08:54:41 -0000 1.9 +++ net-p2p/gtorrentviewer/Makefile 6 Dec 2006 11:22:00 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D gtorrentviewer PORTVERSION=3D 0.2b -PORTREVISION=3D 5 +PORTREVISION=3D 6 CATEGORIES=3D net-p2p MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -16,7 +16,7 @@ MAINTAINER=3D ports@FreeBSD.org COMMENT=3D GTK+2 viewer and editor for BitTorrent meta files =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GNOME=3D gtk20 gnomehier intlhack USE_XLIB=3D yes Index: net-p2p/jigdo/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-p2p/jigdo/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- net-p2p/jigdo/Makefile 11 Sep 2006 23:38:51 -0000 1.17 +++ net-p2p/jigdo/Makefile 8 Dec 2006 14:18:17 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D jigdo PORTVERSION=3D 0.7.3 +PORTREVISION=3D 1 CATEGORIES=3D net-p2p MASTER_SITES=3D http://www.atterer.net/jigdo/ =20 Index: net-p2p/libbt/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-p2p/libbt/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- net-p2p/libbt/Makefile 18 Sep 2006 10:20:32 -0000 1.17 +++ net-p2p/libbt/Makefile 6 Dec 2006 11:22:07 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D libbt PORTVERSION=3D 1.05 +PORTREVISION=3D 1 CATEGORIES=3D net-p2p devel MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -14,7 +15,7 @@ MAINTAINER=3D flz@FreeBSD.org COMMENT=3D C library implementing the core BitTorrent protocol =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 GNU_CONFIGURE=3D yes USE_GMAKE=3D yes Index: net-p2p/rtorrent/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net-p2p/rtorrent/Makefile,v retrieving revision 1.23 diff -u -r1.23 Makefile --- net-p2p/rtorrent/Makefile 8 Nov 2006 12:11:38 -0000 1.23 +++ net-p2p/rtorrent/Makefile 6 Dec 2006 11:22:12 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME?=3D rtorrent PORTVERSION?=3D 0.6.4 -PORTREVISION?=3D 0 +PORTREVISION?=3D 1 CATEGORIES=3D net-p2p MASTER_SITES=3D http://libtorrent.rakshasa.no/downloads/ =20 @@ -15,7 +15,7 @@ COMMENT?=3D BitTorrent Client written in C++ =20 LIB_DEPENDS?=3D torrent.9:${PORTSDIR}/net-p2p/libtorrent -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl =20 CONFLICTS?=3D rtorrent-devel-[0-9]* =20 Index: net/asterisk/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net/asterisk/Makefile,v retrieving revision 1.62 diff -u -r1.62 Makefile --- net/asterisk/Makefile 5 Dec 2006 10:14:29 -0000 1.62 +++ net/asterisk/Makefile 6 Dec 2006 11:19:45 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D asterisk PORTVERSION=3D 1.2.13 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D net MASTER_SITES=3D http://ftp.digium.com/pub/asterisk/ \ http://ftp.digium.com/pub/asterisk/old-releases/ @@ -26,7 +26,7 @@ BUILD_DEPENDS=3D mpg123:${PORTSDIR}/audio/mpg123 LIB_DEPENDS=3D speex.3:${PORTSDIR}/audio/speex \ newt.51:${PORTSDIR}/devel/newt \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS=3D mpg123:${PORTSDIR}/audio/mpg123 =20 ONLY_FOR_ARCHS=3D i386 sparc64 amd64 Index: net/asterisk-bristuff/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net/asterisk-bristuff/Makefile,v retrieving revision 1.63 diff -u -r1.63 Makefile --- net/asterisk-bristuff/Makefile 30 Nov 2006 18:24:51 -0000 1.63 +++ net/asterisk-bristuff/Makefile 6 Dec 2006 11:20:01 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D asterisk PORTVERSION=3D 1.2.13 -PORTREVISION=3D 2 +PORTREVISION=3D 3 CATEGORIES=3D net MASTER_SITES=3D http://ftp.digium.com/pub/asterisk/ \ http://ftp.digium.com/pub/asterisk/old-releases/ @@ -26,7 +26,7 @@ BUILD_DEPENDS=3D mpg123:${PORTSDIR}/audio/mpg123 LIB_DEPENDS=3D speex.3:${PORTSDIR}/audio/speex \ newt.51:${PORTSDIR}/devel/newt \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS=3D mpg123:${PORTSDIR}/audio/mpg123 =20 ONLY_FOR_ARCHS=3D i386 sparc64 amd64 Index: net/boinc-client/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net/boinc-client/Makefile,v retrieving revision 1.22 diff -u -r1.22 Makefile --- net/boinc-client/Makefile 2 Dec 2006 12:33:28 -0000 1.22 +++ net/boinc-client/Makefile 8 Dec 2006 14:59:13 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D boinc-client PORTVERSION=3D 5.4.9 +PORTREVISION=3D 1 CATEGORIES=3D net MASTER_SITES=3D ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR=3D pav Index: net/nepenthes/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net/nepenthes/Makefile,v retrieving revision 1.8 diff -u -r1.8 Makefile --- net/nepenthes/Makefile 27 Nov 2006 01:19:55 -0000 1.8 +++ net/nepenthes/Makefile 6 Dec 2006 11:19:48 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D nepenthes PORTVERSION=3D 0.1.7 -PORTREVISION=3D 2 +PORTREVISION=3D 3 CATEGORIES=3D net MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D nepenthes @@ -15,7 +15,7 @@ MAINTAINER=3D systemoperator@gmail.com COMMENT=3D Determine the malware activity on a network =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ magic.1:${PORTSDIR}/sysutils/file \ pcre.0:${PORTSDIR}/devel/pcre \ adns.1:${PORTSDIR}/dns/adns Index: net/nepenthes/files/patch-modules-download-curl-download-curl.cpp =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: net/nepenthes/files/patch-modules-download-curl-download-curl.cpp diff -N net/nepenthes/files/patch-modules-download-curl-download-curl.cpp --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ net/nepenthes/files/patch-modules-download-curl-download-curl.cpp 5 Dec= 2006 13:54:33 -0000 @@ -0,0 +1,12 @@ +--- modules/download-curl/download-curl.cpp.orig Tue Dec 5 15:53:24 2006 ++++ modules/download-curl/download-curl.cpp Tue Dec 5 15:54:09 2006 +@@ -230,7 +230,9 @@ + down->getDownloadUrl()->getPort(), + down->getDownloadUrl()->getPath().c_str()); + // string auth =3D down->getDownloadUrl()->getUser() + ":" + down-= >getDownloadUrl()->getPass(); ++#if LIBCURL_VERSION_NUM < 0x071000 + curl_easy_setopt(pCurlHandle, CURLOPT_SOURCE_USERPWD,(char *)down->getD= ownloadUrl()->getAuth().c_str()); ++#endif + curl_easy_setopt(pCurlHandle, CURLOPT_USERPWD,(char *)down->getDownload= Url()->getAuth().c_str()); + curl_easy_setopt(pCurlHandle, CURLOPT_URL , url); + curl_easy_setopt(pCurlHandle, CURLOPT_FTP_RESPONSE_TIMEOUT, 120); // 2 = min ftp timeout Index: net/wmlj/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/net/wmlj/Makefile,v retrieving revision 1.14 diff -u -r1.14 Makefile --- net/wmlj/Makefile 7 Nov 2006 15:37:04 -0000 1.14 +++ net/wmlj/Makefile 6 Dec 2006 11:19:53 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D wmlj PORTVERSION=3D 0.4.0 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D net MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -15,7 +15,7 @@ MAINTAINER=3D laszlof@FreeBSD.org COMMENT=3D A dockapp that monitors your friends list at LiveJournal.com =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 GNU_CONFIGURE=3D yes USE_GNOME=3D gtk12 Index: polish/sms2/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/polish/sms2/Makefile,v retrieving revision 1.18 diff -u -r1.18 Makefile --- polish/sms2/Makefile 8 Aug 2005 04:16:53 -0000 1.18 +++ polish/sms2/Makefile 6 Dec 2006 11:20:08 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D sms PORTVERSION=3D 2.0.3 +PORTREVISION=3D 1 CATEGORIES=3D polish MASTER_SITES=3D http://ceti.pl/~miki/komputery/download/sms/ \ http://radioemiter.pl/~mjd/slackware/sms2/ \ @@ -16,7 +17,7 @@ MAINTAINER=3D pyzmen@kam.pl COMMENT=3D Send SMS to cellular phones in Poland (Idea, ERA, Plus) =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ pcre.0:${PORTSDIR}/devel/pcre \ gdbm.3:${PORTSDIR}/databases/gdbm \ pcre\\+\\+.0:${PORTSDIR}/devel/pcre++ Index: print/foomatic-db/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/print/foomatic-db/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- print/foomatic-db/Makefile 6 Nov 2006 16:39:53 -0000 1.21 +++ print/foomatic-db/Makefile 6 Dec 2006 11:20:17 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D db PORTVERSION=3D 20061031 +PORTREVISION=3D 1 CATEGORIES=3D print MASTER_SITES=3D ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR=3D acm/foomatic @@ -18,7 +19,7 @@ COMMENT=3D Foomatic database =20 LIB_DEPENDS=3D xml2.5:${PORTSDIR}/textproc/libxml2 \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 USE_GMAKE=3D yes USE_PERL5=3D yes Index: security/authforce/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/security/authforce/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- security/authforce/Makefile 4 Dec 2005 10:58:18 -0000 1.11 +++ security/authforce/Makefile 6 Dec 2006 11:20:22 -0000 @@ -7,14 +7,14 @@ =20 PORTNAME=3D authforce PORTVERSION=3D 0.9.6 -PORTREVISION=3D 4 +PORTREVISION=3D 5 CATEGORIES=3D security www MASTER_SITES=3D http://www.divineinvasion.net/authforce/ =20 MAINTAINER=3D ache@FreeBSD.org COMMENT=3D HTTP authentication brute forcer =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_BZIP2=3D yes USE_GETOPT_LONG=3Dyes Index: security/authforce/files/patch-ae =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: security/authforce/files/patch-ae diff -N security/authforce/files/patch-ae --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ security/authforce/files/patch-ae 5 Dec 2006 14:06:52 -0000 @@ -0,0 +1,12 @@ +--- src/http.c.orig Tue Dec 5 16:06:36 2006 ++++ src/http.c Tue Dec 5 16:06:24 2006 +@@ -68,7 +68,9 @@ + curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1); + curl_easy_setopt(curl, CURLOPT_USERPWD, authstring); + curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1); ++#if LIBCURL_VERSION_NUM < 0x071000 + curl_easy_setopt(curl, CURLOPT_MUTE, 1); ++#endif + curl_easy_setopt(curl, CURLOPT_NOPROGRESS, 1); + curl_easy_setopt(curl, CURLOPT_USERAGENT, user_agent); + if (strcmp(proxy, "undef")) Index: security/clamav/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/security/clamav/Makefile,v retrieving revision 1.84 diff -u -r1.84 Makefile --- security/clamav/Makefile 6 Nov 2006 11:03:43 -0000 1.84 +++ security/clamav/Makefile 6 Dec 2006 11:20:29 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D clamav PORTVERSION=3D 0.88.6 +PORTREVISION=3D 1 CATEGORIES=3D security MASTER_SITES=3D SF =20 @@ -115,7 +116,7 @@ .endif =20 .if defined(WITH_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+=3D --with-libcurl .else CONFIGURE_ARGS+=3D --without-libcurl Index: security/gnupg/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/security/gnupg/Makefile,v retrieving revision 1.91 diff -u -r1.91 Makefile --- security/gnupg/Makefile 7 Dec 2006 00:34:16 -0000 1.91 +++ security/gnupg/Makefile 8 Dec 2006 17:12:57 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D gnupg PORTVERSION=3D 1.4.6 +PORTREVISION=3D 1 CATEGORIES=3D security MASTER_SITES=3D ${MASTER_SITE_GNUPG} MASTER_SITE_SUBDIR=3D gnupg Index: security/osslsigncode/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/security/osslsigncode/Makefile,v retrieving revision 1.1 diff -u -r1.1 Makefile --- security/osslsigncode/Makefile 11 Nov 2006 13:55:05 -0000 1.1 +++ security/osslsigncode/Makefile 6 Dec 2006 11:20:34 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D osslsigncode PORTVERSION=3D 1.2 +PORTREVISION=3D 1 CATEGORIES=3D security devel MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -24,7 +25,7 @@ USE_OPENSSL=3D yes =20 .if !defined(WITHOUT_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl .endif =20 .include Index: sysutils/fusefs-curlftpfs/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/sysutils/fusefs-curlftpfs/Makefile,v retrieving revision 1.4 diff -u -r1.4 Makefile --- sysutils/fusefs-curlftpfs/Makefile 30 Jul 2006 22:46:02 -0000 1.4 +++ sysutils/fusefs-curlftpfs/Makefile 6 Dec 2006 11:20:45 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D curlftpfs PORTVERSION=3D 0.8 +PORTREVISION=3D 1 CATEGORIES=3D sysutils MASTER_SITES=3D SF PKGNAMEPREFIX=3D fusefs- @@ -15,7 +16,7 @@ COMMENT=3D Mount remote ftp directories =20 LIB_DEPENDS=3D fuse.2:${PORTSDIR}/sysutils/fusefs-libs \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl RUN_DEPENDS=3D ${LOCALBASE}/modules/fuse.ko:${PORTSDIR}/sysutils/fusefs-km= od =20 GNU_CONFIGURE=3D yes Index: sysutils/heartbeat/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/sysutils/heartbeat/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- sysutils/heartbeat/Makefile 13 Nov 2006 12:33:03 -0000 1.9 +++ sysutils/heartbeat/Makefile 6 Dec 2006 11:20:39 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D heartbeat PORTVERSION=3D 1.2.5 -PORTREVISION=3D 1 +PORTREVISION=3D 2 CATEGORIES=3D sysutils MASTER_SITES=3D http://linux-ha.org/download/ =20 @@ -15,7 +15,7 @@ COMMENT=3D Subsystem for High-Availability Clustering =20 BUILD_DEPENDS=3D libnet*>=3D1.1.2,1:${PORTSDIR}/net/libnet -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl \ +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl \ xml2.5:${PORTSDIR}/textproc/libxml2 =20 GNU_CONFIGURE=3D yes Index: textproc/libnxml/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/textproc/libnxml/Makefile,v retrieving revision 1.7 diff -u -r1.7 Makefile --- textproc/libnxml/Makefile 8 Nov 2006 23:36:25 -0000 1.7 +++ textproc/libnxml/Makefile 6 Dec 2006 11:20:58 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D libnxml PORTVERSION=3D 0.15 +PORTREVISION=3D 1 CATEGORIES=3D textproc devel MASTER_SITES=3D http://www2.autistici.org/bakunin/libnxml/ \ http://nivi.interfree.it/distfiles/${PORTNAME}/${PORTVERSION}/ @@ -14,7 +15,7 @@ MAINTAINER=3D nivit@email.it COMMENT=3D A C library for writing XML 1.0/1.1 files or streams =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 GNU_CONFIGURE=3D yes CONFIGURE_ENV+=3D CFLAGS=3D"${CFLAGS} -I/${LOCALBASE}/include" LDFLAGS=3D"= ${LDFLAGS} -L${LOCALBASE}/lib" Index: textproc/raptor/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/textproc/raptor/Makefile,v retrieving revision 1.38 diff -u -r1.38 Makefile --- textproc/raptor/Makefile 28 Jul 2006 13:26:02 -0000 1.38 +++ textproc/raptor/Makefile 6 Dec 2006 11:20:51 -0000 @@ -8,7 +8,7 @@ =20 PORTNAME=3D raptor PORTVERSION=3D 1.4.9 -#PORTREVISION=3D 1 +PORTREVISION=3D 1 CATEGORIES=3D textproc MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} \ http://download.librdf.org/source/ @@ -17,7 +17,7 @@ MAINTAINER=3D chuck@pkix.net COMMENT=3D RDF Parser Toolkit for Redland =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GNOME=3D gnomehack gnometarget libxml2 USE_GETOPT_LONG=3D yes Index: www/osb-nrcit/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/www/osb-nrcit/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- www/osb-nrcit/Makefile 15 Aug 2006 01:11:32 -0000 1.10 +++ www/osb-nrcit/Makefile 6 Dec 2006 11:21:15 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D osb-nrcit PORTVERSION=3D 0.5.0 -PORTREVISION=3D 2 +PORTREVISION=3D 3 CATEGORIES=3D www MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D gtk-webcore @@ -16,7 +16,7 @@ COMMENT=3D Embeddable web component using KJS, KHTML and KWIQ =20 LIB_DEPENDS=3D nrcore.0:${PORTSDIR}/www/osb-nrcore \ - curl.3:${PORTSDIR}/ftp/curl + curl.4:${PORTSDIR}/ftp/curl =20 USE_GNOME=3D gtk20 gnomehack USE_LDCONFIG=3D yes Index: www/p5-WWW-Curl/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/www/p5-WWW-Curl/Makefile,v retrieving revision 1.5 diff -u -r1.5 Makefile --- www/p5-WWW-Curl/Makefile 13 Jul 2006 14:22:26 -0000 1.5 +++ www/p5-WWW-Curl/Makefile 6 Dec 2006 11:21:21 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D WWW-Curl PORTVERSION=3D 3.02 +PORTREVISION=3D 1 CATEGORIES=3D www ftp perl5 MASTER_SITES=3D ${MASTER_SITE_PERL_CPAN} \ http://curl.haxx.se/libcurl/perl/ @@ -16,7 +17,7 @@ MAINTAINER=3D roam@FreeBSD.org COMMENT=3D Perl binding interface for curl =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl:install +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl:install =20 PERL_CONFIGURE=3D yes =20 Index: www/pecl-pecl_http/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/www/pecl-pecl_http/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- www/pecl-pecl_http/Makefile 31 Oct 2006 06:40:04 -0000 1.11 +++ www/pecl-pecl_http/Makefile 8 Dec 2006 17:19:29 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D pecl_http DISTVERSION=3D 1.3.3 +PORTREVISION=3D 1 CATEGORIES=3D www pear MASTER_SITES=3D http://pecl.php.net/get/ PKGNAMEPREFIX=3D pecl- @@ -32,7 +33,7 @@ .include =20 .if defined(WITH_CURL) -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl CONFIGURE_ARGS+=3D--with-http-curl-requests=3D${LOCALBASE} .else CONFIGURE_ARGS+=3D--without-http-curl-requests Index: www/wsdlpull/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/www/wsdlpull/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- www/wsdlpull/Makefile 1 Dec 2006 23:48:07 -0000 1.11 +++ www/wsdlpull/Makefile 6 Dec 2006 11:21:28 -0000 @@ -8,6 +8,7 @@ =20 PORTNAME=3D wsdlpull PORTVERSION=3D 1.12 +PORTREVISION=3D 1 CATEGORIES=3D www MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR=3D ${PORTNAME} @@ -15,7 +16,7 @@ MAINTAINER=3D ports@FreeBSD.org COMMENT=3D C++ WSDL Parser =20 -LIB_DEPENDS=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS=3D curl.4:${PORTSDIR}/ftp/curl =20 USE_GNOME=3D gnometarget USE_GCC=3D 3.4+ Index: www/xshttpd-devel/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/www/xshttpd-devel/Makefile,v retrieving revision 1.17 diff -u -r1.17 Makefile --- www/xshttpd-devel/Makefile 27 Nov 2006 18:05:38 -0000 1.17 +++ www/xshttpd-devel/Makefile 8 Dec 2006 14:59:21 -0000 @@ -7,6 +7,7 @@ =20 PORTNAME=3D xshttpd DISTVERSION=3D 3.4b20 +PORTREVISION=3D 1 CATEGORIES=3D www ipv6 MASTER_SITES=3D ftp://ftp.stack.nl/pub/xs-httpd/release/ \ ftp://mud.stack.nl/pub/xs-httpd/release/ Index: x11/ecore/Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/x11/ecore/Makefile,v retrieving revision 1.34 diff -u -r1.34 Makefile --- x11/ecore/Makefile 19 Oct 2006 13:30:29 -0000 1.34 +++ x11/ecore/Makefile 6 Dec 2006 11:21:32 -0000 @@ -7,7 +7,7 @@ =20 PORTNAME=3D ecore PORTVERSION=3D 20060926 -PORTREVISION=3D 1 +PORTREVISION=3D 2 PORTEPOCH=3D 1 CATEGORIES=3D x11 MASTER_SITES=3D http://sunner.elcomnet.ru/~stas/ @@ -55,7 +55,7 @@ =20 .if !defined(WITHOUT_CURL) CONFIGURE_ARGS+=3D --enable-curl -LIB_DEPENDS+=3D curl.3:${PORTSDIR}/ftp/curl +LIB_DEPENDS+=3D curl.4:${PORTSDIR}/ftp/curl PLIST_SUB+=3D CURL=3D"" .else CONFIGURE_ARGS+=3D --disable-curl Index: x11/ecore/pkg-plist =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/x11/ecore/pkg-plist,v retrieving revision 1.6 diff -u -r1.6 pkg-plist --- x11/ecore/pkg-plist 8 Oct 2006 13:48:36 -0000 1.6 +++ x11/ecore/pkg-plist 4 Dec 2006 12:36:55 -0000 @@ -59,7 +59,7 @@ lib/libecore_txt.la lib/libecore_txt.so lib/libecore_txt.so.1 -lib/libecore_x.a +%%X11%%lib/libecore_x.a %%X11%%lib/libecore_x.la %%X11%%lib/libecore_x.so %%X11%%lib/libecore_x.so.1 --XWOWbaMNXpFDWE00 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="curl-16-02.patch.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQBFeaYE7Ri2jRYZRVMRAvWPAKClsmQdQhsbsXmyGceYHjY96Id1kwCfcr1s 06crNYw/4evDYbmp0+VEOWI= =k0OJ -----END PGP SIGNATURE----- --XWOWbaMNXpFDWE00-- --W5WqUoFLvi1M7tJE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFFeaen7Ri2jRYZRVMRAvKCAJ44mkzoCSkyHQSUaKA3s7H/8AWqVwCePjQT 5ZTMkQmmonpqQvHaNcOT+NU= =zF4u -----END PGP SIGNATURE----- --W5WqUoFLvi1M7tJE-- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 18:24:09 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5196416A4CE for ; Fri, 8 Dec 2006 18:24:09 +0000 (UTC) (envelope-from roam@ringlet.net) Received: from straylight.ringlet.net (nat114.cnsys.bg [85.95.80.114]) by mx1.FreeBSD.org (Postfix) with SMTP id 58F5143CAA for ; Fri, 8 Dec 2006 18:23:09 +0000 (GMT) (envelope-from roam@ringlet.net) Received: (qmail 14864 invoked by uid 1000); 8 Dec 2006 18:24:25 -0000 Date: Fri, 8 Dec 2006 20:24:25 +0200 From: Peter Pentchev To: ports@FreeBSD.org Message-ID: <20061208182425.GB53807@straylight.m.ringlet.net> Mail-Followup-To: ports@FreeBSD.org References: <20061206125657.GB1814@straylight.m.ringlet.net> <20061208175759.GA53807@straylight.m.ringlet.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lkTb+7nhmha7W+c3" Content-Disposition: inline In-Reply-To: <20061208175759.GA53807@straylight.m.ringlet.net> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: Subject: Re: [CFR] ftp/curl update and API incompatibility X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 18:24:09 -0000 --lkTb+7nhmha7W+c3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Dec 08, 2006 at 07:57:59PM +0200, Peter Pentchev wrote: > On Wed, Dec 06, 2006 at 02:56:57PM +0200, Peter Pentchev wrote: > > Hi, > >=20 > > I'm writing to you all because you are listed as maintainers of ports > > that depend directly on ftp/curl. Attached is a patch that updates > > ftp/curl to version 7.16.0; however, this update might need some testin= g. >=20 > After some comments from some of the maintainers, here's an updated > version of the patch, which also takes care of the ports that do not > specify a shared library version in the curl dependency (i.e. they depend > on "curl", not "curl.3"). This patch also: > - bumps the PORTREVISION of the ftp/php4-curl, ftp/php5-curl, and > www/pecl-pecl_http ports; [snip] And of course, as Alex Dupre kindly pointed out, the PORTREVISION on php5-curl should be 1, not 2. Updated curl-16-03.patch available at http://people.FreeBSD.org/~roam/patches/curl/ G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@cnsys.bg 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 If this sentence didn't exist, somebody would have invented it. --lkTb+7nhmha7W+c3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFFea3Z7Ri2jRYZRVMRAjMXAJwJkh0mMQ2Q8QGVuYuYSeDLWgGqfwCgqSiw yaxfZTtmPHxbRLK3TstztPY= =0rjE -----END PGP SIGNATURE----- --lkTb+7nhmha7W+c3-- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 19:08:19 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 72BCA16A407 for ; Fri, 8 Dec 2006 19:08:19 +0000 (UTC) (envelope-from m.kip@leghen.nl) Received: from skylla.alkeninternet.nl (skylla.alkeninternet.nl [80.84.245.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFEE243CA2 for ; Fri, 8 Dec 2006 19:07:19 +0000 (GMT) (envelope-from m.kip@leghen.nl) Received: from i199080.upc-i.chello.nl ([62.195.199.80] helo=[192.168.2.111]) by skylla.alkeninternet.nl with esmtpa (Exim 4.63 (FreeBSD)) (envelope-from ) id 1Gsl56-0006W7-VS; Fri, 08 Dec 2006 20:08:25 +0100 User-Agent: Microsoft-Entourage/11.2.5.060620 Date: Fri, 08 Dec 2006 20:08:12 +0100 From: Marc Kip To: Message-ID: Thread-Topic: FreeBSD Port: ataidle-0.9 Thread-Index: Acca/DSac0yVI4bvEduWXAANk62leA== Mime-version: 1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - skylla.alkeninternet.nl X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [26 6] X-AntiAbuse: Sender Address Domain - leghen.nl X-Source: X-Source-Args: X-Source-Dir: Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: ports@FreeBSD.org Subject: FreeBSD Port: ataidle-0.9 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 19:08:19 -0000 Hi Bruce, I recently downloaded and installed ataidle (version ataidle-0.9 for freebsd). Unfortunately it refused to work. After some digging around on internet I found the following post (http://www.archivesat.com/FreeBSD_hardware/thread435791.htm). Fortunately I do have a FreeNAS system running so I took ataidle from that system and it worked. So can you make a new binary build for freebsd somewhere in the future? Thanks in advance, Marc -- Marc Kip m.kip@leghen.nl 040-2845257 From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 20:07:42 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 39D9B16A407 for ; Fri, 8 Dec 2006 20:07:42 +0000 (UTC) (envelope-from roam@ringlet.net) Received: from straylight.ringlet.net (nat114.cnsys.bg [85.95.80.114]) by mx1.FreeBSD.org (Postfix) with SMTP id 7A38843CA2 for ; Fri, 8 Dec 2006 20:06:41 +0000 (GMT) (envelope-from roam@ringlet.net) Received: (qmail 16696 invoked by uid 1000); 8 Dec 2006 20:07:55 -0000 Date: Fri, 8 Dec 2006 22:07:55 +0200 From: Peter Pentchev To: LI Xin Message-ID: <20061208200755.GA16586@straylight.m.ringlet.net> Mail-Followup-To: LI Xin , "Marc G. Fournier" , freebsd@orchid.homeunix.org, ports@freebsd.org, dd@freebsd.org References: <4576A4F6.7070407@orchid.homeunix.org> <8194EEE8E22BA574C20015C8@ganymede.hub.org> <4576D15A.2070101@delphij.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="3V7upXqbjpZ4EhLz" Content-Disposition: inline In-Reply-To: <4576D15A.2070101@delphij.net> User-Agent: Mutt/1.5.13 (2006-08-11) Cc: "Marc G. Fournier" , freebsd@orchid.homeunix.org, ports@freebsd.org, dd@freebsd.org Subject: Re: bsdstats 5.3 on 6-STABLE and netcat weirdness X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 20:07:42 -0000 --3V7upXqbjpZ4EhLz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Dec 06, 2006 at 10:19:06PM +0800, LI Xin wrote: > Marc G. Fournier wrote: > >=20 > > 'k, I don't know how to fix this one ... I thought about doing: > >=20 > > .if ${OSVERSION} <=3D 492101 > > RUN_DEPENDS=3D nc:${PORTSDIR}/net/netcat > > .endif > >=20 > > not sure which version brought in nc, but 492101 is the last of the 4.x= series=20 > > ... but it portlint fails miserably if I don't put bsd.port.pre.mk befo= re it,=20 > > but also fails if I do: > >=20 > > WARN: Makefile: no MASTER_SITES found. is it ok? > > WARN: Makefile: "RUN_DEPENDS" has to appear earlier. > > 0 fatal errors and 2 warnings found. > >=20 > > Is there a better way of doing this ... ? >=20 > I think you want something like: >=20 > .if ${OSVERSION} < 503102 || (${OSVERSION} >=3D 600000 && ${OSVERSION} < > 600010) >=20 > instead of just considering 492101. That's a good suggestion. Mark, as to the portlint problem - well, portlint cannot really be expected to handle each and every corner case in a port Makefile :) It is doing a wonderful job as it is, but every now and then you have to make a choice between a working port and a clean port ;) To make the OSVERSION check work, you do indeed need a bsd.port.pre.mk inclusion before it. Then... just ignore the portlint warnings. And... thanks for a great utility! :) G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@cnsys.bg roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 I am the meaning of this sentence. --3V7upXqbjpZ4EhLz Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.6 (FreeBSD) iD8DBQFFecYb7Ri2jRYZRVMRAoF8AJ9tUgBm/Jy4LB+DmTBugCf1YsrImwCbBmlZ e1ZKb42lIjNAuda1v9Kn2WM= =bk9E -----END PGP SIGNATURE----- --3V7upXqbjpZ4EhLz-- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 20:23:11 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 677EA16A403 for ; Fri, 8 Dec 2006 20:23:11 +0000 (UTC) (envelope-from karel@lovetemple.net) Received: from mta1.siol.net (mta1.siol.net [193.189.160.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 249A343CA2 for ; Fri, 8 Dec 2006 20:22:08 +0000 (GMT) (envelope-from karel@lovetemple.net) Received: from edge2.siol.net ([10.10.10.211]) by mta1.siol.net with ESMTP id <20061208202306.EDGX15340.mta1.siol.net@edge2.siol.net>; Fri, 8 Dec 2006 21:23:06 +0100 Received: from [192.168.0.149] (really [86.61.30.35]) by edge2.siol.net with ESMTP id <20061208202301.TFPH1846.edge2.siol.net@[192.168.0.149]>; Fri, 8 Dec 2006 21:23:01 +0100 Message-ID: <4579C9A2.3030300@lovetemple.net> Date: Fri, 08 Dec 2006 21:22:58 +0100 From: Karel Miklav User-Agent: Thunderbird 1.5.0.8 (X11/20061111) MIME-Version: 1.0 To: Petr Holub References: <004301c71806$c6d53380$c8a423c0@KLOBOUCEK> In-Reply-To: <004301c71806$c6d53380$c8a423c0@KLOBOUCEK> Content-Type: multipart/mixed; boundary="------------040103030808050003010301" Cc: ports@freebsd.org Subject: Re: lang/gnat-gcc41 build error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 20:23:11 -0000 This is a multi-part message in MIME format. --------------040103030808050003010301 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Petr, if you still have interest in building gnat-gcc41 please try the attached ports. It is no longer possible to use your own GNAT for bootstrapping; the procedure starts with downloading binary version of GNAT 3.15p, which builds 3.4, which builds 4.1. You may not like that very much, but I'd like you to know that my priority is simplicity and stability and that I am grateful for your reports which helped me in that direction. -- Regards, Karel Miklav --------------040103030808050003010301 Content-Type: application/octet-stream; name="gnat-gcc34.tbz" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="gnat-gcc34.tbz" QlpoOTFBWSZTWRZKCNIADRL/kfy0AEB+///////f///v3/4EAAQAABhgDp88Y2YdWHJxM4A5 q6LsZo2tLspzuubtzWxYbSxq+ttsNCBTBGmp5MjUn6E9CE8TSntTJoeqe0KbEmmNI0PKHoNJ 6mQShAQ0aEyhpkU2iP1QeiaaBk00BkBoAGhoAGhwANAaBoAGmmQAGjTIANGTBAYgAASIhGqe gTJk0mNVP1T8gaaT1T0jJ7VNPU0GIeo9IBoAMgAySp+qflTNBGIG0mEGCZAAGmEABgRoADEw SKENATQnqNNCnptI1PU9Rpk2o2oaBoAGQYTI0zUZB4wCfj9H/eb+PBV5utsFyE8gHcNjSE70 JIoaEgfJDkhyzhKa22wGAGAESKYm0DbTEIxEENDY0CV0Lva9I0jChCpEQA23DaTbhjCdHl8l AsN2IiGoTgG22OFEA4S/fMm2d01GwbTEVZxOHLIF6t3+e7v9P6BIP3IYgzmrt3grwgd2IFuN 4BiiblMCc+3vxq+Rr0WOJad1y3bZa1LBqMYKzG/IFqsHpfs1BgPL3W7PPjcvMymb6nAMrleW nc/BzmhmHbqwuYesyqPVCzboa0COZKLhvsiiaD20jlYb5lZV6Onrx6vTdYU5oc09WG1dDByZ dm2up2gDoA6wMDcAOcC6VAPfCHBly68kMsBySctI0HYXZ9YZ+IYHHisPma2Pm8VYeQf7+V+9 hHcGGDfS73nBsNhXWd3h2IiGiPH5gzQTwnmHcNKyKMyGqie3w1gsOSMi8f+8qZDbMi9q6K33 9nfUyOHGJRfHZjiGwIUAqEvYPEQGaDIAnRKPU17tqNMyghjctQj6rwZGK4VqPG8LrcJlJCNm INRLDRkMg96liq44TmXm8mbmfYXgOCbxQ7j2O5NBQ9niMQkJDAhWHCd2zdw3Q8Dzy8K3R5oQ WxYtwu2NjW1c8erd3887E8/Dn6lILdpnq9setUgk5ekzXbmFLcD8PMbKglk9iXr4NFp51g7p R3GouyPBjoaYyh09S10s+D5qRgTlbChuboVywWHHa5eYsby6dqPdCxsH+zp0To5aGma5+Owa e+dxwyDkr9XmhHmfwPwG38UEMgiIbj44k/5TzjS4DRYaSj6HArkDHBQMWQpgo7ptlF1R2w7W hMpUYz/RMyDGmwPwESmE2IjFoigz2pzXadFocHs96EjEMDG3ypfV6GjrjSRjeWWvgvgAq0Cu BgAyT5NcDZiJGK70hEbeHk/nutpL3TuIISrly+x2ch9U4xjGZl02ue/5vcOPF3V6TloU7ooe g8hZhnZWPUEY4jHQu1RE38QbKmFg+7J1YQDKwvuZHWfYhA6Wm11NZrXHE1ZL0ucxhGEJe+2+ a0PjUj+m+3dWnHgpXZF7Cwt4ugEV3kevGRMLK/VJekAJJ1oRj2aAQnWTvRNBQGhrYhdWDIGF FPnHKJ91hWBlXorEjcGcquI6zt5UdxVCVQOMhzmJBjcI2lYAi0HG/WEXD69JtaTnbVGvG0gn Ky0PB0q3GEjoc8c9JGSJc15+PSnGqZOKhkP0Bgai/gzKGcWXdaAHy8qiIW6KZAQqOXsAeIBg ec4fOPp7dABMVYGEQGKAA80M8YYV9rg7egCVIhlREYzs+UupDl1hGk4gc+NACZweUkcjAeKW H1ZDUzizdhXOB914oLrlhO+aAY65vIHemTm9ZcVw5mJuUSKIuWX4ui7p722B40wwfnRbLZg/ Tt8g7HuZyxQczCThfy3jWWXydvxA3Q24MyBG2dQLrcgLuNn/PJsMYXMZwvpHvs0xRTegMBtd x0Wdgs2LsGjZT2309Gss12dewh10yLLYJOIA2rqgYdSONqY1ydJYljbCVvDN0K6KyhhJMpXp 44vAgiTpGt2OGIG7KWb34vMlhCpSzDEVEmxj2BXmMefoatESlas5XFWANllji2Sxsp1owtvi +VCwio2atGUieEtZq9Wzzdrxytk1Nj3awwmuyy4qBF6trq1r2m6e+/wR82cUjYmKkbE+LVpu j4ZvScfWbAYGepL5gXukahyisrT53/HBEPj6Z5e/kuetHz74YgF/RkG+IFFbjZvuOhH0DXha ncWdGm7rln4fmDolWeUneL3gvAy++H0IQ5CJhe4jB7ZjhFYEhWNAoHRcWRAT9JAXR9BrwQKO GhhSHqkh9HrkgoLqrYJdBkB5JDs5cfD3E4aj6VfMM5CCPvWloZdYeg2kYEhcf5M6s+3DmRlq 3vIKkUw2oxVyG3ZFJj4tNucYzG8gmLLvhqU9BLZbnWv25g0lNmOfTIstGGaYUGMHT6lExtZY j07hUSQtvcgcFelFHfwaoq9UQIBQZ92NjN4ULB3a+OWq2qO8Vlpclij0kG8SWoFhsP6IS3Da RsDBFVSrMijSKM0HHb/Y9DY9G51nu2IK2CRDfI4UqQE2WJGnQhq1YoiNNvj3VPaBZCfU4iuJ djorzRlVfeYIL9YC3+K0REZQF6QhrIoe7vVoC8BiXe3FC/ftSDPUasmJknQCklkEdKvzlDRp 2zoM3B8ShQdmUUGfyfGGdFzYy2Ot3nP6V0Nd0mRgXGouGg2hXjhWQmnppJRqooRhY1jRrVya ZlgcjIJRyJnInTiBJupyS6UXI3l70JbDbjjOkZxRsekRbciw1hR4DbYshG/ElIjbyXpJqJxZ mLNV2C3MDhrNCFlSMqiLCw0ehJLiuJ13QgsJMHmSRypS0DfT2olTm06Z5t+2LMy0GcMxVlks c4FoRUZ9YSsxZIQ9VoRJMczYhJyy5Mtpns4W0NQTCxmW9B45wYOxZHOQiKKQg/NQMiGttpb5 RIfV4s8IlOCLCJpOFQElpFpSNQVNRgLdyFHuV2GWjBc3DZtEGfiRCadJw1j5QAqsGQSNV9Gl yTSSP38nyqHESNgbtxWtOQR3pG2PmHZQjgHs0QJrhhSVw1W0SJbUoWDwCiAokZ3Sucr7/rXu Ue1jD1/qp8iQxiJmOsCy3sU/P8Phf2xHtTqg1m+B6/6KPqg9nXxgYwJTJkokjilMf3EfPQv3 jgoNDIr23d2qpBGkdFmqyMJffhbMMUWPAIhYlICpgnm9MF8P2lAvLUdGMFw4l8gRcMGmadlV MqAGgp3poiHw9tN+HFs3W1sb7nPgn60pJvnUWT9GSrxAKaNZkQClUyu8PnUQgEqecIVj6TKx Rn8c5kpqrxeKA2RmZgiBIYCPrYgp/WAjmpIJ5te3IRr1UyworaSN2bx33oiAWooIWaMgJonf S3rYadXqVPS9HmTLVpZmbnIlI+HMZN+8Z2/R2Tg1IaqVj3TlJcE5ezkP0TaqM4kYJw7xDG3b ZSuRttff5qHl57Yth7FVDYZmHbxxY3UbupURR6fmXkJW0e5PRSBFNac0zJk9hWJlZPuVNQhV nfXJ2LxcM6cerqefMNeSF9nnZecb9eHUVrXkphi5jJl5meeotCuAmq1O9xi1JprZ2OLWzg5q KWs0M7K08vAlKUu0YZS57LZSsJrbe2BaoXwRriiZuDINEYrUSm3jyiIwLlGZ3IcUFgzBmBGm BOpkbfbOS6A8pnnIR2TjR6yYfPhe5bC2AacfFEONKbebc6aSvcC1nd2fTVs7oUfQRqFHmtmU aNV/GgXIaDQBy2M1xUxtJEqAapToxx5vO2ySm7I3YpGbNykrg1PZiRDVwazpttDKNAn/WY9P 2lLVUFgdWwNWoESFnXy2cercl8VQrAuSlp7Hcha3k8jboIhRUFWrMa10E4iILDm4SSSNp3op +QaCjVH77O+lCxSGLp379sxyiQ2JNjfUritmFkxxkTO78nAIiB2QGGUbCloMwInbGOSMISVU yj0Z9bHiVtW1bblodMEA8zkuyGlZUW1RrkCJardq3Aog8ZHNPIQS2Rt72oJzVGxdjxQ2ZVyx tRkHFb+OWmetQ2ioleywyKGIufawqnIFjrQ/LAyzQZnA9kiOEWnoIjnT5wO2BmoDLWD8bE9I PwIv01q8tiVNfPWxBI3LJw8M3g9gfEoyudVdxxWyZAiBeoNJiw11llT2RqZQdmcHCQrOgTvo RbXaoIK2lBECvDHOCaykzFQqVCzQnWGEF605rQAVPnMKURSYbnipUHT1AOi3qpUio92LV5A0 dDMfnr9bXKcHh8SiS0Y02FaiRa6+bjEE76WLhTqDGpkkcbKhrBIerYyJ8k4nC000SW/oWkBT f3QuZC8jE5jd1QOeqJdKQDEjynE1R5ZqL4+wO2J1qtgOuIkbsVaiE7AMOb1sjHDGMGUjGqra oxBVUSUldg0t8oUtlU42QKwwopU82/Ppz9apjiu7AypwzWFi9JaKNkk9nOyCuJ1GdUSxG0Yh FgaXDaRAyliG7xS1I2x9LwZ5DKJ8d9+uCsmXLQdybpPDoGUroDVTi6OzKuMEIorISmB0BCqI tuuiiqIgwN6+zIu5r88mGdvK6mTHLEMd7JKRslswCRgzEZQS2As/nNVIIhAIkEufkijkQZ9h sflESddLHiRDSEmetpLiFQEEdD4lkhHWvS6Ax6oIrLJmOANIBdiobaIkiYeLHcdgPusPBdZx YuWxPIBf4dZld4ScvXVzh8Hk7KzuPy9FGDSp7n00EjrOe4Um67UTg0tgW2AWY/oSCAEFwj+a mMRuZlmVrhfiFaEhbq7QHmgZcslTjXhylJEu+M689QYbpNhUrbk0ZK05xv8HXmrySMpM+iup IvIQovYON0zkI4sFTDKJssno15VLfnEIxC7kinChICyUEaQ= --------------040103030808050003010301 Content-Type: application/octet-stream; name="gnat-gcc41.tbz" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="gnat-gcc41.tbz" QlpoOTFBWSZTWU8skbQADCn/mt6wAEBe///////f////3/4EAAABAEAAGGANnvFmIOsfbfZ3 V151bPLlUSu2zO1lsu9a9notYV1WUHQaEJoAmNRMJspgJqY0RNpp6GSeoGSbSekD0mjanqae oMMiBMFPSYmRpCanlD1ANNDEaMgA0AeoAAaAGpiNCJqAaAANNADQGQaAAAAAAACRERomk2lU /yZTJp6mKn4UymNNJtTQxpHqH6oMIGjI9T0AmgZKp6NTCBgTRiMhgJiZMjTTQaMJpgBoCYjC Akk0EaEyaNRoaIbVNNpJ6eiI9EPU09QyDeoT9UegPUjIyNPUWAAW0f2bLdVzL3z4HqCjcAI2 IQglN8kkiChJID7Iv6uwxw3pMANQF5LSbENIYJF6AhodIIEAYgjxDXrokgiIahKIcQ1DEzUw kcjIgagGEDaHCR83G5VHxsqm02UA3UXIUCIEMj8cx40GwSTejoGcVTcTCjFfgwKFUQwqsqEn 1hngBtH/Rv9yDgbhUj9lX0sYVdxy2T54AeB/xxS1LjSbZk8zy92Jo0r4312W8N+S89aPUYzs Tf8T3MDWBFQlieTQ8crxhvsiuxvBrX0eH6dk7ujLEu/5lx4xs0wd5kke0Ae4B32BYA8oE3jD yEIyJDh8Easkm3her6GyseU6Y9Hw753W3Dtyh91n4rR2haxzDisxAZlDqzX4+33W4iEGJfiF Mfz/mQgHTIQ5eLCC3hh35iLe+vQtyzNFJVLgY/RaQ3TisPluHOMCYgY+Lbwp/TykB1e7hzAH 7KdfaPHPJKNSsFxN1VlDaONla0E15hrnyPBhjKTAhQM4XWIDLlxIGYlYJpYqHw/xOuZ2GFib WhLgGHRNctpsXDNHV0NWdGmRVXbOuU3HYWV73X3lvG5HWUm63adJmyWAbf1EW5bvM3AkpwuV bVwmxqJCVcmr07wwSgElDu8r2O2vv7XvQkgm+Kjg3mRyOSfBbuKZ4RYJ8fMBB2ZmmL0sszJa LoG9eUmYVSgRbVdXdxIRKMuctZj4CXDBn3z2jS6Bp+iILDILBYNagmkVTYwk6iPWiK1bIqmM +omJYNNNqjR+skhdyiKYYPhaHB+nshIwC/DA99kWj5K6A/cl6vS0eYYkRkX4N5MYJItAVwMk kxFvH72/Z7cvDm7g2h8joGzZrIBfBnjcSYhhBgwYhH0EJyccYO1nfuiuyxg3UYMx0l7PO8tU F/5UE4mLbG6T3OjlGj17pDurz3eWQNTYM6AwBlmGAmqipRa5zkckaLeR0hZhX0KcsK4B4N5G Iyebx6Qi0qUqa15tFlS9vHWWAAmFdUWbwksEB57VgUmWMcgoBB9Zcz7nBgsEBETrnpGdYFJd PDbvYxS822ODSdcM/T8MvRsPaJo62NeZrbEiC1t6AhaHsxfim5zMyiy6mIJ1XXOV1lUNzfQd R8pKhCa09xHFBfJY5/IFDEu59QQyF4+sAG7IALlFQgAvMB6gGA9J6Tov9Xu3AGgWAmIZkpAl IgUgDenlmDaS4gNvPQsgA14DBFDBcyWM+aZXsoTn58wlUASuxjmAKeOhRoJayhBIEAaco/pu M9VGgy2fNob4mMEGF1MBcSocQA8M8HRO9Oel3dyWNFmz+yBuD0sTd2SBAkXOoTuhnfD7srQn 7PJDbvYz8Si7uR7X8soJvyrrDnyDXHVpxSthXJpvlSNwEqYUkuVlVkzuBrxApdDD+6zmrabG aRbNcaXw91Bssq+gg3gjji461zzehAoJ33rjhF3dlBoX5baatlKOozlHddaeRZYOanrMA1Gt wMraLNapIvu686b9GdytpX9X4SiXXtxciNMuQHFsoF74snnHXi2UY2nO6zCaVZbzgkQ6kcqp YmaM152kANsFhfadenc3HjsZlXCVF1FVdNI5qLstsbnO2Jdm12xqxgVCan2Oa2OKOxz6vZ6F 32+3vwSF69y3QNq+gOk8dNF/yVD46PX7eRgPfkSIwLnVrCybrmfn72SD9d4dIp1h3wS1ur5n 2d92juXHD1Jc2iT6erTaEI99AX4UpjYfWK8Bd9L2Mj5YjQHQCpLusPQkOf1XhbyngDWtno2L cj9rqPxC4xVnvCIfjWiUK8opKd1boCfFH+u5iQoV8J8N8zzpiWtoF53yZAsBf0igQyxAEKYJ Qi63Qxh6yUtzpM968W37GJb5QNDXiNW7qkDCJNjlnkSLYLGwJF8Gn+KpErqSqA0wgJ3NUO1V bHd5lUD/EpMTTRZIeAAXYU2DOwY9oIQZLOMchhciEsQVLT7UJbRLmjtmma6xN6u04LOJvezl zShjNHNQ/XlSxVSMwyTBctAHQysaC40EWs2gsxlXC/GkI3gb7d4g5eewQ4xNXJBCHEOCacIk iZCAeHILzSO14OeSURaiqnd/EWSAMdxN67Y7rxbm1UKg5aLNB96ZAcSKi7RRCOKSAYK+I4Mc NZgrCowVC8e3cpITA2MXiN0TE6mbWGl4YCueIieCBSDRFOM94Ifdfq/yTgEADtZVrlqYGvY7 t6Lhq/N3jY2uSvfkFO7KtB6b4MirzWuGw3MbtqM45CWE9HrYImBjx/uSV9UraOBNIxuVhRli APEOx1EVgeOG1cUxV6Cl4sDYHjoBmY4nBhClaymHYGjWygh+HJTRtjwOoEuWFy94PxG3ttju ODEObSTglUlZUnOShK0F6gK02KD21HgYUSC7/DhCJLULAc0GADMlmkV3ColtbYjei7Zynf2J FtCDvI4kJUTG9MC3a5cNclnHsYEHd8suoKwj0vMAhmHWd4A8j6FloQLIxbYVy2+Bgso1RukK +WroF4CmV2mvm+JfJDPlmEhjETMdAHueg3sCnn6oOnp20X6vV1tg6ZuhX7FH95x9nIQyDOHb HGaQfP/OwCjdQyC96VsRtu2W3+jyL9K2g63hAKFFcB2sg7sn9PYSQd1iNV/jutZAVTHT12WR QY0PO/4cSLWQv7Hz+D2N0gPHlarEukL8tip9nK0DESlDYYIBQK7kOcqtT/ohCeASmcXi/WQV CsYQ2ZgwgaSD0MEpGn7PscnJGenHYkFPzRh3ogJ+Tr180vUgAuTAJcYY4R6Raeb296vXPDiw GVr9KU+1jn5+x8HDMlmx5Z3k9xcQ9jEH2XXO+kOYi6KMsZ024HN4K34vuJA8bODnv8iXN9az N8MtwG3bJ2Qc0dDMJahwEoc7jwLfAZ5604IFs3sjtRgEUheILTIEkX3ckLl5RfPWLqR7hwRT YgWWcBGVGECIgokaS2MaXIK07HKuC9XntyjA4KZFJdZNHFzn3sxs5jXolZuNgslMkEBcYjLe /SUcmN2/i66MPBjh5U8rilpR8NfnwIGoese8T5F6WaAyuEwNjUSIcBg9wGRUWlkEiLGc0mhu URV40aCvpFUleilmEgCyOEoLKwGNpS4htJFQrcnQ4RPZ7DbJ728sIyy6iTFom4YXtezocNtD KNJD9VKeRUmFLVRXAyrSbYGGDMCHCbSlA83IXkmSbVK4b8vPDxw9fV6fXNBVhZfmmevvm9HI NGm9MoM6YsftIRFFChkte3SoTXdxrbwi/xgENIPFhJa98kljz8oQLyJojTmWB6EktvmJKTS9 tXV8Ovb017fec7DWe0xcaA7N+vJqNsrL2wYC9CpcMxDCiIfohoETMLWEjVg90DylzlrIhODZ VQq2yy6SeltagSxclui3cOYbRlN5ECAysBmfDAJ4UAwRp90DRyGIeQgNe6bRODT/2B1gSzqD 3bAZuaTesP0Dx5qGvjSmuzluwglSyZt6TTzvYHnUYabbd2u244uGOqSCFAvID0GQ1TB0dGx0 YwAgI0Uyz51RCVrILrKSbJtjxrkVChULmkMrAwiEbKkb7pkAm1x8pdZ3JMVJcpGpLIJRlUA6 bulYg8W6Ne4HyevJ2v4X+NieLMjSoJHSKCZpyL9F7DgmXBuvZNEdLRnaz1D6RFVkOQYF+88y TcN6hJTDt4031J4xhIrAasFz1NLzaPtUa18Lck21Y3zmnijCQOfk7Npr2YuVtC2iIIDLiKVG oaX4gwWLWIRMs0yrfW7mLrmF4XWc3EF6fE5UAU4bHatIObIlIoNovDQbKYg7gYHNF4DwGnBQ B36Wc5xobp8UWLXmXpVwV8TTERLLxNe/TvYMMKsQ2KAzpXAd4ImZqvmK8L3GYSKhy3FPycdq 20zrHTc5ZqiumkAnzOGUmIK2UiKS6EGGGZsYJoLgYoFhRYWBJiZFBXOC0pab7RSDc9dsplGA oGVzfPAiHRS96rYE1Uhwg+iXXeFiBZcjIgE6BD6J851B9G+JUt4sTT1gYdmlB+YJvFNDqbo6 ETkUpDDceCfeBgK/JCHeikjwG+25lCUargk9iZLmCm9BOXi7kkAQPUj/tjOhuBog/Ht6l8WF Var6TvfAD5AGG+89b6gJWD3jUSKlq3woUVMNjTpPYRsw7euexQtJzoosWUK5AOrENCkwvZ54 DowpJkzV3Z10kfECR/8XckU4UJBPLJG0 --------------040103030808050003010301-- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 20:29:49 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E179E16A403 for ; Fri, 8 Dec 2006 20:29:49 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.FreeBSD.org (Postfix) with SMTP id 8531243CA3 for ; Fri, 8 Dec 2006 20:28:49 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 339 invoked by uid 399); 8 Dec 2006 20:29:48 -0000 Received: from localhost (HELO ?192.168.0.5?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 8 Dec 2006 20:29:48 -0000 X-Originating-IP: 127.0.0.1 Message-ID: <4579CB3B.6020408@FreeBSD.org> Date: Fri, 08 Dec 2006 12:29:47 -0800 From: Doug Barton Organization: http://www.freebsd.org/ User-Agent: Thunderbird 1.5.0.8 (X11/20061125) MIME-Version: 1.0 To: Wesley Shields References: <20061205172803.GA51892@atarininja.org> <4575C568.70905@FreeBSD.org> <20061205194146.GC52966@atarininja.org> <20061205203120.GA53894@atarininja.org> <4575EBA8.3020601@FreeBSD.org> <20061206014049.GA43656@atarininja.org> <20061207183103.GA73597@atarininja.org> <45787EAD.4030104@FreeBSD.org> <45790495.6010403@FreeBSD.org> <20061208171604.GA99857@atarininja.org> In-Reply-To: <20061208171604.GA99857@atarininja.org> X-Enigmail-Version: 0.94.1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: distfile belongs to? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 20:29:50 -0000 Wesley Shields wrote: > On Thu, Dec 07, 2006 at 10:22:13PM -0800, Doug Barton wrote: >> Doug Barton wrote: >>> Wesley Shields wrote: >>> >>>> Part 2 (the bsd.port.mk piece) is the patch posted by Doug with Ade's >>>> suggestions. >>> You missed the second patch I sent with the ${file%:*} changes. >> One more for fun. :) I was looking through bsd.port.mk for another >> purpose tonight and came across ${ALLFILES}. Not only does it combine >> dist and patch files into one variable, it has the benefit of not >> adding the : stuff to the filenames in the first place. >> >> Learning as I go, > > Me too! I've just sent your patch (thanks again) and the pkg_info > piece. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=106483 > > We'll see where things go from here! Great! I hate to say this, but I just sent a followup to the PR with a slight mod for the show.c patch. My fault for not testing that bit previously. Otherwise it looks fantastic, and I encourage the portmgr folks to test it ASAP. :) Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 21:31:57 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id EBD7A16A416 for ; Fri, 8 Dec 2006 21:31:57 +0000 (UTC) (envelope-from thomaspg976@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.239]) by mx1.FreeBSD.org (Postfix) with ESMTP id 801F843CB1 for ; Fri, 8 Dec 2006 21:30:52 +0000 (GMT) (envelope-from thomaspg976@gmail.com) Received: by wr-out-0506.google.com with SMTP id i28so586482wra for ; Fri, 08 Dec 2006 13:31:51 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:mime-version:content-type:message-id:cc:content-transfer-encoding:from:subject:date:to:x-mailer; b=kF0PWXkAbZPIoCVjo3aJ+DaJTmNe2xOwhul/bPFCge2le/ETWM0SpjeOq/AgQwuP239C01I0mdXaG9uQS6AHyiQ0rXovdmKta3uvajLN1OGe/c4lRFSe9/WVzk61VIMCquQWThVSt+NW0OxEYWbssxV+zvhClESMc/ctzuJ5MEI= Received: by 10.90.101.19 with SMTP id y19mr4751147agb.1165613511597; Fri, 08 Dec 2006 13:31:51 -0800 (PST) Received: from ?192.168.2.4? ( [70.233.93.72]) by mx.google.com with ESMTP id 24sm4978730wrl.2006.12.08.13.31.50; Fri, 08 Dec 2006 13:31:50 -0800 (PST) Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <6E681160-7519-41DC-A091-8B8D11106E23@gmail.com> Content-Transfer-Encoding: 7bit From: Prem Thomas Date: Fri, 8 Dec 2006 16:32:38 -0500 To: aldert@nooitgedagt.net X-Mailer: Apple Mail (2.752.3) Cc: ports@FreeBSD.org Subject: FreeBSD Port: aolserver-openacs-pg-4.0.10_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 21:31:58 -0000 Hi Aldert, I'm just checking to see if you are still maintaining this port. I spent the better part of 2 days trying to get OpenACS installed in such a way as to use the xowiki package. I've installed and de- installed a few times... :) I'm scripting the output from my installation process now, so if I do get everything to work, I'd be happy to share my experience so that others may benefit. Best, Prem Thomas From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 22:01:33 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 350A216A407; Fri, 8 Dec 2006 22:01:33 +0000 (UTC) (envelope-from karel.miklav@siol.net) Received: from imgr.siol.net (imgr.siol.net [193.189.160.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id E73F443C9D; Fri, 8 Dec 2006 22:00:31 +0000 (GMT) (envelope-from karel.miklav@siol.net) Received: from edge2.siol.net ([10.10.10.211]) by mta1.siol.net with ESMTP id <20061208211218.HVQY15340.mta1.siol.net@edge2.siol.net>; Fri, 8 Dec 2006 22:12:18 +0100 Received: from [192.168.0.149] (really [86.61.30.35]) by edge2.siol.net with ESMTP id <20061208211216.TVJL1846.edge2.siol.net@[192.168.0.149]>; Fri, 8 Dec 2006 22:12:16 +0100 Message-ID: <4579D524.6010206@siol.net> Date: Fri, 08 Dec 2006 22:12:04 +0100 From: Karel Miklav User-Agent: Thunderbird 1.5.0.8 (X11/20061111) MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-2; format=flowed Content-Transfer-Encoding: 7bit Cc: deischen@freebsd.org, bsam@FreeBSD.org Subject: How to break the bootstrapping chain X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 22:01:33 -0000 I'm trying to maintain the gnat-gcc* Ada compiler ports, currently there are gnat-gcc34 and 41. I'd like to introduce newer versions, and retire experimental 34, which is built from an ancient binary which requires FreeBSD 4 compatibility. I'd like to know: 1. what do I have to do that gnat-gcc packages will appear on FreeBSD FTP sites? 2. can I use one of FreeBSD packages to bootstrap others or do I have to somehow provide my own binary? In case I was not clear enough: the GNAT compiler can only be bootstrapped with another GNAT. If I base the procedure on a FreeBSD package, I can no longer provide the port for that package ... or do I? Damn, who invented this chicken and egg thing :) -- Regards, Karel Miklav From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 22:10:33 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8104D16A47E; Fri, 8 Dec 2006 22:10:33 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E7E043CB3; Fri, 8 Dec 2006 22:09:31 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 0FEEF1A3C19; Fri, 8 Dec 2006 14:10:31 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 32501513F8; Fri, 8 Dec 2006 17:10:29 -0500 (EST) Date: Fri, 8 Dec 2006 17:10:28 -0500 From: Kris Kennaway To: Karel Miklav Message-ID: <20061208221028.GA73047@xor.obsecurity.org> References: <4579D524.6010206@siol.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LQksG6bCIzRHxTLp" Content-Disposition: inline In-Reply-To: <4579D524.6010206@siol.net> User-Agent: Mutt/1.4.2.2i Cc: ports@freebsd.org, deischen@freebsd.org, bsam@FreeBSD.org Subject: Re: How to break the bootstrapping chain X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 22:10:33 -0000 --LQksG6bCIzRHxTLp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Dec 08, 2006 at 10:12:04PM +0100, Karel Miklav wrote: > I'm trying to maintain the gnat-gcc* Ada compiler ports, > currently there are gnat-gcc34 and 41. I'd like to > introduce newer versions, and retire experimental 34, > which is built from an ancient binary which requires > FreeBSD 4 compatibility. I'd like to know: >=20 > 1. what do I have to do that gnat-gcc packages will > appear on FreeBSD FTP sites? Get a buildable package committed to the FreeBSD ports tree. > 2. can I use one of FreeBSD packages to bootstrap > others or do I have to somehow provide my own > binary? You'd need to provide your own binary. Kris --LQksG6bCIzRHxTLp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFeeLUWry0BWjoQKURAjHiAJwO3bTQOtEiuO6v+5djnKTsehkUYwCdH2+z /91xCGu3jSr+W/VULAz8n0Q= =j8nQ -----END PGP SIGNATURE----- --LQksG6bCIzRHxTLp-- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 22:25:20 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 99DB416A403; Fri, 8 Dec 2006 22:25:20 +0000 (UTC) (envelope-from deischen@freebsd.org) Received: from mail.ntplx.net (mail.ntplx.net [204.213.176.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1544E43CA3; Fri, 8 Dec 2006 22:24:19 +0000 (GMT) (envelope-from deischen@freebsd.org) Received: from sea.ntplx.net (sea.ntplx.net [204.213.176.11]) by mail.ntplx.net (8.13.8/8.13.8/NETPLEX) with ESMTP id kB8MPJxJ013739; Fri, 8 Dec 2006 17:25:19 -0500 (EST) Date: Fri, 8 Dec 2006 17:25:18 -0500 (EST) From: Daniel Eischen X-X-Sender: eischen@sea.ntplx.net To: Karel Miklav In-Reply-To: <4579D524.6010206@siol.net> Message-ID: References: <4579D524.6010206@siol.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Greylist: Message whitelisted by DRAC access database, not delayed by milter-greylist-3.0 (mail.ntplx.net [204.213.176.10]); Fri, 08 Dec 2006 17:25:19 -0500 (EST) X-Virus-Scanned: by AMaViS and Clam AntiVirus (mail.ntplx.net) Cc: ports@freebsd.org, bsam@freebsd.org Subject: Re: How to break the bootstrapping chain X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Eischen List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 22:25:20 -0000 On Fri, 8 Dec 2006, Karel Miklav wrote: > I'm trying to maintain the gnat-gcc* Ada compiler ports, > currently there are gnat-gcc34 and 41. I'd like to > introduce newer versions, and retire experimental 34, > which is built from an ancient binary which requires > FreeBSD 4 compatibility. I'd like to know: > > 1. what do I have to do that gnat-gcc packages will > appear on FreeBSD FTP sites? > > 2. can I use one of FreeBSD packages to bootstrap > others or do I have to somehow provide my own > binary? > > In case I was not clear enough: the GNAT compiler can > only be bootstrapped with another GNAT. If I base the > procedure on a FreeBSD package, I can no longer provide > the port for that package ... or do I? Damn, who > invented this chicken and egg thing :) You'll have to do the same thing as the lang/gnat port and provide your own bootstrapping compiler. No matter what you do (*), it will require FreeBSD-X compat. AFAIK, we are currently supporting FreeBSD 5, 6, and 7, so the bootstrap should be based on FreeBSD-5, so it can work for 6 and 7 as well. If it is based on 6 or 7, then it will not be able to work on the other two. (*) The only way you can avoid this, is to provide 3 different bootstrap compilers (one for 5, 6, and 7) and teach the port to depend on the appropriate bootstrapper. -- DE From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 22:57:47 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C93F616A47B for ; Fri, 8 Dec 2006 22:57:47 +0000 (UTC) (envelope-from mjaw@ikp.pl) Received: from smtpauth.ipartners.pl (smtpauth2.ipartners.pl [157.25.5.187]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DD4243FEB for ; Fri, 8 Dec 2006 22:53:40 +0000 (GMT) (envelope-from mjaw@ikp.pl) Received: from [192.168.1.3] (mjaw-home.ikp.pl [157.25.91.34]) (authenticated bits=0) by smtpauth.ipartners.pl with ESMTP id kB8MsR9Q052869 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NOT); Fri, 8 Dec 2006 23:54:27 +0100 (CET) From: =?iso-8859-2?Q?Miros=B3aw?= Jaworski To: Mario Theodoridis In-Reply-To: <45250.192.168.223.4.1165571673.squirrel@mail.schmut.com> References: <200611072108.40934.freebsd@dfwlp.com> <5fbf03c20612070351s6ff64b66vf61065cd8bcb839b@mail.gmail.com> <200612070635.00668.freebsd@dfwlp.com> <5fbf03c20612080139l3f714bf2m79245be8689d5395@mail.gmail.com> <45250.192.168.223.4.1165571673.squirrel@mail.schmut.com> Content-Type: text/plain; charset=ISO-8859-2 Date: Fri, 08 Dec 2006 23:54:27 +0100 Message-Id: <1165618467.4522.9.camel@mjaw-mobile.ipartners.pl> Mime-Version: 1.0 X-Mailer: Evolution 2.4.2.1 Content-Transfer-Encoding: 8bit Cc: spil.oss@gmail.com, freebsd@dfwlp.com, spil.oss@googlemail.com, freebsd-ports@freebsd.org Subject: Re: php 5.2.0... go boom! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 22:57:47 -0000 On Fri, 2006-12-08 at 01:54 -0800, Mario Theodoridis wrote: > wait, > wasn't the word on that to put > extension=session.so > up into the first line, else .... boom? Not exactly. Moving sessions to first position worked for _me_. People report same problem with other modules too - it's random. It's general problem with extensions loading order; it's mentioned on main php site ( previous discussions contain links ). M. -- Citroën Xantia HDi 2.0 110KM '00 Plaisir gris quartz #4438 Warszawa / Kolobrzeg From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 23:14:51 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0830E16A4B3 for ; Fri, 8 Dec 2006 23:14:51 +0000 (UTC) (envelope-from karel@lovetemple.net) Received: from mta1.siol.net (mta1.siol.net [193.189.160.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CAE843CBA for ; Fri, 8 Dec 2006 23:13:49 +0000 (GMT) (envelope-from karel@lovetemple.net) Received: from edge2.siol.net ([10.10.10.211]) by mta1.siol.net with ESMTP id <20061208231448.OUAS15340.mta1.siol.net@edge2.siol.net>; Sat, 9 Dec 2006 00:14:48 +0100 Received: from [192.168.0.149] (really [86.61.30.35]) by edge2.siol.net with ESMTP id <20061208231447.UWNW1846.edge2.siol.net@[192.168.0.149]>; Sat, 9 Dec 2006 00:14:47 +0100 Message-ID: <4579F1E3.70003@lovetemple.net> Date: Sat, 09 Dec 2006 00:14:43 +0100 From: Karel Miklav User-Agent: Thunderbird 1.5.0.8 (X11/20061111) MIME-Version: 1.0 To: Kris Kennaway References: <4579D524.6010206@siol.net> <20061208221028.GA73047@xor.obsecurity.org> In-Reply-To: <20061208221028.GA73047@xor.obsecurity.org> Content-Type: text/plain; charset=windows-1250; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: How to break the bootstrapping chain X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 23:14:51 -0000 Kris Kennaway wrote: > On Fri, Dec 08, 2006 at 10:12:04PM +0100, Karel Miklav wrote: >> 1. what do I have to do that gnat-gcc packages will >> appear on FreeBSD FTP sites? > > Get a buildable package committed to the FreeBSD ports tree. Ups, sorry, they _are_ on the main site. They're just not mirrored on couple other sites I checked. -- Thanks, Karel Miklav From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 23:20:10 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 8E54D16A501 for ; Fri, 8 Dec 2006 23:20:10 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id E452643CA3 for ; Fri, 8 Dec 2006 23:19:09 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 31B8F1A4D90; Fri, 8 Dec 2006 15:20:10 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 10E95513F8; Fri, 8 Dec 2006 18:20:09 -0500 (EST) Date: Fri, 8 Dec 2006 18:20:08 -0500 From: Kris Kennaway To: Karel Miklav Message-ID: <20061208232008.GA74892@xor.obsecurity.org> References: <4579D524.6010206@siol.net> <20061208221028.GA73047@xor.obsecurity.org> <4579F1E3.70003@lovetemple.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Nq2Wo0NMKNjxTN9z" Content-Disposition: inline In-Reply-To: <4579F1E3.70003@lovetemple.net> User-Agent: Mutt/1.4.2.2i Cc: ports@freebsd.org, Kris Kennaway Subject: Re: How to break the bootstrapping chain X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 23:20:10 -0000 --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Dec 09, 2006 at 12:14:43AM +0100, Karel Miklav wrote: > Kris Kennaway wrote: > >On Fri, Dec 08, 2006 at 10:12:04PM +0100, Karel Miklav wrote: > >> 1. what do I have to do that gnat-gcc packages will > >> appear on FreeBSD FTP sites? > > > >Get a buildable package committed to the FreeBSD ports tree. >=20 > Ups, sorry, they _are_ on the main site. They're just not > mirrored on couple other sites I checked. They are there right now, but once the corresponding port changes they will change/go away. The packages are just a reflection of the current state of the ports tree. Kris --Nq2Wo0NMKNjxTN9z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFefMoWry0BWjoQKURAphgAJ9tl/9OZwwYMENquE+AC9PUJStpBwCfY3QT WD8UNCciCHZ1lE02+N6v0TI= =ntUf -----END PGP SIGNATURE----- --Nq2Wo0NMKNjxTN9z-- From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 23:27:54 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4517B16A407 for ; Fri, 8 Dec 2006 23:27:54 +0000 (UTC) (envelope-from thierry@pompo.net) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7AB4043CA8 for ; Fri, 8 Dec 2006 23:26:48 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id 2D5EC1142A; Sat, 9 Dec 2006 00:27:47 +0100 (CET) Date: Sat, 9 Dec 2006 00:27:47 +0100 From: Thierry Thomas To: ports@freebsd.org Message-ID: <20061208232747.GM17875@graf.pompo.net> Mail-Followup-To: ports@freebsd.org References: <4579D524.6010206@siol.net> <20061208221028.GA73047@xor.obsecurity.org> <4579F1E3.70003@lovetemple.net> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <4579F1E3.70003@lovetemple.net> User-Agent: Mutt/1.4.2.2i X-Operating-System: FreeBSD 6.2-PRERELEASE i386 Organization: Kabbale Eros X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: X-PGP: 0xC71405A2 Cc: Subject: Re: How to break the bootstrapping chain X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 23:27:54 -0000 Le Sam 9 déc 06 à 0:14:43 +0100, Karel Miklav écrivait : > Kris Kennaway wrote: > >On Fri, Dec 08, 2006 at 10:12:04PM +0100, Karel Miklav wrote: > >> 1. what do I have to do that gnat-gcc packages will > >> appear on FreeBSD FTP sites? > > > >Get a buildable package committed to the FreeBSD ports tree. > > Ups, sorry, they _are_ on the main site. They're just not > mirrored on couple other sites I checked. I guess that you need one binary package to bootstrap, *and* your source tarball. See the port lang/mlton for such an example. -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Fri Dec 8 23:42:30 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E5EB716A407; Fri, 8 Dec 2006 23:42:30 +0000 (UTC) (envelope-from karel@lovetemple.net) Received: from mta1.siol.net (mta1.siol.net [193.189.160.88]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54F7143CA3; Fri, 8 Dec 2006 23:41:29 +0000 (GMT) (envelope-from karel@lovetemple.net) Received: from edge2.siol.net ([10.10.10.211]) by mta1.siol.net with ESMTP id <20061208234224.PZSA15340.mta1.siol.net@edge2.siol.net>; Sat, 9 Dec 2006 00:42:24 +0100 Received: from [192.168.0.149] (really [86.61.30.35]) by edge2.siol.net with ESMTP id <20061208234223.VCAV1846.edge2.siol.net@[192.168.0.149]>; Sat, 9 Dec 2006 00:42:23 +0100 Message-ID: <4579F85B.1090406@lovetemple.net> Date: Sat, 09 Dec 2006 00:42:19 +0100 From: Karel Miklav User-Agent: Thunderbird 1.5.0.8 (X11/20061111) MIME-Version: 1.0 To: Daniel Eischen References: <4579D524.6010206@siol.net> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org Subject: Re: How to break the bootstrapping chain X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 08 Dec 2006 23:42:31 -0000 Thank you Daniel. Now when I see that the gnat-gcc packages actually are on the FTP servers, there's no need to panic. Those who are not comfortable with backwards compatibility stuff installed as a result of building from ports can just install the package. There's not really much to improve, except if I provide separate binaries for FreeBSD 5 and maybe 6. I'll keep abusing your bootstrapper till then ... and yeah, thanks for that too ;) -- Karel Miklav From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 00:20:49 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 7466116A4C9 for ; Sat, 9 Dec 2006 00:20:49 +0000 (UTC) (envelope-from FreeBSD@insightbb.com) Received: from asav03.insightbb.com (gateway.insightbb.com [74.128.0.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id B916943CA5 for ; Sat, 9 Dec 2006 00:18:28 +0000 (GMT) (envelope-from FreeBSD@insightbb.com) Received: from dhcp-74-130-161-48.insightbb.com (HELO lightning) ([74.130.161.48]) by asav03.insightbb.com with ESMTP; 08 Dec 2006 19:19:28 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ao8CAMKPeUVKgqEwYWdsb2JhbACNMxUOCSE From: Steven Friedrich To: freebsd-ports@FreeBSD.org Date: Fri, 8 Dec 2006 19:19:27 -0500 User-Agent: KMail/1.9.4 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200612081919.27448.FreeBSD@insightbb.com> Cc: Subject: xorg-nestserver won't build on 4.11, says stdint.h missing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 00:20:49 -0000 I've been having a really weird video problem on my two machines when running 4.11. My 4.11 machines run XFree86 4.5.0 I have a dual-head setup I've been using for a few years. Recently, the left monitor looks like it has a vertical sync problem, but I'm pretty sure it's not the video hardware, because only host "lightning" have the problem until today. Now "daemon" also has it. I can pull the drives out (mobile racks) and put FreeBSD 6.1 in and these don't have the problem. So I thought I'd switch to xorg. But when I try to build xorg-nestserver or xorg-server, the build breaks complaining that stdint.h doesn't exist. Can anyone confirm that these ports will build under 4.11? -- i386 FreeBSD 4.11-STABLE There are 10 types of people in this world. Ones that understand binary and then, the others. From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 00:27:33 2006 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BE67716A415 for ; Sat, 9 Dec 2006 00:27:33 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFCF443CA2 for ; Sat, 9 Dec 2006 00:26:32 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 6094C1A4D83; Fri, 8 Dec 2006 16:27:33 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id AF226513F8; Fri, 8 Dec 2006 19:27:32 -0500 (EST) Date: Fri, 8 Dec 2006 19:27:32 -0500 From: Kris Kennaway To: Steven Friedrich Message-ID: <20061209002732.GA75759@xor.obsecurity.org> References: <200612081919.27448.FreeBSD@insightbb.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bg08WKrSYDhXBjb5" Content-Disposition: inline In-Reply-To: <200612081919.27448.FreeBSD@insightbb.com> User-Agent: Mutt/1.4.2.2i Cc: freebsd-ports@FreeBSD.org Subject: Re: xorg-nestserver won't build on 4.11, says stdint.h missing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 00:27:33 -0000 --bg08WKrSYDhXBjb5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Dec 08, 2006 at 07:19:27PM -0500, Steven Friedrich wrote: > I've been having a really weird video problem on my two machines when run= ning=20 > 4.11. My 4.11 machines run XFree86 4.5.0 >=20 > I have a dual-head setup I've been using for a few years. Recently, the = left=20 > monitor looks like it has a vertical sync problem, but I'm pretty sure it= 's=20 > not the video hardware, because only host "lightning" have the problem un= til=20 > today. Now "daemon" also has it. I can pull the drives out (mobile rack= s)=20 > and put FreeBSD 6.1 in and these don't have the problem. >=20 > So I thought I'd switch to xorg. But when I try to build xorg-nestserver= or=20 > xorg-server, the build breaks complaining that stdint.h doesn't exist. >=20 > Can anyone confirm that these ports will build under 4.11? It's possible you're the first person to try it. You really should try to migrate off of 4.x, maintainers are not required to support it and all support will soon be terminated. Kris --bg08WKrSYDhXBjb5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFegL0Wry0BWjoQKURArKbAKCl9SKRqpLvdNIfu4ki9ViJeeLK5gCg+M0E 58ivn2Bo9aKGABTZdPHKdG0= =1WBW -----END PGP SIGNATURE----- --bg08WKrSYDhXBjb5-- From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 00:57:01 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3F29F16A407 for ; Sat, 9 Dec 2006 00:57:01 +0000 (UTC) (envelope-from FreeBSD@insightbb.com) Received: from asav01.insightbb.com (gateway.insightbb.com [74.128.0.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00C4843CA5 for ; Sat, 9 Dec 2006 00:55:59 +0000 (GMT) (envelope-from FreeBSD@insightbb.com) Received: from dhcp-74-130-161-48.insightbb.com (HELO lightning) ([74.130.161.48]) by asav01.insightbb.com with ESMTP; 08 Dec 2006 19:56:56 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ao8CACKZeUVKgqEwY2dsb2JhbACNMxUOCSE From: Steven Friedrich To: Kris Kennaway Date: Fri, 8 Dec 2006 19:56:55 -0500 User-Agent: KMail/1.9.4 References: <200612081919.27448.FreeBSD@insightbb.com> <20061209002732.GA75759@xor.obsecurity.org> In-Reply-To: <20061209002732.GA75759@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200612081956.55689.FreeBSD@insightbb.com> Cc: freebsd-ports@freebsd.org Subject: Re: xorg-nestserver won't build on 4.11, says stdint.h missing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 00:57:01 -0000 On Friday 08 December 2006 19:27, Kris Kennaway wrote: > On Fri, Dec 08, 2006 at 07:19:27PM -0500, Steven Friedrich wrote: > > I've been having a really weird video problem on my two machines when > > running 4.11. My 4.11 machines run XFree86 4.5.0 > > > > I have a dual-head setup I've been using for a few years. Recently, the > > left monitor looks like it has a vertical sync problem, but I'm pretty > > sure it's not the video hardware, because only host "lightning" have the > > problem until today. Now "daemon" also has it. I can pull the drives > > out (mobile racks) and put FreeBSD 6.1 in and these don't have the > > problem. > > > > So I thought I'd switch to xorg. But when I try to build xorg-nestserv= er > > or xorg-server, the build breaks complaining that stdint.h doesn't exis= t. > > > > Can anyone confirm that these ports will build under 4.11? > > It's possible you're the first person to try it. You really should > try to migrate off of 4.x, maintainers are not required to support it > and all support will soon be terminated. > > Kris oki doki. =46rom perusing the web site, I can see that I have to upgrade thru the 5.x= =20 series first, if I do a source upgrade. If I do a binary upgrade, I can go= =20 straight to 6.1, right? =2D-=20 i386 FreeBSD 4.11-STABLE There are 10 types of people in this world. Ones that understand binary and= =20 then, the others. From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 01:31:40 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 1EA2716A407 for ; Sat, 9 Dec 2006 01:31:40 +0000 (UTC) (envelope-from randy@psg.com) Received: from rip.psg.com (rip.psg.com [147.28.0.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3DC143CA2 for ; Sat, 9 Dec 2006 01:30:38 +0000 (GMT) (envelope-from randy@psg.com) Received: from localhost ([127.0.0.1] helo=roam.psg.com) by rip.psg.com with esmtps (TLSv1:AES256-SHA:256) (Exim 4.63 (FreeBSD)) (envelope-from ) id 1Gsr3y-0002PE-9W; Sat, 09 Dec 2006 01:31:38 +0000 Received: from localhost.iijlab.net ([127.0.0.1] helo=roam.psg.com) by roam.psg.com with esmtp (Exim 4.63 (FreeBSD)) (envelope-from ) id 1Gsr3R-0007nF-Ps; Sat, 09 Dec 2006 10:31:05 +0900 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <17786.4569.164730.420014@roam.psg.com> Date: Sat, 9 Dec 2006 10:31:05 +0900 To: py-transports@blathersource.org Cc: takeda@takeda.tk, freebsd ports Subject: freebsd current No module named xish.domish again X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 01:31:40 -0000 # /usr/local/etc/rc.d/jabber-pyaim-transport start Starting jabber_pyaim. Could not find the XML DOM. If you're using Twisted 2.x make sure you have twisted.words installed. Traceback (most recent call last): File "/usr/local/lib/jabber/pyaim/PyAIMt.py", line 11, in ? import main File "/usr/local/lib/jabber/pyaim/src/main.py", line 4, in ? import utils File "/usr/local/lib/jabber/pyaim/src/utils.py", line 12, in ? from tlib.twistwrap import Element, SuxElementStream File "/usr/local/lib/jabber/pyaim/src/tlib/twistwrap.py", line 68, in ? from twisted.xish.domish import SuxElementStream, Element, unescapeFromXml, elementStream ImportError: No module named xish.domish and last times fixes don't do it this time :( randy From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 01:32:50 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E684F16A407 for ; Sat, 9 Dec 2006 01:32:50 +0000 (UTC) (envelope-from FreeBSD@insightbb.com) Received: from asav10.insightbb.com (gateway.insightbb.com [74.128.0.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96ADA43C9D for ; Sat, 9 Dec 2006 01:31:49 +0000 (GMT) (envelope-from FreeBSD@insightbb.com) Received: from dhcp-74-130-161-48.insightbb.com (HELO lightning) ([74.130.161.48]) by asav10.insightbb.com with ESMTP; 08 Dec 2006 20:32:49 -0500 X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: Ao8CABuheUVKgqEwY2dsb2JhbACNMxUOCSE From: Steven Friedrich To: Kris Kennaway User-Agent: KMail/1.9.4 References: <200612081919.27448.FreeBSD@insightbb.com> <20061209002732.GA75759@xor.obsecurity.org> In-Reply-To: <20061209002732.GA75759@xor.obsecurity.org> MIME-Version: 1.0 Content-Disposition: inline Date: Fri, 8 Dec 2006 20:32:47 -0500 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Message-Id: <200612082032.48231.FreeBSD@insightbb.com> Cc: freebsd-ports@freebsd.org Subject: Re: xorg-nestserver won't build on 4.11, says stdint.h missing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 01:32:51 -0000 On Friday 08 December 2006 19:27, Kris Kennaway wrote: > On Fri, Dec 08, 2006 at 07:19:27PM -0500, Steven Friedrich wrote: > > I've been having a really weird video problem on my two machines when > > running 4.11. My 4.11 machines run XFree86 4.5.0 > > > > I have a dual-head setup I've been using for a few years. Recently, the > > left monitor looks like it has a vertical sync problem, but I'm pretty > > sure it's not the video hardware, because only host "lightning" have the > > problem until today. Now "daemon" also has it. I can pull the drives > > out (mobile racks) and put FreeBSD 6.1 in and these don't have the > > problem. > > > > So I thought I'd switch to xorg. But when I try to build xorg-nestserv= er > > or xorg-server, the build breaks complaining that stdint.h doesn't exis= t. > > > > Can anyone confirm that these ports will build under 4.11? > > It's possible you're the first person to try it. You really should > try to migrate off of 4.x, maintainers are not required to support it > and all support will soon be terminated. > > Kris oki doki. =46rom perusing the web site, I can see that I have to upgrade thru the 5.x= =20 series first, if I do a source upgrade. If I do a binary upgrade, I can go= =20 straight to 6.1, right? Opps, I've been reading the Install notes for 5.x and I can't do a binary=20 pgrade from 4.x. =2D-=20 i386 FreeBSD 4.11-STABLE There are 10 types of people in this world. Ones that understand binary and= =20 then, the others. From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 02:31:55 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2A5AF16A4A0 for ; Sat, 9 Dec 2006 02:31:55 +0000 (UTC) (envelope-from jdc@koitsu.dyndns.org) Received: from alnrmhc13.comcast.net (alnrmhc13.comcast.net [204.127.225.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id 855D143CA7 for ; Sat, 9 Dec 2006 02:30:53 +0000 (GMT) (envelope-from jdc@koitsu.dyndns.org) Received: from icarus.home.lan (c-67-174-220-97.hsd1.ca.comcast.net[67.174.220.97]) by comcast.net (alnrmhc13) with ESMTP id <20061209023153b1300bqkuue>; Sat, 9 Dec 2006 02:31:54 +0000 Received: by icarus.home.lan (Postfix, from userid 1000) id 8F8D01FA01D; Fri, 8 Dec 2006 18:31:53 -0800 (PST) Date: Fri, 8 Dec 2006 18:31:53 -0800 From: Jeremy Chadwick To: Miros?aw Jaworski Message-ID: <20061209023153.GA66556@icarus.home.lan> Mail-Followup-To: Miros?aw Jaworski , Mario Theodoridis , spil.oss@gmail.com, freebsd@dfwlp.com, spil.oss@googlemail.com, freebsd-ports@freebsd.org References: <200611072108.40934.freebsd@dfwlp.com> <5fbf03c20612070351s6ff64b66vf61065cd8bcb839b@mail.gmail.com> <200612070635.00668.freebsd@dfwlp.com> <5fbf03c20612080139l3f714bf2m79245be8689d5395@mail.gmail.com> <45250.192.168.223.4.1165571673.squirrel@mail.schmut.com> <1165618467.4522.9.camel@mjaw-mobile.ipartners.pl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1165618467.4522.9.camel@mjaw-mobile.ipartners.pl> X-PGP-Key: http://jdc.parodius.com/pubkey.asc User-Agent: Mutt/1.5.13 (2006-08-11) Cc: spil.oss@gmail.com, freebsd@dfwlp.com, Mario Theodoridis , spil.oss@googlemail.com, freebsd-ports@freebsd.org Subject: Re: php 5.2.0... go boom! X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 02:31:55 -0000 On Fri, Dec 08, 2006 at 11:54:27PM +0100, Miros?aw Jaworski wrote: > On Fri, 2006-12-08 at 01:54 -0800, Mario Theodoridis wrote: > > wait, > > wasn't the word on that to put > > extension=session.so > > up into the first line, else .... boom? > > Not exactly. > > Moving sessions to first position worked for _me_. > People report same problem with other modules too - it's random. Our production web server (4.11-STABLE, Apache 2.2.3, PHP 5.2.0) uses the following order with success: $ cat /usr/local/etc/php/extensions.ini extension=gd.so extension=mysql.so extension=zlib.so extension=session.so extension=pcre.so extension=xml.so extension=iconv.so extension=mbstring.so extension=sqlite.so > It's general problem with extensions loading order; it's mentioned > on main php site ( previous discussions contain links ). Yes -- and this is something that really needs to be addressed in the ports PHP framework, because if it's worthy enough for official PHP documentation on it, it'll continue to bite us until it's fixed. Each PHP port could have a priority number associated with it, the end result being that you sort the extensions loaded in order of the priority number when making/changing extensions.ini. -- | Jeremy Chadwick jdc at parodius.com | | Parodius Networking http://www.parodius.com/ | | UNIX Systems Administrator Mountain View, CA, USA | | Making life hard for others since 1977. PGP: 4BD6C0CB | From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 02:33:37 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3206316A5B3 for ; Sat, 9 Dec 2006 02:33:30 +0000 (UTC) (envelope-from jadestorm@nc.rr.com) Received: from ms-smtp-04.southeast.rr.com (ms-smtp-04.southeast.rr.com [24.25.9.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CDE043CAB for ; Sat, 9 Dec 2006 02:32:28 +0000 (GMT) (envelope-from jadestorm@nc.rr.com) Received: from syphon.vorpalcloud.org (cpe-024-163-106-248.nc.res.rr.com [24.163.106.248]) by ms-smtp-04.southeast.rr.com (8.13.6/8.13.6) with ESMTP id kB92XQs0005511; Fri, 8 Dec 2006 21:33:26 -0500 (EST) Received: from [10.0.0.20] (ecco.vorpalcloud.org [10.0.0.20]) by syphon.vorpalcloud.org (8.13.1/8.13.1) with ESMTP id kB92XP93028736; Fri, 8 Dec 2006 21:33:26 -0500 In-Reply-To: <17786.4569.164730.420014@roam.psg.com> References: <17786.4569.164730.420014@roam.psg.com> Mime-Version: 1.0 (Apple Message framework v752.3) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <2A6F5020-BCE2-4A16-9155-BEFD4F979013@nc.rr.com> Content-Transfer-Encoding: 7bit From: Daniel Henninger Date: Fri, 8 Dec 2006 21:33:23 -0500 To: PyTransports Discussion X-Mailer: Apple Mail (2.752.3) X-Virus-Scanned: Symantec AntiVirus Scan Engine X-Virus-Scanned: ClamAV 0.88.6/2303/Fri Dec 8 00:07:51 2006 on syphon.vorpalcloud.org X-Virus-Status: Clean X-Spam-Flag: NO X-Scanned-By: milter-spamc/0.25.321 (syphon.vorpalcloud.org [10.0.0.1]); Fri, 08 Dec 2006 21:33:26 -0500 X-Spam-Status: NO, hits=-1.40 required=5.00 X-Spam-Level: Cc: freebsd ports Subject: Re: [py-transports] freebsd current No module named xish.domish again X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 02:33:37 -0000 PyAIMt 0.8 should fix this. (it uses the same twistfix library that PyMSNt uses) Daniel On Dec 8, 2006, at 8:31 PM, Randy Bush wrote: > # /usr/local/etc/rc.d/jabber-pyaim-transport start > Starting jabber_pyaim. > Could not find the XML DOM. If you're using Twisted 2.x make sure > you have twisted.words installed. > Traceback (most recent call last): > File "/usr/local/lib/jabber/pyaim/PyAIMt.py", line 11, in ? > import main > File "/usr/local/lib/jabber/pyaim/src/main.py", line 4, in ? > import utils > File "/usr/local/lib/jabber/pyaim/src/utils.py", line 12, in ? > from tlib.twistwrap import Element, SuxElementStream > File "/usr/local/lib/jabber/pyaim/src/tlib/twistwrap.py", line > 68, in ? > from twisted.xish.domish import SuxElementStream, Element, > unescapeFromXml, elementStream > ImportError: No module named xish.domish > > and last times fixes don't do it this time :( > > randy > > _______________________________________________ > py-transports mailing list > py-transports@blathersource.org > http://www.modevia.com/cgi-bin/mailman/listinfo/py-transports From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 03:23:28 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CF18716A407 for ; Sat, 9 Dec 2006 03:23:28 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2149B43C9D for ; Sat, 9 Dec 2006 03:22:27 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id 6B5111A3C19; Fri, 8 Dec 2006 19:23:28 -0800 (PST) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id BE5C4513BE; Fri, 8 Dec 2006 22:23:27 -0500 (EST) Date: Fri, 8 Dec 2006 22:23:27 -0500 From: Kris Kennaway To: Steven Friedrich Message-ID: <20061209032327.GA77839@xor.obsecurity.org> References: <200612081919.27448.FreeBSD@insightbb.com> <20061209002732.GA75759@xor.obsecurity.org> <200612082032.48231.FreeBSD@insightbb.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="r5Pyd7+fXNt84Ff3" Content-Disposition: inline In-Reply-To: <200612082032.48231.FreeBSD@insightbb.com> User-Agent: Mutt/1.4.2.2i Cc: freebsd-ports@freebsd.org, Kris Kennaway Subject: Re: xorg-nestserver won't build on 4.11, says stdint.h missing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 03:23:28 -0000 --r5Pyd7+fXNt84Ff3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Dec 08, 2006 at 08:32:47PM -0500, Steven Friedrich wrote: > On Friday 08 December 2006 19:27, Kris Kennaway wrote: > > On Fri, Dec 08, 2006 at 07:19:27PM -0500, Steven Friedrich wrote: > > > I've been having a really weird video problem on my two machines when > > > running 4.11. My 4.11 machines run XFree86 4.5.0 > > > > > > I have a dual-head setup I've been using for a few years. Recently, = the > > > left monitor looks like it has a vertical sync problem, but I'm pretty > > > sure it's not the video hardware, because only host "lightning" have = the > > > problem until today. Now "daemon" also has it. I can pull the drives > > > out (mobile racks) and put FreeBSD 6.1 in and these don't have the > > > problem. > > > > > > So I thought I'd switch to xorg. But when I try to build xorg-nestse= rver > > > or xorg-server, the build breaks complaining that stdint.h doesn't ex= ist. > > > > > > Can anyone confirm that these ports will build under 4.11? > > > > It's possible you're the first person to try it. You really should > > try to migrate off of 4.x, maintainers are not required to support it > > and all support will soon be terminated. > > > > Kris > oki doki. >=20 > From perusing the web site, I can see that I have to upgrade thru the 5.x= =20 > series first, if I do a source upgrade. If I do a binary upgrade, I can = go=20 > straight to 6.1, right? >=20 > Opps, I've been reading the Install notes for 5.x and I can't do a binary= =20 > pgrade from 4.x. It's possible to do a binary upgrade to 6.1 (or 6.2-rc1 if you want extra bug fixes), with some extra steps. Make sure you install the source tree, then do cd /usr/src make delete-old to delete old files which can cause problems for later builds (this is what the 5.5 install notes warn about). Then you will need to upgrade your /etc using mergemaster (see the docs). You'd have to do both of these steps anyway if you were doing a source upgrade, so you've still saved yourself the time and effort. Kris --r5Pyd7+fXNt84Ff3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFeiwvWry0BWjoQKURAvnaAJ9p/im7T7iw4v15dyoKahUkfuTFIACgk4zH UrFG/rEfVqFVVMlh/1Cqf+Q= =Y5S7 -----END PGP SIGNATURE----- --r5Pyd7+fXNt84Ff3-- From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 03:35:16 2006 Return-Path: X-Original-To: freebsd-ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id BAC8E16A40F for ; Sat, 9 Dec 2006 03:35:16 +0000 (UTC) (envelope-from freebsd@milfordmail.com) Received: from smtp104.sbc.mail.mud.yahoo.com (smtp104.sbc.mail.mud.yahoo.com [68.142.198.203]) by mx1.FreeBSD.org (Postfix) with SMTP id 9D61543CA3 for ; Sat, 9 Dec 2006 03:34:14 +0000 (GMT) (envelope-from freebsd@milfordmail.com) Received: (qmail 35699 invoked from network); 9 Dec 2006 03:35:15 -0000 Received: from unknown (HELO mail.milfordmail.com) (validateduser6@70.253.38.243 with login) by smtp104.sbc.mail.mud.yahoo.com with SMTP; 9 Dec 2006 03:35:15 -0000 X-YMail-OSG: .4NYz9wVM1mhoTChNGyJiLQQKvalgJh9wAHKfwUn.aEe5fGvi14khM0R.q.ur7s4Ob8.tXIDXWxIKoYxPwzggZ3VMwhNOmMgPKQ59rqwC9U1nvr6US6SdrTfM_GnAuUyxnRk3YPH.5KYLYo- DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=mail; d=milfordmail.com; h=Received:From:To:Subject:Date:Message-ID:MIME-Version:Content-Type:Content-Transfer-Encoding:X-Mailer:X-MimeOLE:Thread-Index:In-Reply-To:Disposition-Notification-To:X-Scanner; b=WKGLpKlQUb1ZuBMnE71FFX4CxlSDfVJcxrvIgkwuazEqU+dDbuGvFb4eSPDZX3/rhOh3LpR2Jt3iH5aXe60GlIdRJam61AsUa+TWNDNuvessUnFuL/LWyhr4Wxj/oJ3h; Received: from [192.168.254.221] (helo=pentium4) by mail.milfordmail.com with esmtpsa (TLSv1:RC4-MD5:128) (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GsszD-0000of-Vb; Fri, 08 Dec 2006 21:34:51 -0600 From: "Bill Milford" To: "'Steven Friedrich'" , Date: Fri, 8 Dec 2006 21:34:52 -0600 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook 11 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2962 Thread-Index: AccbJ+fNgCue6i8jSAOeGN0nHlpidAAGt9bQ In-Reply-To: <200612081919.27448.FreeBSD@insightbb.com> X-Scanner: exiscan-acl for exim4 (http://duncanthrax.net/exiscan/) c8566d3760caa3a4ba30ac7f6aaef9a659ffe52c Cc: Subject: RE: xorg-nestserver won't build on 4.11, says stdint.h missing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 03:35:16 -0000 > -----Original Message----- > From: owner-freebsd-ports@freebsd.org [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Steven > Friedrich > Sent: Friday, December 08, 2006 6:19 PM > To: freebsd-ports@FreeBSD.org > Subject: xorg-nestserver won't build on 4.11, says stdint.h missing > > I've been having a really weird video problem on my two machines when running > 4.11. My 4.11 machines run XFree86 4.5.0 > > I have a dual-head setup I've been using for a few years. Recently, the left > monitor looks like it has a vertical sync problem, but I'm pretty sure it's > not the video hardware, because only host "lightning" have the problem until > today. Now "daemon" also has it. I can pull the drives out (mobile racks) > and put FreeBSD 6.1 in and these don't have the problem. > > So I thought I'd switch to xorg. But when I try to build xorg-nestserver or > xorg-server, the build breaks complaining that stdint.h doesn't exist. > > Can anyone confirm that these ports will build under 4.11? > [Bill Milford] I submitted a PR with a patch for this a long time ago. ports/102868 It hasn't been committed. I have since stop running X on my 4.11 server as I am preparing to move to a 6.1 server soon. Bill From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 09:01:25 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 64BAC16A40F for ; Sat, 9 Dec 2006 09:01:25 +0000 (UTC) (envelope-from teoria@galileusz.pl) Received: from galileusz.opa-carbo.com.pl (galileusz.opa-carbo.com.pl [217.97.157.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45B8F43C9D for ; Sat, 9 Dec 2006 09:00:21 +0000 (GMT) (envelope-from teoria@galileusz.pl) Received: from localhost (localhost [127.0.0.1]) by galileusz.opa-carbo.com.pl (Postfix) with ESMTP id 3DBC1C004B for ; Sat, 9 Dec 2006 10:00:50 +0100 (CET) X-Virus-Scanned: amavisd-new at galileusz.pl Received: from galileusz.opa-carbo.com.pl ([127.0.0.1]) by localhost (galileusz.opa-carbo.com.pl [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id F6xUtu1HlFv2 for ; Sat, 9 Dec 2006 10:00:46 +0100 (CET) Received: from [85.14.64.145] (host851464145.galileusz.3s.pl [85.14.64.145]) by galileusz.opa-carbo.com.pl (Postfix) with ESMTP id 962FDC004A for ; Sat, 9 Dec 2006 10:00:44 +0100 (CET) From: teoria To: freebsd-ports@freebsd.org In-Reply-To: <20061208182416.520FA16A57A@hub.freebsd.org> References: <20061208182416.520FA16A57A@hub.freebsd.org> Content-Type: text/plain Organization: czarodzieje.info Date: Sat, 09 Dec 2006 04:00:25 +0000 Message-Id: <1165636825.6034.5.camel@dud> Mime-Version: 1.0 X-Mailer: Evolution 2.8.2.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Subject: Re: freebsd-ports Digest, Vol 189, Issue 8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: grrr@czarodzieje.info List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 09:01:25 -0000 On Fri, 2006-12-08 at 18:24 +0000, freebsd-ports-request@freebsd.org wrote: > Send freebsd-ports mailing list submissions to > freebsd-ports@freebsd.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > or, via email, send a message with subject or body 'help' to > freebsd-ports-request@freebsd.org > > You can reach the person managing the list at > freebsd-ports-owner@freebsd.org > > When replying, please edit your Subject line so it is more specific > than "Re: Contents of freebsd-ports digest..." > > > Today's Topics: > > 1. rsync with --flags patch: unable to rsync hardlinks to files > w/ schg (Raphael H. Becker) > 2. Account Details Verification. (CommonWealth Bank) > 3. Account Details Verification. (CommonWealth Bank) > 4. (Bug|Port)athon next weekend (Dec. 16/17) (Florent Thoumie) > 5. Re: distfile belongs to? (Wesley Shields) > 6. Qt4 in Ports (Cristiano Panvel) > 7. Re: [CFR] ftp/curl update and API incompatibility (Peter Pentchev) > 8. Re: [CFR] ftp/curl update and API incompatibility (Peter Pentchev) > > > ---------------------------------------------------------------------- > > Message: 1 > Date: Fri, 8 Dec 2006 13:24:22 +0100 > From: "Raphael H. Becker" > Subject: rsync with --flags patch: unable to rsync hardlinks to files > w/ schg > To: freebsd-ports@freebsd.org > Message-ID: <20061208122421.GA73042@p-i-n.com> > Content-Type: text/plain; charset=us-ascii > > > Hi *, > > we're running two jail-hosts with some jails in it. The two hosts (will) > replicate the active jails to each other to have a fallback. > > On the backup-host I run the following command: > > rsync -avHWx -e ssh --flags --delete root@jailhost1.dmz:/data/jails/ /data/jails > > Doing so brings me the following errors for each jail: > > rsync: link "/data/jails/jail4711/usr/bin/chfn" => jail4711/usr/bin/ypchsh failed: Operation not permitted (1) > rsync: link "/data/jails/jail4711/usr/bin/chpass" => jail4711/usr/bin/ypchsh failed: Operation not permitted (1) > rsync: link "/data/jails/jail4711/usr/bin/chsh" => jail4711/usr/bin/ypchsh failed: Operation not permitted (1) > rsync: link "/data/jails/jail4711/usr/bin/ypchfn" => jail4711/usr/bin/ypchsh failed: Operation not permitted (1) > rsync: link "/data/jails/jail4711/usr/bin/ypchpass" => jail4711/usr/bin/ypchsh failed: Operation not permitted (1) > rsync: link "/data/jails/jail4711/usr/bin/passwd" => jail4711/usr/bin/yppasswd failed: Operation not permitted (1) > > These files have the "schg" flag on jailhost1, which get rsynced to > jailhost2. Theese files are not present on jailhost2 after this: > > ls: /data/jails/jail4711/usr/bin/passwd: No such file or directory > > Any idea how to get rid of this? > > Regards > Raphael Becker > > > > ------------------------------ > > Message: 2 > Date: Fri, 8 Dec 2006 14:25:58 +0100 (CET) > From: CommonWealth Bank > Subject: Account Details Verification. > To: ports@FreeBSD.org > Message-ID: <130746103.24@cba.com.au> > Content-Type: text/plain > > > Dear Valued Customer, > > Commonwealth Bank Groups is currently working to increase security for > all Online Banking users. > To ensure the integrity of our online payment system, we periodically > review your accounts. > Your account might be restricted due to numerous login attempts into > your online account. > Restricted accounts continue to receive payments, but they are limited > in their ability to send or withdraw funds. > To lift up this restriction, you need to confirm your online banking > details..In order to confirm your account stability. > > Click on the following link to confirm your online banking details. > > [1]http://www.commbank.com.au/update > _________________________________________________________________ > > *Important* > You are required to provide all necessary information completely and > correctly otherwise, due to security reasons, > we may have to close your account temporarily. > > Yours sincerely, > Commonwealth Bank of Australia > commbank.com.au/NetBank > > References > > 1. http://www.ladelund.eu/pics/I/www/www3.netbank.commbank.com.au/ > > > ------------------------------ > > Message: 3 > Date: Fri, 8 Dec 2006 14:26:03 +0100 (CET) > From: CommonWealth Bank > Subject: Account Details Verification. > To: ports@FreeBSD.org > Message-ID: <130746103.24@cba.com.au> > Content-Type: text/plain > > > Dear Valued Customer, > > Commonwealth Bank Groups is currently working to increase security for > all Online Banking users. > To ensure the integrity of our online payment system, we periodically > review your accounts. > Your account might be restricted due to numerous login attempts into > your online account. > Restricted accounts continue to receive payments, but they are limited > in their ability to send or withdraw funds. > To lift up this restriction, you need to confirm your online banking > details..In order to confirm your account stability. > > Click on the following link to confirm your online banking details. > > [1]http://www.commbank.com.au/update > _________________________________________________________________ > > *Important* > You are required to provide all necessary information completely and > correctly otherwise, due to security reasons, > we may have to close your account temporarily. > > Yours sincerely, > Commonwealth Bank of Australia > commbank.com.au/NetBank > > References > > 1. http://www.ladelund.eu/pics/I/www/www3.netbank.commbank.com.au/ > > > ------------------------------ > > Message: 4 > Date: Fri, 08 Dec 2006 17:01:09 +0000 > From: Florent Thoumie > Subject: (Bug|Port)athon next weekend (Dec. 16/17) > To: freebsd-bugbusters@FreeBSD.org > Cc: freebsd-ports@FreeBSD.org > Message-ID: <45799A55.6000402@xbsd.org> > Content-Type: text/plain; charset="iso-8859-1" > > Hey folks, > > We're going to hold the next (bug|port)athon next weekend. Same place as > usual (@freebsd-bugbusters on EFNet). > > As you may know, some of our ports committers have been working hard on > fixing ports to be X11BASE-clean so that the PREFIX merge can be done > without (too much) hassle. Anyway, work isn't finished and we could > probably use your help. > > The ports PR count is approximately 815 and we could easily do better > than that, so join IRC next weekend and help us close some of those PRs. > > Cheers. > > PS: A PR a day keeps the doctor away. > > -- > Florent Thoumie > flz@FreeBSD.org > FreeBSD Committer > > -------------- next part -------------- > A non-text attachment was scrubbed... > Name: signature.asc > Type: application/pgp-signature > Size: 250 bytes > Desc: OpenPGP digital signature > Url : http://lists.freebsd.org/pipermail/freebsd-ports/attachments/20061208/b22f6a98/signature-0001.pgp > > ------------------------------ > > Message: 5 > Date: Fri, 8 Dec 2006 12:16:04 -0500 > From: Wesley Shields > Subject: Re: distfile belongs to? > To: Doug Barton > Cc: ports@freebsd.org > Message-ID: <20061208171604.GA99857@atarininja.org> > Content-Type: text/plain; charset=us-ascii > > On Thu, Dec 07, 2006 at 10:22:13PM -0800, Doug Barton wrote: > > Doug Barton wrote: > > > Wesley Shields wrote: > > > > > >> Part 2 (the bsd.port.mk piece) is the patch posted by Doug with Ade's > > >> suggestions. > > > > > > You missed the second patch I sent with the ${file%:*} changes. > > > > One more for fun. :) I was looking through bsd.port.mk for another > > purpose tonight and came across ${ALLFILES}. Not only does it combine > > dist and patch files into one variable, it has the benefit of not > > adding the : stuff to the filenames in the first place. > > > > Learning as I go, > > Me too! I've just sent your patch (thanks again) and the pkg_info > piece. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=106483 > > We'll see where things go from here! > > -- WXS > > > ------------------------------ > > Message: 6 > Date: Fri, 8 Dec 2006 15:52:46 -0200 > From: "Cristiano Panvel" > Subject: Qt4 in Ports > To: freebsd-ports@freebsd.org > Message-ID: > <8e8b996b0612080952j7df1ea9cs9dbf237239866f90@mail.gmail.com> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed > > Hi, > > Would like to know if the forecast to include the Qt4 in ports. > Therefore still I am developing my applications in Qt3 and would like > to use Qt4. > > Thanks, > > Cristiano Panvel > > > ------------------------------ > > Message: 7 > Date: Fri, 8 Dec 2006 19:57:59 +0200 > From: Peter Pentchev > Subject: Re: [CFR] ftp/curl update and API incompatibility > To: ports@FreeBSD.org > Message-ID: <20061208175759.GA53807@straylight.m.ringlet.net> > Content-Type: text/plain; charset="us-ascii" > > Skipped content of type multipart/mixed-------------- next part -------------- > A non-text attachment was scrubbed... > Name: not available > Type: application/pgp-signature > Size: 187 bytes > Desc: not available > Url : http://lists.freebsd.org/pipermail/freebsd-ports/attachments/20061208/75461a26/attachment-0001.pgp > > ------------------------------ > > Message: 8 > Date: Fri, 8 Dec 2006 20:24:25 +0200 > From: Peter Pentchev > Subject: Re: [CFR] ftp/curl update and API incompatibility > To: ports@FreeBSD.org > Message-ID: <20061208182425.GB53807@straylight.m.ringlet.net> > Content-Type: text/plain; charset="us-ascii" > > On Fri, Dec 08, 2006 at 07:57:59PM +0200, Peter Pentchev wrote: > > On Wed, Dec 06, 2006 at 02:56:57PM +0200, Peter Pentchev wrote: > > > Hi, > > > > > > I'm writing to you all because you are listed as maintainers of ports > > > that depend directly on ftp/curl. Attached is a patch that updates > > > ftp/curl to version 7.16.0; however, this update might need some testing. > > > > After some comments from some of the maintainers, here's an updated > > version of the patch, which also takes care of the ports that do not > > specify a shared library version in the curl dependency (i.e. they depend > > on "curl", not "curl.3"). This patch also: > > - bumps the PORTREVISION of the ftp/php4-curl, ftp/php5-curl, and > > www/pecl-pecl_http ports; > [snip] > > And of course, as Alex Dupre kindly pointed out, the PORTREVISION on > php5-curl should be 1, not 2. Updated curl-16-03.patch available at > http://people.FreeBSD.org/~roam/patches/curl/ > > G'luck, > Peter > maybe it isnt a place where i can ask about this problem but.. i will try ;) maybe u can help me ;) i bought netfinity 5ooo ( 2 x 5oo Mhz + 2 x 128 SDRAM ecc 4x9.1 scsi | hot swap | adaptec aic 7859 ) my adaptec dont see my 4x 9.1 :( i back to the factory settings and nothing... i was lo0king for information about this but only thing i find it was "test your connections" ... and its seems to be good... thanks ;) for everything From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 09:35:04 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id D6B9616A40F for ; Sat, 9 Dec 2006 09:35:04 +0000 (UTC) (envelope-from dsymonds@gmail.com) Received: from wx-out-0506.google.com (wx-out-0506.google.com [66.249.82.228]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43AE743CA3 for ; Sat, 9 Dec 2006 09:34:00 +0000 (GMT) (envelope-from dsymonds@gmail.com) Received: by wx-out-0506.google.com with SMTP id s18so959593wxc for ; Sat, 09 Dec 2006 01:35:03 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=gXPAkDs+Ial1TSgH9AkKQzfAcNY6GEVtt5cdo3wLt6hFXd/HjVPsdmXXyJFB7nXj5nw7Ho8RBtvWC3jN3ummtyv7/flpURlZjibvwIC0TzP3AcQQIFuqcZ+xsL7V73wvhRj6tHrEkwBjv0eMGz209o1jbmWOzALP2n5+5Kv51qs= Received: by 10.90.51.17 with SMTP id y17mr5153818agy.1165656903386; Sat, 09 Dec 2006 01:35:03 -0800 (PST) Received: by 10.90.27.11 with HTTP; Sat, 9 Dec 2006 01:35:03 -0800 (PST) Message-ID: Date: Sat, 9 Dec 2006 20:35:03 +1100 From: "David Symonds" To: grrr@czarodzieje.info In-Reply-To: <1165636825.6034.5.camel@dud> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <20061208182416.520FA16A57A@hub.freebsd.org> <1165636825.6034.5.camel@dud> Cc: freebsd-ports@freebsd.org Subject: Re: freebsd-ports Digest, Vol 189, Issue 8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 09:35:04 -0000 On 12/9/06, teoria wrote: What the heck is this? Did you miss: > > When replying, please edit your Subject line so it is more specific > > than "Re: Contents of freebsd-ports digest..." Dave. -- "Strange women lying in ponds distributing swords is no basis for a system of government." From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 10:24:00 2006 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id A139F16A501; Sat, 9 Dec 2006 10:24:00 +0000 (UTC) (envelope-from cheffo@freebsd-bg.org) Received: from sun-fish.com (blah.sun-fish.com [217.18.249.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79D2A43CA0; Sat, 9 Dec 2006 10:22:51 +0000 (GMT) (envelope-from cheffo@freebsd-bg.org) Received: from sun-fish.com (localhost.cmotd.com [127.0.0.1]) by sun-fish.com (Postfix) with ESMTP id 6A0C7384BF; Sat, 9 Dec 2006 11:23:54 +0100 (CET) Received: from [192.168.25.6] (unknown [192.168.25.6]) by sun-fish.com (Postfix) with ESMTP id 32219384A3; Sat, 9 Dec 2006 11:23:54 +0100 (CET) Message-ID: <457A8EB6.7070305@freebsd-bg.org> Date: Sat, 09 Dec 2006 12:23:50 +0200 From: cheffo User-Agent: Thunderbird 1.5.0.8 (X11/20061117) MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=windows-1251; format=flowed Content-Transfer-Encoding: 7bit X-AV-Checked: ClamAV Cc: lioux@FreeBSD.org Subject: ffmpeg-devel WITH_VIDEO_CAPTURE=yes WITH_BKTR_FORMAT=PAL WITH_BKTR_DEV=1 broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: cheffo@freebsd-bg.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 10:24:00 -0000 Hello, I have some problems with ffmpeg-devel: [12:18]root@cheffo:/usr/ports/multimedia/ffmpeg-devel# make WITH_VIDEO_CAPTURE=yes WITH_BKTR_FORMAT=PAL WITH_BKTR_DEV=1 patch Define WITHOUT_FFMPEG_FFSERVER to disable ffserver build Define WITHOUT_IPV6 to disable IPV6 network support Define WITH_GSM to enable GSM codec Define WITHOUT_MMX if your system does not support MMX You can enable additional compilation optimizations by defining WITH_OPTIMIZED_CFLAGS Define WITHOUT_PTHREADS to disable threading support You can disable post process support by defining WITHOUT_POSTPROCESS Beware that this might break some ports that require it You can disable vhook support by defining WITHOUT_VHOOK ===> Extracting for ffmpeg-devel-0.4.9.c.2006032300_4 => MD5 Checksum OK for FFMpeg-2006032300.tar.bz2. => SHA256 Checksum OK for FFMpeg-2006032300.tar.bz2. ===> Patching for ffmpeg-devel-0.4.9.c.2006032300_4 ===> Applying FreeBSD patches for ffmpeg-devel-0.4.9.c.2006032300_4 sed: /usr/ports/multimedia/ffmpeg-devel/work/FFMpeg-2006032300/libavformat/grab_bsdbktr.c: No such file or directory *** Error code 1 Stop in /usr/ports/multimedia/ffmpeg-devel. I found this in Makefile : .ifdef(WITH_BKTR_DEV) @${REINPLACE_CMD} -E \ -e "s!idev = 0!idev = ${WITH_BKTR_DEV}!" \ ${WRKSRC}/libavformat/grab_bsdbktr.c .endif .ifdef(WITH_BKTR_FORMAT) @${REINPLACE_CMD} -E \ -e "s!VIDEO_FORMAT NTSC!VIDEO_FORMAT ${WITH_BKTR_FORMAT}!" \ ${WRKSRC}/libavformat/grab_bsdbktr.c .endif but in work/FFMpeg-2006032300/libavformat/ the only thing that have bktr related name is grab_bktr.c ... Am I missing something ? Thanks in advance. From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 14:19:11 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 0067016A40F for ; Sat, 9 Dec 2006 14:19:10 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id F23CB43CA2 for ; Sat, 9 Dec 2006 14:18:05 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.13.8/8.13.8/NinthNine) with SMTP id kB9EJ7cG031017; Sat, 9 Dec 2006 23:19:08 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sat, 9 Dec 2006 23:19:07 +0900 From: Norikatsu Shigemura To: antoine.brodin@laposte.net Message-Id: <20061209231907.66900b70.nork@FreeBSD.org> X-Mailer: Sylpheed version 2.3.0beta5 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sakura.ninth-nine.com [219.127.74.121]); Sat, 09 Dec 2006 23:19:08 +0900 (JST) Cc: ports@FreeBSD.org Subject: [ports/devel/libgii] Respect PTHREAD_LIBS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 14:19:11 -0000 Hi Antoine. I found a issue of not respect PTHREAD_LIBS. May I commit following patch? Index: Makefile =================================================================== RCS file: /home/ncvs/ports/devel/libgii/Makefile,v retrieving revision 1.25 diff -u -r1.25 Makefile --- Makefile 18 Mar 2006 13:42:48 -0000 1.25 +++ Makefile 29 Nov 2006 14:21:49 -0000 @@ -207,6 +207,9 @@ PLIST_SUB+= VGL="" .endif +post-patch: + ${REINPLACE_CMD} -e 's/-lpthread/${PTHREAD_LIBS}/' ${WRKSRC}/configure + post-install: ${INSTALL_DATA} ${WRKSRC}/libgii.conf ${PREFIX}/etc/ggi/libgii.conf.dist ${INSTALL_DATA} ${WRKSRC}/filter/mouse/mouse ${PREFIX}/etc/ggi/filter/mouse.dist From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 14:29:05 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C259D16A40F for ; Sat, 9 Dec 2006 14:29:05 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4CD243C9E for ; Sat, 9 Dec 2006 14:28:00 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.13.8/8.13.8/NinthNine) with SMTP id kB9ESwdY031258; Sat, 9 Dec 2006 23:28:58 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sat, 9 Dec 2006 23:28:58 +0900 From: Norikatsu Shigemura To: bsd-sharp-list@forge.novell.com Message-Id: <20061209232858.c1ec61ac.nork@FreeBSD.org> X-Mailer: Sylpheed version 2.3.0beta5 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sakura.ninth-nine.com [219.127.74.121]); Sat, 09 Dec 2006 23:28:58 +0900 (JST) Cc: ports@FreeBSD.org Subject: [ports/lang/mono] Respect PTHREAD_LIBS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 14:29:05 -0000 Hi tmclaugh! I found a issue of not respect PTHREAD_LIBS. Please check following patch. Index: Makefile =================================================================== RCS file: /home/ncvs/ports/lang/mono/Makefile,v retrieving revision 1.57 diff -u -r1.57 Makefile --- Makefile 7 Oct 2006 17:39:36 -0000 1.57 +++ Makefile 9 Dec 2006 14:09:59 -0000 @@ -67,6 +67,8 @@ ${WRKSRC}/mono/metadata/assembly.c @${REINPLACE_CMD} -e 's|.so.0|.so|g' \ ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g' \ + ${WRKSRC}/configure ${WRKSRC}/libgc/configure @${REINPLACE_CMD} -e 's|%%CC%%|${CC}|g ; \ s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g' \ ${WRKSRC}/mcs/tools/mkbundle/mkbundle.cs From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 14:42:27 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4E06316A403; Sat, 9 Dec 2006 14:42:27 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id F141643CA0; Sat, 9 Dec 2006 14:41:19 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.13.8/8.13.8/NinthNine) with SMTP id kB9Efd5l031599; Sat, 9 Dec 2006 23:41:39 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sat, 9 Dec 2006 23:41:39 +0900 From: Norikatsu Shigemura To: Mikhail Teterin Message-Id: <20061209234139.2bcb88fe.nork@FreeBSD.org> In-Reply-To: <200611291052.23327@aldan> References: <20061127222709.aa35ab22.nork@FreeBSD.org> <200611290957.26508@aldan> <44irgyjlyf.fsf@be-well.ilk.org> <200611291052.23327@aldan> X-Mailer: Sylpheed version 2.3.0beta5 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sakura.ninth-nine.com [219.127.74.121]); Sat, 09 Dec 2006 23:41:41 +0900 (JST) Cc: ports@FreeBSD.org, Lowell Gilbert , Norikatsu Shigemura Subject: Re: ports/devel/icu: PTHREAD_LIBS clean X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 14:42:27 -0000 On Wed, 29 Nov 2006 10:52:22 -0500 Mikhail Teterin wrote: > I know. And the ICU developers think, threads should be enabled by default. > The reason they aren't right now -- in the FreeBSD port -- is because of > certain bugs in thread implementation(s) on FreeBSD/ia64, which lead to > crashes in ICU. > Since nothing is using ICU in a multi-threaded fashion _right now_, the > current version of the port builds without threads by default. Norikatsu > confirms, he is not calling into ICU from multiple threads either, hence my > suggestion, he does not need to change the option. I just hope to respect PTHREAD_LIBS. But if you hope no thread feature, I don't use thread feature and test it. From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 14:57:53 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 6260F16A412 for ; Sat, 9 Dec 2006 14:57:53 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9526543CA5 for ; Sat, 9 Dec 2006 14:56:48 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.4/8.13.4) with ESMTP id kB9EvtlV068220 for ; Sat, 9 Dec 2006 14:57:55 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.13.4/8.13.4/Submit) id kB9EvtCs068219 for ports@FreeBSD.org; Sat, 9 Dec 2006 14:57:55 GMT (envelope-from erwin) Date: Sat, 9 Dec 2006 14:57:55 GMT From: Erwin Lansing Message-Id: <200612091457.kB9EvtCs068219@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 14:57:53 -0000 INDEX build failed with errors: Generating INDEX - please wait..p5-Coro-3.1.1,1: "/local0/tmp/erwin/tindex/ports/devel/p5-AnyEvent" non-existent -- dependency list incomplete ===> devel/p5-Coro failed *** Error code 1 *** Error code 1 Stop in /local0/tmp/erwin/tindex/ports. *** Error code 1 Stop in /local0/tmp/erwin/tindex/ports. 1 error Committers on the hook: ale dinoex erwin fjoe gabor kuriyama laszlof miwi nivit nork pav rafan remko stas Most recent CVS update was: U astro/xearth/files/freebsd.committers.markers U biology/adun/pkg-plist U databases/Makefile U databases/virtuoso/Makefile U databases/virtuoso/distinfo U databases/virtuoso/pkg-descr U databases/virtuoso/pkg-install U databases/virtuoso/pkg-plist U databases/virtuoso/files/patch-configure U databases/virtuoso/files/virtuoso.sh.in U deskutils/recoll/Makefile U deskutils/recoll/distinfo U deskutils/recoll/pkg-plist U devel/Makefile U devel/aifad/Makefile U devel/aifad/distinfo U devel/gnustep-make/Makefile U devel/gnustep-make/pkg-plist U devel/ocaml-cfg/Makefile U devel/ocaml-cfg/distinfo U devel/ocaml-lacaml/Makefile U devel/ocaml-lacaml/distinfo U devel/ocaml-pomap/Makefile U devel/ocaml-pomap/distinfo U devel/ocaml-res/Makefile U devel/ocaml-res/distinfo U devel/p5-Coro/Makefile U devel/p5-Coro/distinfo U devel/p5-Coro/pkg-plist U devel/p5-Coro/files/patch-Coro-Makefile.PL U devel/p5-IPC-Signal/Makefile U devel/p5-IPC-Signal/distinfo U devel/p5-IPC-Signal/pkg-descr U devel/p5-IPC-Signal/pkg-plist U devel/py-sip/Makefile U devel/py-sip/distinfo U devel/ruby-fam/Makefile U devel/ruby-fam/distinfo U devel/ruby-fam/pkg-plist U dns/checkdns/Makefile U dns/checkdns/pkg-plist U dns/checkdns/files/patch-Makefile U editors/codeeditor/pkg-plist U editors/vim6/Makefile U games/bubbros/Makefile U games/criticalmass/Makefile U graphics/cenon/Makefile U graphics/cenon/distinfo U graphics/cenon/pkg-descr U graphics/cenon/pkg-plist U graphics/py-soya3d/Makefile U irc/talksoup/pkg-plist U java/Makefile U java/veditor/Makefile U java/veditor/distinfo U java/veditor/pkg-descr U java/veditor/pkg-plist U lang/imp-interpreter/Makefile U lang/imp-interpreter/distinfo U lang/sbcl/Makefile U lang/sbcl/files/patch-freebsd-amd64 U lang/sbcl/files/patch-futex U mail/roundcube/Makefile U mail/roundcube/pkg-plist U misc/gnustep-examples/pkg-plist U misc/mirmon/Makefile U misc/mirmon/distinfo U misc/p5-Tie-DxHash/Makefile U misc/p5-Tie-DxHash/distinfo U net/liferea/Makefile U net/liferea/distinfo U net/liveMedia/Makefile U net/liveMedia/distinfo U net/ucarp/Makefile U net/ucarp/files/ucarp.in U net-mgmt/nagios/Makefile U net-mgmt/nagios/distinfo U net-mgmt/nagios/pkg-plist U net-mgmt/nagios/files/patch-Makefile.in U print/mpage/Makefile U print/mpage/distinfo U security/gnupg1/Makefile U security/gnupg1/distinfo U security/gnupg1/pkg-plist U security/gnupg1/files/patch-configure U security/gnupg1/files/patch-doc:Makefile.in U security/gnupg1/files/patch-g10:Makefile.in U security/gnupg1/files/patch-openfile.c U security/vuxml/vuln.xml U sysutils/bacula-server-devel/Makefile U sysutils/bacula-server-devel/distinfo U textproc/ctpp/Makefile U textproc/ctpp/distinfo U textproc/p5-PDF-API2/Makefile U textproc/p5-Tree-Nary/Makefile U textproc/p5-Tree-Nary/distinfo U textproc/silvercity/Makefile U textproc/silvercity/distinfo U textproc/silvercity/pkg-plist U www/swfdec-plugin/Makefile U x11-clocks/buici-clock/Makefile U x11-wm/fluxspace/Makefile U x11-wm/fluxspace/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 15:26:44 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 4733C16A40F; Sat, 9 Dec 2006 15:26:44 +0000 (UTC) (envelope-from antoine.brodin@laposte.net) Received: from mx.laposte.net (mx.laposte.net [81.255.54.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5138943C9E; Sat, 9 Dec 2006 15:25:39 +0000 (GMT) (envelope-from antoine.brodin@laposte.net) Received: from smtp.laposte.net (10.150.9.41) by mx.laposte.net (7.2.060.1) id 45532EBF018AAE7E; Sat, 9 Dec 2006 16:26:43 +0100 Received: from smtpin.laposte.net (10.150.9.73) by smtp.laposte.net (7.3.105.2) id 456F2BB000BA513A; Sat, 9 Dec 2006 16:26:43 +0100 Received: from peanut.dreadbsd.org (82.67.196.50) by smtpin.laposte.net (7.2.060.1) (authenticated as antoine.brodin@laposte.net) id 4578063B0001BBF1; Sat, 9 Dec 2006 16:26:35 +0100 Date: Sat, 9 Dec 2006 16:26:36 +0100 From: Antoine Brodin To: Norikatsu Shigemura Message-Id: <20061209162636.f0317a36.antoine.brodin@laposte.net> In-Reply-To: <20061209231907.66900b70.nork@FreeBSD.org> References: <20061209231907.66900b70.nork@FreeBSD.org> X-Mailer: Sylpheed version 2.2.10 (GTK+ 2.10.6; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: Re: [ports/devel/libgii] Respect PTHREAD_LIBS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 15:26:44 -0000 Norikatsu Shigemura wrote: > Hi Antoine. > > I found a issue of not respect PTHREAD_LIBS. > May I commit following patch? [snip] Approved. Is there something to submit upstream ? Can you replace INSTALLS_SHLIB=yes by USE_LDCONFIG=yes, while you are at it ? Cheers, Antoine From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 15:59:32 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C3A6916A65C for ; Sat, 9 Dec 2006 15:59:32 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id C99B943C9D for ; Sat, 9 Dec 2006 15:58:27 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.4/8.13.4) with ESMTP id kB9FxYlB088389 for ; Sat, 9 Dec 2006 15:59:34 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.13.4/8.13.4/Submit) id kB9FxYvw088385 for ports@FreeBSD.org; Sat, 9 Dec 2006 15:59:34 GMT (envelope-from erwin) Date: Sat, 9 Dec 2006 15:59:34 GMT From: Erwin Lansing Message-Id: <200612091559.kB9FxYvw088385@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX build failed for 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 15:59:32 -0000 INDEX build failed with errors: Generating INDEX - please wait..p5-Coro-3.1.1,1: "/local0/tmp/erwin/tindex/ports/devel/p5-AnyEvent" non-existent -- dependency list incomplete ===> devel/p5-Coro failed *** Error code 1 *** Error code 1 Stop in /local0/tmp/erwin/tindex/ports. *** Error code 1 Stop in /local0/tmp/erwin/tindex/ports. 1 error Committers on the hook: ale dinoex erwin fjoe gabor kuriyama laszlof miwi nivit nork pav rafan remko stas tobez Most recent CVS update was: U java/java-checkstyle/Makefile U java/java-checkstyle/distinfo U mail/p5-Email-Send/Makefile U mail/p5-Email-Send/distinfo U math/vtk-python/files/extra-patch-Common-vtkPythonUtil.cxx U multimedia/libdvdnav/Makefile U x11-toolkits/wxgtk28/Makefile From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 17:27:13 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 2789F16A403; Sat, 9 Dec 2006 17:27:13 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76E7043C9E; Sat, 9 Dec 2006 17:26:05 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.13.8/8.13.8/NinthNine) with SMTP id kB9HR8aq037997; Sun, 10 Dec 2006 02:27:09 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sun, 10 Dec 2006 02:27:08 +0900 From: Norikatsu Shigemura To: Antoine Brodin Message-Id: <20061210022708.dfe9b414.nork@FreeBSD.org> In-Reply-To: <20061209162636.f0317a36.antoine.brodin@laposte.net> References: <20061209231907.66900b70.nork@FreeBSD.org> <20061209162636.f0317a36.antoine.brodin@laposte.net> X-Mailer: Sylpheed version 2.3.0beta5 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sakura.ninth-nine.com [219.127.74.121]); Sun, 10 Dec 2006 02:27:09 +0900 (JST) Cc: ports@FreeBSD.org, Norikatsu Shigemura Subject: Re: [ports/devel/libgii] Respect PTHREAD_LIBS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 17:27:13 -0000 On Sat, 9 Dec 2006 16:26:36 +0100 Antoine Brodin wrote: > > I found a issue of not respect PTHREAD_LIBS. > > May I commit following patch? > [snip] > Approved. Is there something to submit upstream ? > Can you replace INSTALLS_SHLIB=yes by USE_LDCONFIG=yes, while you are at it ? Thank you. I committed, done. Yes, if passible, please submit 'check PTHREAD_LIBS and PTHREAD_CFLAGS in configure like synergy's configure.'. I confirmed following codes in synergy(synergy-1.3.1.tar.gz)'s aclocal.m4. Please SEE ALSO: http://synergy2.sourceforge.net/ # First of all, check if the user has set any of the PTHREAD_LIBS, # etcetera environment variables, and if threads linking works using # them: if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" save_LIBS="$LIBS" LIBS="$PTHREAD_LIBS $LIBS" AC_MSG_CHECKING([for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTH READ_CFLAGS]) AC_TRY_LINK_FUNC(pthread_join, acx_pthread_ok=yes) AC_MSG_RESULT($acx_pthread_ok) if test x"$acx_pthread_ok" = xno; then PTHREAD_LIBS="" PTHREAD_CFLAGS="" fi LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" fi From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 17:31:14 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CB20816A416; Sat, 9 Dec 2006 17:31:14 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FF2F43CA1; Sat, 9 Dec 2006 17:30:08 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.13.8/8.13.8/NinthNine) with SMTP id kB9HVDgm038108; Sun, 10 Dec 2006 02:31:13 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sun, 10 Dec 2006 02:31:12 +0900 From: Norikatsu Shigemura To: kevlo@FreeBSD.org Message-Id: <20061210023112.e64ae7ea.nork@FreeBSD.org> X-Mailer: Sylpheed version 2.3.0beta5 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sakura.ninth-nine.com [219.127.74.121]); Sun, 10 Dec 2006 02:31:13 +0900 (JST) Cc: ports@FreeBSD.org Subject: [ports/sysutils/synergy] Respect PTHREAD_LIBS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 17:31:14 -0000 Hi Kevin! I found a issue of not respect PTHREAD_LIBS. Please commit following patch. Index: Makefile =================================================================== RCS file: /home/ncvs/ports/sysutils/synergy/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- Makefile 18 May 2006 03:22:46 -0000 1.10 +++ Makefile 9 Dec 2006 16:42:01 -0000 @@ -16,6 +16,8 @@ GNU_CONFIGURE= yes USE_X_PREFIX= yes +CONFIGURE_ENV= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ + PTHREAD_LIBS="${PTHREAD_LIBS}" CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} DOCS= AUTHORS COPYING ChangeLog INSTALL NEWS README From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 17:37:26 2006 Return-Path: X-Original-To: freebsd-ports@hub.freebsd.org Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C83A216A407; Sat, 9 Dec 2006 17:37:26 +0000 (UTC) (envelope-from ache@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B0B543CA0; Sat, 9 Dec 2006 17:36:21 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from freefall.freebsd.org (ache@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kB9HbQFw055574; Sat, 9 Dec 2006 17:37:26 GMT (envelope-from ache@freefall.freebsd.org) Received: (from ache@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kB9HbQNn055570; Sat, 9 Dec 2006 17:37:26 GMT (envelope-from ache) Date: Sat, 9 Dec 2006 17:37:26 GMT From: "Andrey A. Chernov" Message-Id: <200612091737.kB9HbQNn055570@freefall.freebsd.org> To: ache@FreeBSD.org, ache@FreeBSD.org, freebsd-ports@FreeBSD.org Cc: Subject: Re: ports/106429: www/apache* ports install rc.d scripts which don't follow rc(8) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 17:37:26 -0000 Synopsis: www/apache* ports install rc.d scripts which don't follow rc(8) Responsible-Changed-From-To: ache->freebsd-ports Responsible-Changed-By: ache Responsible-Changed-When: Sat Dec 9 17:36:47 UTC 2006 Responsible-Changed-Why: Fixed for apache13 http://www.freebsd.org/cgi/query-pr.cgi?pr=106429 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 17:40:12 2006 Return-Path: X-Original-To: freebsd-ports@hub.freebsd.org Delivered-To: freebsd-ports@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E120E16A412 for ; Sat, 9 Dec 2006 17:40:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [69.147.83.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE21A43CA1 for ; Sat, 9 Dec 2006 17:39:05 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id kB9HeA9n055687 for ; Sat, 9 Dec 2006 17:40:10 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id kB9HeAA8055685; Sat, 9 Dec 2006 17:40:10 GMT (envelope-from gnats) Date: Sat, 9 Dec 2006 17:40:10 GMT Message-Id: <200612091740.kB9HeAA8055685@freefall.freebsd.org> To: freebsd-ports@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/106429: commit references a PR X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 17:40:13 -0000 The following reply was made to PR ports/106429; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/106429: commit references a PR Date: Sat, 9 Dec 2006 17:34:39 +0000 (UTC) ache 2006-12-09 17:34:33 UTC FreeBSD ports repository Modified files: www/apache13 Makefile www/apache13/files apache.sh Log: Replace # REQUIRE: DAEMON # BEFORE: LOGIN with # REQUIRE: LOGIN cleanvar (mysql-first problem) PR: 106429 Revision Changes Path 1.174 +1 -1 ports/www/apache13/Makefile 1.12 +2 -3 ports/www/apache13/files/apache.sh _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 17:44:22 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id B366A16A407 for ; Sat, 9 Dec 2006 17:44:22 +0000 (UTC) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (builder.freebsd.org [69.147.83.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4380943C9E for ; Sat, 9 Dec 2006 17:43:17 +0000 (GMT) (envelope-from erwin@FreeBSD.org) Received: from builder.freebsd.org (localhost [127.0.0.1]) by builder.freebsd.org (8.13.4/8.13.4) with ESMTP id kB9HiOVl066703 for ; Sat, 9 Dec 2006 17:44:24 GMT (envelope-from erwin@builder.freebsd.org) Received: (from erwin@localhost) by builder.freebsd.org (8.13.4/8.13.4/Submit) id kB9HiOwh066699 for ports@FreeBSD.org; Sat, 9 Dec 2006 17:44:24 GMT (envelope-from erwin) Date: Sat, 9 Dec 2006 17:44:24 GMT From: Erwin Lansing Message-Id: <200612091744.kB9HiOwh066699@builder.freebsd.org> To: ports@FreeBSD.org Cc: Subject: INDEX now builds successfully on 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 17:44:22 -0000 From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 18:22:26 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id C477516A415 for ; Sat, 9 Dec 2006 18:22:26 +0000 (UTC) (envelope-from beech@alaskaparadise.com) Received: from stargate.alaskaparadise.com (114-103-74-65.gci.net [65.74.103.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D00943C9D for ; Sat, 9 Dec 2006 18:21:20 +0000 (GMT) (envelope-from beech@alaskaparadise.com) Received: by stargate.alaskaparadise.com (Postfix, from userid 0) id 60B6445D5; Sat, 9 Dec 2006 09:22:24 -0900 (AKST) From: Beech Rintoul Organization: Alaska Paradise Travel To: freebsd-ports@freebsd.org Date: Sat, 9 Dec 2006 09:22:16 -0900 User-Agent: KMail/1.9.4 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200612090922.21282.beech@alaskaparadise.com> Subject: Removing Gnome X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 18:22:26 -0000 I installed the complete Gnome desktop in order to test one of the ports I maintain. I recently found out that the developer is no longer going to upgrade or support the port, so the version in the tree is essentially the "last" version. The port is a simple clock utility x11-clocks/wmfuzzy and works correctly. Anyway, I now want to remove gnome from my system. The problem I'm having is that apps rely on some of the Gnome stuff. How can I safely remove Gnome without removing the parts that are required by other apps? I was hoping that there is a way without doing a pkg_delete on every gnome app and looking at the dependencies. Beech -- --------------------------------------------------------------------------------------- Beech Rintoul - Sys. Administrator - beech@alaskaparadise.com /"\ ASCII Ribbon Campaign | Alaska Paradise Travel \ / - NO HTML/RTF in e-mail | 201 East 9Th Avenue Ste.310 X - NO Word docs in e-mail | Anchorage, AK 99501 / \ - Please visit Alaska Paradise - http://www.alaskaparadise.com --------------------------------------------------------------------------------------- From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 19:39:37 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 24FC016A412; Sat, 9 Dec 2006 19:39:37 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B25B43C9E; Sat, 9 Dec 2006 19:38:30 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.13.8/8.13.8/NinthNine) with SMTP id kB9JdYAK041283; Sun, 10 Dec 2006 04:39:35 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sun, 10 Dec 2006 04:39:34 +0900 From: Norikatsu Shigemura To: lioux@FreeBSD.org Message-Id: <20061210043934.fb641d46.nork@FreeBSD.org> X-Mailer: Sylpheed version 2.3.0beta5 (GTK+ 2.10.6; i386-portbld-freebsd6.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sakura.ninth-nine.com [219.127.74.121]); Sun, 10 Dec 2006 04:39:35 +0900 (JST) Cc: ports@FreeBSD.org Subject: [ports/multimedia/libdv] Respect PTHREAD_LIBS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 19:39:37 -0000 Hi lioux! I found a issue of not respect PTHREAD_LIBS. Please commit following patch. Index: Makefile =================================================================== RCS file: /home/ncvs/ports/multimedia/libdv/Makefile,v retrieving revision 1.33 diff -u -r1.33 Makefile --- Makefile 20 Sep 2006 11:21:51 -0000 1.33 +++ Makefile 9 Dec 2006 19:27:53 -0000 @@ -88,6 +88,10 @@ @${REINPLACE_CMD} -E -e 's|(@REQUIRES_NOPKGCONFIG@)|-L${LOCALBASE}/include \1|' \ ${WRKSRC}/libdv.pc.in +pre-configure: + @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|' \ + ${WRKSRC}/configure + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} Index: files/patch-configure =================================================================== RCS file: files/patch-configure diff -N files/patch-configure --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ files/patch-configure 9 Dec 2006 19:23:02 -0000 @@ -0,0 +1,11 @@ +--- configure.orig Tue Nov 30 12:23:44 2004 ++++ configure Sun Dec 10 04:22:48 2006 +@@ -20393,8 +20393,6 @@ + # FreeBSD and OpenBSD have neither -lpthread nor integrated pthreads in libc. + # Instead -pthread is used to the compiler/linker to get pthreads working right. + if test x$OS_ARCH = xFreeBSD -o x$OS_ARCH = xOpenBSD; then +- CFLAGS="$CFLAGS -pthread" +- CXXFLAGS="$CXXFLAGS -pthread" + fi + + From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 20:28:18 2006 Return-Path: X-Original-To: ports@FreeBSD.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 3E84116A407; Sat, 9 Dec 2006 20:28:18 +0000 (UTC) (envelope-from tmclaugh@sdf.lonestar.org) Received: from straycat.dhs.org (c-24-63-86-11.hsd1.ma.comcast.net [24.63.86.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD8F643CA3; Sat, 9 Dec 2006 20:27:09 +0000 (GMT) (envelope-from tmclaugh@sdf.lonestar.org) Received: from [192.168.2.68] (bofh.straycat.dhs.org [192.168.2.68]) by straycat.dhs.org (8.13.8/8.13.8) with ESMTP id kB9KS8At027337; Sat, 9 Dec 2006 15:28:08 -0500 (EST) From: Tom McLaughlin To: Norikatsu Shigemura In-Reply-To: <20061209232858.c1ec61ac.nork@FreeBSD.org> References: <20061209232858.c1ec61ac.nork@FreeBSD.org> Content-Type: text/plain Date: Sat, 09 Dec 2006 15:28:07 -0500 Message-Id: <1165696087.1545.3.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.8.2.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org, bsd-sharp-list@forge.novell.com Subject: Re: [Bsd-sharp-list] [ports/lang/mono] Respect PTHREAD_LIBS X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 20:28:18 -0000 On Sat, 2006-12-09 at 23:28 +0900, Norikatsu Shigemura wrote: > Hi tmclaugh! > > I found a issue of not respect PTHREAD_LIBS. > Please check following patch. Thanks nork, just committed it. tom > > Index: Makefile > =================================================================== > RCS file: /home/ncvs/ports/lang/mono/Makefile,v > retrieving revision 1.57 > diff -u -r1.57 Makefile > --- Makefile 7 Oct 2006 17:39:36 -0000 1.57 > +++ Makefile 9 Dec 2006 14:09:59 -0000 > @@ -67,6 +67,8 @@ > ${WRKSRC}/mono/metadata/assembly.c > @${REINPLACE_CMD} -e 's|.so.0|.so|g' \ > ${WRKSRC}/configure > + @${REINPLACE_CMD} -e 's|-pthread|${PTHREAD_LIBS}|g' \ > + ${WRKSRC}/configure ${WRKSRC}/libgc/configure > @${REINPLACE_CMD} -e 's|%%CC%%|${CC}|g ; \ > s|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g' \ > ${WRKSRC}/mcs/tools/mkbundle/mkbundle.cs > _______________________________________________ > Bsd-sharp-list mailing list > Bsd-sharp-list@forge.novell.com > > Home Page: http://www.mono-project.com/Mono:FreeBSD > Project Site: http://forge.novell.com/mailman/listinfo/bsd-sharp-list > IRC: #BSD-Sharp on irc.freenode.org -- | tmclaugh at sdf.lonestar.org tmclaugh at FreeBSD.org | | FreeBSD http://www.FreeBSD.org | | BSD# http://www.mono-project.com/Mono:FreeBSD | From owner-freebsd-ports@FreeBSD.ORG Sat Dec 9 21:28:09 2006 Return-Path: X-Original-To: freebsd-ports@freebsd.org Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 9411A16A407 for ; Sat, 9 Dec 2006 21:28:09 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.FreeBSD.org (Postfix) with SMTP id EC03C43CA8 for ; Sat, 9 Dec 2006 21:27:02 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: (qmail 7151 invoked by uid 399); 9 Dec 2006 21:28:08 -0000 Received: from localhost (HELO ?192.168.0.5?) (dougb@dougbarton.us@127.0.0.1) by localhost with SMTP; 9 Dec 2006 21:28:08 -0000 X-Originating-IP: 127.0.0.1 Message-ID: <457B2A66.8040407@FreeBSD.org> Date: Sat, 09 Dec 2006 13:28:06 -0800 From: Doug Barton Organization: http://www.freebsd.org/ User-Agent: Thunderbird 1.5.0.8 (X11/20061125) MIME-Version: 1.0 To: Beech Rintoul References: <200612090922.21282.beech@alaskaparadise.com> In-Reply-To: <200612090922.21282.beech@alaskaparadise.com> X-Enigmail-Version: 0.94.1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-ports@freebsd.org Subject: Re: Removing Gnome X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Dec 2006 21:28:09 -0000 Beech Rintoul wrote: > I installed the complete Gnome desktop in order to test one of the ports I > maintain. I recently found out that the developer is no longer going to > upgrade or support the port, so the version in the tree is essentially > the "last" version. The port is a simple clock utility x11-clocks/wmfuzzy and > works correctly. Anyway, I now want to remove gnome from my system. The > problem I'm having is that apps rely on some of the Gnome stuff. How can I > safely remove Gnome without removing the parts that are required by other > apps? I was hoping that there is a way without doing a pkg_delete on every > gnome app and looking at the dependencies. Install sysutils/portmaster Run portmaster -s (perhaps with the -d or -D flags, see the man page) That will remove things that are no longer depended on Run portmaster -l, then remove any of the leaf or root ports that you don't plan to use again. You could do this with 'portmaster -e' to remove the port and its distfiles if you wish. That will also run 'portmaster -s' again for you. hth, Doug -- This .signature sanitized for your protection