From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 00:07:21 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0719616A4CE for ; Sun, 9 Jan 2005 00:07:21 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9584C43D3F for ; Sun, 9 Jan 2005 00:07:20 +0000 (GMT) (envelope-from hyperbolix@gmail.com) Received: by wproxy.gmail.com with SMTP id 71so98034wra for ; Sat, 08 Jan 2005 16:07:20 -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:mime-version:content-type:content-transfer-encoding; b=F1C1UjZ3mn6S1JpjvFhbbDfeTHGApLPcNEhIT7P7Sy5zsuYK5gVjOf4dt3UmS80KViCVOT02sg7cjGRPxiZWNG74eqzTmF6p/b9y8rR8LYdJe63pTDca5Ir5j90t0vo5YGlWkuF1x0KKjoaXw6p7TPxA62eFKyLl7O6WEthYZCU= Received: by 10.54.31.64 with SMTP id e64mr200264wre; Sat, 08 Jan 2005 16:07:19 -0800 (PST) Received: by 10.54.23.47 with HTTP; Sat, 8 Jan 2005 16:07:19 -0800 (PST) Message-ID: <35cabfb3050108160779f0c84f@mail.gmail.com> Date: Sat, 8 Jan 2005 18:07:19 -0600 From: John Byrne To: riggs@rrr.de Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: mplayer-0.99.5_5 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John Byrne List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 00:07:21 -0000 Hello, Are you planning on upgrading this port to 1.0pre6? It compiles fine for me without any patching but the patches look like they could be applicable to the new sources if modified for the new versions - there are a number of patches that would need to be updated, however. Are they really necessary since it compiles fine from sources? - John B. hyperbolix@gmail.com From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 02:36:10 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F59116A4CE for ; Sun, 9 Jan 2005 02:36:10 +0000 (GMT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9990A43D2D for ; Sun, 9 Jan 2005 02:36:09 +0000 (GMT) (envelope-from rodrigc@crodrigues.org) Received: from h00609772adf0.ne.client2.attbi.com ([66.30.114.143]) by comcast.net (sccrmhc11) with ESMTP id <200501090236080110037d4qe>; Sun, 9 Jan 2005 02:36:08 +0000 Received: from h00609772adf0.ne.client2.attbi.com (localhost [127.0.0.1]) j092a74x005315; Sat, 8 Jan 2005 21:36:08 -0500 (EST) (envelope-from rodrigc@h00609772adf0.ne.client2.attbi.com) Received: (from rodrigc@localhost)j092a7Z2005314; Sat, 8 Jan 2005 21:36:07 -0500 (EST) (envelope-from rodrigc) Date: Sat, 8 Jan 2005 21:36:07 -0500 From: Craig Rodrigues To: Kris Kennaway Message-ID: <20050109023607.GA5290@crodrigues.org> References: <20050108071324.GA32371@crodrigues.org> <20050108034714.40f42462@dolphin.local.net> <20050108185044.GA57045@crodrigues.org> <20050108192135.GD8265@odin.ac.hmc.edu> <20050108201059.GA4161@crodrigues.org> <20050108202048.GA84451@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050108202048.GA84451@xor.obsecurity.org> User-Agent: Mutt/1.4.1i cc: freebsd-ports@freebsd.org Subject: Re: Hack to sysctl kern.osreldate, for ports cluster X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 02:36:10 -0000 On Sat, Jan 08, 2005 at 12:20:48PM -0800, Kris Kennaway wrote: > I think I'd prefer to use a shell script wrapper around the real > sysctl than to maintain local patches in every source tree I carry > around. It's easier to hack the sysctl binary itself, but I understand your concern. How about something like this: #!/bin/sh SYSCTL=/sbin/sysctl for ARG in $@ do if [ "$ARG" = "kern.osreldate" ] then KERN_OSRELDATE=1 elif [ "$ARG" = "-n" ] then NUMERIC=1 fi done if [ ! -z "$KERN_OSRELDATE" ] then if [ -z "$NUMERIC" ] then printf "kern.osreldate: " fi awk '/^#define __FreeBSD_version/ {print $3}' /usr/include/sys/param.h exit 0 fi $SYSCTL $@ return $? -- Craig Rodrigues rodrigc@crodrigues.org From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 05:45:23 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BD3816A591 for ; Sun, 9 Jan 2005 05:45:23 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE5C143D4C for ; Sun, 9 Jan 2005 05:45:22 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 389B651A48; Sat, 8 Jan 2005 21:45:22 -0800 (PST) Date: Sat, 8 Jan 2005 21:45:22 -0800 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20050109054522.GA38123@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="r5Pyd7+fXNt84Ff3" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: FreeBSD ports scheduled for removal X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 05:45:23 -0000 --r5Pyd7+fXNt84Ff3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Dear FreeBSD users, The following ports are scheduled for removal over the next few months, if they are still unbuildable at the scheduled removal time and no PRs have been submitted to fix them. If you are interested in saving these ports, please send your patches to the maintainer listed below. If the maintainer is unresponsive or the maintainer is listed as "ports@FreeBSD.org" (i.e. the port is unmaintained), then please submit the fix via send-pr(1) (and consider volunteering to maintain these or other unmaintained ports to help out the FreeBSD community). In most cases, the build error logs can be obtained from http://pointyhat.freebsd.org/ Further information can be obtained from the CVS commit logs at http://cvsweb.freebsd.org/ports/ If you use any of these ports and wish to keep them in the ports collection, please act now! Kris "Port Reaper" Kennaway Port Listed maintainer Removal date =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D audio/csound-manual trevor@FreeBSD.org 2005-02-18 audio/xmms-arts fjoe@FreeBSD.org 2005-02-18 audio/xmms-imms green@FreeBSD.org 2005-02-18 biology/molden rmiya@cc.hirosaki-u.ac.jp 2005-02-18 biology/spdbv chuynh@biolateral.com.au 2005-02-18 databases/mysql-gui ports@FreeBSD.org 2005-02-18 databases/ruby-sqlrelay ports@FreeBSD.org 2005-02-18 deskutils/multisync-evolution pav@FreeBSD.org 2005-02-18 deskutils/taskjuggler povey@wedgetail.com 2005-02-18 devel/arm-aout-binutils pbecke@javagear.com 2005-02-18 devel/cl-port-cmucl ports@FreeBSD.org 2005-02-18 devel/fpc-gdb coop9211@uidaho.edu 2005-02-18 devel/gdb52 mp@FreeBSD.org 2005-02-18 devel/monotone mwicks@kettering.edu 2005-02-18 devel/ocaml-sdl ports@FreeBSD.org 2005-02-18 devel/pear-apd ports@FreeBSD.org 2005-02-18 devel/ruby-gems alecn2002@yandex.ru 2005-02-18 devel/swarm horance@freera.net 2005-02-18 devel/wininfo jylefort@brutele.be 2005-02-18 editors/jedit-devel ports@FreeBSD.org 2005-02-18 editors/ooodict-all openoffice@FreeBSD.org 2005-02-18 editors/ooodict-es_ES openoffice@FreeBSD.org 2005-02-18 editors/tea jylefort@brutele.be 2005-02-18 emulators/linux_base-debian ports@FreeBSD.org 2005-02-18 finance/opale ports@FreeBSD.org 2005-02-18 ftp/prozilla ports@FreeBSD.org 2005-01-17 ftp/ruby-curl knu@FreeBSD.org 2005-02-18 games/kpacman ports@FreeBSD.org 2005-02-18 games/powerpak ports@FreeBSD.org 2005-02-18 graphics/geist ports@FreeBSD.org 2005-02-18 graphics/k3d dyeske@yahoo.com 2005-02-18 graphics/kallery metrol@metrol.net 2005-02-18 graphics/osg yinjieh@csie.nctu.edu.tw 2005-02-18 graphics/panorama ports@FreeBSD.org 2005-02-18 graphics/ruby-libexif knu@FreeBSD.org 2005-02-18 japanese/latex2html ixtl@utmc.or.jp 2005-02-18 japanese/platex-otf hrs@FreeBSD.org 2005-02-18 japanese/postgresql kuriyama@FreeBSD.org 2005-02-18 japanese/xemacs-devel-canna ports@FreeBSD.org 2005-02-18 java/eclipse-langpack java@FreeBSD.ORG 2005-02-18 java/openjit ports@FreeBSD.org 2005-02-18 korean/hlatex-wansung cjh@FreeBSD.org 2005-02-18 korean/mozilla-klp cjh@FreeBSD.org 2005-02-18 korean/mplayer-fonts perky@FreeBSD.org 2005-02-18 lang/mlton MLton@mlton.org 2005-02-18 lang/ruby-ri knu@FreeBSD.org 2005-02-18 mail/aileron ports@FreeBSD.org 2005-02-18 mail/smtp-vilter ports@FreeBSD.org 2005-02-18 misc/Howto ports@FreeBSD.org 2005-02-18 =20 misc/gnomesword ports@FreeBSD.org 2005-02-18 misc/kfile_torrent lioux@FreeBSD.org 2005-04-31 misc/moviedb user@unknown.nu 2005-02-18 net-mgmt/ruby-snmp seanc@FreeBSD.org 2005-02-18 net/arla ports@FreeBSD.org 2005-02-18 net/gnomemeeting ports@FreeBSD.org 2005-02-18 net/opendchub ports@FreeBSD.org 2005-02-18 net/openldap21-server eik@FreeBSD.org 2005-03-01 net/ruby-jabber4r knu@FreeBSD.org 2005-02-18 palm/syncmal fenner@FreeBSD.Org 2005-02-18 polish/ooodict_PL openoffice@FreeBSD.org 2005-02-18 print/lilypond-devel atamaniuk-ports@frobs.net 2005-02-18 print/pmw ports@FreeBSD.org 2005-02-18 security/libsectok bms@FreeBSD.org 2005-02-18 security/ruby-acl knu@FreeBSD.org 2005-02-18 sysutils/dtc thomas@goirand.fr 2005-02-18 textproc/gutenbook jeremy@external.org 2005-02-18 textproc/iiimf-gtk kcwu@csie.org 2005-02-18 textproc/kbedic todorov@freebsd-bg.org 2005-02-17 textproc/py-4suite mike@skew.org 2005-02-18 textproc/sgmltools ports@FreeBSD.org 2005-02-18 textproc/sgmltools-lite ports@FreeBSD.org 2005-02-18 textproc/spell brian@quynh-and-brian.org 2005-02-18 www/grail ports@FreeBSD.org 2005-02-18 www/mod_php3 apache@FreeBSD.org 2005-02-18 www/wml delta@lackas.net 2005-02-18 x11-themes/aquaosk brian@quynh-and-brian.org 2005-02-18 x11-themes/kwin_flatcurve ports@FreeBSD.org 2005-02-18 x11-toolkits/flu ports@FreeBSD.org 2005-02-18 x11-toolkits/hs-gtk+hs haskell@FreeBSD.org 2005-02-18 x11-toolkits/p5-Glade ports@FreeBSD.org 2005-02-18 x11-toolkits/py-kde danny@ricin.com 2005-02-18 x11-wm/wmx sec@42.org 2005-02-18 x11/ruby-gtktrayicon ports@FreeBSD.org 2005-02-18 x11/wmessage pat@FreeBSD.org 2005-02-18 --r5Pyd7+fXNt84Ff3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFB4MTxWry0BWjoQKURAm3pAJ9LEszNhZT7ky7MLz5iWz8PXhGBSQCgvEz2 EuuzM2uxWesUNCKquy28RTI= =PrRF -----END PGP SIGNATURE----- --r5Pyd7+fXNt84Ff3-- From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 05:53:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C54B616A4CE for ; Sun, 9 Jan 2005 05:53:47 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id CB89843D1F for ; Sun, 9 Jan 2005 05:53:46 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: (qmail invoked by alias); 09 Jan 2005 05:53:45 -0000 Received: from p3EE26798.dip.t-dialin.net (EHLO lofi.dyndns.org) (62.226.103.152) by mail.gmx.net (mp002) with SMTP; 09 Jan 2005 06:53:45 +0100 X-Authenticated: #443188 Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id j095rc0Z050290 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Sun, 9 Jan 2005 06:53:39 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: freebsd-ports@freebsd.org Date: Sun, 9 Jan 2005 06:53:33 +0100 User-Agent: KMail/1.7.2 References: <20050108071324.GA32371@crodrigues.org> In-Reply-To: <20050108071324.GA32371@crodrigues.org> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart1542904.r9f48pVSnc"; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-Transfer-Encoding: 7bit Message-Id: <200501090653.37252.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new X-Y-GMX-Trusted: 0 cc: Craig Rodrigues cc: Kris Kennaway Subject: Re: Hack to sysctl kern.osreldate, for ports cluster X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 05:53:47 -0000 --nextPart1542904.r9f48pVSnc Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday, 8. January 2005 08:13, Craig Rodrigues wrote: > Hi, > > > On http://pointyhat.freebsd.org/errorlogs/ it states > that sysctl should not be used to determine the > version of FreeBSD, and that uname(1) or the OSVERSION > variable should be used instead. > > While a valid thing to do, this is another detail > for port maintainers to keep track of. How exactly is using sysctl directly less of a 'detail to keep track of' th= an=20 using the OSVERSION variable provided by bsd.port.mk? I frankly don't see a= ny=20 benefit in being able to call sysctl kern.osreldate from port Makefiles. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --nextPart1542904.r9f48pVSnc Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQBB4MbhXhc68WspdLARAgYDAKCfmViN6MqP/NH1ycB5ZWb1+wQYNwCgh2AS Lg0lceSjZMcAeDqKZpyEodA= =NWkY -----END PGP SIGNATURE----- --nextPart1542904.r9f48pVSnc-- From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 05:58:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0C9516A4CE for ; Sun, 9 Jan 2005 05:58:29 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id A657243D48 for ; Sun, 9 Jan 2005 05:58:29 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id ABA3A52140; Sat, 8 Jan 2005 21:58:28 -0800 (PST) Date: Sat, 8 Jan 2005 21:58:27 -0800 From: Kris Kennaway To: Michael Nottebrock Message-ID: <20050109055827.GA38416@xor.obsecurity.org> References: <20050108071324.GA32371@crodrigues.org> <200501090653.37252.michaelnottebrock@gmx.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XsQoSWH+UP9D9v3l" Content-Disposition: inline In-Reply-To: <200501090653.37252.michaelnottebrock@gmx.net> User-Agent: Mutt/1.4.2.1i cc: Craig Rodrigues cc: freebsd-ports@freebsd.org cc: Kris Kennaway Subject: Re: Hack to sysctl kern.osreldate, for ports cluster X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 05:58:30 -0000 --XsQoSWH+UP9D9v3l Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 09, 2005 at 06:53:33AM +0100, Michael Nottebrock wrote: > On Saturday, 8. January 2005 08:13, Craig Rodrigues wrote: > > Hi, > > > > > > On http://pointyhat.freebsd.org/errorlogs/ it states > > that sysctl should not be used to determine the > > version of FreeBSD, and that uname(1) or the OSVERSION > > variable should be used instead. > > > > While a valid thing to do, this is another detail > > for port maintainers to keep track of. >=20 > How exactly is using sysctl directly less of a 'detail to keep track of' = than=20 > using the OSVERSION variable provided by bsd.port.mk? I frankly don't see= any=20 > benefit in being able to call sysctl kern.osreldate from port Makefiles. Well, some third party software already does, and it can be a bit of work for me to explain to port maintainers why their port is broken on pointyhat. Kris --XsQoSWH+UP9D9v3l Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFB4MgCWry0BWjoQKURAi9TAKCC97DLllZ80E5r8Op7XnrUBZucHQCgzFwR jPdNmCKxJKPGpvUN1swCrzs= =w1rD -----END PGP SIGNATURE----- --XsQoSWH+UP9D9v3l-- From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 06:23:06 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F30916A4CE for ; Sun, 9 Jan 2005 06:23:06 +0000 (GMT) Received: from web51601.mail.yahoo.com (web51601.mail.yahoo.com [206.190.38.206]) by mx1.FreeBSD.org (Postfix) with SMTP id 1D23543D49 for ; Sun, 9 Jan 2005 06:23:06 +0000 (GMT) (envelope-from giffunip@yahoo.com) Received: (qmail 76284 invoked by uid 60001); 9 Jan 2005 06:23:05 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=BLjIY3cY79EoM+GYSBNRwo4JUCqSlr77URh6PcwUdWFSgtj03dIWtBCgQcC2E7eYnF0ZtNYQTWAsumCI0ypVXznHws3Ti3gWRQ/9VXqwjGIHuqEmHvGqzupREY4tdZKr8iSthbMpt6NW2Smp/dxtPEf4/aZGCZKBj3+1++2UgDs= ; Message-ID: <20050109062305.76282.qmail@web51601.mail.yahoo.com> Received: from [200.119.73.88] by web51601.mail.yahoo.com via HTTP; Sat, 08 Jan 2005 22:23:05 PST Date: Sat, 8 Jan 2005 22:23:05 -0800 (PST) From: "Pedro F. Giffuni" To: freebsd-ports@freeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Suggested port: NCAR Graphics X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 06:23:06 -0000 Hi; I have too much stuff on my plate already.. maybe someone is interested in porting NCAR Graphics? (You have to sign a form but it's GPL'd) http://ngwww.ucar.edu/ng4.4/index.html You'll need hdf4 and patience ;-). cheers, PEdro. __________________________________ Do you Yahoo!? Yahoo! Mail - You care about security. So do we. http://promotions.yahoo.com/new_mail From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 06:24:21 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A1BC16A4CE for ; Sun, 9 Jan 2005 06:24:21 +0000 (GMT) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [128.30.28.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B95443D3F for ; Sun, 9 Jan 2005 06:24:21 +0000 (GMT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.9/8.12.9) with ESMTP id j096OJaa018877 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK CN=khavrinen.lcs.mit.edu issuer=SSL+20Client+20CA); Sun, 9 Jan 2005 01:24:20 -0500 (EST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.9/8.12.9/Submit) id j096OJMn018874; Sun, 9 Jan 2005 01:24:19 -0500 (EST) (envelope-from wollman) Date: Sun, 9 Jan 2005 01:24:19 -0500 (EST) From: Garrett Wollman Message-Id: <200501090624.j096OJMn018874@khavrinen.lcs.mit.edu> To: Kris Kennaway In-Reply-To: <20050109054144.GA37692@xor.obsecurity.org> References: <20050109054144.GA37692@xor.obsecurity.org> X-Spam-Score: -19.8 () IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES X-Scanned-By: MIMEDefang 2.37 cc: ports@FreeBSD.org Subject: [FreeBSD-Announce] FreeBSD ports scheduled for removal X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 06:24:21 -0000 < said: > net/arla ports@FreeBSD.org 2005-02-18 A newer version of Arla compiles and works (some to-be-released patches required for AMD64), at least if you use Heimdal from ports. (My environment is rather special so the work I've done is not directly applicable to the port and fails package tests.) -GAWollman From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 07:26:57 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5B2D16A4CF; Sun, 9 Jan 2005 07:26:57 +0000 (GMT) Received: from rwcrmhc13.comcast.net (rwcrmhc13.comcast.net [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7811643D2D; Sun, 9 Jan 2005 07:26:57 +0000 (GMT) (envelope-from DougB@freebsd.org) Received: from lap (c-24-130-110-32.we.client2.attbi.com[24.130.110.32]) by comcast.net (rwcrmhc13) with SMTP id <2005010907265601500n3i7ne>; Sun, 9 Jan 2005 07:26:56 +0000 Date: Sat, 8 Jan 2005 23:26:56 -0800 (PST) From: Doug Barton To: freebsd-ports@freebsd.org Message-ID: <20050108232508.U27994@ync.qbhto.arg> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: anholt@freebsd.org Subject: xorg-libraries doesn't compile on RELENG_4 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 07:26:57 -0000 Using the latest RELENG_4 and the latest ports tree, I get the following error when trying to compile xorg_libraries: GLXEXT -DXF86DRI -DGLX_DIRECT_RENDERING -DGLX_USE_DLOPEN -DGLX_USE_MESA -DUSE_X86_ASM -DUSE_MMX_ASM -DUSE_3DNOW_ASM -DUSE_SSE_ASM -fPIC t_vtx_x86.c t_vtx_x86.c: In function `makeX86Vertex1fv': t_vtx_x86.c:155: Internal compiler error, output_operand_lossage `invalid expression as operand' cpp0: output pipe has been closed *** Error code 1 Stop in /usr/Local/ports/x11/xorg-libraries/work/xc/lib/GL/mesa/tnl. *** Error code 1 Stop in /usr/Local/ports/x11/xorg-libraries/work/xc/lib/GL/mesa. *** Error code 1 Stop in /usr/Local/ports/x11/xorg-libraries/work/xc/lib/GL. *** Error code 1 Stop in /usr/Local/ports/x11/xorg-libraries/work/xc/lib. *** Error code 1 Stop in /usr/Local/ports/x11/xorg-libraries. I've been getting the same errors for about a week now, FYI. Doug -- This .signature sanitized for your protection From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 09:32:09 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B71F16A4CE; Sun, 9 Jan 2005 09:32:09 +0000 (GMT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 623E343D2D; Sun, 9 Jan 2005 09:32:09 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from focus.dantavious.com (pcp09757877pcs.gambrl01.md.comcast.net[68.48.122.129]) by comcast.net (rwcrmhc11) with ESMTP id <2005010909320801300suc51e>; Sun, 9 Jan 2005 09:32:08 +0000 From: Derrick Edwards To: netchild@freebsd.org Date: Sun, 9 Jan 2005 04:47:45 -0500 User-Agent: KMail/1.7.2 MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200501090447.45708.dantavious@comcast.net> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Skype problems X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 09:32:09 -0000 Hi, I would like to know if skype is freezing and restarting X after you launch it. I have been having this problem for about a week. I was already using linux_base 8 but I went ahead and "portupgrade -rf emulators/linux_base-8". Any ideas, Derrick From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 10:24:30 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4404916A4CE for ; Sun, 9 Jan 2005 10:24:30 +0000 (GMT) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id C21C243D39 for ; Sun, 9 Jan 2005 10:24:29 +0000 (GMT) (envelope-from q@uni.de) Received: from wrzx34.rz.uni-wuerzburg.de (wrzx34.rz.uni-wuerzburg.de [132.187.3.34]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id E42E9D5C83; Sun, 9 Jan 2005 11:24:28 +0100 (CET) Received: from virusscan (localhost [127.0.0.1]) by wrzx34.rz.uni-wuerzburg.de (Postfix) with ESMTP id C98ADA9968; Sun, 9 Jan 2005 11:24:28 +0100 (CET) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by wrzx34.rz.uni-wuerzburg.de (Postfix) with ESMTP id 9A751A98AB; Sun, 9 Jan 2005 11:24:28 +0100 (CET) Received: from coyote.q.local (wwsx14.win-screen.uni-wuerzburg.de [132.187.253.14]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id 82124D5C83; Sun, 9 Jan 2005 11:24:28 +0100 (CET) Received: from roadrunner.q.local (roadrunner.q.local [192.168.0.148]) by coyote.q.local (8.13.1/8.13.1) with ESMTP id j09AOS1Z012686; Sun, 9 Jan 2005 11:24:28 +0100 (CET) (envelope-from q@uni.de) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.13.1/8.13.1) with ESMTP id j09AOS9m029116; Sun, 9 Jan 2005 11:24:28 +0100 (CET) (envelope-from q@uni.de) Received: (from q@localhost) by roadrunner.q.local (8.13.1/8.13.1/Submit) id j09AOSls029115; Sun, 9 Jan 2005 11:24:28 +0100 (CET) (envelope-from q@uni.de) Date: Sun, 9 Jan 2005 11:24:28 +0100 From: Ulrich Spoerlein To: Christian Vogt Message-ID: <20050109102428.GA828@galgenberg.net> Mail-Followup-To: Christian Vogt , ports@FreeBSD.org References: <41E02264.1050804@tm.uka.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <41E02264.1050804@tm.uka.de> User-Agent: Mutt/1.5.6i Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: by amavisd-new (Rechenzentrum Universitaet Wuerzburg) cc: ports@FreeBSD.org Subject: Re: Nc6 for FreeBSD 4.10 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 10:24:30 -0000 You already got a response, but I'll chime in nevertheless On Sat, 08.01.2005 at 19:11:48 +0100, Christian Vogt wrote: > The two identifiers EAI_NODATA and EAI_ADDRFAMILY appear only one time > in the entire Nc6 code, namely, in a swich statement in file filter.c. > I replaced the identifiers by their values (7 and 1, respectively), and= , > guess what, Nc6 compiled successfully. This might be fixed, according to http://www.freshports.org/net/nc6 You could also take a look at net/obnc, which is OpenBSD's netcat with support for IPv6 too. Ulrich Spoerlein, Department of Distributed Systems, University of W=FCrz= burg :) --=20 PGP Key ID: F0DB9F44 Encrypted mail welcome! Fingerprint: F1CE D062 0CA9 ADE3 349B 2FE8 980A C6B5 F0DB 9F44 Ok, which part of "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn." didn't you understand? From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 10:40:38 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9325416A4CE for ; Sun, 9 Jan 2005 10:40:38 +0000 (GMT) Received: from smtp1.powertech.no (smtp1.powertech.no [195.159.0.145]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB33043D31 for ; Sun, 9 Jan 2005 10:40:37 +0000 (GMT) (envelope-from frode@nordahl.net) Received: from [192.168.1.35] (unknown [195.159.232.13]) by smtp1.powertech.no (Postfix) with ESMTP id 734888163 for ; Sun, 9 Jan 2005 11:40:35 +0100 (CET) Mime-Version: 1.0 (Apple Message framework v619) To: ports@freebsd.org Message-Id: Content-Type: multipart/mixed; boundary=Apple-Mail-4-258502625 From: Frode Nordahl Date: Sun, 9 Jan 2005 11:40:37 +0100 X-Mailer: Apple Mail (2.619) Subject: MyODBC [PATCH] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 10:40:38 -0000 --Apple-Mail-4-258502625 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed Hello, databases/myodbc is currently marked BROKEN, however, it compiles fine if you use unixodbc as the drivermanager. It seems like the MySQL developers think iODBC is in error, look at the following thread at mysql.com: http://lists.mysql.com/myodbc/9564 Can't we just change to unixodbc as default drivermanager until they work things out? Patch included below. Regards, Frode Nordahl --Apple-Mail-4-258502625 Content-Transfer-Encoding: 7bit Content-Type: application/octet-stream; x-unix-mode=0644; name="myodbc.patch" Content-Disposition: attachment; filename=myodbc.patch --- myodbc/Makefile.org Mon Nov 29 22:19:02 2004 +++ myodbc/Makefile Sun Jan 9 11:29:17 2005 @@ -16,8 +16,6 @@ MAINTAINER= ports@FreeBSD.org COMMENT= ODBC driver for MySQL -BROKEN= Does not compile - USE_MYSQL= yes USE_GMAKE= yes @@ -30,8 +28,8 @@ # MyODBC needs an ODBC driver manager to be installed, and it supports both # iODBC and unixODBC. The following variable may be set at built-time to -# either "iodbc" or "unixodbc", with the former being the default: -DRIVER_MANAGER?= iodbc +# either "iodbc" or "unixodbc", with the latter being the default: +DRIVER_MANAGER?= unixodbc .if ${DRIVER_MANAGER} == "unixodbc" CONFIGURE_ARGS+= --with-odbc-ini=${LOCALBASE}/etc/odbc.ini \ --Apple-Mail-4-258502625-- From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 12:15:11 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7552616A4CE for ; Sun, 9 Jan 2005 12:15:11 +0000 (GMT) Received: from host5-111.pool80117.interbusiness.it (host5-111.pool80117.interbusiness.it [80.117.111.5]) by mx1.FreeBSD.org (Postfix) with SMTP id 05C8D43D48 for ; Sun, 9 Jan 2005 12:15:10 +0000 (GMT) (envelope-from sergio@softshark.org) Received: (qmail 16002 invoked from network); 9 Jan 2005 12:28:06 -0000 Received: from aidee.softshark.home (192.168.0.2) by host1-111.pool80117.interbusiness.it with SMTP; 9 Jan 2005 12:28:06 -0000 From: Sergio Mangialardi To: freebsd-ports@freebsd.org In-Reply-To: <20050109054522.GA38123@xor.obsecurity.org> References: <20050109054522.GA38123@xor.obsecurity.org> Content-Type: text/plain; charset=ISO-8859-15 Date: Sun, 09 Jan 2005 13:13:40 +0100 Message-Id: <1105272820.15681.28.camel@aidee.softshark.home> Mime-Version: 1.0 X-Mailer: Evolution 2.0.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 8bit Subject: Re: FreeBSD ports scheduled for removal X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 12:15:11 -0000 Kris Kennaway wrote: > Dear FreeBSD users, > > The following ports are scheduled for removal over the next few > months, if they are still unbuildable at the scheduled removal time > and no PRs have been submitted to fix them. If you are interested in > saving these ports, please send your patches to the maintainer listed > below. If the maintainer is unresponsive or the maintainer is listed > as "ports@FreeBSD.org" (i.e. the port is unmaintained), then please > submit the fix via send-pr(1) (and consider volunteering to maintain > these or other unmaintained ports to help out the FreeBSD community). > [...] > > ftp/prozilla ports@FreeBSD.org 2005-01-17 I've sent-pr (pr n° 75872) a security patch for prozilla tree days ago. > graphics/k3d dyeske@yahoo.com 2005-02-18 I've just sent a patch to port mantainer. Sergio. From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 12:56:54 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1F8C16A4CE for ; Sun, 9 Jan 2005 12:56:54 +0000 (GMT) Received: from wrzx35.rz.uni-wuerzburg.de (wrzx35.rz.uni-wuerzburg.de [132.187.3.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 394DA43D4C for ; Sun, 9 Jan 2005 12:56:54 +0000 (GMT) (envelope-from q@uni.de) Received: from wrzx30.rz.uni-wuerzburg.de (wrzx30.rz.uni-wuerzburg.de [132.187.1.30]) by wrzx35.rz.uni-wuerzburg.de (Postfix) with ESMTP id C920DDEB1E; Sun, 9 Jan 2005 13:56:52 +0100 (CET) Received: from virusscan (localhost [127.0.0.1]) by wrzx30.rz.uni-wuerzburg.de (Postfix) with ESMTP id B1BCB9136C; Sun, 9 Jan 2005 13:56:52 +0100 (CET) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by wrzx30.rz.uni-wuerzburg.de (Postfix) with ESMTP id A06A274944; Sun, 9 Jan 2005 13:56:52 +0100 (CET) Received: from coyote.q.local (wwsx14.win-screen.uni-wuerzburg.de [132.187.253.14]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id 579A8D5B75; Sun, 9 Jan 2005 13:56:51 +0100 (CET) Received: from roadrunner.q.local (roadrunner.q.local [192.168.0.148]) by coyote.q.local (8.13.1/8.13.1) with ESMTP id j09CupjO013255; Sun, 9 Jan 2005 13:56:51 +0100 (CET) (envelope-from q@uni.de) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.13.1/8.13.1) with ESMTP id j09CupAl034154; Sun, 9 Jan 2005 13:56:51 +0100 (CET) (envelope-from q@uni.de) Received: (from q@localhost) by roadrunner.q.local (8.13.1/8.13.1/Submit) id j09CuoGC034153; Sun, 9 Jan 2005 13:56:50 +0100 (CET) (envelope-from q@uni.de) Date: Sun, 9 Jan 2005 13:56:50 +0100 From: Ulrich Spoerlein To: Kris Kennaway Message-ID: <20050109125650.GB828@galgenberg.net> Mail-Followup-To: Kris Kennaway , ports@FreeBSD.org, knu@freebsd.orgf References: <20050109054522.GA38123@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050109054522.GA38123@xor.obsecurity.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new (Rechenzentrum Universitaet Wuerzburg) cc: ports@FreeBSD.org cc: knu@freebsd.orgf Subject: Re: FreeBSD ports scheduled for removal X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 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: Sun, 09 Jan 2005 12:56:55 -0000 > x11/ruby-gtktrayicon ports@FreeBSD.org 2005-02-18 This looks just like the problem [1] I have with porting wxruby. I think we need a ruby binary, which has libpthread linked in (at least, that's my understanding of the situation, please correct me if I'm wrong) [1] http://docs.freebsd.org/cgi/mid.cgi?20050103114221.GA897 Ulrich Spoerlein -- PGP Key ID: F0DB9F44 Encrypted mail welcome! Fingerprint: F1CE D062 0CA9 ADE3 349B 2FE8 980A C6B5 F0DB 9F44 Ok, which part of "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn." didn't you understand? From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 14:39:07 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34B8316A4CE for ; Sun, 9 Jan 2005 14:39:07 +0000 (GMT) Received: from zaphod.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B2F343D45 for ; Sun, 9 Jan 2005 14:39:06 +0000 (GMT) (envelope-from simon@zaphod.nitro.dk) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id EEB4111DC7; Sun, 9 Jan 2005 15:39:04 +0100 (CET) Date: Sun, 9 Jan 2005 15:39:04 +0100 From: "Simon L. Nielsen" To: freebsd-ports@FreeBSD.org Message-ID: <20050109143903.GC1187@zaphod.nitro.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="G6nVm6DDWH/FONJq" Content-Disposition: inline User-Agent: Mutt/1.5.6i Subject: Makeing fetchindex really mirror INDEX X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 14:39:07 -0000 --G6nVm6DDWH/FONJq Content-Type: multipart/mixed; boundary="XvKFcGCOAo53UbWW" Content-Disposition: inline --XvKFcGCOAo53UbWW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hello I patched fetchindex to really only download a new INDEX if it's changed and to only uncompress INDEX.bz2 it's newer than INDEX. Patch should be attached. Any complaints to committing this? BTW. the mirror mode fetch(1) is broken in at least FreeBSD 5.3 and newer, but seems to works on 4.10. I have made a patch [1], which I hope to get committed soon, so if the fetchindex patch don't work for you that might be the reason. [1] http://people.freebsd.org/~simon/patches/fetch.mirror.patch --=20 Simon L. Nielsen --XvKFcGCOAo53UbWW Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="ports-fetchindex.realmir.patch" Content-Transfer-Encoding: quoted-printable Index: 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/Makefile,v retrieving revision 1.90 diff -u -d -r1.90 Makefile --- Makefile 17 Dec 2004 11:23:22 -0000 1.90 +++ Makefile 9 Jan 2005 14:21:13 -0000 @@ -70,7 +70,12 @@ @cd ${.CURDIR} && make ${.CURDIR}/${INDEXFILE} =20 fetchindex: - @cd ${.CURDIR} && ${FETCHINDEX} ${MASTER_SITE_INDEX}/${INDEXFILE}.bz2 && = bunzip2 -f ${INDEXFILE}.bz2 && chmod a+r ${INDEXFILE} + @${FETCHINDEX} -o ${.CURDIR}/${INDEXFILE}.bz2 \ + ${MASTER_SITE_INDEX}${INDEXFILE}.bz2 + @cd ${.CURDIR} && if [ ${INDEXFILE}.bz2 -nt ${INDEXFILE} ]; then \ + bunzip2 < ${INDEXFILE}.bz2 > ${INDEXFILE}; \ + chmod a+r ${INDEXFILE}; \ + fi =20 MASTER_SITE_INDEX?=3D http://www.FreeBSD.org/ports/ FETCHINDEX?=3D fetch -am --XvKFcGCOAo53UbWW-- --G6nVm6DDWH/FONJq Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB4UIHh9pcDSc1mlERAmTgAJ9GthP45XACf0M63K/p8Hf3pR/sbACcDoX0 e/y7zBlvIDh3m3vqNXAfLJk= =LRrd -----END PGP SIGNATURE----- --G6nVm6DDWH/FONJq-- From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 15:36:35 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D22416A4D3 for ; Sun, 9 Jan 2005 15:36:35 +0000 (GMT) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBF8443D5E for ; Sun, 9 Jan 2005 15:36:34 +0000 (GMT) (envelope-from jaffer@voluntocracy.org) Received: from mail.voluntocracy.org (voluntocracy.org[24.218.212.143]) by comcast.net (rwcrmhc12) with ESMTP id <2005010915363401400gd3qie>; Sun, 9 Jan 2005 15:36:34 +0000 Received: from voluntocracy.org (aubrey.jaffer [192.168.1.252]) by mail.voluntocracy.org (Postfix) with ESMTP id 00BC24345; Sun, 9 Jan 2005 10:36:55 -0500 (EST) Received: by voluntocracy.org (Postfix, from userid 500) id 3C5131B772C; Sun, 9 Jan 2005 10:37:02 -0500 (EST) From: Aubrey Jaffer To: inukai.d@jeans.ocn.ne.jp In-reply-to: <20041031.041810.74752652.inukai.d@jeans.ocn.ne.jp> References: <20041031.041810.74752652.inukai.d@jeans.ocn.ne.jp> Message-Id: <20050109153702.3C5131B772C@voluntocracy.org> Date: Sun, 9 Jan 2005 10:37:02 -0500 (EST) cc: ports@FreeBSD.org Subject: Re: /usr/ports/lang/scm on 5.3-STABLE and 6.0-CURRENT X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 15:36:35 -0000 | Date: Sun, 31 Oct 2004 04:18:10 +0900 (JST) | From: "dai inukai" | | I recently realized and regret that "scm-5d9_1 is marked as broken: | Segfault during build." This seems not the scm fault but due to the | bug introduced by the gcc FreeBSD adopted for STABLE and CURRENT. I | say gcc bug because scm compiles correctly with gcc-3.4.3 | (prerelease from the port.) Thanks for your patch. I put your (regex freebsd "-I/usr/include/gnu" "-lgnuregex" "" () ()) into build.scm. The development version is updated: http://swissnet.ai.mit.edu/ftpdir/users/jaffer/scm.zip Rather than modify "build.scm" to include -DGCC_SPARC_BUG, I suggest building thus: ./build -DGCC_SPARC_BUG --linker-options=-DGCC_SPARC_BUG | My system: 1 CPU Athlon XP 1800+ on M/B K7T266 PRO2 | | 5.3-STABLE: % uname -a | FreeBSD daip 5.3-STABLE FreeBSD 5.3-STABLE #0: Tue Oct 26 21:47:52 JST | 2004 daip@daip:/usr/obj/usr/src/sys/DAIKERNEL i386 | | 6.0-CURRENT: % uname -a | FreeBSD daip 6.0-CURRENT FreeBSD 6.0-CURRENT #0: Sat Oct 23 02:55:12 | JST 2004 daip@daip:/usr/obj/usr/src/sys/DAIKERNEL i386 | | % cc --version | cc (GCC) 3.4.2 [FreeBSD] 20040728 | | When compiled with FreeBSD defaults, scmlit and scm crash with | Segmentation Fault in eval.c at the line 2090 with core dump output: | | eval.c: 2090 x = arg1; | | If I trace the program with gdb and dumped core files, the variable | arg1 in the function "static SCM ceval_1(x)" disappears except the | case compiled with the optimization option "-O0 (gcc default)." | | This seems to be a similar bug to: | | http://gcc.gnu.org/ml/gcc-bugs/2003-10/msg00520.html | | and can be avoided with "-DGCC_SPARC_BUG" during the make. | | I propose the attached patches until the next version of gcc is | adopted as default. | | dai -- http://www4.ocn.ne.jp/~inukai/scheme.html | | | ----Next_Part(Sun_Oct_31_04:18:10_2004_586)-- | Content-Type: Text/Plain; charset=us-ascii | Content-Transfer-Encoding: 7bit | Content-Disposition: inline; filename="Makefile.diff" | | *** Makefile.orig Mon Dec 1 13:49:57 2003 | --- Makefile Sat Oct 30 20:58:29 2004 | *************** | *** 40,54 **** | | # "Makefile" for scm Scheme Interpreter | # Author: Aubrey Jaffer | | SHELL = /bin/sh | ! #CC = gcc | #CFLAGS = -g | #LIBS = | #LD = $(CC) -g | ! LD = $(CC) | SCMLIT = ./scmlit | SCMEXE = ./scm | | #BUILD = ./build -hsystem -p svr4-gcc-sun-ld | BUILD = ./build -hsystem | --- 40,54 ---- | | # "Makefile" for scm Scheme Interpreter | # Author: Aubrey Jaffer | | SHELL = /bin/sh | ! #CC = ccache cc | #CFLAGS = -g | #LIBS = | #LD = $(CC) -g | ! LD = $(CC) -O3 -DGCC_SPARC_BUG | SCMLIT = ./scmlit | SCMEXE = ./scm | | #BUILD = ./build -hsystem -p svr4-gcc-sun-ld | BUILD = ./build -hsystem | | ----Next_Part(Sun_Oct_31_04:18:10_2004_586)-- | Content-Type: Text/Plain; charset=us-ascii | Content-Transfer-Encoding: 7bit | Content-Disposition: inline; filename="build.scm.diff" | | *** build.scm.orig Fri Aug 27 21:55:10 2004 | --- build.scm Sun Oct 31 02:45:32 2004 | *************** | *** 623,633 **** | (regex darwin "" "" #f () ()) | | (c freebsd "" "-export-dynamic" #f () ()) | (m freebsd "" "-lm" #f () ()) | (curses freebsd "" "-lncurses" "/usr/lib/libncurses.a" () ()) | ! (regex freebsd "" "-lgnuregex" "" () ()) | (editline freebsd "" "-lreadline" "" () ()) | (dlll freebsd "-DSUN_DL" "-export-dynamic" "" () ()) | (nostart freebsd "" "-e start -dc -dp -Bstatic -lgnumalloc" #f ("pre-crt0.c") ()) | (dump freebsd "" "/usr/lib/crt0.o" "" ("unexsunos4.c") ()) | (curses netbsd "-I/usr/pkg/include" "-lncurses" "-Wl,-rpath -Wl,/usr/pkg/lib -L/usr/pkg/lib" () ()) | --- 623,633 ---- | (regex darwin "" "" #f () ()) | | (c freebsd "" "-export-dynamic" #f () ()) | (m freebsd "" "-lm" #f () ()) | (curses freebsd "" "-lncurses" "/usr/lib/libncurses.a" () ()) | ! (regex freebsd "-I/usr/include/gnu" "-lgnuregex" "" () ()) | (editline freebsd "" "-lreadline" "" () ()) | (dlll freebsd "-DSUN_DL" "-export-dynamic" "" () ()) | (nostart freebsd "" "-e start -dc -dp -Bstatic -lgnumalloc" #f ("pre-crt0.c") ()) | (dump freebsd "" "/usr/lib/crt0.o" "" ("unexsunos4.c") ()) | (curses netbsd "-I/usr/pkg/include" "-lncurses" "-Wl,-rpath -Wl,/usr/pkg/lib -L/usr/pkg/lib" () ()) | *************** | *** 1586,1596 **** | | (defcommand compile-c-files freebsd | (lambda (files parms) | (and (batch:try-chopped-command | parms | ! "cc" "-O3 -pipe " "-c" | (c-includes parms) | (c-flags parms) | files) | (map c->o files)))) | (defcommand link-c-program freebsd | --- 1586,1597 ---- | | (defcommand compile-c-files freebsd | (lambda (files parms) | (and (batch:try-chopped-command | parms | ! ; "cc" "-O3 -pipe " "-c";;gcc 3.4.2 for FreeBSD does not allow options other than default i.e. -O0 if NO -DGCC_SPARC_BUG - dai 2004-10-30 | ! "cc" "-O3 -pipe -DGCC_SPARC_BUG " "-c" | (c-includes parms) | (c-flags parms) | files) | (map c->o files)))) | (defcommand link-c-program freebsd | | ----Next_Part(Sun_Oct_31_04:18:10_2004_586)---- | From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 16:29:05 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C57016A4CE for ; Sun, 9 Jan 2005 16:29:05 +0000 (GMT) Received: from smtp801.mail.sc5.yahoo.com (smtp801.mail.sc5.yahoo.com [66.163.168.180]) by mx1.FreeBSD.org (Postfix) with SMTP id 3203C43D55 for ; Sun, 9 Jan 2005 16:29:05 +0000 (GMT) (envelope-from theodore@xmule.ws) Received: from unknown (HELO ?192.168.5.100?) (genealansmith@sbcglobal.net@68.92.207.186 with plain) by smtp801.mail.sc5.yahoo.com with SMTP; 9 Jan 2005 16:29:04 -0000 Message-ID: <41E15BCE.5070805@xmule.ws> Date: Sun, 09 Jan 2005 10:29:02 -0600 From: "Theodore R. Smith" User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: lioux@FreeBSD.org X-Enigmail-Version: 0.89.5.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: xmule-1.9.4.b_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 16:29:05 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Why is xMule 1.9.4b regarded as "broken" by freshports? Judging the content at http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.4.2005010401/xmule-1.9.4.b_1.log It appears as though xMule is being tested with an out-dated compiler, probably gcc 2.95.x, which is no longer maintained by FSF. The code at the source of the error -- DynamicPreferences.cpp:491 -- is template <> bool DynamicPreferences::Get(const wxString& preference) which is a *perfectly* valid part of the ISO-C++ convention, otherwise known as a "template specialization". Please see http://cplus.about.com/od/advancedtutorials/l/aa123002c.htm as a reference. I do not believe that my program should be penalized in *any* way because some test-compiler is flawed and not fully ISO-C++ compliant. Now, you could upgrade your C++ to a suitable version (g++ 3.3 and later should work), remove the "Ignore" and "Blocked", change the warnings to explicitly say "Uses advanced C++ not supported by older compiler" or the equivalent, or simply provide binaries (as you would with things like Opera). I'm not trying to tell you how to do your job(s)/volunteer work. I am imploring you to penalize the proper deviants accordingly: the non-ISO-C++-compliant compiler that tests xMule. Sincerely, Theodore R. Smith -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (MingW32) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFB4VvOy4tlS+M78e0RAkCyAJ9n1wkMKFc9NOiJk6ishVG4LMhfAwCg1iw0 vBV9Weq4HifUnwvNOsGHe74= =mrxP -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 16:49:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71A4016A4CE; Sun, 9 Jan 2005 16:49:29 +0000 (GMT) Received: from mailout05.sul.t-online.com (mailout05.sul.t-online.com [194.25.134.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBCC843D48; Sun, 9 Jan 2005 16:49:28 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from fwd10.aul.t-online.de by mailout05.sul.t-online.com with smtp id 1CngFr-0005OS-02; Sun, 09 Jan 2005 17:49:27 +0100 Received: from Andro-Beta.Leidinger.net (bdgkTgZ6Yer0IX9+gYoFH5yzfzVkgwTKxW9HNeekxQvhoeywg77b8T@[217.229.213.2]) by fmrl10.sul.t-online.com with esmtp id 1CngFj-1a2l960; Sun, 9 Jan 2005 17:49:19 +0100 Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) j09GmbRX074573; Sun, 9 Jan 2005 17:48:37 +0100 (CET) (envelope-from Alexander@Leidinger.net) Date: Sun, 9 Jan 2005 17:49:45 +0100 From: Alexander Leidinger To: "Simon L. Nielsen" Message-ID: <20050109174945.7f0353e4@Magellan.Leidinger.net> In-Reply-To: <20050109143903.GC1187@zaphod.nitro.dk> References: <20050109143903.GC1187@zaphod.nitro.dk> X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd6.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-ID: bdgkTgZ6Yer0IX9+gYoFH5yzfzVkgwTKxW9HNeekxQvhoeywg77b8T@t-dialin.net X-TOI-MSGID: 271fc845-db77-4fd9-b750-e542a642c136 cc: freebsd-ports@freebsd.org Subject: Re: Makeing fetchindex really mirror INDEX X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 16:49:29 -0000 On Sun, 9 Jan 2005 15:39:04 +0100 "Simon L. Nielsen" wrote: > fetchindex: > - @cd ${.CURDIR} && ${FETCHINDEX} ${MASTER_SITE_INDEX}/${INDEXFILE}.bz2 && bunzip2 -f ${INDEXFILE}.bz2 && chmod a+r ${INDEXFILE} > + @${FETCHINDEX} -o ${.CURDIR}/${INDEXFILE}.bz2 \ > + ${MASTER_SITE_INDEX}${INDEXFILE}.bz2 > + @cd ${.CURDIR} && if [ ${INDEXFILE}.bz2 -nt ${INDEXFILE} ]; then \ > + bunzip2 < ${INDEXFILE}.bz2 > ${INDEXFILE}; \ > + chmod a+r ${INDEXFILE}; \ > + fi Why do you do the work "make" is supposed to do? The following does what you want (and "make index" works too): ---snip--- Index: Makefile =================================================================== RCS file: /big/FreeBSD-CVS/ports/Makefile,v retrieving revision 1.90 diff -u -u -r1.90 Makefile --- Makefile 17 Dec 2004 11:23:22 -0000 1.90 +++ Makefile 9 Jan 2005 16:45:36 -0000 @@ -69,8 +69,14 @@ @rm -f ${.CURDIR}/${INDEXFILE} @cd ${.CURDIR} && make ${.CURDIR}/${INDEXFILE} -fetchindex: - @cd ${.CURDIR} && ${FETCHINDEX} ${MASTER_SITE_INDEX}/${INDEXFILE}.bz2 && bunzip2 -f ${INDEXFILE}.bz2 && chmod a+r ${INDEXFILE} +${INDEXFILE}.bz2: .PHONY + @${FETCHINDEX} ${MASTER_SITE_INDEX}${INDEXFILE}.bz2 + +${INDEXFILE}: ${INDEXFILE}.bz2 + @bunzip2 <${INDEXFILE}.bz2 >${INDEXFILE} + @chmod a+r ${INDEXFILE} + +fetchindex: ${INDEXFILE} MASTER_SITE_INDEX?= http://www.FreeBSD.org/ports/ FETCHINDEX?= fetch -am ---snip--- BTW.: if I do it the right way (".PHONY: ${INDEXFILE}.bz2" instead of adding " .PHONY" to "${INDEXFILE}.bz2:"), it doesn't work here (6-current) as expected. Bye, Alexander. -- The computer revolution is over. The computers won. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 17:00:01 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66BB616A4CE; Sun, 9 Jan 2005 17:00:01 +0000 (GMT) Received: from wrzx35.rz.uni-wuerzburg.de (wrzx35.rz.uni-wuerzburg.de [132.187.3.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE30943D4C; Sun, 9 Jan 2005 17:00:00 +0000 (GMT) (envelope-from q@uni.de) Received: from wrzx30.rz.uni-wuerzburg.de (wrzx30.rz.uni-wuerzburg.de [132.187.1.30]) by wrzx35.rz.uni-wuerzburg.de (Postfix) with ESMTP id 86C27DCC4D; Sun, 9 Jan 2005 17:59:59 +0100 (CET) Received: from virusscan (localhost [127.0.0.1]) by wrzx30.rz.uni-wuerzburg.de (Postfix) with ESMTP id 6EF109144E; Sun, 9 Jan 2005 17:59:59 +0100 (CET) Received: from wrzx28.rz.uni-wuerzburg.de (wrzx28.rz.uni-wuerzburg.de [132.187.3.28]) by wrzx30.rz.uni-wuerzburg.de (Postfix) with ESMTP id 38ECF74944; Sun, 9 Jan 2005 17:59:59 +0100 (CET) Received: from coyote.q.local (wwsx14.win-screen.uni-wuerzburg.de [132.187.253.14]) by wrzx28.rz.uni-wuerzburg.de (Postfix) with ESMTP id E55D6D5B76; Sun, 9 Jan 2005 17:59:58 +0100 (CET) Received: from roadrunner.q.local (roadrunner.q.local [192.168.0.148]) by coyote.q.local (8.13.1/8.13.1) with ESMTP id j09GxwR2014186; Sun, 9 Jan 2005 17:59:58 +0100 (CET) (envelope-from q@uni.de) Received: from roadrunner.q.local (localhost [127.0.0.1]) by roadrunner.q.local (8.13.1/8.13.1) with ESMTP id j09GxwuQ035168; Sun, 9 Jan 2005 17:59:58 +0100 (CET) (envelope-from q@uni.de) Received: (from q@localhost) by roadrunner.q.local (8.13.1/8.13.1/Submit) id j09Gxvjj035167; Sun, 9 Jan 2005 17:59:57 +0100 (CET) (envelope-from q@uni.de) Date: Sun, 9 Jan 2005 17:59:57 +0100 From: Ulrich Spoerlein To: "Theodore R. Smith" Message-ID: <20050109165957.GD828@galgenberg.net> Mail-Followup-To: "Theodore R. Smith" , lioux@FreeBSD.org, ports@FreeBSD.org References: <41E15BCE.5070805@xmule.ws> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41E15BCE.5070805@xmule.ws> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new (Rechenzentrum Universitaet Wuerzburg) cc: ports@FreeBSD.org cc: lioux@FreeBSD.org Subject: Re: FreeBSD Port: xmule-1.9.4.b_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 17:00:01 -0000 On Sun, 09.01.2005 at 10:29:02 -0600, Theodore R. Smith wrote: > Why is xMule 1.9.4b regarded as "broken" by freshports? Because it's "only" broken for 4.x releases of FreeBSD which shipped with gcc 2.95 (and will not be updated). > Judging the content at > http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.4.2005010401/xmule-1.9.4.b_1.log > > It appears as though xMule is being tested with an out-dated compiler, probably > gcc 2.95.x, which is no longer maintained by FSF. Yes, that's the build log for FreeBSD 4.11. This could probably be worked around by explicitely depending on a newer gcc port to be installed. aka USE_GCC= 3.3 > I'm not trying to tell you how to do your job(s)/volunteer work. I am imploring > you to penalize the proper deviants accordingly: the non-ISO-C++-compliant > compiler that tests xMule. Relax, it's only broken for the older 4.x line of FreeBSD and it can probably be fixed very easily by the maintainer. Ulrich Spoerlein -- PGP Key ID: F0DB9F44 Encrypted mail welcome! Fingerprint: F1CE D062 0CA9 ADE3 349B 2FE8 980A C6B5 F0DB 9F44 Ok, which part of "Ph'nglui mglw'nafh Cthulhu R'lyeh wgah'nagl fhtagn." didn't you understand? From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 17:02:22 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2912916A4CE for ; Sun, 9 Jan 2005 17:02:22 +0000 (GMT) Received: from zaphod.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DFF943D5D for ; Sun, 9 Jan 2005 17:02:21 +0000 (GMT) (envelope-from simon@zaphod.nitro.dk) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id 2FAA211DC7; Sun, 9 Jan 2005 18:02:20 +0100 (CET) Date: Sun, 9 Jan 2005 18:02:20 +0100 From: "Simon L. Nielsen" To: Alexander Leidinger Message-ID: <20050109170219.GF1187@zaphod.nitro.dk> References: <20050109143903.GC1187@zaphod.nitro.dk> <20050109174945.7f0353e4@Magellan.Leidinger.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LZFKeWUZP29EKQNE" Content-Disposition: inline In-Reply-To: <20050109174945.7f0353e4@Magellan.Leidinger.net> User-Agent: Mutt/1.5.6i cc: freebsd-ports@freebsd.org Subject: Re: Makeing fetchindex really mirror INDEX X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 17:02:22 -0000 --LZFKeWUZP29EKQNE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2005.01.09 17:49:45 +0100, Alexander Leidinger wrote: > On Sun, 9 Jan 2005 15:39:04 +0100 > "Simon L. Nielsen" wrote: >=20 > > fetchindex: > > - @cd ${.CURDIR} && ${FETCHINDEX} ${MASTER_SITE_INDEX}/${INDEXFILE}.bz2= && bunzip2 -f ${INDEXFILE}.bz2 && chmod a+r ${INDEXFILE} > > + @${FETCHINDEX} -o ${.CURDIR}/${INDEXFILE}.bz2 \ > > + ${MASTER_SITE_INDEX}${INDEXFILE}.bz2 > > + @cd ${.CURDIR} && if [ ${INDEXFILE}.bz2 -nt ${INDEXFILE} ]; then \ > > + bunzip2 < ${INDEXFILE}.bz2 > ${INDEXFILE}; \ > > + chmod a+r ${INDEXFILE}; \ > > + fi >=20 > Why do you do the work "make" is supposed to do? > > The following does what you want (and "make index" works too): Mainly because we already have a ${INDEXFILE} target, and the two would conflict, so I thought it would be simpler to keep the simple target. make index in your patch only works because you don't define ${INDEXFILE} as ${.CURDIR}/${INDEXFILE}, which it should be since there might be a object directory. At least as I read it, I could be wrong. In general I agree my way is slight silly, because it's certainly not the right way, I just don't see a really clean way to implement it the right way (well, ${INDEXFILE}.bz2) could probably be used but it would still only be half way there). > ---snip--- > Index: 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: /big/FreeBSD-CVS/ports/Makefile,v > retrieving revision 1.90 > diff -u -u -r1.90 Makefile > --- Makefile 17 Dec 2004 11:23:22 -0000 1.90 > +++ Makefile 9 Jan 2005 16:45:36 -0000 > @@ -69,8 +69,14 @@ > @rm -f ${.CURDIR}/${INDEXFILE} > @cd ${.CURDIR} && make ${.CURDIR}/${INDEXFILE} > =20 > -fetchindex: > - @cd ${.CURDIR} && ${FETCHINDEX} ${MASTER_SITE_INDEX}/${INDEXFILE}= =2Ebz2 && bunzip2 -f ${INDEXFILE}.bz2 && chmod a+r ${INDEXFILE} > +${INDEXFILE}.bz2: .PHONY > + @${FETCHINDEX} ${MASTER_SITE_INDEX}${INDEXFILE}.bz2 > + > +${INDEXFILE}: ${INDEXFILE}.bz2=20 > + @bunzip2 <${INDEXFILE}.bz2 >${INDEXFILE} > + @chmod a+r ${INDEXFILE} > + > +fetchindex: ${INDEXFILE} > =20 > MASTER_SITE_INDEX?=3D http://www.FreeBSD.org/ports/ > FETCHINDEX?=3D fetch -am > ---snip--- >=20 > BTW.: if I do it the right way (".PHONY: ${INDEXFILE}.bz2" instead of > adding " .PHONY" to "${INDEXFILE}.bz2:"), it doesn't work here > (6-current) as expected. I would guess the problem is also related to .CURDIR, but I'm not sure. --=20 Simon L. Nielsen --LZFKeWUZP29EKQNE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB4WObh9pcDSc1mlERAna6AJ0c2Ck75INFcPFlpJ0Cmka7kf1iJgCeNnsc BAFW1+IlFGfcaSaDSkri9uI= =68TG -----END PGP SIGNATURE----- --LZFKeWUZP29EKQNE-- From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 17:46:34 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05D4316A4CE for ; Sun, 9 Jan 2005 17:46:34 +0000 (GMT) Received: from iramx2.ira.uni-karlsruhe.de (iramx2.ira.uni-karlsruhe.de [141.3.10.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8202543D45 for ; Sun, 9 Jan 2005 17:46:33 +0000 (GMT) (envelope-from chvogt@tm.uka.de) Received: from iraspam.ira.uni-karlsruhe.de ([141.3.10.6] helo=spamhost.ira.uka.de) by iramx2.ira.uni-karlsruhe.de with esmtp (Exim 3.30 #10) id 1Cnh95-0006tn-00; Sun, 09 Jan 2005 18:46:31 +0100 Received: from amavis by spamhost.ira.uka.de with scanned-ok (Exim 3.30 #3) id 1Cnh95-000424-00; Sun, 09 Jan 2005 18:46:31 +0100 Received: from irams1.ira.uni-karlsruhe.de ([141.3.10.5] helo=irams1.ira.uka.de) by spamhost.ira.uka.de with esmtp (Exim 3.30 #3) id 1Cnh92-00041s-00; Sun, 09 Jan 2005 18:46:28 +0100 Received: from i72archimedes.tm.uni-karlsruhe.de ([141.3.71.83]) by irams1.ira.uka.de with esmtp (Exim 3.30 #7 ) id 1Cnh92-0007Wr-00; Sun, 09 Jan 2005 18:46:28 +0100 Message-ID: <41E16DF3.1010304@tm.uka.de> Date: Sun, 09 Jan 2005 18:46:27 +0100 From: Christian Vogt User-Agent: Mozilla Thunderbird 1.0 (X11/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ulrich Spoerlein , freebsd-ports@freebsd.org References: <41E02264.1050804@tm.uka.de> <20050109102428.GA828@galgenberg.net> In-Reply-To: <20050109102428.GA828@galgenberg.net> X-Enigmail-Version: 0.89.6.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enigC61DDABFC630944C285AACEA" Content-Transfer-Encoding: 8bit Subject: Re: Nc6 for FreeBSD 4.10 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 17:46:34 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigC61DDABFC630944C285AACEA Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 8bit Hi Ulrich, thanks for your response. Thanks to Max Laier, I meanwhile got the problem fixed by manually adding the patch "patch-ad" to the /usr/ports/net/nc6/files directory. Hell knows why CVSup didn't manage to do this automatically. Well, thanks anyway! - Christian Ulrich Spoerlein wrote: > You already got a response, but I'll chime in nevertheless > > On Sat, 08.01.2005 at 19:11:48 +0100, Christian Vogt wrote: > >>The two identifiers EAI_NODATA and EAI_ADDRFAMILY appear only one time >>in the entire Nc6 code, namely, in a swich statement in file filter.c. >>I replaced the identifiers by their values (7 and 1, respectively), and, >>guess what, Nc6 compiled successfully. > > > This might be fixed, according to http://www.freshports.org/net/nc6 > > You could also take a look at net/obnc, which is OpenBSD's netcat with > support for IPv6 too. > > Ulrich Spoerlein, Department of Distributed Systems, University of Würzburg :) -- Christian Vogt, Institute of Telematics, University of Karlsruhe www.tm.uka.de/~chvogt/pubkey/ "Remember that there is nothing stable in human affairs; therefore avoid undue elation in prosperity, or undue depression in adversity." (Socrates) --------------enigC61DDABFC630944C285AACEA 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.2.4 (GNU/Linux) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFB4W3zwstEk8gl2rURAo/PAKCT/N2Ob36xD7ObO8mZrlL3BeZb/QCeK0zX iMfttDInflQIlg9HXOcsp7Y= =VKvh -----END PGP SIGNATURE----- --------------enigC61DDABFC630944C285AACEA-- From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 17:59:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50E3D16A4CE; Sun, 9 Jan 2005 17:59:29 +0000 (GMT) Received: from mailout05.sul.t-online.com (mailout05.sul.t-online.com [194.25.134.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9570243D2D; Sun, 9 Jan 2005 17:59:28 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from fwd10.aul.t-online.de by mailout05.sul.t-online.com with smtp id 1CnhLb-0008U7-01; Sun, 09 Jan 2005 18:59:27 +0100 Received: from Andro-Beta.Leidinger.net (Ew9rM-ZrYeNtC4N-YvZalks9bEs+adg7ciGCkoXhihV1dehZ5dQdUe@[217.229.213.2]) by fmrl10.sul.t-online.com with esmtp id 1CnhLS-1wikD20; Sun, 9 Jan 2005 18:59:18 +0100 Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) j09HweW3084527; Sun, 9 Jan 2005 18:58:40 +0100 (CET) (envelope-from Alexander@Leidinger.net) Date: Sun, 9 Jan 2005 18:59:48 +0100 From: Alexander Leidinger To: "Simon L. Nielsen" Message-ID: <20050109185948.4470a02d@Magellan.Leidinger.net> In-Reply-To: <20050109170219.GF1187@zaphod.nitro.dk> References: <20050109143903.GC1187@zaphod.nitro.dk> <20050109174945.7f0353e4@Magellan.Leidinger.net> <20050109170219.GF1187@zaphod.nitro.dk> X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd6.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-ID: Ew9rM-ZrYeNtC4N-YvZalks9bEs+adg7ciGCkoXhihV1dehZ5dQdUe@t-dialin.net X-TOI-MSGID: 2d79addf-ad38-404f-bbea-bc42b37dd8b4 cc: freebsd-ports@FreeBSD.org Subject: Re: Makeing fetchindex really mirror INDEX X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 17:59:29 -0000 On Sun, 9 Jan 2005 18:02:20 +0100 "Simon L. Nielsen" wrote: > Mainly because we already have a ${INDEXFILE} target, and the two > would conflict, so I thought it would be simpler to keep the simple > target. > > make index in your patch only works because you don't define > ${INDEXFILE} as ${.CURDIR}/${INDEXFILE}, which it should be since Correct. > there might be a object directory. At least as I read it, I could be > wrong. At the time I wrote the first implementation of "fetchindex" it was supposed to be run at the time as "update". So the PORTSDIR has to be writable (except I've overlooked something). If this hasn't changed, there's no need for .CURDIR. > In general I agree my way is slight silly, because it's certainly not I don't think so, we just don't share the same implications. > the right way, I just don't see a really clean way to implement it the > right way (well, ${INDEXFILE}.bz2) could probably be used but it would > still only be half way there). Without changing the index target, I don't see a cleaner way. [...] > > BTW.: if I do it the right way (".PHONY: ${INDEXFILE}.bz2" instead of > > adding " .PHONY" to "${INDEXFILE}.bz2:"), it doesn't work here > > (6-current) as expected. > > I would guess the problem is also related to .CURDIR, but I'm not > sure. I don't see where .CURDIR is supposed to change the behavior here. We're talking about targets, and I've specified them the same at both places. Bye, Alexander. -- The computer revolution is over. The computers won. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 18:02:43 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94FBA16A4CE for ; Sun, 9 Jan 2005 18:02:43 +0000 (GMT) Received: from vette.gigo.com (vette.gigo.com [216.218.228.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09B3C43D2D for ; Sun, 9 Jan 2005 18:02:43 +0000 (GMT) (envelope-from lioux@uol.com.br) Received: from 200.181.90.183 (200-181-090-183.pvoce205.dial.brasiltelecom.net.br [200.181.90.183]) by vette.gigo.com (Postfix) with ESMTP id ECCBD546C for ; Sun, 9 Jan 2005 10:02:41 -0800 (PST) Received: (qmail 59454 invoked by uid 1001); 9 Jan 2005 18:01:51 -0000 Message-ID: <20050109180151.59390.qmail@exxodus.fedaykin.here> Date: Sun, 9 Jan 2005 16:01:29 -0200 From: Mario Sergio Fujikawa Ferreira To: "Theodore R. Smith" , ports@FreeBSD.org References: <41E15BCE.5070805@xmule.ws> <20050109165957.GD828@galgenberg.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sdtB3X0nJg68CQEu" Content-Disposition: inline In-Reply-To: <20050109165957.GD828@galgenberg.net> User-Agent: Mutt/1.5.6i Subject: Re: FreeBSD Port: xmule-1.9.4.b_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 18:02:43 -0000 --sdtB3X0nJg68CQEu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 09, 2005 at 05:59:35PM +0100, Ulrich Spoerlein wrote: > On Sun, 09.01.2005 at 10:29:02 -0600, Theodore R. Smith wrote: > > Why is xMule 1.9.4b regarded as "broken" by freshports? >=20 > Because it's "only" broken for 4.x releases of FreeBSD which shipped > with gcc 2.95 (and will not be updated). >=20 > > Judging the content at > > http://pointyhat.freebsd.org/errorlogs/i386-errorlogs/e.4.2005010401/xm= ule-1.9.4.b_1.log > >=20 > > It appears as though xMule is being tested with an out-dated compiler, = probably > > gcc 2.95.x, which is no longer maintained by FSF. >=20 > Yes, that's the build log for FreeBSD 4.11. This could probably be > worked around by explicitely depending on a newer gcc port to be > installed. > aka > USE_GCC=3D 3.3 This is not so simple. xmule 1.9.4b depends on textproc/expat2, devel/gettext and x11-toolkits/wxgtk2 libraries; they are all compiled using the base compiler shipped with 4.11-R which is gcc 2.95. Therefore, compiling xmule with gcc 3.x (3.4 would be better) but trying to link against libraries built with 2.95 will not work. Hence, my flagging the port as BROKEN for FreeBSD 4.x branch. > > I'm not trying to tell you how to do your job(s)/volunteer work. I am = imploring > > you to penalize the proper deviants accordingly: the non-ISO-C++-compli= ant > > compiler that tests xMule. >=20 > Relax, it's only broken for the older 4.x line of FreeBSD and it can > probably be fixed very easily by the maintainer. Yes, the current production version is FreeBSD 5.x branch. The 4.x branch will have its last release (hopefully) with version 4.11-RELEASE. The port builds fine with the 5.x branch under gcc 3.4. By the way, feel free to provide us with anything you think would be useful to make this port better. I have been supporting this effort ever since lmule and I would like to keep support this new effort even longer. Please, provide a personal private email so that I can contact you with patches required to build xmule under the FreeBSD platform. Regards, --=20 Mario S F Ferreira - DF - Brazil - "I guess this is a signature." feature, n: a documented bug | bug, n: an undocumented feature --sdtB3X0nJg68CQEu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB4XGPrxEiaFLzGQwRAtBsAJ9ZOII3wKEHOxHlzT1cTnsckzw2jwCfTAD/ Cu+Q3MR3wSCp7FmljJ8ruE4= =8JJZ -----END PGP SIGNATURE----- --sdtB3X0nJg68CQEu-- From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 20:24:19 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE3EC16A4D7 for ; Sun, 9 Jan 2005 20:24:19 +0000 (GMT) Received: from chilled.skew.org (skew.org [65.101.207.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B82E43D2D for ; Sun, 9 Jan 2005 20:24:19 +0000 (GMT) (envelope-from mike@skew.org) Received: from chilled.skew.org (localhost.skew.org [127.0.0.1]) by chilled.skew.org (8.13.1/8.13.1) with ESMTP id j09KOJ6i011121 for ; Sun, 9 Jan 2005 13:24:19 -0700 (MST) (envelope-from mike@chilled.skew.org) Received: (from mike@localhost) by chilled.skew.org (8.13.1/8.13.1/Submit) id j09KOJ1B011120 for freebsd-ports@freebsd.org; Sun, 9 Jan 2005 13:24:19 -0700 (MST) (envelope-from mike) From: Mike Brown Message-Id: <200501092024.j09KOJ1B011120@chilled.skew.org> To: freebsd-ports@freebsd.org Date: Sun, 9 Jan 2005 13:24:19 -0700 (MST) X-Whoa: whoa. X-Mailer: ELM [version 2.4ME+ PL119 (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=UTF-8 Subject: approaching port removal deadlines X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 20:24:19 -0000 How far in advance of a port's scheduled removal date do I need to submit patches for it? If it expires and is removed before the patches are evaluated and accepted, do I need to resubmit the whole thing under the procedures for submitting a new port? (I have updates pending to py-4suite but just managed to accidentally delete my new Makefile and have to start over.. plus we're getting ready for another release, so I might want to hold off just a couple more weeks). From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 20:49:40 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 496E216A4CE for ; Sun, 9 Jan 2005 20:49:40 +0000 (GMT) Received: from ms-smtp-03-eri0.socal.rr.com (ms-smtp-03-qfe0.socal.rr.com [66.75.162.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id D963943D1D for ; Sun, 9 Jan 2005 20:49:39 +0000 (GMT) (envelope-from cwillis1@san.rr.com) Received: from chrisfdxynbz6n (24-165-28-26.san.rr.com [24.165.28.26]) j09KnYuY028345 for ; Sun, 9 Jan 2005 12:49:38 -0800 (PST) Message-Id: <200501092049.j09KnYuY028345@ms-smtp-03-eri0.socal.rr.com> From: "Chris Willis" To: Date: Sun, 9 Jan 2005 12:49:38 -0800 MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.6353 Thread-Index: AcT2Df7lvDJa8/K9SUuKHJ3QwyzAVw== X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-Virus-Scanned: Symantec AntiVirus Scan Engine Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: ports@FreeBSD.org Subject: FreeBSD Port: linux_base-7.1_7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 20:49:40 -0000 sd1# pkg_add -r linux_base Error: FTP Unable to get ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages- 5.3-release/Latest/linux_base.tbz: File unavailable (e.g., file not found, no ac cess) pkg_add: unable to fetch 'ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages -5.3-release/Latest/linux_base.tbz' by URL sd1# pkg_add -r linux_base Error: FTP Unable to get ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-5.3-release/Latest/li nux_base.tbz: File unavailable (e.g., file not found, no access) pkg_add: unable to fetch 'ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages-5.3-release/Latest/l inux_base.tbz' by URL sd1# what am I doing wrong I have no idea how to use freebsd but the guy we had wont help now so im stuck with this box! From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 20:52:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E146416A4CE; Sun, 9 Jan 2005 20:52:47 +0000 (GMT) Received: from outbound0.sv.meer.net (outbound0.sv.meer.net [205.217.152.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id C043E43D39; Sun, 9 Jan 2005 20:52:47 +0000 (GMT) (envelope-from jrhett@meer.net) Received: from mail.meer.net (mail.meer.net [209.157.152.14]) j09KqjwO054244; Sun, 9 Jan 2005 12:52:46 -0800 (PST) (envelope-from jrhett@meer.net) Received: from [10.66.240.106] (karlstad-public.sv.meer.net [205.217.152.81]) by mail.meer.net (8.12.10/8.12.10/meer) with ESMTP id j09KqhsM006272; Sun, 9 Jan 2005 12:52:43 -0800 (PST) (envelope-from jrhett@meer.net) Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <6795649E-6280-11D9-812A-000D936EFA20@meer.net> Content-Transfer-Encoding: 7bit From: Joe Rhett Date: Sun, 9 Jan 2005 12:52:41 -0800 To: mbr@FreeBSD.org X-Mailer: Apple Mail (2.619) cc: ports@FreeBSD.org Subject: FreeBSD Port: mod_frontpage-1.6.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 20:52:48 -0000 Just FYI, mod_frontpage works better with the rtr versions of frontpage than the microsoft versions. The microsoft requires compat3x, which is FORBIDDEN whereas the rtr versions work with 4.x and compat4x on 5.x. Anyway, the long story short is that to make mod_frontpage work with the rtr versions, you need the following patch: (whitespace is probably scrogged, but you'll get the idea) *** fpstatic.c_orig Wed Jan 5 22:42:39 2005 --- fpstatic.c Wed Jan 5 22:38:09 2005 *************** *** 433,439 **** } else if ((pos = strstr(uri, ".gif")) != NULL) { pos = strrchr((char *)uri, '/'); snprintf((char *)fnbuf, sizeof(fnbuf), "%s%s%s%s%s", ! FPBASE, _EXES, _VTI_ADM, _IMAGES, pos); /* * Check to see if the user is changing the password, * which has a URL like _vti_bin/_vti_aut/ passwd.htm. --- 433,439 ---- } else if ((pos = strstr(uri, ".gif")) != NULL) { pos = strrchr((char *)uri, '/'); snprintf((char *)fnbuf, sizeof(fnbuf), "%s%s%s%s%s", ! FPBASE, _EXES, _VTI_BIN, _IMAGES, pos); /* * Check to see if the user is changing the password, * which has a URL like _vti_bin/_vti_aut/ passwd.htm. -- Joe Rhett Senior Geek meer.net From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 21:40:59 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC45416A4CE for ; Sun, 9 Jan 2005 21:40:59 +0000 (GMT) Received: from mx3.kth.se (mx3.kth.se [130.237.48.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2245743D1D for ; Sun, 9 Jan 2005 21:40:59 +0000 (GMT) (envelope-from kaj@kth.se) Received: from localhost (localhost.localdomain [127.0.0.1]) by mx3.kth.se (Postfix) with ESMTP id 78A2914067A; Sun, 9 Jan 2005 22:40:57 +0100 (CET) Received: from mx3.kth.se ([127.0.0.1]) by localhost (mx3.kth.se [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 14025-01-84; Sun, 9 Jan 2005 22:40:56 +0100 (CET) Received: from quetzalcoatlite.e.kth.se (quetzalcoatlite.e.kth.se [130.237.48.174]) by mx3.kth.se (Postfix) with ESMTP id 5EA011405DB; Sun, 9 Jan 2005 22:40:56 +0100 (CET) Received: from quetzalcoatlite.e.kth.se (localhost.localdomain [127.0.0.1]) j09LeufP020589; Sun, 9 Jan 2005 22:40:56 +0100 Received: (from kaj@localhost) by quetzalcoatlite.e.kth.se (8.12.8/8.12.8/Submit) id j09Let84020586; Sun, 9 Jan 2005 22:40:55 +0100 X-Authentication-Warning: quetzalcoatlite.e.kth.se: kaj set sender to kaj@kth.se using -f Sender: kaj@e.kth.se To: Garrett Wollman References: <20050109054144.GA37692@xor.obsecurity.org> <200501090624.j096OJMn018874@khavrinen.lcs.mit.edu> From: Rasmus Kaj Organization: http://www.stacken.kth.se/ - Stacken computer club, Stockholm X-Face: M9cR~WYav<"fu%MaslX0`43PAYY?uIsM8[#E(0\Xuy9rj>4gE\h3jm.7DD?]R8*^7T\o&vT U@[53Dwkuup4[0@gw#~kyu>`unH?kVj9CJa02(h>Ki\+i=%rn%sDf^KC.!?IHkKjMAbkd\jgmphp^' d|Q; OeXEAhq?ybGqOs1CHb6TJT42'C`Krnk61//AOfXtNjj/t'`5>Vw0QX!dKfOL$.f+S"LIuwR<;I Z0Qnnx(F^F]o@*V%TUtEV'1Z[TkOl^FFV9Z~A[b19%}uP*,huCU Date: 09 Jan 2005 22:40:55 +0100 In-Reply-To: <200501090624.j096OJMn018874@khavrinen.lcs.mit.edu> Message-ID: Lines: 24 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Virus-Scanned: by amavisd-new at kth.se cc: ports@FreeBSD.org cc: Kris Kennaway Subject: Re: [FreeBSD-Announce] FreeBSD ports scheduled for removal X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 21:40:59 -0000 >>>>> "GW" == Garrett Wollman writes: GW> < said: >> net/arla ports@FreeBSD.org 2005-02-18 GW> A newer version of Arla compiles and works (some to-be-released GW> patches required for AMD64), at least if you use Heimdal from ports. GW> (My environment is rather special so the work I've done is not GW> directly applicable to the port and fails package tests.) I'm willing to submit a new version of the Arla port, but I would very much like to see ports/74113, heimdal upgrade from 0.6.1 to 0.6.3, be commited first. The PR mentions maintainer's timeout, but is got responsibility set to the maintainer, and has been untouched since Nov 20 2004. -- Rasmus Kaj ----------------------------------------------- rasmus@kaj.se \ I link, therefore I am - /usr/bin/ld \------------------------------------- http://www.stacken.kth.se/~kaj/ From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 21:45:49 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C1F316A4CE for ; Sun, 9 Jan 2005 21:45:49 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 842A143D1D for ; Sun, 9 Jan 2005 21:45:46 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 0989151266; Sun, 9 Jan 2005 13:45:36 -0800 (PST) Date: Sun, 9 Jan 2005 13:45:36 -0800 From: Kris Kennaway To: Mike Brown Message-ID: <20050109214536.GA95689@xor.obsecurity.org> References: <200501092024.j09KOJ1B011120@chilled.skew.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+HP7ph2BbKc20aGI" Content-Disposition: inline In-Reply-To: <200501092024.j09KOJ1B011120@chilled.skew.org> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org Subject: Re: approaching port removal deadlines X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 21:45:49 -0000 --+HP7ph2BbKc20aGI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 09, 2005 at 01:24:19PM -0700, Mike Brown wrote: > How far in advance of a port's scheduled removal date do I need to submit= =20 > patches for it? As far as possible, obviously :) > If it expires and is removed before the patches are evaluated=20 > and accepted, do I need to resubmit the whole thing under the procedures = for=20 > submitting a new port? Diffs to the last version in CVS would still be OK, because it can be retrieved from the attic. That's more work for the committer though, so it will probably delay getting your port back into the tree. Kris --+HP7ph2BbKc20aGI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB4aYAWry0BWjoQKURAmzwAKCCIMmfbjfRJ/3Qf1YKGUwrG9J0LwCeL/zC Vm3LafIHfWP+xkhdBF0ObAs= =wQNC -----END PGP SIGNATURE----- --+HP7ph2BbKc20aGI-- From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 21:46:34 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4240116A4CE for ; Sun, 9 Jan 2005 21:46:34 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id C65AF43D49 for ; Sun, 9 Jan 2005 21:46:30 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 3F56651266; Sun, 9 Jan 2005 13:46:22 -0800 (PST) Date: Sun, 9 Jan 2005 13:46:22 -0800 From: Kris Kennaway To: Chris Willis Message-ID: <20050109214622.GB95689@xor.obsecurity.org> References: <200501092049.j09KnYuY028345@ms-smtp-03-eri0.socal.rr.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0ntfKIWw70PvrIHh" Content-Disposition: inline In-Reply-To: <200501092049.j09KnYuY028345@ms-smtp-03-eri0.socal.rr.com> User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: linux_base-7.1_7 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 21:46:34 -0000 --0ntfKIWw70PvrIHh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 09, 2005 at 12:49:38PM -0800, Chris Willis wrote: > sd1# pkg_add -r linux_base >=20 > Error: FTP Unable to get > ftp://ftp.freebsd.org/pub/FreeBSD/ports/amd64/packages- >=20 > 5.3-release/Latest/linux_base.tbz: File unavailable (e.g., file not found, > no ac Not yet buildable on amd64. Linux emulation on amd64 is a WIP which will be fleshed out over the coming months. Kris --0ntfKIWw70PvrIHh Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB4aYtWry0BWjoQKURAvBgAJ9DLErh74Y7zz09QX7yx8Y9inW9MACggRA7 mj7YkjXYrNgOJ8fSfBE9fTI= =kGZJ -----END PGP SIGNATURE----- --0ntfKIWw70PvrIHh-- From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 21:47:22 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38DF616A4D0; Sun, 9 Jan 2005 21:47:22 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ADC443D5E; Sun, 9 Jan 2005 21:47:19 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7928F5135A; Sun, 9 Jan 2005 13:47:09 -0800 (PST) Date: Sun, 9 Jan 2005 13:47:09 -0800 From: Kris Kennaway To: Joe Rhett Message-ID: <20050109214709.GC95689@xor.obsecurity.org> References: <6795649E-6280-11D9-812A-000D936EFA20@meer.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="MnLPg7ZWsaic7Fhd" Content-Disposition: inline In-Reply-To: <6795649E-6280-11D9-812A-000D936EFA20@meer.net> User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org cc: mbr@FreeBSD.org Subject: Re: FreeBSD Port: mod_frontpage-1.6.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 21:47:22 -0000 --MnLPg7ZWsaic7Fhd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 09, 2005 at 12:52:41PM -0800, Joe Rhett wrote: > Just FYI, mod_frontpage works better with the rtr versions of frontpage= =20 > than the microsoft versions. The microsoft requires compat3x, which is= =20 > FORBIDDEN whereas the rtr versions work with 4.x and compat4x on 5.x. = =20 > Anyway, the long story short is that to make mod_frontpage work with=20 > the rtr versions, you need the following patch: (whitespace is=20 > probably scrogged, but you'll get the idea) Someone should submit an update to make the frontpage ports buildable again. They'll probably be removed from the ports tree otherwise. Kris --MnLPg7ZWsaic7Fhd Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB4aZdWry0BWjoQKURAkNcAKC516a6bsosThE/2uVBKnNDX9IofwCdHMhg aQ8bE+KgQT1pR6ROStXrz7s= =PvSd -----END PGP SIGNATURE----- --MnLPg7ZWsaic7Fhd-- From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 22:58:13 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71A5416A4CE; Sun, 9 Jan 2005 22:58:13 +0000 (GMT) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84AC443D31; Sun, 9 Jan 2005 22:58:12 +0000 (GMT) (envelope-from gerald@pfeifer.com) Received: from [128.131.111.60] (acrux [128.131.111.60]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id 5E0981378F; Sun, 9 Jan 2005 23:58:02 +0100 (CET) Date: Sun, 9 Jan 2005 23:58:08 +0100 (CET) From: Gerald Pfeifer To: Norikatsu Shigemura In-Reply-To: <200501081657.j08GvnML053109@sakura.ninth-nine.com> Message-ID: References: <200501081657.j08GvnML053109@sakura.ninth-nine.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@FreeBSD.org cc: Loren James Rittle Subject: Re: Fix -pthread issue on lang/gcc3[34] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 22:58:13 -0000 Thanks for the patch! I know that David had a look into these issues and updated GCC mainline (with his changes now being in the current lang/gcc40 port), so I would like him and Loren who is also taking care of FreeBSD in GCC-land to have a look at this patch, so I'm Cc:ing both and providing a full quote. If possible in any way, I really would like to keep the port as close to the upstream versions as possible, not the least because this will avoid problems for users who want or even need to use these versions. David, Loren, how shall we proceed? I believe David raised issues wrt. cross-compilation which would render the #ifdefs unsuitable for upstream. Would a configure option, which is then used by the FreeBSD ports, be an option? Gerald On Sun, 9 Jan 2005, Norikatsu Shigemura wrote: > Hi Gerald! > > I have a patch to fix -pthread issue on lang/gcc3[34]. > > BEFORE: on 5.2.1 or after > $ gcc3? -pthread FILE of 'int main(void) { return 0; }'. > $ ldd a.out > a.out: > libc_r.so.1 => /usr/lib/libc_r.so.5 (0x68076000) > libc.so.6 => /lib/libc.so.6 (0x6809d000) > > AFTER: on 5.2.1 or after > $ gcc3? -pthread FILE of 'int main(void) { return 0; }'. > $ ldd a.out > a.out: > libpthread.so.1 => /usr/lib/libpthread.so.1 (0x68076000) > libc.so.6 => /lib/libc.so.6 (0x6809d000) > > # Inspired by lang/gcc32, lang/gcc-ooo. > > May I commit this OK? > - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - > Index: gcc33/Makefile > =================================================================== > RCS file: /home/ncvs/ports/lang/gcc33/Makefile,v > retrieving revision 1.189 > diff -u -r1.189 Makefile > --- gcc33/Makefile 17 Dec 2004 19:08:19 -0000 1.189 > +++ gcc33/Makefile 8 Jan 2005 16:45:32 -0000 > @@ -8,7 +8,7 @@ > > PORTNAME= gcc > PORTVERSION= 3.3.6 > -PORTREVISION= 20041215 > +PORTREVISION= 20041215.1 > CATEGORIES= lang java > VERSIONSTRING= 3.3-${PORTREVISION} > MASTER_SITES= ${MASTER_SITE_GCC} > Index: gcc33/files/patch-gcc,config,freebsd-spec.h > =================================================================== > RCS file: gcc33/files/patch-gcc,config,freebsd-spec.h > diff -N gcc33/files/patch-gcc,config,freebsd-spec.h > --- /dev/null 1 Jan 1970 00:00:00 -0000 > +++ gcc33/files/patch-gcc,config,freebsd-spec.h 8 Jan 2005 16:40:51 -0000 > @@ -0,0 +1,23 @@ > +--- gcc/config/freebsd-spec.h.orig Wed Mar 12 11:38:01 2003 > ++++ gcc/config/freebsd-spec.h Sun Jan 9 01:39:09 2005 > +@@ -131,11 +131,20 @@ > + }" > + #else > + #if FBSD_MAJOR >= 5 > ++#include > ++#if __FreeBSD_version < 502102 /* upto FreeBSD 5.2.1 */ > + #define FBSD_LIB_SPEC " \ > + %{!shared: \ > + %{!pg: %{pthread:-lc_r} -lc} \ > + %{pg: %{pthread:-lc_r_p} -lc_p} \ > + }" > ++#else > ++#define FBSD_LIB_SPEC " \ > ++ %{!shared: \ > ++ %{!pg: %{pthread:-lpthread} -lc} \ > ++ %{pg: %{pthread:-lpthread_p} -lc_p} \ > ++ }" > ++#endif /* deal with FreeBSD 5.0 - 5.2.1 */ > + #else > + #define FBSD_LIB_SPEC " \ > + %{!shared: \ > Index: gcc34/Makefile > =================================================================== > RCS file: /home/ncvs/ports/lang/gcc34/Makefile,v > retrieving revision 1.191 > diff -u -r1.191 Makefile > --- gcc34/Makefile 25 Dec 2004 13:41:58 -0000 1.191 > +++ gcc34/Makefile 8 Jan 2005 16:45:43 -0000 > @@ -8,7 +8,7 @@ > > PORTNAME= gcc > PORTVERSION= 3.4.4 > -PORTREVISION= 20041224 > +PORTREVISION= 20041224.1 > CATEGORIES= lang java > VERSIONSTRING= 3.4-${PORTREVISION} > MASTER_SITES= ${MASTER_SITE_GCC} \ > Index: gcc34/files/patch-gcc,config,freebsd-spec.h > =================================================================== > RCS file: gcc34/files/patch-gcc,config,freebsd-spec.h > diff -N gcc34/files/patch-gcc,config,freebsd-spec.h > --- /dev/null 1 Jan 1970 00:00:00 -0000 > +++ gcc34/files/patch-gcc,config,freebsd-spec.h 8 Jan 2005 16:44:08 -0000 > @@ -0,0 +1,22 @@ > +--- gcc/config/freebsd-spec.h.orig Wed Dec 22 03:00:24 2004 > ++++ gcc/config/freebsd-spec.h Sat Jan 8 02:00:23 2005 > +@@ -130,11 +130,19 @@ > + }" > + #else > + #if FBSD_MAJOR >= 5 > ++#if __FreeBSD_version < 502102 /* upto FreeBSD 5.2.1 */ > ++#define FBSD_LIB_SPEC " \ > ++ %{!shared: \ > ++ %{!pg: %{pthread:-lc_r} -lc} \ > ++ %{pg: %{pthread:-lc_r_p} -lc_p} \ > ++ }" > ++#else > + #define FBSD_LIB_SPEC " \ > + %{!shared: \ > + %{!pg: %{pthread:-lpthread} -lc} \ > + %{pg: %{pthread:-lpthread_p} -lc_p} \ > + }" > ++#endif /* deal with FreeBSD 5.0 - 5.2.1 */ > + #else > + #define FBSD_LIB_SPEC " \ > + %{!shared: \ > From owner-freebsd-ports@FreeBSD.ORG Sun Jan 9 23:42:09 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4397316A4CE; Sun, 9 Jan 2005 23:42:09 +0000 (GMT) Received: from outbound0.sv.meer.net (outbound0.sv.meer.net [205.217.152.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFE5B43D31; Sun, 9 Jan 2005 23:42:08 +0000 (GMT) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (mail.meer.net [209.157.152.14]) j09Ng5wO060644; Sun, 9 Jan 2005 15:42:07 -0800 (PST) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (localhost [127.0.0.1]) by mail.meer.net (8.12.10/8.12.10/meer) with ESMTP id j09NfrsM029946; Sun, 9 Jan 2005 15:41:53 -0800 (PST) (envelope-from jrhett@mail.meer.net) Received: (from jrhett@localhost) by mail.meer.net (8.12.1/8.12.10) id j09Nfr0G029944; Sun, 9 Jan 2005 15:41:53 -0800 (PST) (envelope-from jrhett) Date: Sun, 9 Jan 2005 15:41:53 -0800 From: Joe Rhett To: Kris Kennaway Message-ID: <20050109234153.GB28535@meer.net> References: <6795649E-6280-11D9-812A-000D936EFA20@meer.net> <20050109214709.GC95689@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050109214709.GC95689@xor.obsecurity.org> User-Agent: Mutt/1.4i Organization: Meer.net LLC cc: ports@freebsd.org cc: mbr@freebsd.org Subject: Re: FreeBSD Port: mod_frontpage-1.6.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Jan 2005 23:42:09 -0000 On Sun, Jan 09, 2005 at 01:47:09PM -0800, Kris Kennaway wrote: > Someone should submit an update to make the frontpage ports buildable > again. They'll probably be removed from the ports tree otherwise. I already have. I would have submitted a patchy, but I haven't figured out how to get the build system to download the URL for rtr's frontpage properly. It works fine from the command line http://www.rtr.com/fpsupport/cgi-bin/fp2002sr1download.cgi?email=ports@freebsd.org&First_Name=freebsd&Last_Name=ports&version=fp50.freebsd.tar.Z But putting this in the Makefile doesn't work: MASTER_SITES=http://www.rtr.com/fpsupport/cgi-bin/fp2002sr1download.cgi?email=ports@freebsd.org&First_Name=freebsd&Last_Name=ports&version= (it appears to append the file name to the end) Putting slashes before the & is required on the command line, but doesn't help (or hurt) in the Makefile... The other option is for someone to download it and put it in the ftp.freebsd.org distfiles archive ... but I can't do that. -- Joe Rhett Senior Geek Meer.net From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 00:46:36 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F116C16A4CE; Mon, 10 Jan 2005 00:46:35 +0000 (GMT) Received: from blackwater.lemis.com (wantadilla.lemis.com [192.109.197.135]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EB5043D49; Mon, 10 Jan 2005 00:46:34 +0000 (GMT) (envelope-from grog@lemis.com) Received: by blackwater.lemis.com (Postfix, from userid 1004) id C07EA85651; Mon, 10 Jan 2005 11:16:29 +1030 (CST) Date: Mon, 10 Jan 2005 11:16:29 +1030 From: Greg 'groggy' Lehey To: Kris Kennaway , nectar@FreeBSD.org, Garrett Wollman , Rasmus Kaj Message-ID: <20050110004629.GI88329@wantadilla.lemis.com> References: <20050109054144.GA37692@xor.obsecurity.org> <200501090624.j096OJMn018874@khavrinen.lcs.mit.edu> <20050109054144.GA37692@xor.obsecurity.org> <200501090624.j096OJMn018874@khavrinen.lcs.mit.edu> <20050109054144.GA37692@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="3ZVRZSsi0599GS4V" Content-Disposition: inline In-Reply-To: <200501090624.j096OJMn018874@khavrinen.lcs.mit.edu> <20050109054144.GA37692@xor.obsecurity.org> User-Agent: Mutt/1.4.2.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 cc: ports@FreeBSD.org cc: announce@FreeBSD.org Subject: Removing net/arla (was: FreeBSD ports scheduled for removal) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 00:46:36 -0000 --3ZVRZSsi0599GS4V Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Saturday, 8 January 2005 at 21:41:44 -0800, Kris Kennaway wrote: > Dear FreeBSD users, > > The following ports are scheduled for removal over the next few > months, if they are still unbuildable at the scheduled removal time > and no PRs have been submitted to fix them. > ... > net/arla ports@FreeBSD.org 2005-02-18 There is in fact a PR against this port, but it's already out of date. I've sort of unofficially taken over arla, but I don't have time to look at it "at least for two weeks" (i.e. the foreseeable future). If other people want to do something here, don't feel inhibited, but it would be a good idea to talk about it. ISTR it was the recent changes in the bio interface that were the main issue. On Sunday, 9 January 2005 at 1:24:19 -0500, Garrett Wollman wrote: > < said: > >> net/arla ports@FreeBSD.org 2005-02-18 > > A newer version of Arla compiles and works (some to-be-released > patches required for AMD64), at least if you use Heimdal from ports. > (My environment is rather special so the work I've done is not > directly applicable to the port and fails package tests.) If you send me what you have, I'll test it here and commit it. On Sunday, 9 January 2005 at 22:40:55 +0100, Rasmus Kaj wrote: >>>>>> "GW" == Garrett Wollman writes: > > GW> < GW> said: > >>> net/arla ports@FreeBSD.org 2005-02-18 > > GW> A newer version of Arla compiles and works (some to-be-released > GW> patches required for AMD64), at least if you use Heimdal from ports. > GW> (My environment is rather special so the work I've done is not > GW> directly applicable to the port and fails package tests.) > > I'm willing to submit a new version of the Arla port, but I would very > much like to see ports/74113, heimdal upgrade from 0.6.1 to 0.6.3, be > commited first. nectar? Greg -- See complete headers for address and phone numbers. --3ZVRZSsi0599GS4V Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFB4dBlIubykFB6QiMRAlD/AKCxv1vVrGDXF88Hj6M4xYla6bOQUACfQj4/ mDlb9IMl8QF826BF7c5Bo44= =91vm -----END PGP SIGNATURE----- --3ZVRZSsi0599GS4V-- From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 01:47:04 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B95D16A4CE; Mon, 10 Jan 2005 01:47:04 +0000 (GMT) Received: from leguin.anholt.net (69-30-77-85.dq1sn.easystreet.com [69.30.77.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07B0B43D39; Mon, 10 Jan 2005 01:47:02 +0000 (GMT) (envelope-from eta@lclark.edu) Received: from leguin.anholt.net (localhost [127.0.0.1]) by leguin.anholt.net (8.13.1/8.13.1) with ESMTP id j0A1kt2I060781; Sun, 9 Jan 2005 17:46:55 -0800 (PST) (envelope-from eta@lclark.edu) Received: (from anholt@localhost) by leguin.anholt.net (8.13.1/8.13.1/Submit) id j0A1kstp060749; Sun, 9 Jan 2005 17:46:54 -0800 (PST) (envelope-from eta@lclark.edu) X-Authentication-Warning: leguin.anholt.net: anholt set sender to eta@lclark.edu using -f From: Eric Anholt To: x11@FreeBSD.org, ports@FreeBSD.org Content-Type: multipart/mixed; boundary="=-djNu0bw2gq0d2b6kW9Nw" Date: Sun, 09 Jan 2005 17:46:54 -0800 Message-Id: <1105321614.8452.54.camel@leguin> Mime-Version: 1.0 X-Mailer: Evolution 2.0.2 FreeBSD GNOME Team Port Subject: x11 /tmp preparation rc.d script X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 01:47:04 -0000 --=-djNu0bw2gq0d2b6kW9Nw Content-Type: text/plain Content-Transfer-Encoding: 7bit Attached are my proposed patches to deal with the X11 ICE issue. To review, it's required because having .ICE not owned by root is a security issue, one that's been papered over with a printed warning and sleep(5) in libICE for years, and has recently been changed into an actual error by the X.Org folks. The question is whether to stick it in base or in ports: In favor of ports: - Seems like the proper place. Nothing happens for non-X11 users. In favor of base: - Would either need to make a separate port just for the script, or keep the script in at least 3 separate ports, disregarding the cleanup of servers which might make for more ports affected. - From ports, it might get started too late in the boot process, or not at all in some installations. I decided to do it in the base system, assuming that we can spare 4 inodes, given that we already have BSD.x11-4.dist happening. Brooks's patch also allowed overriding the set of directories. I don't think that's a real issue, and the clutter in /etc/defaults/rc.conf is worse. I also think that cleartmp probably shouldn't be overloaded with X stuff, though there's still the BEFORE: preparex11 line, which I'm unsure of. So, attached are proposed patches for 6-current and 5-stable. I haven't done a real install of them because my systems are out of date, but I wanted to get this out there for review so it can go into CVS soon after I test installing. If they're good, they would be merged to RELENG_5_3 and older, I hope, due to the security implications. Any comments? -- Eric Anholt eta@lclark.edu http://people.freebsd.org/~anholt/ anholt@FreeBSD.org --=-djNu0bw2gq0d2b6kW9Nw Content-Disposition: attachment; filename=preparex11-current Content-Type: text/x-patch; name=preparex11-current; charset=ISO-8859-1 Content-Transfer-Encoding: base64 SW5kZXg6IGV0Yy9kZWZhdWx0cy9yYy5jb25mDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQpSQ1MgZmlsZTogL2hvbWUv bmN2cy9zcmMvZXRjL2RlZmF1bHRzL3JjLmNvbmYsdg0KcmV0cmlldmluZyByZXZpc2lvbiAxLjIz NQ0KZGlmZiAtdSAtcjEuMjM1IHJjLmNvbmYNCi0tLSBldGMvZGVmYXVsdHMvcmMuY29uZgkxNSBE ZWMgMjAwNCAxMjozOToyOCAtMDAwMAkxLjIzNQ0KKysrIGV0Yy9kZWZhdWx0cy9yYy5jb25mCTEw IEphbiAyMDA1IDAxOjI1OjM1IC0wMDAwDQpAQCAtNDQzLDYgKzQ0Myw3IEBADQogc3ZyNF9lbmFi bGU9Ik5PIgkjIFN5c1ZSNCBlbXVsYXRpb24gbG9hZGVkIGF0IHN0YXJ0dXAgKG9yIE5PKS4NCiBv c2YxX2VuYWJsZT0iTk8iCSMgQWxwaGEgT1NGLzEgZW11bGF0aW9uIGxvYWRlZCBhdCBzdGFydHVw IChvciBOTykuDQogY2xlYXJfdG1wX2VuYWJsZT0iTk8iCSMgQ2xlYXIgL3RtcCBhdCBzdGFydHVw Lg0KK3ByZXBhcmVfeDExX2VuYWJsZT0iWUVTIiAjIENsZWFuIGFuZCByZWNyZWF0ZSBkaXJlY3Rv cmllcyBuZWNlc3NhcnkgZm9yIFgxMS4NCiBsZGNvbmZpZ19pbnNlY3VyZT0iTk8iCSMgU2V0IHRv IFlFUyB0byBkaXNhYmxlIGxkY29uZmlnIHNlY3VyaXR5IGNoZWNrcw0KIGxkY29uZmlnX3BhdGhz PSIvdXNyL2xpYi9jb21wYXQgL3Vzci9YMTFSNi9saWIgL3Vzci9sb2NhbC9saWIgL3Vzci9sb2Nh bC9saWIvY29tcGF0L3BrZyINCiAJCQkjIHNoYXJlZCBsaWJyYXJ5IHNlYXJjaCBwYXRocw0KSW5k ZXg6IGV0Yy9yYy5kL01ha2VmaWxlDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQpSQ1MgZmlsZTogL2hvbWUvbmN2cy9z cmMvZXRjL3JjLmQvTWFrZWZpbGUsdg0KcmV0cmlldmluZyByZXZpc2lvbiAxLjQ3DQpkaWZmIC11 IC1yMS40NyBNYWtlZmlsZQ0KLS0tIGV0Yy9yYy5kL01ha2VmaWxlCTE2IE5vdiAyMDA0IDA0OjIw OjA5IC0wMDAwCTEuNDcNCisrKyBldGMvcmMuZC9NYWtlZmlsZQkxMCBKYW4gMjAwNSAwMDo1NTo0 MCAtMDAwMA0KQEAgLTI2LDcgKzI2LDcgQEANCiAJbmZzbG9ja2luZyBuZnNzZXJ2ZXIgbmlzZG9t YWluIG5zc3dpdGNoIG50cGQgbnRwZGF0ZSBcDQogCW90aGVybXRhIFwNCiAJcGNjYXJkIHBjdnQg cGYgcGZsb2cgXA0KLQlwb3dlcl9wcm9maWxlIHBwcC11c2VyIHBwcG9lZCBwcmVzZWVkcmFuZG9t IHB3Y2hlY2sgXA0KKwlwb3dlcl9wcm9maWxlIHBwcC11c2VyIHBwcG9lZCBwcmVwYXJleDExIHBy ZXNlZWRyYW5kb20gcHdjaGVjayBcDQogCXF1b3RhIFwNCiAJcmFtZGlzayByYW1kaXNrLW93biBy YW5kb20gcmFycGQgcmNjb25mLnNoIHJlc29sdiByb290IFwNCiAJcm91dGU2ZCByb3V0ZWQgcm91 dGluZyBycGNiaW5kIHJ0YWR2ZCByd2hvIFwNCkluZGV4OiBldGMvcmMuZC9jbGVhcnRtcA0KPT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PQ0KUkNTIGZpbGU6IC9ob21lL25jdnMvc3JjL2V0Yy9yYy5kL2NsZWFydG1wLHYNCnJl dHJpZXZpbmcgcmV2aXNpb24gMS4xMQ0KZGlmZiAtdSAtcjEuMTEgY2xlYXJ0bXANCi0tLSBldGMv cmMuZC9jbGVhcnRtcAk3IE9jdCAyMDA0IDEzOjU1OjI1IC0wMDAwCTEuMTENCisrKyBldGMvcmMu ZC9jbGVhcnRtcAkxMCBKYW4gMjAwNSAwMTowMDowOCAtMDAwMA0KQEAgLTYsNyArNiw3IEBADQog DQogIyBQUk9WSURFOiBjbGVhcnRtcA0KICMgUkVRVUlSRTogbW91bnRjcml0cmVtb3RlIHRtcA0K LSMgQkVGT1JFOiBEQUVNT04NCisjIEJFRk9SRTogREFFTU9OIHByZXBhcmV4MTENCiANCiAuIC9l dGMvcmMuc3Vicg0KIA0KQEAgLTMwLDEwICszMCwzIEBADQogDQogbG9hZF9yY19jb25maWcgJG5h bWUNCiBydW5fcmNfY29tbWFuZCAiJDEiDQotDQotIyBSZW1vdmUgWCBsb2NrIGZpbGVzLCBzaW5j ZSB0aGV5IHdpbGwgcHJldmVudCB5b3UgZnJvbQ0KLSMgcmVzdGFydGluZyBYDQotIw0KLXJtIC1m IC90bXAvLlhbMC05XS1sb2NrDQotcm0gLWZyIC90bXAvLlgxMS11bml4DQotbWtkaXIgLW0gMTc3 NyAvdG1wLy5YMTEtdW5peA0KSW5kZXg6IGV0Yy9yYy5kL3ByZXBhcmV4MTENCj09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0N ClJDUyBmaWxlOiBldGMvcmMuZC9wcmVwYXJleDExDQpkaWZmIC1OIGV0Yy9yYy5kL3ByZXBhcmV4 MTENCi0tLSAvZGV2L251bGwJMSBKYW4gMTk3MCAwMDowMDowMCAtMDAwMA0KKysrIGV0Yy9yYy5k L3ByZXBhcmV4MTEJMTAgSmFuIDIwMDUgMDE6MTA6NDQgLTAwMDANCkBAIC0wLDAgKzEsMjcgQEAN CisjIS9iaW4vc2gNCisjDQorIyAkRnJlZUJTRCQNCisjDQorDQorIyBQUk9WSURFOiBwcmVwYXJl eDExDQorIyBSRVFVSVJFOiBtb3VudGFsbA0KKyMgQkVGT1JFOiBEQUVNT04NCisjIEtFWVdPUkQ6 IEZyZWVCU0QgTmV0QlNEDQorDQorLiAvZXRjL3JjLnN1YnINCisNCituYW1lPSJwcmVwYXJleDEx Ig0KK3JjdmFyPWBzZXRfcmN2YXIgcHJlcGFyZV94MTFgDQorc3RhcnRfY21kPSJwcmVwYXJleDEx X3N0YXJ0Ig0KK3N0b3BfY21kPSI6Ig0KKw0KK3ByZXBhcmV4MTFfc3RhcnQoKQ0KK3sNCisJZWNo byAiUHJlcGFyaW5nIC90bXAgZm9yIFgxMSBhcHBsaWNhdGlvbnMuIg0KKwlybSAtZiAvdG1wLy5Y Ki1sb2NrDQorCXJtIC1mciAvdG1wLy5YMTEtdW5peCAvdG1wLy5mb250LXVuaXggL3RtcC8uSUNF LXVuaXgNCisJbWtkaXIgLW0gMTc3NyAvdG1wLy5YMTEtdW5peCAvdG1wLy5mb250LXVuaXggL3Rt cC8uSUNFLXVuaXgNCit9DQorDQorbG9hZF9yY19jb25maWcgJG5hbWUNCitydW5fcmNfY29tbWFu ZCAiJDEiDQpJbmRleDogc2hhcmUvbWFuL21hbjUvcmMuY29uZi41DQo9PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQpSQ1Mg ZmlsZTogL2hvbWUvbmN2cy9zcmMvc2hhcmUvbWFuL21hbjUvcmMuY29uZi41LHYNCnJldHJpZXZp bmcgcmV2aXNpb24gMS4yNDENCmRpZmYgLXUgLXIxLjI0MSByYy5jb25mLjUNCi0tLSBzaGFyZS9t YW4vbWFuNS9yYy5jb25mLjUJNSBKYW4gMjAwNSAwOTo1MjoxMiAtMDAwMAkxLjI0MQ0KKysrIHNo YXJlL21hbi9tYW41L3JjLmNvbmYuNQkxMCBKYW4gMjAwNSAwMToyNTozNiAtMDAwMA0KQEAgLTI1 ODYsNiArMjU4NiwxNyBAQA0KIHRvIGhhdmUNCiAuUGEgL3RtcA0KIGNsZWFuZWQgYXQgc3RhcnR1 cC4NCisuSXQgVmEgcHJlcGFyZV94MTFfZW5hYmxlDQorLlBxIFZ0IGJvb2wNCitTZXQgdG8NCisu RHEgTGkgTk8NCit0byBkaXNhYmxlIHJlbW92aW5nIHN0YWxlIFggc2VydmVyIGxvY2tmaWxlcyBh bmQgZGlzYWJsZSByZW1vdmluZyBhbmQgcmVjcmVhdGluZw0KKy5QYSAvdG1wLy5JQ0UtdW5peCAs DQorLlBhIC90bXAvLlgxMS11bml4ICwNCithbmQNCisuUGEgL3RtcC8uZm9udC11bml4DQorYXQg c3RhcnR1cC4gIE1heSBiZSBhIHNlY3VyaXR5IGlzc3VlIGlmIFgxMSBhcHBsaWNhdGlvbnMgYXJl IHVzZWQgd2l0aCB0aGlzDQorZGlzYWJsZWQuDQogLkl0IFZhIGxkY29uZmlnX3BhdGhzDQogLlBx IFZ0IHN0cg0KIFNldCB0byB0aGUgbGlzdCBvZiBzaGFyZWQgbGlicmFyeSBwYXRocyB0byB1c2Ug d2l0aA0K --=-djNu0bw2gq0d2b6kW9Nw Content-Disposition: attachment; filename=preparex11-stable Content-Type: text/x-patch; name=preparex11-stable; charset=ISO-8859-1 Content-Transfer-Encoding: base64 SW5kZXg6IGV0Yy9kZWZhdWx0cy9yYy5jb25mDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09DQpSQ1MgZmlsZTogL2hvbWUv bmN2cy9zcmMvZXRjL2RlZmF1bHRzL3JjLmNvbmYsdg0KcmV0cmlldmluZyByZXZpc2lvbiAxLjIx Mi4yLjkNCmRpZmYgLXUgLXIxLjIxMi4yLjkgcmMuY29uZg0KLS0tIGV0Yy9kZWZhdWx0cy9yYy5j b25mCTMgSmFuIDIwMDUgMTI6NDE6MzkgLTAwMDAJMS4yMTIuMi45DQorKysgZXRjL2RlZmF1bHRz L3JjLmNvbmYJMTAgSmFuIDIwMDUgMDE6MTA6MTUgLTAwMDANCkBAIC00MzgsNiArNDM4LDcgQEAN CiBzdnI0X2VuYWJsZT0iTk8iCSMgU3lzVlI0IGVtdWxhdGlvbiBsb2FkZWQgYXQgc3RhcnR1cCAo b3IgTk8pLg0KIG9zZjFfZW5hYmxlPSJOTyIJIyBBbHBoYSBPU0YvMSBlbXVsYXRpb24gbG9hZGVk IGF0IHN0YXJ0dXAgKG9yIE5PKS4NCiBjbGVhcl90bXBfZW5hYmxlPSJOTyIJIyBDbGVhciAvdG1w IGF0IHN0YXJ0dXAuDQorcHJlcGFyZV94MTFfZW5hYmxlPSJZRVMiICMgQ2xlYW4gYW5kIHJlY3Jl YXRlIGRpcmVjdG9yaWVzIG5lY2Vzc2FyeSBmb3IgWDExLg0KIGxkY29uZmlnX2luc2VjdXJlPSJO TyIJIyBTZXQgdG8gWUVTIHRvIGRpc2FibGUgbGRjb25maWcgc2VjdXJpdHkgY2hlY2tzDQogbGRj b25maWdfcGF0aHM9Ii91c3IvbGliL2NvbXBhdCAvdXNyL1gxMVI2L2xpYiAvdXNyL2xvY2FsL2xp YiINCiAJCQkjIHNoYXJlZCBsaWJyYXJ5IHNlYXJjaCBwYXRocw0KSW5kZXg6IGV0Yy9yYy5kL01h a2VmaWxlDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09DQpSQ1MgZmlsZTogL2hvbWUvbmN2cy9zcmMvZXRjL3JjLmQvTWFr ZWZpbGUsdg0KcmV0cmlldmluZyByZXZpc2lvbiAxLjQxLjIuMQ0KZGlmZiAtdSAtcjEuNDEuMi4x IE1ha2VmaWxlDQotLS0gZXRjL3JjLmQvTWFrZWZpbGUJMTQgT2N0IDIwMDQgMDQ6MzY6MTUgLTAw MDAJMS40MS4yLjENCisrKyBldGMvcmMuZC9NYWtlZmlsZQkxMCBKYW4gMjAwNSAwMToxODoyMiAt MDAwMA0KQEAgLTI2LDcgKzI2LDcgQEANCiAJbmZzbG9ja2luZyBuZnNzZXJ2ZXIgbmlzZG9tYWlu IG5zc3dpdGNoIG50cGQgbnRwZGF0ZSBcDQogCW90aGVybXRhIFwNCiAJcGNjYXJkIHBjdnQgcGYg cGZsb2cgcHJlc2VlZHJhbmRvbSBcDQotCXBvd2VyX3Byb2ZpbGUgcHBwLXVzZXIgcHBwb2VkIHB3 Y2hlY2sgXA0KKwlwb3dlcl9wcm9maWxlIHBwcC11c2VyIHBwcG9lZCBwcmVwYXJleDExIHB3Y2hl Y2sgXA0KIAlxdW90YSBcDQogCXJhbmRvbSByYXJwZCByY2NvbmYuc2ggcmVzb2x2IHJvb3QgXA0K IAlyb3V0ZTZkIHJvdXRlZCByb3V0aW5nIHJwY2JpbmQgcnRhZHZkIHJ3aG8gXA0KSW5kZXg6IGV0 Yy9yYy5kL2NsZWFydG1wDQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09DQpSQ1MgZmlsZTogL2hvbWUvbmN2cy9zcmMvZXRj L3JjLmQvY2xlYXJ0bXAsdg0KcmV0cmlldmluZyByZXZpc2lvbiAxLjEwLjIuMQ0KZGlmZiAtdSAt cjEuMTAuMi4xIGNsZWFydG1wDQotLS0gZXRjL3JjLmQvY2xlYXJ0bXAJMTAgT2N0IDIwMDQgMDk6 NTA6NTMgLTAwMDAJMS4xMC4yLjENCisrKyBldGMvcmMuZC9jbGVhcnRtcAkxMCBKYW4gMjAwNSAw MToyNjo0NSAtMDAwMA0KQEAgLTYsNyArNiw3IEBADQogDQogIyBQUk9WSURFOiBjbGVhcnRtcA0K ICMgUkVRVUlSRTogbW91bnRjcml0cmVtb3RlIHRtcA0KLSMgQkVGT1JFOiBEQUVNT04NCisjIEJF Rk9SRTogREFFTU9OIHByZXBhcmV4MTENCiANCiAuIC9ldGMvcmMuc3Vicg0KIA0KQEAgLTMwLDEw ICszMCwzIEBADQogDQogbG9hZF9yY19jb25maWcgJG5hbWUNCiBydW5fcmNfY29tbWFuZCAiJDEi DQotDQotIyBSZW1vdmUgWCBsb2NrIGZpbGVzLCBzaW5jZSB0aGV5IHdpbGwgcHJldmVudCB5b3Ug ZnJvbQ0KLSMgcmVzdGFydGluZyBYDQotIw0KLXJtIC1mIC90bXAvLlhbMC05XS1sb2NrDQotcm0g LWZyIC90bXAvLlgxMS11bml4DQotbWtkaXIgLW0gMTc3NyAvdG1wLy5YMTEtdW5peA0KSW5kZXg6 IGV0Yy9yYy5kL3ByZXBhcmV4MTENCj09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT0NClJDUyBmaWxlOiBldGMvcmMuZC9wcmVw YXJleDExDQpkaWZmIC1OIGV0Yy9yYy5kL3ByZXBhcmV4MTENCi0tLSAvZGV2L251bGwJMSBKYW4g MTk3MCAwMDowMDowMCAtMDAwMA0KKysrIGV0Yy9yYy5kL3ByZXBhcmV4MTEJMTAgSmFuIDIwMDUg MDE6MTA6NTYgLTAwMDANCkBAIC0wLDAgKzEsMjcgQEANCisjIS9iaW4vc2gNCisjDQorIyAkRnJl ZUJTRCQNCisjDQorDQorIyBQUk9WSURFOiBwcmVwYXJleDExDQorIyBSRVFVSVJFOiBtb3VudGFs bA0KKyMgQkVGT1JFOiBEQUVNT04NCisjIEtFWVdPUkQ6IEZyZWVCU0QgTmV0QlNEDQorDQorLiAv ZXRjL3JjLnN1YnINCisNCituYW1lPSJwcmVwYXJleDExIg0KK3JjdmFyPWBzZXRfcmN2YXIgcHJl cGFyZV94MTFgDQorc3RhcnRfY21kPSJwcmVwYXJleDExX3N0YXJ0Ig0KK3N0b3BfY21kPSI6Ig0K Kw0KK3ByZXBhcmV4MTFfc3RhcnQoKQ0KK3sNCisJZWNobyAiUHJlcGFyaW5nIC90bXAgZm9yIFgx MSBhcHBsaWNhdGlvbnMuIg0KKwlybSAtZiAvdG1wLy5YKi1sb2NrDQorCXJtIC1mciAvdG1wLy5Y MTEtdW5peCAvdG1wLy5mb250LXVuaXggL3RtcC8uSUNFLXVuaXgNCisJbWtkaXIgLW0gMTc3NyAv dG1wLy5YMTEtdW5peCAvdG1wLy5mb250LXVuaXggL3RtcC8uSUNFLXVuaXgNCit9DQorDQorbG9h ZF9yY19jb25maWcgJG5hbWUNCitydW5fcmNfY29tbWFuZCAiJDEiDQpJbmRleDogc2hhcmUvbWFu L21hbjUvcmMuY29uZi41DQo9PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09 PT09PT09PT09PT09PT09PT09PT09PT09PT09DQpSQ1MgZmlsZTogL2hvbWUvbmN2cy9zcmMvc2hh cmUvbWFuL21hbjUvcmMuY29uZi41LHYNCnJldHJpZXZpbmcgcmV2aXNpb24gMS4yMjEuMi44DQpk aWZmIC11IC1yMS4yMjEuMi44IHJjLmNvbmYuNQ0KLS0tIHNoYXJlL21hbi9tYW41L3JjLmNvbmYu NQk1IEphbiAyMDA1IDA4OjMxOjE5IC0wMDAwCTEuMjIxLjIuOA0KKysrIHNoYXJlL21hbi9tYW41 L3JjLmNvbmYuNQkxMCBKYW4gMjAwNSAwMToyNTo0NyAtMDAwMA0KQEAgLTI1ODYsNiArMjU4Niwx NyBAQA0KIHRvIGhhdmUNCiAuUGEgL3RtcA0KIGNsZWFuZWQgYXQgc3RhcnR1cC4NCisuSXQgVmEg cHJlcGFyZV94MTFfZW5hYmxlDQorLlBxIFZ0IGJvb2wNCitTZXQgdG8NCisuRHEgTGkgTk8NCit0 byBkaXNhYmxlIHJlbW92aW5nIHN0YWxlIFggc2VydmVyIGxvY2tmaWxlcyBhbmQgZGlzYWJsZSBy ZW1vdmluZyBhbmQgcmVjcmVhdGluZw0KKy5QYSAvdG1wLy5JQ0UtdW5peCAsDQorLlBhIC90bXAv LlgxMS11bml4ICwNCithbmQNCisuUGEgL3RtcC8uZm9udC11bml4DQorYXQgc3RhcnR1cC4gIE1h eSBiZSBhIHNlY3VyaXR5IGlzc3VlIGlmIFgxMSBhcHBsaWNhdGlvbnMgYXJlIHVzZWQgd2l0aCB0 aGlzDQorZGlzYWJsZWQuDQogLkl0IFZhIGxkY29uZmlnX3BhdGhzDQogLlBxIFZ0IHN0cg0KIFNl dCB0byB0aGUgbGlzdCBvZiBzaGFyZWQgbGlicmFyeSBwYXRocyB0byB1c2Ugd2l0aA0K --=-djNu0bw2gq0d2b6kW9Nw-- From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 02:41:20 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89BE016A4CE for ; Mon, 10 Jan 2005 02:41:20 +0000 (GMT) Received: from tanuki.neverthere.org (adsl-209-204-165-200.sonic.net [209.204.165.200]) by mx1.FreeBSD.org (Postfix) with SMTP id C83F143D58 for ; Mon, 10 Jan 2005 02:41:19 +0000 (GMT) (envelope-from mhr@neverthere.org) Received: (qmail 80584 invoked from network); 10 Jan 2005 02:54:14 -0000 Received: from unknown (HELO ?192.168.1.3?) (192.168.1.3) by tanuki.neverthere.org with SMTP; 10 Jan 2005 02:54:14 -0000 Mime-Version: 1.0 (Apple Message framework v619) To: ale@FreeBSD.org Message-Id: Content-Type: multipart/mixed; boundary=Apple-Mail-1-316034251 From: Michael Rubin Date: Sun, 9 Jan 2005 18:39:29 -0800 X-Mailer: Apple Mail (2.619) cc: ports@FreeBSD.org Subject: FreeBSD Port: pecl-fileinfo-0.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 02:41:20 -0000 --Apple-Mail-1-316034251 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed HI. I am trying to install pecl-fileinfo on my 5.3Rc1 system. It is needed by many other ports. But it fails on the configure for myself and many others on the net. Here is the config.log. I have seen posts and emails asking about ti since 11/1/04. But I have yet to here or see any solution. Do you know what is going on? I have attached the config.log. --Apple-Mail-1-316034251 Content-Transfer-Encoding: 7bit Content-Type: application/octet-stream; x-mac-type=2A2A2A2A; x-unix-mode=0644; x-mac-creator=48647261; name="config.log" Content-Disposition: attachment; filename=config.log 20%This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by configure, which was generated by GNU Autoconf 2.53. Invocation command line was $ ./configure --with-fileinfo=/usr --prefix=/usr/local i386-portbld-freebsd5.3 ## --------- ## ## Platform. ## ## --------- ## hostname = firstgear.neverthere.org uname -m = i386 uname -r = 5.3-RELEASE uname -s = FreeBSD uname -v = FreeBSD 5.3-RELEASE #0: Fri Nov 5 04:19:18 UTC 2004 root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC /usr/bin/uname -p = i386 /bin/uname -X = unknown /bin/arch = unknown /usr/bin/arch -k = unknown /usr/convex/getsysinfo = unknown hostinfo = unknown /bin/machine = unknown /usr/bin/oslevel = unknown /bin/universe = unknown PATH: /usr/local/libexec/automake15 PATH: /usr/local/libexec/autoconf253 PATH: /usr/local/libexec/libtool13 PATH: /sbin PATH: /bin PATH: /usr/sbin PATH: /usr/bin PATH: /usr/games PATH: /usr/local/sbin PATH: /usr/local/bin PATH: /usr/X11R6/bin PATH: /root/bin ## ----------- ## ## Core tests. ## ## ----------- ## configure:1189: checking build system type configure:1207: result: i386-portbld-freebsd5.3 configure:1215: checking host system type configure:1229: result: i386-portbld-freebsd5.3 configure:1282: checking for i386-portbld-freebsd5.3-gcc configure:1308: result: cc configure:1590: checking for C compiler version configure:1593: cc --version &5 cc (GCC) 3.4.2 [FreeBSD] 20040728 Copyright (C) 2004 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. configure:1596: $? = 0 configure:1598: cc -v &5 Using built-in specs. Configured with: FreeBSD/i386 system compiler Thread model: posix gcc version 3.4.2 [FreeBSD] 20040728 configure:1601: $? = 0 configure:1603: cc -V &5 cc: `-V' option must have argument configure:1606: $? = 1 configure:1632: checking for C compiler default output configure:1635: cc -O -pipe conftest.c >&5 configure:1638: $? = 0 configure:1671: result: a.out configure:1676: checking whether the C compiler works configure:1682: ./a.out configure:1685: $? = 0 configure:1700: result: yes configure:1707: checking whether we are cross compiling configure:1709: result: no configure:1712: checking for suffix of executables configure:1714: cc -o conftest -O -pipe conftest.c >&5 configure:1717: $? = 0 configure:1739: result: configure:1745: checking for suffix of object files configure:1769: cc -c -O -pipe conftest.c >&5 configure:1772: $? = 0 configure:1791: result: o configure:1795: checking whether we are using the GNU C compiler configure:1822: cc -c -O -pipe conftest.c >&5 configure:1825: $? = 0 configure:1828: test -s conftest.o configure:1831: $? = 0 configure:1843: result: yes configure:1849: checking whether cc accepts -g configure:1873: cc -c -g conftest.c >&5 configure:1876: $? = 0 configure:1879: test -s conftest.o configure:1882: $? = 0 configure:1892: result: yes configure:1919: cc -c -O -pipe conftest.c >&5 conftest.c:2: error: syntax error before "me" configure:1922: $? = 1 configure: failed program was: #ifndef __cplusplus choke me #endif configure:2036: checking whether cc understands -c and -o together configure:2066: cc -c conftest.c -o conftest.o >&5 configure:2069: $? = 0 configure:2071: cc -c conftest.c -o conftest.o >&5 configure:2074: $? = 0 configure:2113: result: yes configure:2128: checking if compiler supports -R configure:2155: cc -o conftest -O -pipe conftest.c -R /usr/lib >&5 configure:2158: $? = 0 configure:2161: test -s conftest configure:2164: $? = 0 configure:2176: result: yes configure:2275: checking for PHP prefix configure:2277: result: /usr/local configure:2279: checking for PHP includes configure:2281: result: -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/Zend -I/usr/local/include/php/TSRM configure:2283: checking for PHP extension directory configure:2285: result: /usr/local/lib/php/20020429 configure:2327: checking for re2c configure:2354: result: exit 0; configure:2366: checking for gawk configure:2395: result: no configure:2366: checking for mawk configure:2395: result: no configure:2366: checking for nawk configure:2382: found /usr/bin/nawk configure:2392: result: nawk configure:2406: checking for fileinfo support configure:2449: result: yes, shared configure:2461: checking for magic files in default path configure:2473: result: not found configure:2475: error: Please reinstall the libmagic distribution ## ---------------- ## ## Cache variables. ## ## ---------------- ## ac_cv_prog_cc_g=yes ac_cv_env_LDFLAGS_set= ac_cv_c_compiler_gnu=yes ac_cv_exeext= ac_cv_env_CFLAGS_set=set lt_cv_sys_max_cmd_len=65536 ac_cv_env_CPPFLAGS_set= ac_cv_env_host_alias_set=set ac_cv_prog_CC=cc ac_cv_env_build_alias_set=set ac_cv_env_LDFLAGS_value= ac_cv_env_target_alias_set=set ac_cv_host_alias=i386-portbld-freebsd5.3 ac_cv_env_CFLAGS_value='-O -pipe ' ac_cv_env_CC_set=set ac_cv_build_alias=i386-portbld-freebsd5.3 ac_cv_env_CPPFLAGS_value= ac_cv_host=i386-portbld-freebsd5.3 ac_cv_env_host_alias_value=i386-portbld-freebsd5.3 ac_cv_prog_AWK=nawk ac_cv_build=i386-portbld-freebsd5.3 ac_cv_env_build_alias_value=i386-portbld-freebsd5.3 ac_cv_prog_cc_cc_c_o=yes ac_cv_prog_RE2C='exit 0;' ac_cv_env_target_alias_value=i386-portbld-freebsd5.3 ac_cv_env_CC_value=cc php_cv_cc_dashr=yes ac_cv_objext=o ## ----------- ## ## confdefs.h. ## ## ----------- ## #define PACKAGE_NAME "" #define PACKAGE_TARNAME "" #define PACKAGE_VERSION "" #define PACKAGE_STRING "" #define PACKAGE_BUGREPORT "" configure: exit 1 --Apple-Mail-1-316034251 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed Here is the console output. : ===> PHPizing for pecl-fileinfo-0.2 autoheader253: `config.h.in' is unchanged Configuring for: PHP Api Version: 20020918 Zend Module Api No: 20020429 Zend Extension Api No: 20021010 ===> Configuring for pecl-fileinfo-0.2 configure: WARNING: you should use --build, --host, --target checking build system type... i386-portbld-freebsd5.3 checking host system type... i386-portbld-freebsd5.3 checking for i386-portbld-freebsd5.3-gcc... cc checking for C compiler default output... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking whether cc understands -c and -o together... yes checking if compiler supports -R... yes checking for PHP prefix... /usr/local checking for PHP includes... -I/usr/local/include/php -I/usr/local/include/php/main -I/usr/local/include/php/Zend -I/usr/local/include/php/TSRM checking for PHP extension directory... /usr/local/lib/php/20020429 checking for re2c... exit 0; checking for gawk... no checking for mawk... no checking for nawk... nawk checking for fileinfo support... yes, shared checking for magic files in default path... not found configure: error: Please reinstall the libmagic distribution ===> Script "configure" failed unexpectedly. Please report the problem to ale@FreeBSD.org [maintainer] and attach the "/usr/ports/sysutils/pecl-fileinfo/work/Fileinfo-0.2/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/sysutils/pecl-fileinfo. *** Error code 1 --Apple-Mail-1-316034251-- From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 04:27:28 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CE6616A4CE; Mon, 10 Jan 2005 04:27:28 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E11443D48; Mon, 10 Jan 2005 04:27:28 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 9B8D1512C9; Sun, 9 Jan 2005 20:27:27 -0800 (PST) Date: Sun, 9 Jan 2005 20:27:27 -0800 From: Kris Kennaway To: Michael Rubin Message-ID: <20050110042727.GA1286@xor.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+HP7ph2BbKc20aGI" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org cc: ale@FreeBSD.org Subject: Re: FreeBSD Port: pecl-fileinfo-0.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 04:27:28 -0000 --+HP7ph2BbKc20aGI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 09, 2005 at 06:39:29PM -0800, Michael Rubin wrote: > HI. I am trying to install pecl-fileinfo on my 5.3Rc1 system. It is=20 > needed by many other ports. But it fails on the configure for myself=20 > and many others on the net. Here is the config.log. I have seen posts=20 > and emails asking about ti since 11/1/04. But I have yet to here or see= =20 > any solution. Do you know what is going on? >=20 > I have attached the config.log. You need to update to 5.3-STABLE. Kris --+HP7ph2BbKc20aGI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB4gQvWry0BWjoQKURAvAjAKCXk1a50eJdUaqxflFSFOH3bZvp+gCeMZKl ZJdR2LuUoPjdcBAvikZ7L0o= =dEGA -----END PGP SIGNATURE----- --+HP7ph2BbKc20aGI-- From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 06:57:59 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FCE716A4CE for ; Mon, 10 Jan 2005 06:57:59 +0000 (GMT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33D4C43D53 for ; Mon, 10 Jan 2005 06:57:59 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id B8C4C14900; Mon, 10 Jan 2005 00:57:58 -0600 (CST) Date: Mon, 10 Jan 2005 00:57:58 -0600 (CST) From: Mark Linimon X-X-Sender: linimon@pancho To: Rasmus Kaj In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@FreeBSD.org cc: Kris Kennaway cc: Garrett Wollman Subject: Re: [FreeBSD-Announce] FreeBSD ports scheduled for removal X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 06:57:59 -0000 On 9 Jan 2005, Rasmus Kaj wrote: > I'm willing to submit a new version of the Arla port, but I would very > much like to see ports/74113, heimdal upgrade from 0.6.1 to 0.6.3, be > commited first. One of the things that Kris and I try to do it to avoid removing ports that have PRs filed against them (I think I missed, once, though). My preference would be that you go ahead and submit a PR but put in the body that the other PR needs to be committed first. My goal in instituting a procedure for ports removals was not to add arbitrary hurdles to the port maintainers -- it was simply to have some kind of process to say "if no one is ever going to use/fix broken port XYZ again, let's get rid of it", so the ports collection stays as useful as possible. mcl From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 06:58:56 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45EA216A4CE; Mon, 10 Jan 2005 06:58:56 +0000 (GMT) Received: from mailhub01.unibe.ch (mailhub01.unibe.ch [130.92.9.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B7FE43D31; Mon, 10 Jan 2005 06:58:55 +0000 (GMT) (envelope-from roth@droopy.unibe.ch) Received: from localhost (scanhub02.unibe.ch [130.92.254.66]) by mailhub01.unibe.ch (Postfix) with ESMTP id 7665F25BAD2; Mon, 10 Jan 2005 07:58:53 +0100 (MET) Received: from mailhub01.unibe.ch ([130.92.9.52]) by localhost (scanhub02.unibe.ch [130.92.254.66]) (amavisd-new, port 10024) with LMTP id 07454-01-25; Mon, 10 Jan 2005 07:58:49 +0100 (CET) Received: from asterix.unibe.ch (asterix.unibe.ch [130.92.64.4]) by mailhub01.unibe.ch (Postfix) with ESMTP id 7534C25BAC5; Mon, 10 Jan 2005 07:58:51 +0100 (MET) Received: from droopy.unibe.ch (droopy [130.92.64.20]) by asterix.unibe.ch (8.11.7p1+Sun/8.11.7) with ESMTP id j0A6wpq03859; Mon, 10 Jan 2005 07:58:51 +0100 (MET) Received: (from roth@localhost) by droopy.unibe.ch (8.12.10+Sun/8.12.9/Submit) id j0A6wopw005817; Mon, 10 Jan 2005 07:58:50 +0100 (MET) Date: Mon, 10 Jan 2005 07:58:50 +0100 From: Tobias Roth To: Eric Anholt Message-ID: <20050110065850.GA5797@droopy.unibe.ch> References: <1105321614.8452.54.camel@leguin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1105321614.8452.54.camel@leguin> User-Agent: Mutt/1.4i X-message-flag: Warning! Using Outlook is insecure and promotes virus distribution. Please use a different email client. X-Virus-checked: by University of Berne cc: ports@freebsd.org cc: x11@freebsd.org Subject: Re: x11 /tmp preparation rc.d script X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 06:58:56 -0000 On Sun, Jan 09, 2005 at 05:46:54PM -0800, Eric Anholt wrote: > > Any comments? one small detail: since 5.3, KEYWORD: FreeBSD NetBSD is no longer used. the rest looks ok to me (i didn't apply it though). cheers, t. From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 08:27:11 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77DEF16A4CE; Mon, 10 Jan 2005 08:27:11 +0000 (GMT) Received: from 212.106.238.57.adsl.jazztel.es (212.106.238.57.adsl.jazztel.es [212.106.238.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id B65D343D1F; Mon, 10 Jan 2005 08:27:09 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from [192.168.254.16] (orion.redesjm.local [192.168.254.16]) j0A8R433019277; Mon, 10 Jan 2005 09:27:06 +0100 (CET) (envelope-from freebsd@redesjm.local) Message-ID: <41E23C58.10606@redesjm.local> Date: Mon, 10 Jan 2005 09:27:04 +0100 From: Jose M Rodriguez User-Agent: Mozilla Thunderbird 1.0 (X11/20050106) X-Accept-Language: es-es, es MIME-Version: 1.0 To: Eric Anholt References: <1105321614.8452.54.camel@leguin> In-Reply-To: <1105321614.8452.54.camel@leguin> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.29.0.5; VDF: 6.29.0.31; host: antares.redesjm.local) cc: ports@FreeBSD.org cc: x11@FreeBSD.org Subject: Re: x11 /tmp preparation rc.d script X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 08:27:11 -0000 Eric Anholt escribió: >Attached are my proposed patches to deal with the X11 ICE issue. To >review, it's required because having .ICE not owned by root is a >security issue, one that's been papered over with a printed warning and >sleep(5) in libICE for years, and has recently been changed into an >actual error by the X.Org folks. > >The question is whether to stick it in base or in ports: > >In favor of ports: > - Seems like the proper place. Nothing happens for non-X11 users. >In favor of base: > - Would either need to make a separate port just for the script, or > keep the script in at least 3 separate ports, disregarding the > cleanup of servers which might make for more ports affected. > > Well, seems that this is really needed only from xorg-libs. That must be needed also from XFree86-4-libs, but this because we maintain two X11 ports system. > - From ports, it might get started too late in the boot process, or > not at all in some installations. > > This is not a real thread. Please, note cases. >I decided to do it in the base system, assuming that we can spare 4 >inodes, given that we already have BSD.x11-4.dist happening. > > What I can't understand is the matter of choice. Seems that having both solutions (ports and base) is not dangerous. You may need a ms timer to take this in account. I think that the two solutions must be targeted, and the ports based one will be deprecated on time only when all our base targets (We must support Xorg also on RELENG_4, al last, while this is possible). If you go to a rcNG script, make this have auto defaults, and install it from ports after OS_VERSION test. You may lose this code from ports when all the possible targets of Xorg have this on base. >Brooks's patch also allowed overriding the set of directories. I don't >think that's a real issue, and the clutter in /etc/defaults/rc.conf is >worse. I also think that cleartmp probably shouldn't be overloaded with >X stuff, though there's still the BEFORE: preparex11 line, which I'm >unsure of. > >So, attached are proposed patches for 6-current and 5-stable. I haven't >done a real install of them because my systems are out of date, but I >wanted to get this out there for review so it can go into CVS soon after >I test installing. If they're good, they would be merged to RELENG_5_3 >and older, I hope, due to the security implications. > >Any comments? > > > >------------------------------------------------------------------------ > >Index: etc/defaults/rc.conf >=================================================================== >RCS file: /home/ncvs/src/etc/defaults/rc.conf,v >retrieving revision 1.235 >diff -u -r1.235 rc.conf >--- etc/defaults/rc.conf 15 Dec 2004 12:39:28 -0000 1.235 >+++ etc/defaults/rc.conf 10 Jan 2005 01:25:35 -0000 >@@ -443,6 +443,7 @@ > svr4_enable="NO" # SysVR4 emulation loaded at startup (or NO). > osf1_enable="NO" # Alpha OSF/1 emulation loaded at startup (or NO). > clear_tmp_enable="NO" # Clear /tmp at startup. >+prepare_x11_enable="YES" # Clean and recreate directories necessary for X11. > ldconfig_insecure="NO" # Set to YES to disable ldconfig security checks > ldconfig_paths="/usr/lib/compat /usr/X11R6/lib /usr/local/lib /usr/local/lib/compat/pkg" > # shared library search paths >Index: etc/rc.d/Makefile >=================================================================== >RCS file: /home/ncvs/src/etc/rc.d/Makefile,v >retrieving revision 1.47 >diff -u -r1.47 Makefile >--- etc/rc.d/Makefile 16 Nov 2004 04:20:09 -0000 1.47 >+++ etc/rc.d/Makefile 10 Jan 2005 00:55:40 -0000 >@@ -26,7 +26,7 @@ > nfslocking nfsserver nisdomain nsswitch ntpd ntpdate \ > othermta \ > pccard pcvt pf pflog \ >- power_profile ppp-user pppoed preseedrandom pwcheck \ >+ power_profile ppp-user pppoed preparex11 preseedrandom pwcheck \ > quota \ > ramdisk ramdisk-own random rarpd rcconf.sh resolv root \ > route6d routed routing rpcbind rtadvd rwho \ >Index: etc/rc.d/cleartmp >=================================================================== >RCS file: /home/ncvs/src/etc/rc.d/cleartmp,v >retrieving revision 1.11 >diff -u -r1.11 cleartmp >--- etc/rc.d/cleartmp 7 Oct 2004 13:55:25 -0000 1.11 >+++ etc/rc.d/cleartmp 10 Jan 2005 01:00:08 -0000 >@@ -6,7 +6,7 @@ > > # PROVIDE: cleartmp > # REQUIRE: mountcritremote tmp >-# BEFORE: DAEMON >+# BEFORE: DAEMON preparex11 > > I think you may take this better from your new script. rcNG also support and REQUIRE/AFTER keyword. I think you must take preparex11 _after_ cleartmp The only 'consumers' of this I know are xdm related scripts on localpkg and gettys from init after rc has finished. > > . /etc/rc.subr > >@@ -30,10 +30,3 @@ > > load_rc_config $name > run_rc_command "$1" >- >-# Remove X lock files, since they will prevent you from >-# restarting X >-# >-rm -f /tmp/.X[0-9]-lock >-rm -fr /tmp/.X11-unix >-mkdir -m 1777 /tmp/.X11-unix >Index: etc/rc.d/preparex11 >=================================================================== >RCS file: etc/rc.d/preparex11 >diff -N etc/rc.d/preparex11 >--- /dev/null 1 Jan 1970 00:00:00 -0000 >+++ etc/rc.d/preparex11 10 Jan 2005 01:10:44 -0000 >@@ -0,0 +1,27 @@ >+#!/bin/sh >+# >+# $FreeBSD$ >+# >+ >+# PROVIDE: preparex11 > > consider REQUIRE: mountall cleartmp >+# REQUIRE: mountall >+# BEFORE: DAEMON > > We have lost symtem flags >+# KEYWORD: FreeBSD NetBSD > >+ >+. /etc/rc.subr >+ >+name="preparex11" >+rcvar=`set_rcvar prepare_x11` >+start_cmd="preparex11_start" >+stop_cmd=":" >+ >+preparex11_start() >+{ >+ echo "Preparing /tmp for X11 applications." >+ rm -f /tmp/.X*-lock >+ rm -fr /tmp/.X11-unix /tmp/.font-unix /tmp/.ICE-unix >+ mkdir -m 1777 /tmp/.X11-unix /tmp/.font-unix /tmp/.ICE-unix >+} >+ >+load_rc_config $name > > if you add the next auto default here, this same script will work installed from ports. Install it with, 000. name prefix, so this is take before gdm.sh or similar : ${prepare_x11_enable:="YES"} >+run_rc_command "$1" >Index: share/man/man5/rc.conf.5 >=================================================================== >RCS file: /home/ncvs/src/share/man/man5/rc.conf.5,v >retrieving revision 1.241 >diff -u -r1.241 rc.conf.5 >--- share/man/man5/rc.conf.5 5 Jan 2005 09:52:12 -0000 1.241 >+++ share/man/man5/rc.conf.5 10 Jan 2005 01:25:36 -0000 >@@ -2586,6 +2586,17 @@ > to have > .Pa /tmp > cleaned at startup. >+.It Va prepare_x11_enable >+.Pq Vt bool >+Set to >+.Dq Li NO >+to disable removing stale X server lockfiles and disable removing and recreating >+.Pa /tmp/.ICE-unix , >+.Pa /tmp/.X11-unix , >+and >+.Pa /tmp/.font-unix >+at startup. May be a security issue if X11 applications are used with this >+disabled. > .It Va ldconfig_paths > .Pq Vt str > Set to the list of shared library paths to use with > > > > -- josemi From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 08:28:33 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B51D16A4CE for ; Mon, 10 Jan 2005 08:28:33 +0000 (GMT) Received: from mail-out.m-online.net (mail-out.m-online.net [212.18.0.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D71443D1F for ; Mon, 10 Jan 2005 08:28:32 +0000 (GMT) (envelope-from riggs@rrr.de) Received: from mail.m-online.net (svr20.m-online.net [192.168.3.148]) by mail-out.m-online.net (Postfix) with ESMTP id 6EB1D4AF3 for ; Mon, 10 Jan 2005 09:28:31 +0100 (CET) Received: from marvin.riggiland.au (ppp-62-245-160-154.mnet-online.de [62.245.160.154]) by mail.m-online.net (Postfix) with ESMTP id 943C7359E9 for ; Mon, 10 Jan 2005 09:27:26 +0100 (CET) Received: from marvin.riggiland.au (localhost [127.0.0.1]) by marvin.riggiland.au (8.13.1/8.13.1) with ESMTP id j0A8STYm053131 for ; Mon, 10 Jan 2005 09:28:29 +0100 (CET) (envelope-from riggs@marvin.riggiland.au) Received: (from riggs@localhost) by marvin.riggiland.au (8.13.1/8.13.1/Submit) id j0A8STii053130 for ports@freebsd.org; Mon, 10 Jan 2005 09:28:29 +0100 (CET) (envelope-from riggs) Date: Mon, 10 Jan 2005 09:28:29 +0100 From: "Thomas E. Zander" To: ports@freebsd.org Message-ID: <20050110082829.GT724@marvin.riggiland.au> References: <35cabfb3050108160779f0c84f@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <35cabfb3050108160779f0c84f@mail.gmail.com> Organization: RiggiServ - Ihr Partner =?iso-8859-15?Q?f?= =?iso-8859-15?Q?=FCr?= alles Delikate X-PGP-KeyID: 0xC85996CD X-PGP-URI: http://blackhole.pca.dfn.de:11371/pks/lookup?op=get&search=0xC85996CD X-PGP-Fingerprint: 4F59 75B4 4CE3 3B00 BC61 5400 8DD4 8929 C859 96CD X-Mailer: Riggisoft Ausguck Eggsbress (Build 1105345478) X-Operating-System: Riggiland BSD 5.3-RELEASE-p3 (To serve and protect.) Subject: Re: FreeBSD Port: mplayer-0.99.5_5 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 08:28:33 -0000 Hi, On Sat, 08. Jan 2005, at 18:07 -0600, John Byrne wrote according to [FreeBSD Port: mplayer-0.99.5_5]: > Are you planning on upgrading this port to 1.0pre6? It's work in progress :-) Regards, Riggs -- - "[...] I talked to the computer at great length and -- explained my view of the Universe to it" said Marvin. --- And what happened?" pressed Ford. ---- "It committed suicide." said Marvin. From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 08:40:51 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89B9E16A4CE; Mon, 10 Jan 2005 08:40:51 +0000 (GMT) Received: from 212.106.238.57.adsl.jazztel.es (212.106.238.57.adsl.jazztel.es [212.106.238.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4586C43D1D; Mon, 10 Jan 2005 08:40:50 +0000 (GMT) (envelope-from josemi@freebsd.jazztel.es) Received: from [192.168.254.16] (orion.redesjm.local [192.168.254.16]) j0A8elpH063389; Mon, 10 Jan 2005 09:40:47 +0100 (CET) (envelope-from freebsd@redesjm.local) Message-ID: <41E23F8F.4040701@redesjm.local> Date: Mon, 10 Jan 2005 09:40:47 +0100 From: Jose M Rodriguez User-Agent: Mozilla Thunderbird 1.0 (X11/20050106) X-Accept-Language: es-es, es MIME-Version: 1.0 To: Jose M Rodriguez References: <1105321614.8452.54.camel@leguin> <41E23C58.10606@redesjm.local> In-Reply-To: <41E23C58.10606@redesjm.local> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-AntiVirus: checked by AntiVir Milter (version: 1.1.0-3; AVE: 6.29.0.5; VDF: 6.29.0.31; host: antares.redesjm.local) cc: ports@FreeBSD.org cc: Eric Anholt cc: x11@FreeBSD.org Subject: Re: x11 /tmp preparation rc.d script X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 08:40:51 -0000 Jose M Rodriguez escribió: > Eric Anholt escribió: > >> Attached are my proposed patches to deal with the X11 ICE issue. To >> review, it's required because having .ICE not owned by root is a >> security issue, one that's been papered over with a printed warning and >> sleep(5) in libICE for years, and has recently been changed into an >> actual error by the X.Org folks. >> ... As a latter think about this, consider take also periodic related fixes (We clear this directories by default) and try to get a OS_VERSION bump closest to this. -- josemi >> The question is whether to stick it in base or in ports: >> >> In favor of ports: >> - Seems like the proper place. Nothing happens for non-X11 users. >> In favor of base: >> - Would either need to make a separate port just for the script, or >> keep the script in at least 3 separate ports, disregarding the >> cleanup of servers which might make for more ports affected. >> >> > Well, seems that this is really needed only from xorg-libs. That must > be needed also from XFree86-4-libs, but this because we maintain two > X11 ports system. > >> - From ports, it might get started too late in the boot process, or >> not at all in some installations. >> >> > This is not a real thread. Please, note cases. > >> I decided to do it in the base system, assuming that we can spare 4 >> inodes, given that we already have BSD.x11-4.dist happening. >> >> > What I can't understand is the matter of choice. Seems that having > both solutions (ports and base) is not dangerous. You may need a ms > timer to take this in account. > > I think that the two solutions must be targeted, and the ports based > one will be deprecated on time only when all our base targets (We must > support Xorg also on RELENG_4, al last, while this is possible). > > If you go to a rcNG script, make this have auto defaults, and install > it from ports after OS_VERSION test. You may lose this code from > ports when all the possible targets of Xorg have this on base. > >> Brooks's patch also allowed overriding the set of directories. I don't >> think that's a real issue, and the clutter in /etc/defaults/rc.conf is >> worse. I also think that cleartmp probably shouldn't be overloaded with >> X stuff, though there's still the BEFORE: preparex11 line, which I'm >> unsure of. >> >> So, attached are proposed patches for 6-current and 5-stable. I haven't >> done a real install of them because my systems are out of date, but I >> wanted to get this out there for review so it can go into CVS soon after >> I test installing. If they're good, they would be merged to RELENG_5_3 >> and older, I hope, due to the security implications. >> >> Any comments? >> >> >> >> ------------------------------------------------------------------------ >> >> Index: etc/defaults/rc.conf >> =================================================================== >> RCS file: /home/ncvs/src/etc/defaults/rc.conf,v >> retrieving revision 1.235 >> diff -u -r1.235 rc.conf >> --- etc/defaults/rc.conf 15 Dec 2004 12:39:28 -0000 1.235 >> +++ etc/defaults/rc.conf 10 Jan 2005 01:25:35 -0000 >> @@ -443,6 +443,7 @@ >> svr4_enable="NO" # SysVR4 emulation loaded at startup (or NO). >> osf1_enable="NO" # Alpha OSF/1 emulation loaded at startup (or NO). >> clear_tmp_enable="NO" # Clear /tmp at startup. >> +prepare_x11_enable="YES" # Clean and recreate directories necessary >> for X11. >> ldconfig_insecure="NO" # Set to YES to disable ldconfig security >> checks >> ldconfig_paths="/usr/lib/compat /usr/X11R6/lib /usr/local/lib >> /usr/local/lib/compat/pkg" >> # shared library search paths >> Index: etc/rc.d/Makefile >> =================================================================== >> RCS file: /home/ncvs/src/etc/rc.d/Makefile,v >> retrieving revision 1.47 >> diff -u -r1.47 Makefile >> --- etc/rc.d/Makefile 16 Nov 2004 04:20:09 -0000 1.47 >> +++ etc/rc.d/Makefile 10 Jan 2005 00:55:40 -0000 >> @@ -26,7 +26,7 @@ >> nfslocking nfsserver nisdomain nsswitch ntpd ntpdate \ >> othermta \ >> pccard pcvt pf pflog \ >> - power_profile ppp-user pppoed preseedrandom pwcheck \ >> + power_profile ppp-user pppoed preparex11 preseedrandom pwcheck \ >> quota \ >> ramdisk ramdisk-own random rarpd rcconf.sh resolv root \ >> route6d routed routing rpcbind rtadvd rwho \ >> Index: etc/rc.d/cleartmp >> =================================================================== >> RCS file: /home/ncvs/src/etc/rc.d/cleartmp,v >> retrieving revision 1.11 >> diff -u -r1.11 cleartmp >> --- etc/rc.d/cleartmp 7 Oct 2004 13:55:25 -0000 1.11 >> +++ etc/rc.d/cleartmp 10 Jan 2005 01:00:08 -0000 >> @@ -6,7 +6,7 @@ >> >> # PROVIDE: cleartmp >> # REQUIRE: mountcritremote tmp >> -# BEFORE: DAEMON >> +# BEFORE: DAEMON preparex11 >> >> > I think you may take this better from your new script. rcNG also > support and REQUIRE/AFTER keyword. I think you must take preparex11 > _after_ cleartmp > > The only 'consumers' of this I know are xdm related scripts on > localpkg and gettys from init after > rc has finished. > >> >> . /etc/rc.subr >> >> @@ -30,10 +30,3 @@ >> >> load_rc_config $name >> run_rc_command "$1" >> - >> -# Remove X lock files, since they will prevent you from >> -# restarting X >> -# >> -rm -f /tmp/.X[0-9]-lock >> -rm -fr /tmp/.X11-unix >> -mkdir -m 1777 /tmp/.X11-unix >> Index: etc/rc.d/preparex11 >> =================================================================== >> RCS file: etc/rc.d/preparex11 >> diff -N etc/rc.d/preparex11 >> --- /dev/null 1 Jan 1970 00:00:00 -0000 >> +++ etc/rc.d/preparex11 10 Jan 2005 01:10:44 -0000 >> @@ -0,0 +1,27 @@ >> +#!/bin/sh >> +# >> +# $FreeBSD$ >> +# >> + >> +# PROVIDE: preparex11 >> >> > consider REQUIRE: mountall cleartmp > >> +# REQUIRE: mountall >> +# BEFORE: DAEMON >> >> > We have lost symtem flags > >> +# KEYWORD: FreeBSD NetBSD >> >> + >> +. /etc/rc.subr >> + >> +name="preparex11" >> +rcvar=`set_rcvar prepare_x11` >> +start_cmd="preparex11_start" >> +stop_cmd=":" >> + >> +preparex11_start() >> +{ >> + echo "Preparing /tmp for X11 applications." >> + rm -f /tmp/.X*-lock >> + rm -fr /tmp/.X11-unix /tmp/.font-unix /tmp/.ICE-unix >> + mkdir -m 1777 /tmp/.X11-unix /tmp/.font-unix /tmp/.ICE-unix >> +} >> + >> +load_rc_config $name >> >> > if you add the next auto default here, this same script will work > installed from ports. Install it with, 000. name prefix, so this is > take before gdm.sh or similar > > : ${prepare_x11_enable:="YES"} > >> +run_rc_command "$1" >> Index: share/man/man5/rc.conf.5 >> =================================================================== >> RCS file: /home/ncvs/src/share/man/man5/rc.conf.5,v >> retrieving revision 1.241 >> diff -u -r1.241 rc.conf.5 >> --- share/man/man5/rc.conf.5 5 Jan 2005 09:52:12 -0000 1.241 >> +++ share/man/man5/rc.conf.5 10 Jan 2005 01:25:36 -0000 >> @@ -2586,6 +2586,17 @@ >> to have >> .Pa /tmp >> cleaned at startup. >> +.It Va prepare_x11_enable >> +.Pq Vt bool >> +Set to >> +.Dq Li NO >> +to disable removing stale X server lockfiles and disable removing >> and recreating >> +.Pa /tmp/.ICE-unix , >> +.Pa /tmp/.X11-unix , >> +and >> +.Pa /tmp/.font-unix >> +at startup. May be a security issue if X11 applications are used >> with this >> +disabled. >> .It Va ldconfig_paths >> .Pq Vt str >> Set to the list of shared library paths to use with >> >> >> >> > > > -- > josemi > _______________________________________________ > freebsd-x11@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-x11 > To unsubscribe, send any mail to "freebsd-x11-unsubscribe@freebsd.org" > > From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 09:03:04 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACBB516A4CE for ; Mon, 10 Jan 2005 09:03:04 +0000 (GMT) Received: from tanuki.neverthere.org (adsl-209-204-165-200.sonic.net [209.204.165.200]) by mx1.FreeBSD.org (Postfix) with SMTP id 41DF343D3F for ; Mon, 10 Jan 2005 09:03:04 +0000 (GMT) (envelope-from mhr@neverthere.org) Received: (qmail 81691 invoked from network); 10 Jan 2005 09:15:59 -0000 Received: from unknown (HELO ?192.168.1.102?) (192.168.1.102) by tanuki.neverthere.org with SMTP; 10 Jan 2005 09:15:59 -0000 In-Reply-To: <20050110042727.GA1286@xor.obsecurity.org> References: <20050110042727.GA1286@xor.obsecurity.org> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <2C368216-62E6-11D9-80AB-000A95CD9CC8@neverthere.org> Content-Transfer-Encoding: 7bit From: Michael Rubin Date: Mon, 10 Jan 2005 01:01:10 -0800 To: Kris Kennaway X-Mailer: Apple Mail (2.619) cc: ports@FreeBSD.org cc: ale@FreeBSD.org Subject: Re: FreeBSD Port: pecl-fileinfo-0.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 09:03:04 -0000 I apologize for wasting your time. I am pretty impressed with your response time. That was great. I will not ask you another question after this email. But I am going to ask you one more. :-) I did a uname -a and found out I was mistaken. I am running: > -> uname -a > FreeBSD firstgear.neverthere.org 5.3-RELEASE FreeBSD 5.3-RELEASE #0: Fri Nov 5 04:19:18 UTC 2004 > root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 On the FreeBSD website I don't see a 5.3-STABLE I only see a 5.3 RELEASE. If there is a RTFM I am not doing please feel free to reply with RTFM, or point me to the place to get 5.3 STABLE. Thanks again for your time, Michael Rubin On Jan 9, 2005, at 8:27 PM, Kris Kennaway wrote: > On Sun, Jan 09, 2005 at 06:39:29PM -0800, Michael Rubin wrote: >> HI. I am trying to install pecl-fileinfo on my 5.3Rc1 system. It is >> needed by many other ports. But it fails on the configure for myself >> and many others on the net. Here is the config.log. I have seen posts >> and emails asking about ti since 11/1/04. But I have yet to here or >> see >> any solution. Do you know what is going on? >> >> I have attached the config.log. > > You need to update to 5.3-STABLE. > > Kris From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 09:35:54 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE4F716A4CE for ; Mon, 10 Jan 2005 09:35:54 +0000 (GMT) Received: from atlas.informatik.rwth-aachen.de (atlas.informatik.RWTH-Aachen.DE [137.226.194.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B21443D53 for ; Mon, 10 Jan 2005 09:35:54 +0000 (GMT) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from i2.informatik.rwth-aachen.de (menelaos.informatik.RWTH-Aachen.DE [137.226.194.73]) with ESMTP id j0A9Zkos015015; Mon, 10 Jan 2005 10:35:46 +0100 Received: (from stolz@localhost)j0A9Zg8V060989; Mon, 10 Jan 2005 10:35:42 +0100 (CET) (envelope-from stolz) Date: Mon, 10 Jan 2005 10:35:42 +0100 From: Volker Stolz To: Clint Olsen Message-ID: <20050110093542.GA60982@i2.informatik.rwth-aachen.de> References: <20050107231614.GA80877@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050107231614.GA80877@0lsen.net> X-PGP-Key: finger vs@foldr.org X-PGP-Id: 0x3FD1B6B5 User-Agent: Mutt/1.5.6i cc: freebsd-ports@freebsd.org Subject: Re: mail/glbiff dumps core on 5.3-RELEASE-p2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 09:35:55 -0000 In gmane.os.freebsd.devel.ports, you wrote: > Do you know if there are any current problems with glbiff? I got it to > crashola on my box. The stack trace is huge, making me wonder if it's > running away recursively. I have no debugging symbols in my copy, so the > core isn't usable as-is. If you have to software installed and build it (again) from source, usually the binary in the port's working directory still has its debugging symbols since they're only stripped on installation. So you should be able to run the binary from this directory and get a meaningful backtrace. Cheers, Volker -- http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 10:03:58 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 650F016A4CE for ; Mon, 10 Jan 2005 10:03:58 +0000 (GMT) Received: from pa.acvyskov.cz (pa.acvyskov.cz [62.4.97.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B8A043D4C for ; Mon, 10 Jan 2005 10:03:57 +0000 (GMT) (envelope-from zburget@miastudio.cz) Received: from localhost (localhost [127.0.0.1])j0AA3pHI031903 for ; Mon, 10 Jan 2005 11:03:51 +0100 Received: from pa.acvyskov.cz ([127.0.0.1]) by localhost (pa.acvyskov.cz [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 03501-10 for ; Mon, 10 Jan 2005 11:03:50 +0100 (CET) Received: from mail1.miastudio.cz ([62.4.97.187])j0AA36eJ031895 for ; Mon, 10 Jan 2005 11:03:06 +0100 Received: from mail.miastudio.cz (smtp.miastudio.cz [172.29.2.1]) by mail1.miastudio.cz (send) with SMTP id B18613B233; Mon, 10 Jan 2005 11:00:42 +0100 (CET) Received: from 192.168.1.251 ([192.168.1.251]) by mail.miastudio.cz (WinRoute Pro 4.1.30) with SMTP; Mon, 10 Jan 2005 11:06:30 +0100 Message-ID: <41E252D7.7040307@miastudio.cz> Date: Mon, 10 Jan 2005 11:03:03 +0100 From: =?ISO-8859-2?Q?Zbyn=ECk_Burget?= User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; cs-CZ; rv:1.7.3) Gecko/20040910 X-Accept-Language: cs, en-us, en MIME-Version: 1.0 To: atamaniuk-ports@frobs.net Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at pa.acvyskov.cz cc: ports@FreeBSD.org Subject: FreeBSD Port: lilypond-2.2.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 10:03:58 -0000 Hi, I've one little question: Is some chance of patch for build lilypond on FreeBSD 5.3-STABLE? I'm worry for unavailability of this best program on my desktop. Thanks for reply Zbynek Burget From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 10:23:48 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B6EE16A4CE for ; Mon, 10 Jan 2005 10:23:48 +0000 (GMT) Received: from mx3.kth.se (mx3.kth.se [130.237.48.97]) by mx1.FreeBSD.org (Postfix) with ESMTP id D596143D2D for ; Mon, 10 Jan 2005 10:23:47 +0000 (GMT) (envelope-from kaj@kth.se) Received: from localhost (localhost.localdomain [127.0.0.1]) by mx3.kth.se (Postfix) with ESMTP id 38E2C140B85; Mon, 10 Jan 2005 11:23:46 +0100 (CET) Received: from mx3.kth.se ([127.0.0.1]) by localhost (mx3.kth.se [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 04766-01-48; Mon, 10 Jan 2005 11:23:45 +0100 (CET) Received: from quetzalcoatlite.e.kth.se (quetzalcoatlite.e.kth.se [130.237.48.174]) by mx3.kth.se (Postfix) with ESMTP id 30BAC140B97; Mon, 10 Jan 2005 11:23:45 +0100 (CET) Received: from quetzalcoatlite.e.kth.se (localhost.localdomain [127.0.0.1]) j0AANjfP000390; Mon, 10 Jan 2005 11:23:45 +0100 Received: (from kaj@localhost) by quetzalcoatlite.e.kth.se (8.12.8/8.12.8/Submit) id j0AANi0M000387; Mon, 10 Jan 2005 11:23:44 +0100 X-Authentication-Warning: quetzalcoatlite.e.kth.se: kaj set sender to kaj@kth.se using -f Sender: kaj@e.kth.se To: =?iso-8859-2?q?Zbyn=ECk?= Burget References: <41E252D7.7040307@miastudio.cz> From: Rasmus Kaj Organization: http://www.stacken.kth.se/ - Stacken computer club, Stockholm X-Face: M9cR~WYav<"fu%MaslX0`43PAYY?uIsM8[#E(0\Xuy9rj>4gE\h3jm.7DD?]R8*^7T\o&vT U@[53Dwkuup4[0@gw#~kyu>`unH?kVj9CJa02(h>Ki\+i=%rn%sDf^KC.!?IHkKjMAbkd\jgmphp^' d|Q; OeXEAhq?ybGqOs1CHb6TJT42'C`Krnk61//AOfXtNjj/t'`5>Vw0QX!dKfOL$.f+S"LIuwR<;I Z0Qnnx(F^F]o@*V%TUtEV'1Z[TkOl^FFV9Z~A[b19%}uP*,huCU In-Reply-To: <41E252D7.7040307@miastudio.cz> User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.2 Date: 10 Jan 2005 11:23:44 +0100 Message-ID: Lines: 18 MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-2 Content-Transfer-Encoding: quoted-printable X-Virus-Scanned: by amavisd-new at kth.se cc: ports@FreeBSD.org cc: atamaniuk-ports@frobs.net Subject: Re: FreeBSD Port: lilypond-2.2.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 10:23:48 -0000 >>>>> "ZB" =3D=3D Zbyn=ECk Burget writes: ZB> Hi, Hi! ZB> Is some chance of patch for build lilypond on FreeBSD 5.3-STABLE? ZB> I'm worry for unavailability of this best program on my desktop. A little while ago Tim Allman sent a mail to this list, with Subject: Lilypond port, containing a description on how to fix it (not a patch, but a simple enough description). --=20 Rasmus Kaj ----------------------------------------------- rasmus@kaj.se \ Put no trust in cryptic comments \------------------------------------- http://www.stacken.kth.se/~kaj/ From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 10:53:07 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1836816A4CE for ; Mon, 10 Jan 2005 10:53:07 +0000 (GMT) Received: from bsd.ultra-secure.de (bsd.ultra-secure.de [62.146.20.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C26643D39 for ; Mon, 10 Jan 2005 10:53:06 +0000 (GMT) (envelope-from rainer@ultra-secure.de) Received: (qmail 9934 invoked by uid 1005); 10 Jan 2005 10:53:04 -0000 Received: from rainer@ultra-secure.de by bsd.ultra-secure.de by uid 89 with qmail-scanner-1.22 Clear:RC:1(217.235.154.169):. Processed in 0.075134 secs); 10 Jan 2005 10:53:04 -0000 Received: from unknown (HELO ?192.168.1.10?) (rainer@ultra-secure.de@217.235.154.169) by bsd.ultra-secure.de with (DHE-RSA-AES256-SHA encrypted) SMTP; 10 Jan 2005 10:53:04 -0000 Message-ID: <41E26CA1.9010200@ultra-secure.de> Date: Mon, 10 Jan 2005 12:53:05 +0100 From: Rainer Duffner User-Agent: Mozilla Thunderbird 1.0 (X11/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ale@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: mysql323-server-3.23.58_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 10:53:07 -0000 Hi, I've got a question. According to portaudit, the mysql323-server contains several vulnerabilities. http://www.freebsd.org/ports/portaudit/835256b8-46ed-11d9-8ce0-00065be4b5b6.html http://www.freebsd.org/ports/portaudit/01c231cd-4393-11d9-8bb9-00065be4b5b6.html http://www.freebsd.org/ports/portaudit/06a6b2cf-484b-11d9-813c-00065be4b5b6.html Is there going to be a patch for the 4.11-release ? I see that MYSQL.com (or AB) have not produced a newer version of that release and their webpages suggest that they may do so in the future: http://bugs.mysql.com/bug.php?id=4017 If there is no patch in sight for 4.11, shouldn't mysql323 be marked as broken ? cheers, Rainer -- =================================================== ~ Rainer Duffner - rainer@ultra-secure.de ~ ~ Freising - Munich - Germany ~ ~ Unix - Linux - BSD - OpenSource - Security ~ ~ http://www.ultra-secure.de/~rainer/pubkey.pgp ~ =================================================== From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 11:01:23 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FE9C16A4CE for ; Mon, 10 Jan 2005 11:01:23 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47F9F43D39 for ; Mon, 10 Jan 2005 11:01:23 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id j0AB1NFd094525 for ; Mon, 10 Jan 2005 11:01:23 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id j0AB1Kkw094512 for freebsd-ports@freebsd.org; Mon, 10 Jan 2005 11:01:20 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 10 Jan 2005 11:01:20 GMT Message-Id: <200501101101.j0AB1Kkw094512@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: FreeBSD ports list Subject: Current unassigned ports problem reports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 11:01:23 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/02/22] ports/25272 ports-bugs Using lang/eperl as cgi/nph binary execut o [2004/12/28] ports/75558 ports-bugs www/rt3 should *NOT* remove rt3/etc/RT_Si o [2005/01/06] ports/75872 ports-bugs [PATCH] ftp/prozilla: security fix - upda 3 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- s [2001/10/02] ports/30993 ports-bugs xxgdb cannot open source file o [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d s [2002/04/17] ports/37186 ports-bugs Dbview contains an error, because of whic s [2002/06/18] ports/39476 ports-bugs profxp will run but when you fxp a file i s [2002/12/18] ports/46338 ports-bugs security/cyrus-sasl 1.5.27_7 mysql_verify s [2003/05/11] ports/52079 ports-bugs vmware3 hangs when nmdm(4) is used as COM o [2003/05/30] ports/52793 ports-bugs Samba 2.2.8a printing woes s [2003/08/08] ports/55371 ports-bugs xfig dumps core (unaligned access), if US f [2003/11/15] ports/59298 ports-bugs Can't render anything with Blender / RADE s [2003/12/29] ports/60700 ports-bugs squid cannot be built with transparent-ip o [2004/01/08] ports/61053 ports-bugs opengk cause cored dump version 4.9 and 5 f [2004/02/05] ports/62377 ports-bugs strace hangs when running programs from c s [2004/02/25] ports/63354 ports-bugs security/bcwipe does not act successfully a [2004/06/09] ports/67735 ports-bugs biology/ncbi-toolkit does not build bl2se o [2004/06/11] ports/67851 ports-bugs pwlib requires gc-3.3 to build properly o o [2004/06/16] ports/68022 ports-bugs [PATCH] net/gnomemeeting: a possible work f [2004/07/17] ports/69212 ports-bugs ports/palm/coldsync doesn't work with Pal a [2004/07/20] ports/69322 ports-bugs ghostscript-afpl (8.14_5.1) fails if I tr o [2004/08/05] ports/70021 ports-bugs [PATCH] mail/spamass-milter: Reliability f [2004/09/05] ports/71409 ports-bugs [PATCH] cad/gnucap: fix the build with gc o [2004/09/07] ports/71475 ports-bugs ACID (snort DB) detects versions incorrec f [2004/09/11] ports/71578 ports-bugs graphics/xfig - problem during install, m f [2004/09/16] ports/71803 ports-bugs [PATCH] math/pari-devel is now able to co f [2004/09/19] ports/71916 ports-bugs [PATCH] www/plugger doesn't honor his con f [2004/09/25] ports/72090 ports-bugs [patch] math/maxima: Unbreak, upgrade, cl s [2004/10/30] ports/73310 ports-bugs [UPDATE] updating graphics/diacanvas2 to o [2004/11/06] misc/73586 ports-bugs Lexmark X73 printer makes banging noises f [2004/11/09] ports/73694 ports-bugs Problem compiling Ghostscript o [2004/11/10] ports/73758 ports-bugs logjam port does not link f [2004/11/19] ports/74099 ports-bugs Quagga's bgpd lockups when peer dies. o [2004/11/23] ports/74293 ports-bugs [new port] textproc/p5-IO-CSVHeaderFile: o [2004/11/26] ports/74432 ports-bugs ohphone 1.4.1 crashes in 5.3 Stable o [2004/11/26] ports/74438 ports-bugs New Port: www/p5-W3C-LinkChecker - checks s [2004/12/02] ports/74625 ports-bugs outdated GNU gatekeeper port o [2004/12/08] ports/74833 ports-bugs cl-asdf-cmucl doesn't build? f [2004/12/08] ports/74857 ports-bugs clamav socket problem f [2004/12/11] ports/74956 ports-bugs net/py-bittornado fails checksum on last f [2004/12/14] ports/75075 ports-bugs update: lang/munger - new port revision t f [2004/12/16] ports/75147 ports-bugs [PATCH] Several improvements to security/ o [2004/12/19] ports/75261 ports-bugs [patch] update ports/www/smarty to 2.6.6 o [2004/12/20] ports/75300 ports-bugs quagga come to infinitive loop when 'writ o [2004/12/23] ports/75416 ports-bugs x11-toolkits/xview broken from removal of o [2004/12/23] ports/75439 ports-bugs scanning of some zip files broken in secu o [2004/12/30] ports/75661 ports-bugs New Port: textproc/p5-Sort-Naturally - So o [2004/12/31] ports/75679 ports-bugs /usr/ports/emulators/vmware3 cannot be fe o [2005/01/04] ports/75828 ports-bugs Fix shells/ksh93 port o [2005/01/05] ports/75832 ports-bugs editors/emacs : byte-compile-file fails o o [2005/01/06] ports/75869 ports-bugs ctorrent crashes w/ signal 11 w/ torrent o [2005/01/06] ports/75882 ports-bugs New port: A dnssec aware dns debugging to o [2005/01/06] ports/75893 ports-bugs New port: shells/friedcshrc a shell start f [2005/01/08] ports/75964 ports-bugs xsane-0.96 fails to compile o [2005/01/10] ports/76029 ports-bugs misc/mgp-mode.el is already included in m 52 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2000/10/30] ports/22412 ports-bugs two extraneous ports and one name change s [2001/01/13] ports/24299 ports-bugs New port sysutils/tpconfig: configure the f [2001/03/29] ports/26192 ports-bugs apel appeared both in xemacs/site-package s [2002/10/07] ports/43771 ports-bugs LaTeX ports mixed between print and textp s [2003/02/12] ports/48217 ports-bugs New Port: www/mod_frontpage13 and www/mod o [2003/02/18] ports/48426 ports-bugs [PATCH] digger-vgl does not support conso o [2003/04/08] bin/50724 ports-bugs [PATCH] make /usr/sbin/pkg_fetch save ful o [2003/06/03] ports/52906 ports-bugs vid-1.0.1 from ports does not work with U o [2003/07/25] ports/54866 ports-bugs libgnugetopt incompatibility breaks mjpeg s [2003/08/28] ports/56091 ports-bugs hp220 driver for print/ghostscript-gnu do o [2003/11/30] ports/59861 ports-bugs New port: net/mu-conference, jabber-mu-co o [2003/12/12] ports/60185 ports-bugs [New Port] www/w3-emacs21 WWW browser bas o [2003/12/21] ports/60472 ports-bugs [New Port] devel/doxymacs Doxymacs is Dox o [2003/12/23] ports/60521 ports-bugs sane-backends-1.0.13_1 coredumps in use w o [2004/01/08] ports/61069 ports-bugs [patch] ports/Mk/bsd.emacs.mk is not PREF o [2004/01/15] ports/61384 ports-bugs NEW PORT: textproc/htmlize.el (turn emacs s [2004/01/17] ports/61471 ports-bugs Suggested mini-patch to ports/graphics/sa o [2004/02/02] ports/62256 ports-bugs New port: chinese/mozilla-sclp o [2004/02/09] ports/62585 ports-bugs New port: net/mu-conference (Multi-User C o [2004/02/14] ports/62840 ports-bugs New Port: dns/bind9-sdb-ldap, bind9 patch o [2004/02/17] ports/62960 ports-bugs new port: sysutils/mapchan, utility "mapc f [2004/02/25] ports/63357 ports-bugs [patch] www/linux-mozillafirefox port cre o [2004/03/08] ports/63936 ports-bugs New port: security/aimsniff A perl script f [2004/03/13] ports/64202 ports-bugs New Port: x11/kde_api_reference_32, the k o [2004/03/15] ports/64307 ports-bugs [NEW PORT] databases/linux-unixODBC: RPM f [2004/03/22] ports/64586 ports-bugs new port: devel/preps-devel-gui stable re o [2004/03/28] ports/64838 ports-bugs new port: chinese/msttf o [2004/03/29] ports/64898 ports-bugs new port: misc/heyu2 for X10 control f [2004/03/31] ports/65009 ports-bugs Maintainer update: lang/gforth (build fix o [2004/04/08] ports/65318 ports-bugs New port: games/noegnud* an ASCII/2D/3D U f [2004/04/20] ports/65824 ports-bugs sysutils/LPRng and sysutils/LPRngTool - a o [2004/04/27] ports/66031 ports-bugs [NEW PORT] science/mcstas - neutron ray-t o [2004/04/28] ports/66042 ports-bugs new port: www/suexec13 (standalone suexec o [2004/05/04] ports/66246 ports-bugs new ports: textproc/docbook-utils, textpr o [2004/05/04] ports/66266 ports-bugs ports/net/yptransitd: support FreeBSD NIS o [2004/05/05] ports/66282 ports-bugs [NEW PORT] mail/p5-Mail-Vispan: PERL scri o [2004/05/11] ports/66506 ports-bugs [NEW PORT] www/p5-Apache-GopherHandler: G o [2004/05/23] ports/67095 ports-bugs New port: www/p5-PLP: A Perl embedder som o [2004/06/04] ports/67572 ports-bugs New port: mnogosearch-devel: Full feature s [2004/06/11] ports/67815 ports-bugs ImageMagick no longer recognizes FlashPix o [2004/07/08] ports/68826 ports-bugs various anomalies with xemacs port f [2004/07/08] ports/68828 ports-bugs [PATCH] sysutils/ucspi-tcp: Apply ucspi-r o [2004/07/09] ports/68872 ports-bugs audio/libmikmod update to 3.2.0-beta2 ; a o [2004/07/11] ports/68934 ports-bugs New port: security/amavis-stats A simple f [2004/07/18] ports/69219 ports-bugs update rwhoisd to version 1.5.9; install o [2004/07/23] ports/69475 ports-bugs xemacs invalidly calls xargs (witj unexis o [2004/07/25] ports/69586 ports-bugs New port: chinese/PCManX f [2004/07/31] ports/69849 ports-bugs [update] py-opengl o [2004/08/05] ports/70017 ports-bugs New port: japanized strings(1) command (j f [2004/08/05] ports/70025 ports-bugs IPv6 CATEGORY not documented correctly o [2004/08/06] ports/70062 ports-bugs tetxproc/p5-Bloom-Filter - A new port of o [2004/08/10] ports/70271 ports-bugs [new port] biology/finchtv a DNA sequence f [2004/08/11] ports/70308 ports-bugs finance/openhbci port update f [2004/08/13] ports/70433 ports-bugs new plugin port for childsplay o [2004/08/20] ports/70683 ports-bugs [NEW PORT] x11-toolkits/p5-Gtk2-PodViewer f [2004/08/21] ports/70801 ports-bugs [NEW PORT] mail/crm114-devel: An Markov b o [2004/08/23] ports/70845 ports-bugs [NEW PORT] devel/tkshape - A Tk library t o [2004/08/26] ports/70999 ports-bugs New port: graphics/evas1 Hardware acceler o [2004/08/31] ports/71199 ports-bugs [PATCH] updated port ecartis 20040426 o [2004/09/01] ports/71221 ports-bugs new port: science/buddy - A Binary Decisi o [2004/09/03] ports/71326 ports-bugs New Port: net/shmux Shell multiplexer usi o [2004/09/04] ports/71381 ports-bugs New port:: A tool that, installed on a ga f [2004/09/06] ports/71436 ports-bugs [ Update ] databases/myodbc to 3.51.09 o [2004/09/07] ports/71461 ports-bugs New port: net/vqcc-gtk LAN chat client co o [2004/09/07] ports/71462 ports-bugs New port: net/sixxs-aiccu ipv6 TIC+ tunne o [2004/09/08] ports/71489 ports-bugs [PATCH] www/slash: initial support for mo f [2004/09/09] ports/71535 ports-bugs port sysutils/xbatt modification o [2004/09/10] ports/71554 ports-bugs [NEW PORT] japanese/ja-sfa: A CRPG game f f [2004/09/11] ports/71604 ports-bugs Update port: net/qadsl Update to 1.3.3 o [2004/09/17] ports/71821 ports-bugs [NEW PORT] net/bindtest: Test bind() sema o [2004/09/18] ports/71892 ports-bugs New port: security/sud Daemon used to exe o [2004/09/21] ports/71953 ports-bugs New port: x11-themes/kde-splash-freebsd: o [2004/09/22] ports/71997 ports-bugs New port:math/webwork used to create prob o [2004/09/24] ports/72055 ports-bugs New port: lang/see Simple ECMAScript Engi f [2004/09/29] ports/72167 ports-bugs New port: lang/xharbour An extended xBase o [2004/09/29] ports/72170 ports-bugs [PATCH] www/mozilla-bonobo - build also w o [2004/09/29] ports/72184 ports-bugs New port: editors/freemind: Mind-mapping o [2004/10/01] ports/72227 ports-bugs [NEW PORT] database/oracle-instantclient- o [2004/10/02] ports/72260 ports-bugs New port: irc/xchat-ecl-plugin A plugin t o [2004/10/07] ports/72421 ports-bugs new port: py-Levenshtein o [2004/10/12] ports/72550 ports-bugs [NEW PORT] mail/itraxp: Advanced perl sup o [2004/10/14] ports/72700 ports-bugs New port: devel/cl-uffi Universal Foreign o [2004/10/14] ports/72701 ports-bugs New port: devel/cl-uffi-cmucl Universal F o [2004/10/14] ports/72702 ports-bugs New port: devel/cl-uffi-sbcl Universal Fo o [2004/10/16] ports/72758 ports-bugs New port: latex-schedule f [2004/10/16] ports/72759 ports-bugs Portsentry doesn't install sample startup o [2004/10/21] ports/72955 ports-bugs New port: devel/opencxx Metaobject protoc s [2004/10/21] ports/72956 ports-bugs x11/dgs incorrectly marked as IGNORE o [2004/10/22] ports/72988 ports-bugs [New Port] www/p5-WWW-SourceForge Retriev o [2004/10/24] ports/73062 ports-bugs New port: devel/p5-Gnome2-GConf, Perl bin o [2004/10/24] ports/73063 ports-bugs New port: misc/translator, a GTK+ fronten o [2004/10/25] ports/73137 ports-bugs heanet sourceforge mirror IPv6 Problems. o [2004/10/26] ports/73152 ports-bugs [NEW PORT] graphics/chartdirector: Charti o [2004/10/26] ports/73168 ports-bugs Linux ldd broken o [2004/10/27] ports/73203 ports-bugs New Port: print/foomatic-filters, univers o [2004/10/29] ports/73270 ports-bugs New port: www/p5-CGI-Builder-TT2 o [2004/10/30] ports/73320 ports-bugs New Port: kde_head_api_reference, the kde o [2004/11/04] ports/73513 ports-bugs [NEW PORT] devel/p5-Mknod: Perl module in f [2004/11/09] ports/73721 ports-bugs [MAINTAINER] lang/pike76: Fix 64bits brea f [2004/11/11] ports/73833 ports-bugs sysutils/smartmontools: smartctl -a /dev/ o [2004/11/12] ports/73864 ports-bugs new port: comms/smstools f [2004/11/13] ports/73914 ports-bugs /usr/ports/lang/scm marked broken unjusti f [2004/11/13] ports/73917 ports-bugs [PATCH] Update audio/cheesetracker to 0.9 o [2004/11/16] ports/74017 ports-bugs [new port] net/gacxtool: The GTK ACX Tool o [2004/11/17] ports/74039 ports-bugs [update]irc/erc: add dependency and byte- o [2004/11/18] ports/74086 ports-bugs New port:chinese/chmsee A viewer for Micr o [2004/11/19] ports/74097 ports-bugs New Port: x11-clocks/my_clock: display th f [2004/11/20] ports/74179 ports-bugs [PATCH] Fix build of security/sfs s [2004/11/21] ports/74195 ports-bugs fix build error of devel/swarm for gcc 3. f [2004/11/21] ports/74205 ports-bugs Patch for Connection.cc in the mysqlcppap f [2004/11/21] ports/74210 ports-bugs port www/privoxy needs an example startup f [2004/11/21] ports/74219 ports-bugs [PATCH] xmms hides some interesting infor f [2004/11/22] ports/74233 ports-bugs ntfsclone (sysutils/ntfsprogs) broken o [2004/11/23] ports/74294 ports-bugs New port: jabber-pymsn-transport-0.7.4 f [2004/11/24] ports/74307 ports-bugs In x11/xdialog, options "tailbox and logb o [2004/11/24] ports/74316 ports-bugs New port: sysutils/env4801 environmental o [2004/11/24] ports/74340 ports-bugs New port: sysutils/pcfclock - userland ac o [2004/11/28] ports/74483 ports-bugs Update port: graphics/xrml fix build on a o [2004/11/28] ports/74484 ports-bugs update emulators/hatari to 0.50 f [2004/11/28] ports/74493 ports-bugs Update port: net/arping Low level "ping" f [2004/11/30] ports/74541 ports-bugs [patch] ports/mail/p5-Sendmail-Milter doe f [2004/12/01] ports/74594 ports-bugs Update port: audio/xmms-pipe to 0.5.4 f [2004/12/02] ports/74603 ports-bugs [Maintainer] Update textproc/scim and tex o [2004/12/02] ports/74615 ports-bugs new port: net/quoted o [2004/12/03] ports/74637 ports-bugs New port: news/klibido o [2004/12/04] ports/74660 ports-bugs New port: textproc/stardict2-rptts o [2004/12/04] ports/74661 ports-bugs New port: chinese/scim-chewing o [2004/12/04] ports/74664 ports-bugs New port: x11-clocks/bdesktopclock f [2004/12/04] ports/74669 ports-bugs The port math/octave is marked BROKEN on f [2004/12/04] ports/74671 ports-bugs [PATCH] devel/dmalloc: update to 5.4.2 f [2004/12/05] ports/74694 ports-bugs java/netrexx port in wrong main category, o [2004/12/05] ports/74714 ports-bugs [NEW PORT] textproc/stardict2-rptts o [2004/12/05] ports/74717 ports-bugs New Port : emulators/e-uae, enhanced vers f [2004/12/05] ports/74723 ports-bugs [MAINTAINER] www/W3C-LogValidator: update o [2004/12/06] ports/74772 ports-bugs [NEW PORT] comms/cwdaemon: Amateur Radio o [2004/12/06] ports/74784 ports-bugs [NEW PORT] math/geonext: Interactive (dyn f [2004/12/10] ports/74916 ports-bugs sysutils/bpm - Patch which fixes running f [2004/12/10] ports/74922 ports-bugs [PATCH] Update www/trac to 0.8 o [2004/12/12] ports/74996 ports-bugs [NEW PORT] sysutils/logwatch: Logwatch is f [2004/12/12] ports/75000 ports-bugs Patch port: audio/wsoundprefs unbroke por o [2004/12/13] ports/75011 ports-bugs [PATCH] math/unixstat port has rotten bit f [2004/12/14] ports/75047 ports-bugs [PATCH] graphics/showimg: update to 0.9.4 o [2004/12/14] ports/75050 ports-bugs new port: net/ventrilo f [2004/12/14] ports/75058 ports-bugs emulators/hfsutils - You need TCL/TK? f [2004/12/14] ports/75060 ports-bugs [UPDATE] net/p5-RPC-XML from 0.53 to 0.54 o [2004/12/14] ports/75078 ports-bugs new port - yydecode is a decoder for usen f [2004/12/14] ports/75081 ports-bugs avidemux2 build error (missing aclocal19) f [2004/12/15] ports/75100 ports-bugs [PATCH] textproc/sgmltools-lite: [fix bro f [2004/12/15] ports/75129 ports-bugs Update port: graphics/ftgl 2.09 -> 2.12 o [2004/12/15] ports/75130 ports-bugs [NEW PORT] www/mono-xsp: A light-weight w o [2004/12/15] ports/75136 ports-bugs New Port mail/xfaces (really a reinclusio o [2004/12/16] ports/75148 ports-bugs [PATCH] math/concorde: update to 20031219 o [2004/12/17] ports/75173 ports-bugs New port: devel/cgprof Generates colored o [2004/12/18] ports/75236 ports-bugs Update Avidemux2 to 2.0.34-test2 and fix o [2004/12/18] ports/75240 ports-bugs New port: www/wordpress-mu , multi-user v o [2004/12/19] ports/75247 ports-bugs Update ports/convert/p5-Unicode-IMAPUtf7 o [2004/12/20] ports/75285 ports-bugs New Port: x11/padkey - Use an SNES pad on o [2004/12/20] ports/75293 ports-bugs [ maintener-update ] update gdvrecv to 1. o [2004/12/20] ports/75302 ports-bugs Patches for cleaning problems reported by o [2004/12/20] ports/75322 ports-bugs [MAINTAINER] textproc/gtk: unbreak f [2004/12/20] ports/75332 ports-bugs Update devel/kscope to version 1.0. o [2004/12/20] ports/75341 ports-bugs Unable to install py-imaging port python o [2004/12/21] ports/75342 ports-bugs Upgrade of port science/vmd o [2004/12/21] ports/75352 ports-bugs [NEW PORT] security/gaim-otr Off The reco f [2004/12/21] ports/75353 ports-bugs [update] security/drweb-postfix update to o [2004/12/21] ports/75363 ports-bugs port files have a+x permissions security/ o [2004/12/21] ports/75369 ports-bugs new port net/p5-Perlbal o [2004/12/21] ports/75372 ports-bugs [PATCH] www/p5-Apache-AxKit-Plugin-AddXSL f [2004/12/22] ports/75383 ports-bugs [maintainer] emulators/fceu: update to 0. o [2004/12/22] ports/75389 ports-bugs add additional patch site to net/isc-dhcp o [2004/12/22] ports/75391 ports-bugs [update] security/drweb-qmail update to 4 o [2004/12/23] ports/75424 ports-bugs new port: security/bdc (BitDefender Conso o [2004/12/24] ports/75451 ports-bugs Update port: databases/freetds change to o [2004/12/24] ports/75474 ports-bugs Update port: lang/munger - upate to versi o [2004/12/27] ports/75530 ports-bugs [PATCH] mail/nbsmtp: update to 0.98 o [2004/12/27] ports/75546 ports-bugs [NEW PORT] sysutils/fdupes r [2004/12/27] ports/75553 ports-bugs [NEW PORT] www/eaccelerator 0.91 o [2004/12/27] ports/75554 ports-bugs [New Port] www/polipo A web caching proxy o [2004/12/27] ports/75555 ports-bugs [NEW PORT] x11-toolkits/py-gtksourceview: o [2004/12/28] ports/75560 ports-bugs New port: textproc/stardict2-dictd_www.mo o [2004/12/28] ports/75561 ports-bugs New port: textproc/stardict2-quick, dicti o [2004/12/28] ports/75566 ports-bugs [PATCH] xmlada patch to compile docs o [2004/12/28] ports/75586 ports-bugs [Maintainer update] graphics/xmedcon 0.9. o [2004/12/29] ports/75592 ports-bugs maintainer update for lang/py-prolog o [2004/12/29] ports/75607 ports-bugs clamav: some practical ideas o [2004/12/29] ports/75609 ports-bugs [PATCH] security/wpa_supplicant: update t o [2004/12/29] ports/75613 ports-bugs [maintainer] math/gap to version 4.4.4 o [2004/12/29] ports/75635 ports-bugs [NEW PORT] www/mozilla-urihelper: A sampl o [2004/12/29] ports/75641 ports-bugs Update port: net/nbd-server to version 2. o [2004/12/30] ports/75643 ports-bugs New Port: x11/PyPanel (A lightweight tran o [2004/12/30] ports/75647 ports-bugs mail-dspam-devel: corect deinstall, packa o [2004/12/30] ports/75663 ports-bugs Update port: graphics/glew amd64 5.x fix o [2004/12/30] ports/75665 ports-bugs mail/dspam: fix make describe, update, fi o [2004/12/30] ports/75669 ports-bugs Update port: net/xprobe 0.2 -> 0.2.1 o [2004/12/30] ports/75670 ports-bugs update net-mgmt/kismet - Diff attached o [2004/12/30] ports/75671 ports-bugs [Maintainer Update] emulators/xmame to 0. o [2004/12/30] ports/75672 ports-bugs [Maintainer Update] emulators/xmess to 0. o [2004/12/30] ports/75674 ports-bugs [PATCH] net/giFT-OpenFT: update to 0.2.1. o [2004/12/30] ports/75675 ports-bugs [NEW PORT] net/apollon: KDE client for gi o [2004/12/31] ports/75684 ports-bugs MAINTAINER-UPDATE: editors/lpe pkg-plist o [2004/12/31] ports/75685 ports-bugs MAINTAINER-UPDATE: net/trafshow restore p f [2004/12/31] ports/75693 ports-bugs port audio/musicpd is outdated o [2004/12/31] ports/75697 ports-bugs New port: x11-fonts/gnome-font-sampler, a o [2004/12/31] ports/75698 ports-bugs New port: cad/z88 o [2005/01/01] ports/75704 ports-bugs [NEW PORT] textproc/libhtmlparse: Simple o [2005/01/01] ports/75707 ports-bugs irc/epic4 port update o [2005/01/02] ports/75714 ports-bugs Wmconfig port update to V1.2.3 o [2005/01/02] ports/75717 ports-bugs New port: fast spam/antivirus scanner for o [2005/01/02] ports/75718 ports-bugs Maintainer Update: devel/distcc o [2005/01/02] ports/75720 ports-bugs The 4.10-RELEASE samba 3 package smbpassw o [2005/01/02] ports/75721 ports-bugs [ maintainer ] sysutils/torsmo: fix tempe o [2005/01/02] ports/75724 ports-bugs [ maintainer ] russian/prawda: try to fix o [2005/01/03] ports/75732 ports-bugs [maintainer-update] comms/obexapp: update o [2005/01/03] ports/75734 ports-bugs [maintainer-update] Update port: emulator o [2005/01/03] ports/75736 ports-bugs [PATCH] graphics/agg: update to 2.2 o [2005/01/03] ports/75743 ports-bugs [maintainer update] 16 ports: add mirror o [2005/01/03] ports/75744 ports-bugs [NEW PORT] misc/freshmeat-submit: Submiss o [2005/01/03] ports/75757 ports-bugs [UPDATE PORT] www/emp: to version 0.94 f [2005/01/03] ports/75760 ports-bugs net-mgmt/knowlan broken - does not compil o [2005/01/03] ports/75770 ports-bugs Update Port: editors/jedit-devel to 4.3pr o [2005/01/04] ports/75778 ports-bugs [UPDATE] databases/firebird: Update to 1. o [2005/01/04] ports/75781 ports-bugs new port: sysutils/udfclient - Tools for o [2005/01/04] ports/75787 ports-bugs [maintainer-update] math/coq : fix pkg-pl o [2005/01/04] ports/75790 ports-bugs [PATCH] www/py24-imdbpy: update to 1.6 o [2005/01/04] ports/75804 ports-bugs [NEW PORT] devel/p5-Sub-Override: Sub::Ov o [2005/01/04] ports/75805 ports-bugs [MAINTAINER] www/p5-HTML-TokeParser-Simpl o [2005/01/04] ports/75806 ports-bugs [MAINTAINER] www/p5-HTML-LinkExtractor: u o [2005/01/04] ports/75807 ports-bugs [PATCH] audio/gkrellmss: give up ownershi o [2005/01/04] ports/75810 ports-bugs [Maintainer Update] x11-themes/baghira to o [2005/01/04] ports/75811 ports-bugs New port: sysutils/monit Unix system mana o [2005/01/04] ports/75819 ports-bugs New Port: www/instiki o [2005/01/04] ports/75820 ports-bugs Missing man page in Makefile for net-mgmt f [2005/01/04] ports/75824 ports-bugs [patch] net/jabberd: rc.d/jabberd.sh o [2005/01/05] ports/75835 ports-bugs New Port: net/zsync -- rsync implementati o [2005/01/05] ports/75838 ports-bugs Re-add port: emulators/linux-ePSXe (linux o [2005/01/05] ports/75839 ports-bugs [MAINTAINER] sysutils/xfce4-wavelan-plugi o [2005/01/05] ports/75840 ports-bugs [MAINTAINER] www/p5-CGI-Application-Valid o [2005/01/05] ports/75841 ports-bugs devel/spin update to 4.2.2 o [2005/01/05] ports/75854 ports-bugs Update Port: devel/p5-Filesys-Statvfs_Df o [2005/01/05] ports/75858 ports-bugs [PATCH] net/fspclient: update to 0.0.10 o [2005/01/05] ports/75861 ports-bugs Upgrade Postgis from 0.9.0 to 0.9.1 o [2005/01/05] ports/75863 ports-bugs New port: deskutils/timer-applet, a count o [2005/01/05] ports/75866 ports-bugs [MAINTAINER] Update port: databases/py-My o [2005/01/05] ports/75867 ports-bugs [MAINTAINER] Update port: databases/py-My o [2005/01/06] ports/75885 ports-bugs [maintainer update] sysutils/munin-node 1 o [2005/01/06] ports/75886 ports-bugs [maintainer update] sysutils/munin-main 1 o [2005/01/06] ports/75889 ports-bugs isc-dhcpd-server-3 .0.1 doesn't startup p o [2005/01/06] ports/75890 ports-bugs Port net/tkabber breaks "make index" unde o [2005/01/06] ports/75895 ports-bugs update security/tor - Diff attached o [2005/01/06] ports/75900 ports-bugs Oleo 1.99.16_3 w/Motif 2.2.3_1 won't comp o [2005/01/06] ports/75903 ports-bugs [patch] [maintainer-update] fix for broke o [2005/01/07] ports/75908 ports-bugs New port: misc/thailocale A locale for Th o [2005/01/07] ports/75909 ports-bugs [update] math/blitz++ to 0.8 o [2005/01/07] ports/75913 ports-bugs Update port: deskutils/ljcharm o [2005/01/07] ports/75914 ports-bugs New port: german/selfhtml - extensive HTM o [2005/01/07] ports/75916 ports-bugs New port: net/decv o [2005/01/07] ports/75921 ports-bugs [new port] flpsed, a WYSIWYG pseudo PostS o [2005/01/07] ports/75925 ports-bugs [patch] security/xca coerced into compili o [2005/01/07] ports/75929 ports-bugs checksum mismatch in latest devel/perforc o [2005/01/08] ports/75933 ports-bugs New Port www/p5-HTML-Diff Perl module to o [2005/01/08] ports/75935 ports-bugs New port: p5-MasonX-WebApp -- Works with o [2005/01/08] ports/75962 ports-bugs [PATCH] multimedia/mplayer: chase graphic o [2005/01/08] ports/75966 ports-bugs [patch] improve samba-vscan port o [2005/01/09] ports/75973 ports-bugs New port: java/devisor o [2005/01/09] ports/75983 ports-bugs Port upgrade: sysutils/k3b to 0.11.18 o [2005/01/09] ports/75989 ports-bugs [MAINTAINER UPDATE] Update mail/postfix-g o [2005/01/09] ports/75990 ports-bugs New port: sysutils/boxbackup - An automat o [2005/01/09] ports/75991 ports-bugs New Port: x11-clocks/gtubeclock - A nixie o [2005/01/09] ports/75992 ports-bugs [PATCH] japanese/latex2html: Unbreak this f [2005/01/09] ports/75993 ports-bugs [PATCH] devel/viewcvs: Fix enscript args o [2005/01/09] ports/75998 ports-bugs [maintainer-update] polish/kadu - fix pkg o [2005/01/09] ports/76001 ports-bugs Update port: graphics/ayam remove stale d o [2005/01/09] ports/76003 ports-bugs Update port: graphics/quesa fetch fix o [2005/01/09] ports/76005 ports-bugs Update games/tornado to fix port problems o [2005/01/09] ports/76015 ports-bugs [patch] unbreak biology/molden or upgrade o [2005/01/09] ports/76018 ports-bugs [patch] deskutils/taskjuggler requires li o [2005/01/10] ports/76021 ports-bugs portupgrade: package delete can remove ne o [2005/01/10] ports/76024 ports-bugs subversion-1.1.1 silently builds bad svn o [2005/01/10] ports/76026 ports-bugs [NEW PORT] archivers/dynamite: Decompress o [2005/01/10] ports/76030 ports-bugs [NEW PORT] archivers/orange: Extract Micr o [2005/01/10] ports/76032 ports-bugs update math/pari to 2.1.6 o [2005/01/10] ports/76033 ports-bugs New port: net/libtorrent - BitTorrent Lib o [2005/01/10] ports/76034 ports-bugs [MAINTAINER] devel/p5-Module-ScanDeps: up o [2005/01/10] ports/76035 ports-bugs [MAINTAINER] devel/p5-SVN-Mirror: update o [2005/01/10] ports/76036 ports-bugs respect bsd.java.mk 2.0 in java/jakarta-c o [2005/01/10] ports/76037 ports-bugs [Maintainer update] security/doscan: upda o [2005/01/10] ports/76038 ports-bugs [MAINTAINER] net/netwib: update to 5.28.0 o [2005/01/10] ports/76039 ports-bugs [ Update ] databases/mysql++ to 1.7.26 288 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 11:19:50 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B6F516A4D1 for ; Mon, 10 Jan 2005 11:19:50 +0000 (GMT) Received: from com-and.com (relay.andxor.it [195.223.2.3]) by mx1.FreeBSD.org (Postfix) with SMTP id BF27E43D3F for ; Mon, 10 Jan 2005 11:19:47 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: (qmail 21025 invoked by uid 0); 10 Jan 2005 11:19:45 -0000 Received: from unknown (HELO ?192.168.2.5?) (192.168.2.5) by com-and.com with SMTP; 10 Jan 2005 11:19:45 -0000 Message-ID: <41E264D0.1010508@FreeBSD.org> Date: Mon, 10 Jan 2005 12:19:44 +0100 From: Alex Dupre User-Agent: Mozilla Thunderbird 1.0 (X11/20041229) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Rainer Duffner References: <41E26CA1.9010200@ultra-secure.de> In-Reply-To: <41E26CA1.9010200@ultra-secure.de> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: mysql323-server-3.23.58_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 11:19:50 -0000 Rainer Duffner wrote: > According to portaudit, the mysql323-server contains several > vulnerabilities. > > Is there going to be a patch for the 4.11-release ? I'm going to update the mysql 3.23 port in near future. If needed I can do it asap for inclusion in 4.11 release, but nowadays everyone should use mysql 4.0 or 4.1. -- Alex Dupre From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 12:01:41 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73C6316A4CE for ; Mon, 10 Jan 2005 12:01:41 +0000 (GMT) Received: from w1001.widhost.net (w1001.widhost.net [209.235.192.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id E938143D3F for ; Mon, 10 Jan 2005 12:01:40 +0000 (GMT) (envelope-from filippo.natali@widestore.net) Received: from mx0.hq.widestore.net (mx0.hq.widestore.net [212.97.46.42]) by w1001.widhost.net (Postfix) with ESMTP id 29C4F21937 for ; Mon, 10 Jan 2005 07:01:40 -0500 (EST) Received: from [192.168.1.1] (cagnina.hq.widestore.net [192.168.1.1]) by mx0.hq.widestore.net (Postfix) with ESMTP id 8AFE55E; Mon, 10 Jan 2005 13:01:32 +0100 (CET) Message-ID: <41E26E9C.2060709@widestore.net> Date: Mon, 10 Jan 2005 13:01:32 +0100 From: Filippo Natali Organization: Widestore.Net User-Agent: Mozilla Thunderbird 1.0 (X11/20041228) X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Angelmo References: <41DD09D7.3030109@veidit.net> <20050106121353.GA1334@frontfree.net> <41DD3384.9020408@veidit.net> In-Reply-To: <41DD3384.9020408@veidit.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: Zope CMF X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 12:01:41 -0000 on 06.01.2005 13:48 John Angelmo wrote: > I guess that we havn't been in a portsfreeze since 2004-11-10? My > question was when there are any plans to implement it after the freeze > has been lifted? or are there dependencies to other apps that break it? > > /John Hi, I'm testing CMF 1.5.0, it has incompatibility issues with Plone. I have not yet tested other CMF related ports, but I think it will break some of them. Therefore I don't plan to update soon www/zope-cmf to 1.5.0, but if needed in the meanwhile I can submit a www/zope-cmf15 port. Filippo From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 12:12:46 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22E7B16A4CE; Mon, 10 Jan 2005 12:12:46 +0000 (GMT) Received: from multiplay.co.uk (www1.multiplay.co.uk [212.42.16.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E51943D58; Mon, 10 Jan 2005 12:12:45 +0000 (GMT) (envelope-from killing@multiplay.co.uk) Received: from vader ([212.135.219.179]) by multiplay.co.uk (multiplay.co.uk [212.42.16.7]) (MDaemon.PRO.v7.2.2.R) with ESMTP id md50000861027.msg; Mon, 10 Jan 2005 12:02:36 +0000 Message-ID: <006d01c4f70d$92ffce10$b3db87d4@multiplay.co.uk> From: "Steven Hartland" To: "Alex Dupre" , "Rainer Duffner" References: <41E26CA1.9010200@ultra-secure.de> <41E264D0.1010508@FreeBSD.org> Date: Mon, 10 Jan 2005 12:11:39 -0000 MIME-Version: 1.0 Content-Type: text/plain; format=flowed; charset="iso-8859-1"; reply-type=response Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2527 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 X-Spam-Processed: multiplay.co.uk, Mon, 10 Jan 2005 12:02:36 +0000 (not processed: message from valid local sender) X-MDRemoteIP: 212.135.219.179 X-Return-Path: killing@multiplay.co.uk X-MDAV-Processed: multiplay.co.uk, Mon, 10 Jan 2005 12:02:38 +0000 cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: mysql323-server-3.23.58_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 12:12:46 -0000 4.0 by preference as 4.1 is still majorly broken with high numbers of concurrent connections. http://bugs.mysql.com/bug.php?id=7209 ----- Original Message ----- From: "Alex Dupre" > Rainer Duffner wrote: >> According to portaudit, the mysql323-server contains several >> vulnerabilities. >> >> Is there going to be a patch for the 4.11-release ? > > I'm going to update the mysql 3.23 port in near future. If needed I can > do it asap for inclusion in 4.11 release, but nowadays everyone should > use mysql 4.0 or 4.1. ================================================ This e.mail is private and confidential between Multiplay (UK) Ltd. and the person or entity to whom it is addressed. In the event of misdirection, the recipient is prohibited from using, copying, printing or otherwise disseminating it or any information contained in it. In the event of misdirection, illegible or incomplete transmission please telephone (023) 8024 3137 or return the E.mail to postmaster@multiplay.co.uk. From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 12:27:24 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9704A16A4CE for ; Mon, 10 Jan 2005 12:27:24 +0000 (GMT) Received: from bsd.ultra-secure.de (bsd.ultra-secure.de [62.146.20.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7E3A43D48 for ; Mon, 10 Jan 2005 12:27:23 +0000 (GMT) (envelope-from rainer@ultra-secure.de) Received: (qmail 13795 invoked by uid 1005); 10 Jan 2005 12:27:22 -0000 Received: from rainer@ultra-secure.de by bsd.ultra-secure.de by uid 89 with qmail-scanner-1.22 Clear:RC:1(217.235.154.169):. Processed in 0.084112 secs); 10 Jan 2005 12:27:22 -0000 Received: from unknown (HELO ?192.168.1.10?) (rainer@ultra-secure.de@217.235.154.169) by bsd.ultra-secure.de with (DHE-RSA-AES256-SHA encrypted) SMTP; 10 Jan 2005 12:27:22 -0000 Message-ID: <41E282BD.3000300@ultra-secure.de> Date: Mon, 10 Jan 2005 14:27:25 +0100 From: Rainer Duffner User-Agent: Mozilla Thunderbird 1.0 (X11/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alex Dupre References: <41E26CA1.9010200@ultra-secure.de> <41E264D0.1010508@FreeBSD.org> In-Reply-To: <41E264D0.1010508@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: mysql323-server-3.23.58_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 12:27:24 -0000 Alex Dupre wrote: > Rainer Duffner wrote: > >> According to portaudit, the mysql323-server contains several >> vulnerabilities. >> >> Is there going to be a patch for the 4.11-release ? > > > I'm going to update the mysql 3.23 port in near future. If needed I > can do it asap for inclusion in 4.11 release, but nowadays everyone > should use mysql 4.0 or 4.1. I usually do this, but in this special case it was not possible - it was a migration from a very old (SuSE) system and I did not have the time to do a proper database-migration, just data-migration. Also, the 3.23-port lacks (I think) the patches to disable libwrap and thus crashes with remote-connections. Thanks for your efforts. cheers, Rainer -- =================================================== ~ Rainer Duffner - rainer@ultra-secure.de ~ ~ Freising - Munich - Germany ~ ~ Unix - Linux - BSD - OpenSource - Security ~ ~ http://www.ultra-secure.de/~rainer/pubkey.pgp ~ =================================================== From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 13:29:19 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60E8D16A4CE; Mon, 10 Jan 2005 13:29:19 +0000 (GMT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id E199B43D39; Mon, 10 Jan 2005 13:29:18 +0000 (GMT) (envelope-from nectar@celabo.org) Received: from lum.celabo.org (lum.celabo.org [10.0.1.107]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "lum.celabo.org", Issuer "celabo.org CA" (verified OK)) by gw.celabo.org (Postfix) with ESMTP id BC1953E2C3B; Mon, 10 Jan 2005 07:29:23 -0600 (CST) Received: by lum.celabo.org (Postfix, from userid 1001) id D70D7558872; Mon, 10 Jan 2005 07:29:15 -0600 (CST) Date: Mon, 10 Jan 2005 07:29:15 -0600 From: "Jacques A. Vidrine" To: Greg 'groggy' Lehey Message-ID: <20050110132915.GC5374@lum.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Greg 'groggy' Lehey , Kris Kennaway , Garrett Wollman , Rasmus Kaj , ports@FreeBSD.org References: <20050109054144.GA37692@xor.obsecurity.org> <200501090624.j096OJMn018874@khavrinen.lcs.mit.edu> <20050109054144.GA37692@xor.obsecurity.org> <200501090624.j096OJMn018874@khavrinen.lcs.mit.edu> <20050109054144.GA37692@xor.obsecurity.org> <20050110004629.GI88329@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050110004629.GI88329@wantadilla.lemis.com> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i cc: ports@FreeBSD.org cc: Garrett Wollman cc: Rasmus Kaj cc: Kris Kennaway Subject: Re: Removing net/arla (was: FreeBSD ports scheduled for removal) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 13:29:19 -0000 On Mon, Jan 10, 2005 at 11:16:29AM +1030, Greg 'groggy' Lehey wrote: > On Saturday, 8 January 2005 at 21:41:44 -0800, Kris Kennaway wrote: > > I'm willing to submit a new version of the Arla port, but I would very > > much like to see ports/74113, heimdal upgrade from 0.6.1 to 0.6.3, be > > commited first. > > nectar? This is one of the things I've been neglecting, but I'll be doing an update of the Heimdal port (and base system) ``real soon now''. I intend to split the Heimdal port into libraries and so forth. But, I'll have a look at ports/74113, and if it seems OK, I'll just commit it in the meantime. Thanks for the nudge (^_^) Cheers, -- Jacques A Vidrine / NTT/Verio nectar@celabo.org / jvidrine@verio.net / nectar@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 14:07:27 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9D5D16A4CF; Mon, 10 Jan 2005 14:07:27 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 798A043D48; Mon, 10 Jan 2005 14:07:24 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id B3EF65145A; Mon, 10 Jan 2005 06:07:17 -0800 (PST) Date: Mon, 10 Jan 2005 06:07:17 -0800 From: Kris Kennaway To: Michael Rubin Message-ID: <20050110140717.GA49906@xor.obsecurity.org> References: <20050110042727.GA1286@xor.obsecurity.org> <2C368216-62E6-11D9-80AB-000A95CD9CC8@neverthere.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2oS5YaxWCcQjTEyO" Content-Disposition: inline In-Reply-To: <2C368216-62E6-11D9-80AB-000A95CD9CC8@neverthere.org> User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org cc: ale@FreeBSD.org cc: Kris Kennaway Subject: Re: FreeBSD Port: pecl-fileinfo-0.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 14:07:28 -0000 --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jan 10, 2005 at 01:01:10AM -0800, Michael Rubin wrote: > I apologize for wasting your time. I am pretty impressed with your=20 > response time. That was great. I will not ask you another question=20 > after this email. But I am going to ask you one more. :-) >=20 > I did a uname -a and found out I was mistaken. I am running: >=20 > > -> uname -a > > FreeBSD firstgear.neverthere.org 5.3-RELEASE FreeBSD 5.3-RELEASE #0:=20 > Fri Nov 5 04:19:18 UTC 2004 > > root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 >=20 > On the FreeBSD website I don't see a 5.3-STABLE I only see a 5.3=20 > RELEASE. >=20 > If there is a RTFM I am not doing please feel free to reply with RTFM,=20 > or point me to the place to get 5.3 STABLE. It's described in the handbook. Kris --2oS5YaxWCcQjTEyO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB4owVWry0BWjoQKURAthMAKCMEm9Mh45XH2pNAXWS6az+jEz1VgCgpRM8 wpe2nRogxgrArdSKsxOonRo= =HIY4 -----END PGP SIGNATURE----- --2oS5YaxWCcQjTEyO-- From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 14:16:46 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9A4716A4CE for ; Mon, 10 Jan 2005 14:16:46 +0000 (GMT) Received: from smtp804.mail.sc5.yahoo.com (smtp804.mail.sc5.yahoo.com [66.163.168.183]) by mx1.FreeBSD.org (Postfix) with SMTP id 747BB43D45 for ; Mon, 10 Jan 2005 14:16:45 +0000 (GMT) (envelope-from donaldj1066@fastmail.fm) Received: from unknown (HELO pres7000.mylan.net) (donaldj@ameritech.net@69.211.129.226 with plain) by smtp804.mail.sc5.yahoo.com with SMTP; 10 Jan 2005 14:16:45 -0000 From: "Donald J. O'Neill" To: freebsd-ports@freebsd.org Date: Mon, 10 Jan 2005 08:16:20 -0600 User-Agent: KMail/1.7.2 References: <20050110042727.GA1286@xor.obsecurity.org> <2C368216-62E6-11D9-80AB-000A95CD9CC8@neverthere.org> In-Reply-To: <2C368216-62E6-11D9-80AB-000A95CD9CC8@neverthere.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501100816.21276.donaldj1066@fastmail.fm> cc: ports@freebsd.org cc: Michael Rubin cc: ale@freebsd.org cc: Kris Kennaway Subject: Re: FreeBSD Port: pecl-fileinfo-0.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 14:16:47 -0000 On Monday 10 January 2005 03:01 am, Michael Rubin wrote: > I will not ask you another question after this email. But I am going >to ask you one more. :-) > I don't think this is a true statement. You're probably going to need/want to ask a lot of questions as you find out what it is you need to do. > > I did a uname -a and found out I was mistaken. I am running: > > -> uname -a > > FreeBSD firstgear.neverthere.org 5.3-RELEASE FreeBSD 5.3-RELEASE > > #0: > > Fri Nov 5 04:19:18 UTC 2004 > > > root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 > > On the FreeBSD website I don't see a 5.3-STABLE I only see a 5.3 > RELEASE. > > > If there is a RTFM I am not doing please feel free to reply with > RTFM, or point me to the place to get 5.3 STABLE. > Yes, there are. You want to look at the handbook, I would go here: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html Read chapter 8, 19 and Appendicies A5 and A6. Also, /usr/src/UPDATING and /usr/ports/UPDATING. > > > Thanks again for your time, > > Michael Rubin > > On Jan 9, 2005, at 8:27 PM, Kris Kennaway wrote: > > You need to update to 5.3-STABLE. > > > > Kris > Hello Michael, Kris said you need to update to 5.3-STABLE. To do that there are some things you're going to need to learn about. In particular, cvsup, sup-files, and what to do then. To get cvsup installed, if you haven't done it yet, the easiest way would be: pkg_add -r cvsup Can you connect to the Internet using your FBSD box? I looked at the headers on your email and noticed Apple Mail. Are you using a dial-up connection or broadband? Don -- Donald J. O'Neill donaldj1066@fastmail.fm I'm not totally useless, I can be used as a bad example. From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 14:16:46 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD49916A4CF for ; Mon, 10 Jan 2005 14:16:46 +0000 (GMT) Received: from smtp804.mail.sc5.yahoo.com (smtp804.mail.sc5.yahoo.com [66.163.168.183]) by mx1.FreeBSD.org (Postfix) with SMTP id 7403743D31 for ; Mon, 10 Jan 2005 14:16:45 +0000 (GMT) (envelope-from donaldj1066@fastmail.fm) Received: from unknown (HELO pres7000.mylan.net) (donaldj@ameritech.net@69.211.129.226 with plain) by smtp804.mail.sc5.yahoo.com with SMTP; 10 Jan 2005 14:16:45 -0000 From: "Donald J. O'Neill" To: freebsd-ports@freebsd.org Date: Mon, 10 Jan 2005 08:16:20 -0600 User-Agent: KMail/1.7.2 References: <20050110042727.GA1286@xor.obsecurity.org> <2C368216-62E6-11D9-80AB-000A95CD9CC8@neverthere.org> In-Reply-To: <2C368216-62E6-11D9-80AB-000A95CD9CC8@neverthere.org> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501100816.21276.donaldj1066@fastmail.fm> cc: ports@freebsd.org cc: Michael Rubin cc: ale@freebsd.org cc: Kris Kennaway Subject: Re: FreeBSD Port: pecl-fileinfo-0.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 14:16:47 -0000 On Monday 10 January 2005 03:01 am, Michael Rubin wrote: > I will not ask you another question after this email. But I am going >to ask you one more. :-) > I don't think this is a true statement. You're probably going to need/want to ask a lot of questions as you find out what it is you need to do. > > I did a uname -a and found out I was mistaken. I am running: > > -> uname -a > > FreeBSD firstgear.neverthere.org 5.3-RELEASE FreeBSD 5.3-RELEASE > > #0: > > Fri Nov 5 04:19:18 UTC 2004 > > > root@harlow.cse.buffalo.edu:/usr/obj/usr/src/sys/GENERIC i386 > > On the FreeBSD website I don't see a 5.3-STABLE I only see a 5.3 > RELEASE. > > > If there is a RTFM I am not doing please feel free to reply with > RTFM, or point me to the place to get 5.3 STABLE. > Yes, there are. You want to look at the handbook, I would go here: http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html Read chapter 8, 19 and Appendicies A5 and A6. Also, /usr/src/UPDATING and /usr/ports/UPDATING. > > > Thanks again for your time, > > Michael Rubin > > On Jan 9, 2005, at 8:27 PM, Kris Kennaway wrote: > > You need to update to 5.3-STABLE. > > > > Kris > Hello Michael, Kris said you need to update to 5.3-STABLE. To do that there are some things you're going to need to learn about. In particular, cvsup, sup-files, and what to do then. To get cvsup installed, if you haven't done it yet, the easiest way would be: pkg_add -r cvsup Can you connect to the Internet using your FBSD box? I looked at the headers on your email and noticed Apple Mail. Are you using a dial-up connection or broadband? Don -- Donald J. O'Neill donaldj1066@fastmail.fm I'm not totally useless, I can be used as a bad example. From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 15:54:12 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 069F916A4CE for ; Mon, 10 Jan 2005 15:54:12 +0000 (GMT) Received: from web53601.mail.yahoo.com (web53601.mail.yahoo.com [206.190.37.34]) by mx1.FreeBSD.org (Postfix) with SMTP id 6A1E343D53 for ; Mon, 10 Jan 2005 15:54:11 +0000 (GMT) (envelope-from scott@sremick.net) Received: (qmail 87653 invoked by uid 60001); 10 Jan 2005 15:54:10 -0000 Message-ID: <20050110155410.87651.qmail@web53601.mail.yahoo.com> Received: from [65.213.7.6] by web53601.mail.yahoo.com via HTTP; Mon, 10 Jan 2005 07:54:10 PST X-RocketYMMF: siremick Date: Mon, 10 Jan 2005 07:54:10 -0800 (PST) From: "Scott I. Remick" To: "Michael C. Shultz" In-Reply-To: <200501061923.51190.reso3w83@verizon.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: freebsd-ports@freebsd.org Subject: Portmanager update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: scott@sremick.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 15:54:12 -0000 Michael, Just an update: I had portupgrade -aRf running for a few days. I suffered a lock-up at one point so I used the -x flag in-conjuntion with a >= date field the 2nd time aroudn to exclude those that had already built. That finished and I have now had portmanager -u running for a few days. It's still clipping along. One thing I noticed w/ portmanager is that it's intolerant of any failures. Unlike portupgrade which will continue to compile other ports if one fails (skipping any additional ports that depended on the failed port), portmanager just stops if anything fails. A few ports that have known build issues with their newer versions I had to completely uninstall in order to get portmanager to proceed, despite the currently-installed versions working just fine. Examples: mplayer, flightgear (simgear). I would've rather had portmanager skip mplayer and anything that depended on it (nothing) instead of having to uninstall the working version, because then I could've still had a working (albeit older) one installed. Another issue I discovered with portmanager is when it depends on an older version of something when you're using a newer version, and both are in the ports tree and can't be both installed at the same time. For example: linexplore depends on Samba 2. I use Samba 3. With pkgdb -F I could forced Linexplore to depend on Samba 3 instead but the new method is to never use that. So what is one to do in a situation like this? I removed linexplore for now. I also used to use linuxbase8 when everything depended on linuxbase7, although that apparently has changed and 8 is the new default. Anyhow, thanks for your help on this... it's greatly appreciated. From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 16:57:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6885416A4CE for ; Mon, 10 Jan 2005 16:57:03 +0000 (GMT) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [128.30.28.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07D1443D1F for ; Mon, 10 Jan 2005 16:57:03 +0000 (GMT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.9/8.12.9) with ESMTP id j0AGuxaa032277 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK CN=khavrinen.lcs.mit.edu issuer=SSL+20Client+20CA); Mon, 10 Jan 2005 11:56:59 -0500 (EST) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.9/8.12.9/Submit) id j0AGumYc032274; Mon, 10 Jan 2005 11:56:48 -0500 (EST) (envelope-from wollman) Date: Mon, 10 Jan 2005 11:56:48 -0500 (EST) From: Garrett Wollman Message-Id: <200501101656.j0AGumYc032274@khavrinen.lcs.mit.edu> To: Rasmus Kaj In-Reply-To: References: <20050109054144.GA37692@xor.obsecurity.org> <200501090624.j096OJMn018874@khavrinen.lcs.mit.edu> X-Spam-Score: -19.8 () IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES X-Scanned-By: MIMEDefang 2.37 cc: ports@FreeBSD.org Subject: Re: [FreeBSD-Announce] FreeBSD ports scheduled for removal X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 16:57:03 -0000 < said: > I'm willing to submit a new version of the Arla port, but I would very > much like to see ports/74113, heimdal upgrade from 0.6.1 to 0.6.3, be > commited first. I had to do this as well. (I also build Heimdal with --disable-shared so that I could get binaries which would work on my machine.) -GAWollman From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 17:00:10 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B5F916A4CE for ; Mon, 10 Jan 2005 17:00:10 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48C4A43D4C for ; Mon, 10 Jan 2005 17:00:06 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id j0AHBpnP004821 for ; Mon, 10 Jan 2005 14:11:51 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id j0AGxjNo019391 for ; Mon, 10 Jan 2005 13:59:45 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id j0AGxj7I019390 for ports@FreeBSD.ORG; Mon, 10 Jan 2005 13:59:45 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Mon, 10 Jan 2005 13:59:45 -0300 From: Fernan Aguero To: FreeBSD Ports Message-ID: <20050110165945.GC75893@iib.unsam.edu.ar> Mail-Followup-To: FreeBSD Ports Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.6i Subject: broken INDEX? ruby segfaults when updating the pkgdb X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 17:00:10 -0000 Hi! I'm experiencing these kind of errors since a few days ago: [Updating the pkgdb in /var/db/pkg ... - 671 packages found (-5 +3) (...)[Updating the pkgdb in /var/db/pkg ... - 671 packages found (-5 +3) (...)/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:467: [BUG] Segmentation fault ruby 1.8.2 (2004-12-25) [i386-freebsd4] Abort (core dumped) I already read ports/UPDATING and tested a few things, but nothing seems to fix it. Please note also that I've been running RELENG_4_10 for some time and that I've never experienced this problem before (the entry in UPDATING is from November 2004). This is what I did to try to fix the problem: i) pkg_delete ruby, ruby-bdb1 and portupgrade; and then reinstall portupgrade manually (this installed fresh ruby and ruby-bdb1 as dependencies). The problem persists. ii) added ENV['PORTS_DBDRIVER'] = 'dbm_hash' to pkgtools.conf. The problem persists. iii) Tried to set PORTS_DBDRIVER in my shell to either dbm_hash or to bdb1_hash, as suggested in UPDATING. The problem persists. However, if I retrieve a new INDEX file, the error temporarily changes: 1) make fetchindex 2) portsdb -u 3) pkgdb -F ---> Checking the package registry database [Updating the pkgdb in /var/db/pkg ... - 671 packages found (-5 +3) (...)/usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:467:in `select': failed to allocate memory (NoMemoryError) from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:467:in `update_db' from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:592:in `open_db' from /usr/local/lib/ruby/site_ruby/1.8/pkgdb.rb:759:in `installed_pkgs' from /usr/local/sbin/pkgdb:292:in `fix_db_init' from /usr/local/sbin/pkgdb:284:in `fix_db' from /usr/local/sbin/pkgdb:231:in `main' from /usr/local/sbin/pkgdb:64:in `initialize' from /usr/local/sbin/pkgdb:64:in `new' from /usr/local/sbin/pkgdb:64:in `main' from /usr/local/sbin/pkgdb:1043 After this run, then all subsequent runs produce the segfault error reported first. I am running FreeBSD-4.10-p5 (RELENG_4_10) and I always do a 'cd /usr/ports && make fetchindex' after cvsuping my ports tree. Now my questions: is it possible, as suggested in the followups to PR ports/71558, that this could be caused by a malformed INDEX entry? http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/71558 I know that there are checks to detect INDEX breakage but correct me if I'm wrong, these only check for breaks at the 'make index' level. As suggested in the PR, perhaps the INDEX looks OK, but in some subtle way it is causing some problem(s) to portsdb.rb at parse time. I am now trying to generate INDEX instead of downloading one, but it is taking a while. Once I test with my self-generated INDEX, I will report back (according to the followup to ports/71558 posted by Nick Christenson, manually generating the index makes the problem go away.) The mentioned PR is still open ... are the portupgrade authors aware of this issues? Perhaps this is only evident for 4.x? Thanks in advance for any tip or suggestion, Fernan PS: is it safe to rm pkgdb.db in /var/db/pkg and run pkgdb afterwards? From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 17:09:14 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19FF516A4CE for ; Mon, 10 Jan 2005 17:09:14 +0000 (GMT) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id C24EE43D45 for ; Mon, 10 Jan 2005 17:09:12 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 6709 invoked from network); 10 Jan 2005 17:05:34 -0000 Received: from unknown (HELO rdsnet.ro) (62.231.74.131) by smtp1-133.rdsnet.ro with SMTP; 10 Jan 2005 17:05:34 -0000 Received: (qmail 27706 invoked from network); 10 Jan 2005 17:09:08 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (82.76.1.117) by mail.rdsnet.ro with SMTP; 10 Jan 2005 17:09:08 -0000 Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 4ACED60B5; Mon, 10 Jan 2005 16:59:42 +0200 (EET) Received: from it.buh.cameradicommercio.ro (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id DF7E82D; Mon, 10 Jan 2005 19:10:04 +0200 (EET) Date: Mon, 10 Jan 2005 19:10:04 +0200 From: Ion-Mihai Tetcu To: Alexander Leidinger Message-ID: <20050110191004.73fe13ab@it.buh.cameradicommercio.ro> In-Reply-To: <20050109185948.4470a02d@Magellan.Leidinger.net> References: <20050109143903.GC1187@zaphod.nitro.dk> <20050109174945.7f0353e4@Magellan.Leidinger.net> <20050109170219.GF1187@zaphod.nitro.dk> <20050109185948.4470a02d@Magellan.Leidinger.net> X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-ports@FreeBSD.org cc: "Simon L. Nielsen" Subject: Re: Makeing fetchindex really mirror INDEX X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 17:09:14 -0000 On Sun, 9 Jan 2005 18:59:48 +0100 Alexander Leidinger wrote: > At the time I wrote the first implementation of "fetchindex" it was > supposed to be run at the time as "update". So the PORTSDIR has to be > writable (except I've overlooked something). If this hasn't changed, > there's no need for .CURDIR. I would be extremely happy if we could have the INDEX-* file and all associated things be able to use some other dir that PORTSDIR. This way I could export /usr/ports over NFS and be able to build the INDEX locally on each client. Is this already possible and I am missing it ? Port tools already support this (e.g. portupgrade's PORTS_INDEX). And a quick grep on ports/Mk/bsd.*.mk suggest that something like this would be enough: + INDEXDIR?= ${PORTSDIR} - ${PORTSDIR}/${INDEXFILE} + ${INDEXDIR}/${INDEXFILE} And some of ports/Tools/* would have to be modified also. -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 17:10:21 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97F8016A4CE; Mon, 10 Jan 2005 17:10:21 +0000 (GMT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6889C43D1D; Mon, 10 Jan 2005 17:10:21 +0000 (GMT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([24.20.127.157]) by comcast.net (rwcrmhc11) with ESMTP id <2005011017102001300suappe>; Mon, 10 Jan 2005 17:10:21 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id E0F3417B03; Mon, 10 Jan 2005 09:10:18 -0800 (PST) Date: Mon, 10 Jan 2005 09:10:18 -0800 From: Clint Olsen To: Volker Stolz Message-ID: <20050110171018.GB49395@0lsen.net> References: <20050107231614.GA80877@0lsen.net> <20050110093542.GA60982@i2.informatik.rwth-aachen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050110093542.GA60982@i2.informatik.rwth-aachen.de> User-Agent: Mutt/1.4.2.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! cc: freebsd-ports@freebsd.org Subject: Re: mail/glbiff dumps core on 5.3-RELEASE-p2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 17:10:21 -0000 On Jan 10, Volker Stolz wrote: > If you have to software installed and build it (again) from source, > usually the binary in the port's working directory still has its > debugging symbols since they're only stripped on installation. So you > should be able to run the binary from this directory and get a meaningful > backtrace. I had to enable debugging in the Makefile: #0 0x0804ab08 in make_rgb_db_window (dpy=0x0, x=0, y=0, width=100, height=100) at glbiff.cc:452 452 scrnum = DefaultScreen(dpy); (gdb) bt #0 0x0804ab08 in make_rgb_db_window (dpy=0x0, x=0, y=0, width=100, height=100) at glbiff.cc:452 #1 0x0804b09a in main (argc=1, argv=0xbfbfed3c) at glbiff.cc:604 (gdb) I ran this as root in this case. Running as an average user now actually doesn't result in a core: Xlib: extension "GLX" missing on display ":1.0". Error: couldn't get an RGB, Double-buffered visual Program exited with code 01. I have no idea what this means. -Clint From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 17:15:00 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A22816A4CE; Mon, 10 Jan 2005 17:15:00 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DB1F43D46; Mon, 10 Jan 2005 17:15:00 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 75B5651241; Mon, 10 Jan 2005 09:14:59 -0800 (PST) Date: Mon, 10 Jan 2005 09:14:59 -0800 From: Kris Kennaway To: Ion-Mihai Tetcu Message-ID: <20050110171459.GA8756@xor.obsecurity.org> References: <20050109143903.GC1187@zaphod.nitro.dk> <20050109174945.7f0353e4@Magellan.Leidinger.net> <20050109170219.GF1187@zaphod.nitro.dk> <20050109185948.4470a02d@Magellan.Leidinger.net> <20050110191004.73fe13ab@it.buh.cameradicommercio.ro> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8t9RHnE3ZwKMSgU+" Content-Disposition: inline In-Reply-To: <20050110191004.73fe13ab@it.buh.cameradicommercio.ro> User-Agent: Mutt/1.4.2.1i cc: Alexander Leidinger cc: "Simon L. Nielsen" cc: freebsd-ports@FreeBSD.org Subject: Re: Makeing fetchindex really mirror INDEX X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 17:15:00 -0000 --8t9RHnE3ZwKMSgU+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jan 10, 2005 at 07:10:04PM +0200, Ion-Mihai Tetcu wrote: > On Sun, 9 Jan 2005 18:59:48 +0100 > Alexander Leidinger wrote: >=20 > > At the time I wrote the first implementation of "fetchindex" it was > > supposed to be run at the time as "update". So the PORTSDIR has to be > > writable (except I've overlooked something). If this hasn't changed, > > there's no need for .CURDIR. >=20 > I would be extremely happy if we could have the INDEX-* file and all > associated things be able to use some other dir that PORTSDIR. This way > I could export /usr/ports over NFS and be able to build the INDEX > locally on each client. Is this already possible and I am missing it ? >=20 > Port tools already support this (e.g. portupgrade's PORTS_INDEX). >=20 > And a quick grep on ports/Mk/bsd.*.mk suggest that something like this > would be enough: >=20 > + INDEXDIR?=3D ${PORTSDIR} >=20 > - ${PORTSDIR}/${INDEXFILE} > + ${INDEXDIR}/${INDEXFILE} >=20 > And some of ports/Tools/* would have to be modified also. Please submit a complete patch then :-) Kris --8t9RHnE3ZwKMSgU+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB4rgTWry0BWjoQKURAlTZAKD3xO3geIoQz/TNlIADuakqJK7HMwCgtgUK g3T4TuOL0SrqTdcSXktkcsQ= =IMYv -----END PGP SIGNATURE----- --8t9RHnE3ZwKMSgU+-- From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 17:33:49 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99DEB16A4CE for ; Mon, 10 Jan 2005 17:33:49 +0000 (GMT) Received: from tanuki.neverthere.org (adsl-209-204-165-200.sonic.net [209.204.165.200]) by mx1.FreeBSD.org (Postfix) with SMTP id 31E8643D54 for ; Mon, 10 Jan 2005 17:33:49 +0000 (GMT) (envelope-from mhr@neverthere.org) Received: (qmail 84327 invoked from network); 10 Jan 2005 17:46:43 -0000 Received: from unknown (HELO ?192.168.1.102?) (192.168.1.102) by tanuki.neverthere.org with SMTP; 10 Jan 2005 17:46:43 -0000 In-Reply-To: <200501100816.21276.donaldj1066@fastmail.fm> References: <20050110042727.GA1286@xor.obsecurity.org> <2C368216-62E6-11D9-80AB-000A95CD9CC8@neverthere.org> <200501100816.21276.donaldj1066@fastmail.fm> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <8421594C-632D-11D9-93B2-000A95CD9CC8@neverthere.org> Content-Transfer-Encoding: 7bit From: Michael Rubin Date: Mon, 10 Jan 2005 09:31:52 -0800 To: "Donald J. O'Neill" X-Mailer: Apple Mail (2.619) cc: ports@freebsd.org cc: freebsd-ports@freebsd.org cc: ale@freebsd.org cc: Kris Kennaway Subject: Re: FreeBSD Port: pecl-fileinfo-0.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 17:33:49 -0000 On Jan 10, 2005, at 6:16 AM, Donald J. O'Neill wrote: > I don't think this is a true statement. You're probably going to > need/want to ask a lot of questions as you find out what it is you need > to do. Actually I knew I would need more, but I did not feel appropriate to keep asking Kris I have other avenues of information to pursue. So I actually would not ask him anymore questions. I don't want to penalize him for helping me out. :-) >> If there is a RTFM I am not doing please feel free to reply with >> RTFM, or point me to the place to get 5.3 STABLE. >> > > Yes, there are. You want to look at the handbook, I would go here: > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html > > Read chapter 8, 19 and Appendicies A5 and A6. Also, /usr/src/UPDATING > and /usr/ports/UPDATING. > Cool that is what I was looking for. > Kris said you need to update to 5.3-STABLE. To do that there are some > things you're going to need to learn about. In particular, cvsup, > sup-files, and what to do then. I have a cron job running every night that updates my ports via cvsup. I am pretty comfortable with cvsup. It makes me happy. > Can you connect to the Internet using your FBSD box? I looked at the > headers on your email and noticed Apple Mail. Yeah that is easy. I am just using an apple box as my desktop. I have two bsd servers that have been rock solid for years. I am upgrading them from 4.4 to 5.3. I am finding there is much I need to refresh in my knowledge base. Thank you guys very much for your help. This was much more then I expected. mhr From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 17:33:49 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBA5E16A4CE for ; Mon, 10 Jan 2005 17:33:49 +0000 (GMT) Received: from tanuki.neverthere.org (adsl-209-204-165-200.sonic.net [209.204.165.200]) by mx1.FreeBSD.org (Postfix) with SMTP id 676FB43D55 for ; Mon, 10 Jan 2005 17:33:49 +0000 (GMT) (envelope-from mhr@neverthere.org) Received: (qmail 84327 invoked from network); 10 Jan 2005 17:46:43 -0000 Received: from unknown (HELO ?192.168.1.102?) (192.168.1.102) by tanuki.neverthere.org with SMTP; 10 Jan 2005 17:46:43 -0000 In-Reply-To: <200501100816.21276.donaldj1066@fastmail.fm> References: <20050110042727.GA1286@xor.obsecurity.org> <2C368216-62E6-11D9-80AB-000A95CD9CC8@neverthere.org> <200501100816.21276.donaldj1066@fastmail.fm> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <8421594C-632D-11D9-93B2-000A95CD9CC8@neverthere.org> Content-Transfer-Encoding: 7bit From: Michael Rubin Date: Mon, 10 Jan 2005 09:31:52 -0800 To: "Donald J. O'Neill" X-Mailer: Apple Mail (2.619) cc: ports@freebsd.org cc: freebsd-ports@freebsd.org cc: ale@freebsd.org cc: Kris Kennaway Subject: Re: FreeBSD Port: pecl-fileinfo-0.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 17:33:49 -0000 On Jan 10, 2005, at 6:16 AM, Donald J. O'Neill wrote: > I don't think this is a true statement. You're probably going to > need/want to ask a lot of questions as you find out what it is you need > to do. Actually I knew I would need more, but I did not feel appropriate to keep asking Kris I have other avenues of information to pursue. So I actually would not ask him anymore questions. I don't want to penalize him for helping me out. :-) >> If there is a RTFM I am not doing please feel free to reply with >> RTFM, or point me to the place to get 5.3 STABLE. >> > > Yes, there are. You want to look at the handbook, I would go here: > http://www.freebsd.org/doc/en_US.ISO8859-1/books/handbook/index.html > > Read chapter 8, 19 and Appendicies A5 and A6. Also, /usr/src/UPDATING > and /usr/ports/UPDATING. > Cool that is what I was looking for. > Kris said you need to update to 5.3-STABLE. To do that there are some > things you're going to need to learn about. In particular, cvsup, > sup-files, and what to do then. I have a cron job running every night that updates my ports via cvsup. I am pretty comfortable with cvsup. It makes me happy. > Can you connect to the Internet using your FBSD box? I looked at the > headers on your email and noticed Apple Mail. Yeah that is easy. I am just using an apple box as my desktop. I have two bsd servers that have been rock solid for years. I am upgrading them from 4.4 to 5.3. I am finding there is much I need to refresh in my knowledge base. Thank you guys very much for your help. This was much more then I expected. mhr From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 17:44:05 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED26916A4CE for ; Mon, 10 Jan 2005 17:44:05 +0000 (GMT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 835BB43D5C for ; Mon, 10 Jan 2005 17:44:05 +0000 (GMT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) j0AHi5MS080065 for ; Mon, 10 Jan 2005 12:44:05 -0500 (EST) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id j0AHi5bI053806 for ports@FreeBSD.org; Mon, 10 Jan 2005 12:44:05 -0500 (EST) (envelope-from kris) Date: Mon, 10 Jan 2005 12:44:05 -0500 (EST) From: Kris Kennaway Message-Id: <200501101744.j0AHi5bI053806@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed for 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 17:44:06 -0000 INDEX build failed with errors: Generating INDEX - please wait.. Done. Warning: Duplicate INDEX entry: openwebmail-2.50 Committers on the hook: ale jeh leeym nectar sem simon vs Most recent CVS update was: U MOVED U databases/mysql323-server/Makefile U databases/mysql323-server/files/patch-sql::mysqld.cc U databases/mysql323-server/files/patch-sql::mytcpd.h U databases/mysql40-server/Makefile U databases/mysql41-server/pkg-plist U databases/mysql41-server/files/patch-ndb::src::mgmclient::main.cpp U graphics/linux-tiff/Makefile U mail/Makefile U mail/openwebmail-devel/Makefile U mail/openwebmail-devel/distinfo U math/p5-Bit-Vector/Makefile U math/p5-Bit-Vector/distinfo U math/p5-Bit-Vector/pkg-plist U security/heimdal/Makefile U security/heimdal/distinfo U sysutils/k3b/Makefile U sysutils/k3b/distinfo U sysutils/k3b/pkg-message U sysutils/k3b/pkg-message5 U sysutils/k3b/files/patch-src-Makefile.in U sysutils/k3b/files/patch-src-device-k3bdevice.cpp U sysutils/k3b/files/patch-src-device-k3bdevice.h U sysutils/k3b/files/patch-src-device-k3bdevicemanager.cpp U sysutils/k3b/files/patch-src-device-k3bdevicemanager.h U sysutils/k3b/files/patch-src-device-k3bscsicommand.cpp U sysutils/k3b/files/patch-src-device-k3bscsicommand.h U sysutils/k3b/files/patch-src-rip-k3bdvdrippingprocess.cpp U sysutils/k3b/files/patch-src-rip-k3bmovieview.cpp U sysutils/k3b/files/patch-src-rip-k3btcwrapper.cpp U sysutils/k3b/files/patch-src-rip-k3bvideocdrip.cpp U www/mod_auth_mysql/Makefile From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 19:13:02 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFC0A16A4CE for ; Mon, 10 Jan 2005 19:13:02 +0000 (GMT) Received: from web53603.mail.yahoo.com (web53603.mail.yahoo.com [206.190.37.36]) by mx1.FreeBSD.org (Postfix) with SMTP id 15EDA43D49 for ; Mon, 10 Jan 2005 19:13:02 +0000 (GMT) (envelope-from scott@sremick.net) Received: (qmail 84271 invoked by uid 60001); 10 Jan 2005 19:13:01 -0000 Message-ID: <20050110191301.84269.qmail@web53603.mail.yahoo.com> Received: from [65.213.7.6] by web53603.mail.yahoo.com via HTTP; Mon, 10 Jan 2005 11:13:01 PST X-RocketYMMF: siremick Date: Mon, 10 Jan 2005 11:13:01 -0800 (PST) From: "Scott I. Remick" To: ahze@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: ports@FreeBSD.org Subject: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: scott@sremick.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 19:13:02 -0000 On FreeBSD 5.3-RELEASE w/ a ports tree cvsuped around noon EST today. Here's what I'm getting: gmake[4]: Entering directory `/usr/ports/www/nvu/work/mozilla/profile/src' nsProfile.cpp c++ -o nsProfile.o -c -DOSTYPE=\"FreeBSD5\" -DOSARCH=\"FreeBSD\" -I./../dirserviceprovider/src -I../../dist/include/xpcom -I../../dist/include/xpcom_obsolete -I../../dist/include/string -I../../dist/include/content -I../../dist/include/docshell -I../../dist/include/webbrwsr -I../../dist/include/dom -I../../dist/include/js -I../../dist/include/xpconnect -I../../dist/include/widget -I../../dist/include/necko -I../../dist/include/uriloader -I../../dist/include/intl -I../../dist/include/pref -I../../dist/include/prefmigr -I../../dist/include/appshell -I../../dist/include/uconv -I../../dist/include/windowwatcher -I../../dist/include/profdirserviceprovider -I../../dist/include/profile -I../../dist/include -I/usr/ports/www/nvu/work/mozilla/dist/include/nspr -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -fPIC -I/usr/X11R6/include -I/usr/X11R6/include -fno-rtti -fno-exceptions -Wall -Wconversion -Wpointer-arith -Wcast-align -Woverloaded-virtual -Wsynth -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-long-long -O -pipe -fshort-wchar -pipe -DNDEBUG -DTRIMMED -I/usr/X11R6/include -I/usr/X11R6/include -DMOZILLA_CLIENT -include ../../mozilla-config.h -Wp,-MD,.deps/nsProfile.pp nsProfile.cpp nsProfile.cpp: In member function `virtual nsresult nsProfile::StartupWithArgs(nsICmdLineService*, PRBool)': nsProfile.cpp:414: error: 'class nsDerivedSafe' has no member named 'SelectLocaleForProfile' nsProfile.cpp:423: error: 'class nsDerivedSafe' has no member named 'SelectLocaleForProfile' nsProfile.cpp: In member function `virtual nsresult nsProfile::CreateNewProfileWithLocales(const PRUnichar*, const PRUnichar*, const PRUnichar*, const PRUnichar*, PRBool)': nsProfile.cpp:1724: error: 'class nsDerivedSafe' has no member named 'SelectLocaleForProfile' nsProfile.cpp:1736: error: 'class nsDerivedSafe' has no member named 'GetSelectedSkin' nsProfile.cpp:1738: error: 'class nsDerivedSafe' has no member named 'SelectSkinForProfile' nsProfile.cpp:1760: error: 'class nsDerivedSafe' has no member named 'SelectLocaleForProfile' gmake[4]: *** [nsProfile.o] Error 1 gmake[4]: Leaving directory `/usr/ports/www/nvu/work/mozilla/profile/src' gmake[3]: *** [libs] Error 2 gmake[3]: Leaving directory `/usr/ports/www/nvu/work/mozilla/profile' gmake[2]: *** [tier_9] Error 2 gmake[2]: Leaving directory `/usr/ports/www/nvu/work/mozilla' gmake[1]: *** [default] Error 2 gmake[1]: Leaving directory `/usr/ports/www/nvu/work/mozilla' gmake: *** [build] Error 2 *** Error code 2 Stop in /usr/ports/www/nvu. From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 19:34:23 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3660C16A4CE for ; Mon, 10 Jan 2005 19:34:23 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ACDE43D1F for ; Mon, 10 Jan 2005 19:34:17 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id j0AJk3nP007830 for ; Mon, 10 Jan 2005 16:46:03 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id j0AJXwPm099300 for ; Mon, 10 Jan 2005 16:33:58 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id j0AJXwBH099299 for ports@FreeBSD.ORG; Mon, 10 Jan 2005 16:33:58 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Mon, 10 Jan 2005 16:33:58 -0300 From: Fernan Aguero To: FreeBSD Ports Message-ID: <20050110193358.GE22019@iib.unsam.edu.ar> Mail-Followup-To: FreeBSD Ports References: <20050110165945.GC75893@iib.unsam.edu.ar> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050110165945.GC75893@iib.unsam.edu.ar> User-Agent: Mutt/1.5.6i Subject: Re: broken INDEX? ruby segfaults when updating the pkgdb X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 19:34:23 -0000 +----[ To FreeBSD Ports (10.Jan.2005 13:59): | | PS: is it safe to rm pkgdb.db in /var/db/pkg and run pkgdb | afterwards? | +----] Replying to myself: yes, it seems to be safe to remove these files (I did a backup just in case). pkgdb will recreate them. And now everything is running smoothly again. Seems like I had a corrupted pkgdb.db. Recreating the file from scratch solved it. Fernan From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 19:43:12 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F44016A4CE for ; Mon, 10 Jan 2005 19:43:12 +0000 (GMT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9465043D58 for ; Mon, 10 Jan 2005 19:43:11 +0000 (GMT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) j0AJhBWr080239 for ; Mon, 10 Jan 2005 14:43:11 -0500 (EST) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id j0AJhBmm003870 for ports@FreeBSD.org; Mon, 10 Jan 2005 14:43:11 -0500 (EST) (envelope-from kris) Date: Mon, 10 Jan 2005 14:43:11 -0500 (EST) From: Kris Kennaway Message-Id: <200501101943.j0AJhBmm003870@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed for 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 19:43:12 -0000 INDEX build failed with errors: Generating INDEX - please wait.. Done. Warning: Duplicate INDEX entry: openwebmail-2.50 Committers on the hook: ale jeh leeym nectar sem simon vs Most recent CVS update was: From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 19:51:08 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3250E16A4CE; Mon, 10 Jan 2005 19:51:08 +0000 (GMT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0233943D53; Mon, 10 Jan 2005 19:51:08 +0000 (GMT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.13.0/8.13.0) with ESMTP id j0AJreF1027525; Mon, 10 Jan 2005 11:53:40 -0800 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.13.0/8.13.0/Submit) id j0AJrevB027524; Mon, 10 Jan 2005 11:53:40 -0800 Date: Mon, 10 Jan 2005 11:53:40 -0800 From: Brooks Davis To: Eric Anholt Message-ID: <20050110195340.GC15907@odin.ac.hmc.edu> References: <1105321614.8452.54.camel@leguin> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1SQmhf2mF2YjsYvc" Content-Disposition: inline In-Reply-To: <1105321614.8452.54.camel@leguin> User-Agent: Mutt/1.4.1i X-Virus-Scanned: by amavisd-new X-Spam-Status: No, hits=0.0 required=8.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on odin.ac.hmc.edu cc: ports@freebsd.org cc: x11@freebsd.org Subject: Re: x11 /tmp preparation rc.d script X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 19:51:08 -0000 --1SQmhf2mF2YjsYvc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jan 09, 2005 at 05:46:54PM -0800, Eric Anholt wrote: > Attached are my proposed patches to deal with the X11 ICE issue. To > review, it's required because having .ICE not owned by root is a > security issue, one that's been papered over with a printed warning and > sleep(5) in libICE for years, and has recently been changed into an > actual error by the X.Org folks. >=20 > The question is whether to stick it in base or in ports: >=20 > In favor of ports: > - Seems like the proper place. Nothing happens for non-X11 users. > In favor of base: > - Would either need to make a separate port just for the script, or > keep the script in at least 3 separate ports, disregarding the > cleanup of servers which might make for more ports affected. > - From ports, it might get started too late in the boot process, or > not at all in some installations. It turns out that doing it in localpkg isn't a problem so we might want to go ahead and do it that way. One thing I've been wondering about is, why isn't startx/xdm doing this creation? They have the required privs and are garenteed not to get in a race (since it would be with them selves). -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --1SQmhf2mF2YjsYvc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFB4t1DXY6L6fI4GtQRAhPZAJ4nVJjL/SsPcSl4BUPZsjc0wBvm8gCdERT5 xvctx2Be+0fJrBdp4Hydm0s= =K3xm -----END PGP SIGNATURE----- --1SQmhf2mF2YjsYvc-- From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 21:03:06 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99D6716A4CF for ; Mon, 10 Jan 2005 21:03:06 +0000 (GMT) Received: from freebsd.heinen.ws (cp717747-a.gelen1.lb.home.nl [84.28.169.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8B1043D31 for ; Mon, 10 Jan 2005 21:03:05 +0000 (GMT) (envelope-from niels@FreeBSD.org) Received: (qmail 34095 invoked by uid 1003); 10 Jan 2005 20:52:35 -0000 Date: Mon, 10 Jan 2005 21:52:35 +0100 From: Niels Heinen To: freebsd-ports@freebsd.org Message-ID: <20050110205235.GB33954@r0ck.mine.nu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-PGP-Key: http://people.freebsd.org/~niels/pgp/niels.asc X-PGP-Fingerprint: 75D8 4100 CF5B 3280 543F 930C 613E 71AA 5FE3 9B80 User-Agent: Mutt/1.5.6i Subject: Port testing request X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 21:03:06 -0000 Hi all, I recently committed the security/gtkpasman port (submitted by Philippe Rocques in PR ports/71050). It works fine on 5.x and I was wondering if someone, with a clean 4.x system, could do me a favor by testing it. I tested the port on my 4.x at home but unfortunately this system is a bit messed up so the test wasn't very reliable ;-) Anyway, it looked good. Thanks in advance! Niels From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 21:44:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2223316A4CE for ; Mon, 10 Jan 2005 21:44:03 +0000 (GMT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id B37AA43D45 for ; Mon, 10 Jan 2005 21:44:02 +0000 (GMT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) j0ALi2u4080405 for ; Mon, 10 Jan 2005 16:44:02 -0500 (EST) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id j0ALi2hn054184 for ports@FreeBSD.org; Mon, 10 Jan 2005 16:44:02 -0500 (EST) (envelope-from kris) Date: Mon, 10 Jan 2005 16:44:02 -0500 (EST) From: Kris Kennaway Message-Id: <200501102144.j0ALi2hn054184@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed for 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 21:44:03 -0000 INDEX build failed with errors: Generating INDEX - please wait.. Done. Warning: Duplicate INDEX entry: openwebmail-2.50 Committers on the hook: ale ijliao jeh leeym lesi lioux marcus nectar sem simon sumikawa vs Most recent CVS update was: U UPDATING U archivers/pbzip2/Makefile U archivers/pbzip2/distinfo U databases/mysql50-server/pkg-plist U databases/mysql50-server/files/patch-ndb::src::mgmclient::main.cpp U devel/gonzui/pkg-plist U irc/iip/Makefile U irc/iip/distinfo U irc/iip/files/patch-src::misc::global.h U irc/iip/files/wrapper.sh U lang/php4/Makefile U lang/php4/Makefile.ext U lang/php4/files/patch-Zend::zend.h U lang/php4/files/patch-Zend::zend_execute.c U lang/php5/Makefile.ext U lang/php5/files/patch-Zend::zend.h U net/Makefile U net/p5-Net-Blogger/Makefile U net/p5-Net-Blogger/distinfo U net/p5-Net-Blogger/pkg-descr U net/p5-Net-Blogger/pkg-plist U sysutils/nautilus-cd-burner/Makefile U x11-toolkits/Xaw3d/Makefile U x11-toolkits/Xaw3d/pkg-message From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 22:19:43 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 976B316A4CE for ; Mon, 10 Jan 2005 22:19:43 +0000 (GMT) Received: from xeon.mailwebsol.com (h216-165-190-201.216-165.unk.tds.net [216.165.190.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CDF243D39 for ; Mon, 10 Jan 2005 22:19:43 +0000 (GMT) (envelope-from drick@edigic.com) Received: from dondesktop (c68.117.128.117.mad.wi.charter.com [68.117.128.117]) by xeon.mailwebsol.com (Postfix) with ESMTP id 6539D3F4A9 for ; Mon, 10 Jan 2005 16:19:37 -0600 (CST) Message-ID: <000801c4f762$c44d1c20$0200a8c0@dondesktop> From: "Don Rick" To: Date: Mon, 10 Jan 2005 16:21:44 -0600 MIME-Version: 1.0 X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2900.2180 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: postfixadmin update X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 22:19:43 -0000 hi just curious on average when the ports get update to current apps? thanks! From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 22:21:46 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 071AE16A4CE for ; Mon, 10 Jan 2005 22:21:46 +0000 (GMT) Received: from mail.gmx.net (imap.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 0E40D43D45 for ; Mon, 10 Jan 2005 22:21:45 +0000 (GMT) (envelope-from tomonage2@gmx.de) Received: (qmail invoked by alias); 10 Jan 2005 22:21:43 -0000 Received: from pD9053F2C.dip.t-dialin.net (EHLO [192.168.0.200]) (217.5.63.44) by mail.gmx.net (mp026) with SMTP; 10 Jan 2005 23:21:43 +0100 X-Authenticated: #7843803 User-Agent: Microsoft-Entourage/11.1.0.040913 Date: Mon, 10 Jan 2005 23:21:39 +0100 From: Jonathan Weiss To: Brooks Davis Message-ID: In-Reply-To: <20050107183724.GD30931@odin.ac.hmc.edu> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit X-Y-GMX-Trusted: 0 cc: FreeBSD-Ports Subject: Re:Question about optional setting of symbolic links X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 22:21:46 -0000 > On Fri, Jan 07, 2005 at 04:14:34PM +0100, Jonathan Weiss wrote: >> Hi folks, >> >> >> I'm working on a port of foomatic-filters and I want to optionaly set up a >> symbolic link if CUPS-support is wanted (in order to register foomatic-rip >> as a filter for cups). >> >> How do I do this? >> >> I looked through the porters handbook and could not find something to >> symbolic links. >> >> I want to do something like this: >> >> #.if defined(WITH_CUPS) >> #ln -s /usr/local/bin/foomatic-rip >> /usr/local/libexec/cups/filter/foomatic-rip >> #.endif >> >> How do I remove this link later? > > Put it in your plist if you create it. You could also use pkg-install > and deinstall scripts to create it if ${LOCALBASE}/libexec/cups/filter/ > exists and destroy it if it exists when you uninstall. The nice thing > about that is that the package works without requiring that you depend > on CUPS. > > -- Brooks My makefile now looks like this: ----------------------------------------- # New ports collection makefile for: foomatic-filters # Date created: 4 January 2005 # Whom: Jonathan Weiss ----------------------------------------- And my pkg-deinstall script like this: ----------------------------------------- #!/bin/sh if [ "$2" != "POST-DEINSTALL" ]; then exit 0 fi if [ -h ${PKG_PREFIX}/libexec/cups/filter/foomatic-rip ]; then \ echo "#########################################" ; \ echo "Deleting foomatic-rip as a cups-filter..." ; \ echo "#########################################" ; \ /bin/rm ${PKG_PREFIX}/libexec/cups/filter/foomatic-rip ; \ exit 0; \ fi ----------------------------------------- Is it ok like this? Cheers, Jonathan From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 22:21:54 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B58B916A4CE for ; Mon, 10 Jan 2005 22:21:54 +0000 (GMT) Received: from melon.pingpong.net (82.milagro.bahnhof.net [195.178.168.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64B7A43D45 for ; Mon, 10 Jan 2005 22:21:54 +0000 (GMT) (envelope-from girgen@pingpong.net) Received: from localhost (localhost.pingpong.net [127.0.0.1]) by melon.pingpong.net (Postfix) with ESMTP id 9FA854AC2F; Mon, 10 Jan 2005 23:21:53 +0100 (CET) Received: from melon.pingpong.net ([127.0.0.1]) by localhost (melon.pingpong.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 47305-02-13; Mon, 10 Jan 2005 23:21:53 +0100 (CET) Received: from palle.girgensohn.se (1-2-8-5a.asp.sth.bostream.se [82.182.157.66]) by melon.pingpong.net (Postfix) with ESMTP id 666C74AC28; Mon, 10 Jan 2005 23:21:53 +0100 (CET) Date: Mon, 10 Jan 2005 23:21:53 +0100 From: Palle Girgensohn To: Chris Shenton Message-ID: <9ECC9C6E7935BD9A4796517D@palle.girgensohn.se> In-Reply-To: <86wtuzo98q.fsf@PECTOPAH.shenton.org> References: <31E01F7BFC295D702DB3798A@palle.girgensohn.se> <86wtuzo98q.fsf@PECTOPAH.shenton.org> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Virus-Scanned: by amavisd-new at pingpong.net cc: ports@freebsd.org Subject: Re: Which CMS to use for small website depolyed on FreeBSD? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 22:21:54 -0000 --On torsdag, december 30, 2004 14.51.17 -0500 Chris Shenton wrote: > Palle Girgensohn writes: > >> A bit off-topic... I'm mailing this list to check if there are any >> suggestions for a content management system for a rather small web site, >> that is will be deployed on a FreeBSD web server. Open Source or >> Commercial doesn't matter. Optimally, it will exist in the ports >> collection already. If not, I'll port it and put into the tree :-) >> >> It is not going to be a lot of modifications to the web site, no wikis >> or blogs, just a regular web site for an Opera Academy. The customer >> wants a webbrowser GUI for editing pages, and expects a CMS to manage >> the pages. > > Plone can do that out of the box; the browser-based editor is an > add-on "product" called Epoz. Both are in ports. > > I found getting Plone running, the Zope app server really, was a bit > confusing: what do you do after you do the "make install clean" from > ports? There are now three books on Plone which should help (authors: > McKay, Meloni, Cooper). > > If you go this route and get stuck, somewhere I ahve some text notes > on what I needed to do that I could send you. Chris, If you do find the notes, I'd be much obliged if you could send me a copy. I'm getting the McKay book, but it'll take some days to get it... Thanks, Palle From owner-freebsd-ports@FreeBSD.ORG Mon Jan 10 23:47:21 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AA9116A4CE for ; Mon, 10 Jan 2005 23:47:21 +0000 (GMT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id A061843D3F for ; Mon, 10 Jan 2005 23:47:20 +0000 (GMT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) j0ANlJWV080577 for ; Mon, 10 Jan 2005 18:47:19 -0500 (EST) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id j0ANlJKq004494 for ports@FreeBSD.org; Mon, 10 Jan 2005 18:47:19 -0500 (EST) (envelope-from kris) Date: Mon, 10 Jan 2005 18:47:19 -0500 (EST) From: Kris Kennaway Message-Id: <200501102347.j0ANlJKq004494@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed for 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Jan 2005 23:47:21 -0000 INDEX build failed with errors: Generating INDEX - please wait.. Done. Warning: Duplicate INDEX entry: openwebmail-2.50 Committers on the hook: ale archie ijliao jeh leeym lesi lioux marcus nectar niels sem simon sumikawa vs Most recent CVS update was: U java/jc/Makefile U korean/helvis/Makefile U korean/helvis/pkg-plist U korean/helvis/files/Makefile.inc U korean/helvis/files/patch-Makefile.mix U net-mgmt/netustad/Makefile U net-mgmt/netustad/distinfo U net-mgmt/netustad/pkg-descr U net-mgmt/netustad/pkg-message U net-mgmt/netustad/pkg-plist U net-mgmt/netustad/files/netustad.sh U security/f-prot/Makefile U security/f-prot/distinfo U security/f-prot-sig/Makefile U security/f-prot-sig/distinfo U sysutils/freedt/Makefile U sysutils/freedt/distinfo From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 00:30:09 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9D2916A4CE; Tue, 11 Jan 2005 00:30:09 +0000 (GMT) Received: from niobe.ijs.si (mail.ijs.si [193.2.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED20043D1F; Tue, 11 Jan 2005 00:30:08 +0000 (GMT) (envelope-from dejan.lesjak@ijs.si) Received: from localhost (localhost.ijs.si [127.0.0.1]) by niobe.ijs.si (Postfix) with ESMTP id 0E2F41DD4BE; Tue, 11 Jan 2005 01:30:08 +0100 (CET) Received: from niobe.ijs.si ([127.0.0.1]) by localhost (niobe.ijs.si [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 19049-05; Tue, 11 Jan 2005 01:29:28 +0100 (CET) Received: from metatron.ijs.si (metatron.ijs.si [193.2.4.152]) by niobe.ijs.si (Postfix) with ESMTP id 41F3E1DD567; Tue, 11 Jan 2005 01:29:24 +0100 (CET) Received: from idefix.ijs.si (idefix.ijs.si [193.2.4.33]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by metatron.ijs.si (Postfix) with ESMTP id 010291C0008A; Tue, 11 Jan 2005 01:29:21 +0100 (CET) From: Dejan Lesjak To: freebsd-x11@freebsd.org Date: Tue, 11 Jan 2005 01:29:20 +0100 User-Agent: KMail/1.7.2 References: <1105321614.8452.54.camel@leguin> <20050110195340.GC15907@odin.ac.hmc.edu> In-Reply-To: <20050110195340.GC15907@odin.ac.hmc.edu> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501110129.21281.dejan.lesjak@ijs.si> X-Virus-Scanned: amavisd-new at ijs.si cc: Brooks Davis cc: ports@freebsd.org cc: Eric Anholt cc: x11@freebsd.org Subject: Re: x11 /tmp preparation rc.d script X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 00:30:10 -0000 On Monday 10 of January 2005 20:53, Brooks Davis wrote: > On Sun, Jan 09, 2005 at 05:46:54PM -0800, Eric Anholt wrote: > > Attached are my proposed patches to deal with the X11 ICE issue. To > > review, it's required because having .ICE not owned by root is a > > security issue, one that's been papered over with a printed warning and > > sleep(5) in libICE for years, and has recently been changed into an > > actual error by the X.Org folks. > > > > The question is whether to stick it in base or in ports: > > > > In favor of ports: > > - Seems like the proper place. Nothing happens for non-X11 users. > > In favor of base: > > - Would either need to make a separate port just for the script, or > > keep the script in at least 3 separate ports, disregarding the > > cleanup of servers which might make for more ports affected. > > - From ports, it might get started too late in the boot process, or > > not at all in some installations. > > It turns out that doing it in localpkg isn't a problem so we might want > to go ahead and do it that way. > > One thing I've been wondering about is, why isn't startx/xdm doing > this creation? They have the required privs and are garenteed not to > get in a race (since it would be with them selves). > > -- Brooks Because clients need ICE, not the server - if you run an X app on a remote box that doesn't have X server running and connects to X server on local box, the ICE directory that is used is on remote machine - where the client is. So startx/xdm creating it wouldn't help. Dejan From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 01:44:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1E0316A4CE for ; Tue, 11 Jan 2005 01:44:03 +0000 (GMT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5379543D3F for ; Tue, 11 Jan 2005 01:44:03 +0000 (GMT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) j0B1i21s080736 for ; Mon, 10 Jan 2005 20:44:02 -0500 (EST) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id j0B1i2Jp054734 for ports@FreeBSD.org; Mon, 10 Jan 2005 20:44:02 -0500 (EST) (envelope-from kris) Date: Mon, 10 Jan 2005 20:44:02 -0500 (EST) From: Kris Kennaway Message-Id: <200501110144.j0B1i2Jp054734@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed for 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 01:44:04 -0000 INDEX build failed with errors: Generating INDEX - please wait.. Done. Warning: Duplicate INDEX entry: openwebmail-2.50 Committers on the hook: ale archie girgen ijliao jeh leeym lesi lioux lofi marcus nectar niels sem simon sumikawa vs Most recent CVS update was: U databases/phpmyadmin/Makefile U databases/phpmyadmin/distinfo U deskutils/ljcharm/Makefile U deskutils/ljcharm/distinfo U deskutils/treeline/Makefile U deskutils/treeline/distinfo U devel/eric/Makefile U devel/kodos/Makefile U devel/py-sip/Makefile U graphics/imgseek/Makefile U graphics/lphoto/Makefile U math/convertall/Makefile U misc/flyway/Makefile U net/netwib/Makefile U net/netwib/distinfo U net/qtorrent/Makefile U net-mgmt/netwag/Makefile U net-mgmt/netwag/distinfo U net-mgmt/netwox/Makefile U net-mgmt/netwox/distinfo U net-mgmt/netwox/pkg-plist U security/vuxml/vuln.xml U sysutils/luma/Makefile U www/plone/Makefile U www/plone/distinfo U x11-toolkits/py-kde/Makefile U x11-toolkits/py-qt/Makefile U x11-toolkits/py-qt/files/patch-sip::qt::qstring.sip From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 03:47:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE61616A4E5 for ; Tue, 11 Jan 2005 03:47:29 +0000 (GMT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 101D143D2D for ; Tue, 11 Jan 2005 03:47:29 +0000 (GMT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) j0B3lSrg080928 for ; Mon, 10 Jan 2005 22:47:28 -0500 (EST) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id j0B3lSRc004943 for ports@FreeBSD.org; Mon, 10 Jan 2005 22:47:28 -0500 (EST) (envelope-from kris) Date: Mon, 10 Jan 2005 22:47:28 -0500 (EST) From: Kris Kennaway Message-Id: <200501110347.j0B3lSRc004943@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX now builds successfully on 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 03:47:29 -0000 From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 09:24:49 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68F9216A4CE for ; Tue, 11 Jan 2005 09:24:49 +0000 (GMT) Received: from files.jawa.at (jawa.at [213.229.17.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6B3843D55 for ; Tue, 11 Jan 2005 09:24:48 +0000 (GMT) (envelope-from mranner@inode.at) Received: from localhost (localhost [127.0.0.1]) by files.jawa.at (Postfix) with ESMTP id 8F3CBFDCD; Tue, 11 Jan 2005 10:24:46 +0100 (CET) Received: from files.jawa.at ([127.0.0.1]) by localhost (files.jawa.at [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01023-06; Tue, 11 Jan 2005 10:24:43 +0100 (CET) Received: by files.jawa.at (Postfix, from userid 60) id D9EC5FDCC; Tue, 11 Jan 2005 10:24:43 +0100 (CET) Received: from walgrind.jawa.at (walgrind.jawa.at [192.168.200.56]) by files.jawa.at (Postfix) with ESMTP id BDB93FDCA; Tue, 11 Jan 2005 10:24:35 +0100 (CET) From: Michael Ranner To: freebsd-ports@freebsd.org Date: Tue, 11 Jan 2005 10:24:34 +0100 User-Agent: KMail/1.7.1 References: <6795649E-6280-11D9-812A-000D936EFA20@meer.net> <20050109214709.GC95689@xor.obsecurity.org> <20050109234153.GB28535@meer.net> In-Reply-To: <20050109234153.GB28535@meer.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501111024.34665.mranner@inode.at> X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on files.jawa.at X-Spam-Level: X-Spam-Status: No, score=-5.5 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.0.1 X-Virus-Scanned: amavisd-new at jawa.at cc: Joe Rhett Subject: Re: FreeBSD Port: mod_frontpage-1.6.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 09:24:49 -0000 Am Montag, 10. Januar 2005 00:41 schrieb Joe Rhett: > On Sun, Jan 09, 2005 at 01:47:09PM -0800, Kris Kennaway wrote: > > Someone should submit an update to make the frontpage ports buildable > > again. They'll probably be removed from the ports tree otherwise. > > I already have. I would have submitted a patchy, but I haven't figured out > how to get the build system to download the URL for rtr's frontpage > properly. It works fine from the command line > > http://www.rtr.com/fpsupport/cgi-bin/fp2002sr1download.cgi?email=ports@free >bsd.org&First_Name=freebsd&Last_Name=ports&version=fp50.freebsd.tar.Z > > But putting this in the Makefile doesn't work: > > MASTER_SITES=http://www.rtr.com/fpsupport/cgi-bin/fp2002sr1download.cgi?ema >il=ports@freebsd.org&First_Name=freebsd&Last_Name=ports&version= > Because users have to accept the EULA, you should leave downloading this file to the user like the java ports do. Regards -- /\/\ichael Ranner mranner@inode.at - mranner@jawa.at - mranner@bugat.at ----------------------------------------------------- BSD Usergroup Austria - http://www.bugat.at/ -----BEGIN GEEK CODE BLOCK----- GIT/CS/AT dx(-) s+:(++:) a- C++ UBLVS++++$ P++>+++$ L-(+)$ E--- W+++$ N+(++) o-- K- w--()$ O-(--) M@ V-(--) PS+>++ PE(-) Y+ PGP(-) t+ 5+ X+++(++++) R* tv++ b+(++) DI++ D-(--) G- e h--(*) r++ y? ------END GEEK CODE BLOCK------ From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 09:36:50 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1FF416A4CE for ; Tue, 11 Jan 2005 09:36:50 +0000 (GMT) Received: from lambermont.dyndns.org (j226018.upc-j.chello.nl [24.132.226.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6774F43D31 for ; Tue, 11 Jan 2005 09:36:50 +0000 (GMT) (envelope-from hans@lambermont.dyndns.org) Received: by lambermont.dyndns.org (Postfix, from userid 1001) id 3D69695863; Tue, 11 Jan 2005 10:36:49 +0100 (CET) Date: Tue, 11 Jan 2005 10:36:49 +0100 To: ports@FreeBSD.org Message-ID: <20050111093649.GA54455@leia.lambermont.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i From: hans@lambermont.dyndns.org (Hans Lambermont) Subject: linphone dependency missing ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 09:36:50 -0000 Hi, portupgrade linphone failed on me with gmake[2]: *** No rule to make target `-llinphonegnome', needed by `linphone'. Stop. Looking at the makefile I noticed a dependency net/linphone-base, but this was not needed by previous linphone ports and thus not installed on my system. Portinstall net/linphone-base solved the portupgrade linphone problem. Looks like a dependency is missing in net/linphone/Makefile . regards, Hans Lambermont -- http://hans.dse.nl/ () ASCII-ribbon campaign against vCards, /\ HTML-mail and proprietary formats. From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 09:38:59 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24B3B16A4CE; Tue, 11 Jan 2005 09:38:59 +0000 (GMT) Received: from mailout01.sul.t-online.com (mailout01.sul.t-online.com [194.25.134.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88A6843D45; Tue, 11 Jan 2005 09:38:58 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from fwd01.aul.t-online.de by mailout01.sul.t-online.com with smtp id 1CoIUJ-00024r-03; Tue, 11 Jan 2005 10:38:55 +0100 Received: from Andro-Beta.Leidinger.net (XH3bf+ZGrex8R-nlguA1f70I8N2SyA5dWxDxViD2e9nFqf0PWiaJUI@[217.83.29.162]) by fmrl01.sul.t-online.com with esmtp id 1CoIU8-0rWDAG0; Tue, 11 Jan 2005 10:38:44 +0100 Received: from Andro-Beta.Leidinger.net (localhost [127.0.0.1]) j0B9c16Y023351; Tue, 11 Jan 2005 10:38:01 +0100 (CET) (envelope-from Alexander@Leidinger.net) Received: (from www@localhost) by Andro-Beta.Leidinger.net (8.13.1/8.13.1/Submit) id j0B9c06X023350; Tue, 11 Jan 2005 10:38:00 +0100 (CET) (envelope-from Alexander@Leidinger.net) X-Authentication-Warning: Andro-Beta.Leidinger.net: www set sender to Alexander@Leidinger.net using -f Received: from 141.113.101.32 ([141.113.101.32]) by netchild.homeip.net (IMP) with HTTP for ; Tue, 11 Jan 2005 10:38:00 +0100 Message-ID: <1105436280.41e39e7846ca5@netchild.homeip.net> Date: Tue, 11 Jan 2005 10:38:00 +0100 From: Alexander Leidinger To: Ion-Mihai Tetcu References: <20050109143903.GC1187@zaphod.nitro.dk> <20050109174945.7f0353e4@Magellan.Leidinger.net> <20050109170219.GF1187@zaphod.nitro.dk> <20050109185948.4470a02d@Magellan.Leidinger.net> <20050110191004.73fe13ab@it.buh.cameradicommercio.ro> In-Reply-To: <20050110191004.73fe13ab@it.buh.cameradicommercio.ro> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.6 / FreeBSD-4.10 X-Originating-IP: 141.113.101.32 X-ID: XH3bf+ZGrex8R-nlguA1f70I8N2SyA5dWxDxViD2e9nFqf0PWiaJUI@t-dialin.net X-TOI-MSGID: 2034f8e0-380b-405e-a306-b23b9de5ed65 cc: freebsd-ports@FreeBSD.org cc: "Simon L. Nielsen" Subject: Re: Makeing fetchindex really mirror INDEX X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 09:38:59 -0000 Zitat von Ion-Mihai Tetcu : > I would be extremely happy if we could have the INDEX-* file and all > associated things be able to use some other dir that PORTSDIR. This way > I could export /usr/ports over NFS and be able to build the INDEX > locally on each client. Is this already possible and I am missing it ? To generate the index you use the index target. We don't touch it with our patches. The fetchindex target fetches the already generated index. To have a consistent ports tree you should use the fetchindex target together with the update target, so I don't see where it would make sense to support a read-only ports tree in the fetchindex target. Bye, Alexander. -- http://www.Leidinger.net/ Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org/ netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 11:24:17 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12F0B16A4CE for ; Tue, 11 Jan 2005 11:24:17 +0000 (GMT) Received: from eskimo.tundraware.com (eskimo.tundraware.com [64.2.229.164]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DB8E43D53 for ; Tue, 11 Jan 2005 11:24:14 +0000 (GMT) (envelope-from tundra@tundraware.com) Received: from [192.168.0.2] (viper.tundraware.com [192.168.0.2]) (authenticated bits=0) by eskimo.tundraware.com (8.13.1/8.13.1) with ESMTP id j0BBOBfu019591 (version=TLSv1/SSLv3 cipher=DHE-DSS-AES256-SHA bits=256 verify=NO) for ; Tue, 11 Jan 2005 05:24:11 -0600 (CST) (envelope-from tundra@tundraware.com) Message-ID: <41E3B75B.4030203@tundraware.com> Date: Tue, 11 Jan 2005 05:24:11 -0600 From: Tim Daneliuk Organization: TundraWare Inc. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.5) Gecko/20041217 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org X-Enigmail-Version: 0.90.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-TundraWare-MailScanner-Information: Please contact the ISP for more information X-TundraWare-MailScanner: Found to be clean X-MailScanner-From: tundra@tundraware.com Subject: Ports Retrieval And https X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: tundra@tundraware.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 11:24:17 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 I have recently migrated the site that hosts my FreeBSD ports from http to https - I automatically redirect the http requests to the equivalent https URL. This seems to have broken all my ports which now report that the files have been 'Moved Temporarily'. Changing the master site entry to use https instead of http seems to fix this problem. So, I guess the question is - is there some simple way to fix this without having to resubmit each of the ports in question. Interestingly, a command line 'fetch' to the http://... URL seems to work fine. Ideas? - -- - ---------------------------------------------------------------------------- Tim Daneliuk tundra@tundraware.com PGP Key: http://www.tundraware.com/PGP/ -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iD8DBQFB47dayjgA+Mact+YRAqpBAJ9HYaWY/bSmJ25MSqPV+ZftcZODDACeOJXC TMC+vqcMrOu9xN/EEnI3fXQ= =Xvce -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 11:41:48 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2690016A4CE for ; Tue, 11 Jan 2005 11:41:48 +0000 (GMT) Received: from happygiraffe.net (happygiraffe.net [81.6.215.59]) by mx1.FreeBSD.org (Postfix) with ESMTP id C70CF43D1F for ; Tue, 11 Jan 2005 11:41:47 +0000 (GMT) (envelope-from dom@happygiraffe.net) Received: from localhost (localhost.happygiraffe.net [127.0.0.1]) by happygiraffe.net (Postfix) with ESMTP id 52C87BB02; Tue, 11 Jan 2005 11:41:37 +0000 (GMT) Received: from happygiraffe.net ([127.0.0.1]) by localhost (ppe.happygiraffe.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 16453-01-3; Tue, 11 Jan 2005 11:41:36 +0000 (GMT) Received: by happygiraffe.net (Postfix, from userid 1001) id 2DA52BA6A; Tue, 11 Jan 2005 11:41:36 +0000 (GMT) Date: Tue, 11 Jan 2005 11:41:36 +0000 To: Tim Daneliuk Message-ID: <20050111114136.GA22630@ppe.happygiraffe.net> References: <41E3B75B.4030203@tundraware.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41E3B75B.4030203@tundraware.com> User-Agent: Mutt/1.5.6i From: dom@happygiraffe.net (Dominic Mitchell) X-Virus-Scanned: amavisd-new at happygiraffe.net cc: freebsd-ports@freebsd.org Subject: Re: Ports Retrieval And https X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 11:41:48 -0000 On Tue, Jan 11, 2005 at 05:24:11AM -0600, Tim Daneliuk wrote: > I have recently migrated the site that hosts my FreeBSD ports from http to > https - I automatically redirect the http requests to the equivalent https > URL. > > This seems to have broken all my ports which now report that the files > have been 'Moved Temporarily'. Changing the master site entry to use > https instead of http seems to fix this problem. > > So, I guess the question is - is there some simple way to fix this without > having to resubmit each of the ports in question. Interestingly, > a command line 'fetch' to the http://... URL seems to work fine. bsd.port.mk specifies FETCH_CMD as "/usr/bin/fetch -ARr". The -A flag says to not follow redirects. However, it only does so on a 302 request according to the manual. You might get some luck by issuing a 301 permanent redirect instead. But updating the ports is probably a good idea anyway. -Dom From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 15:36:45 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 068E516A4CE; Tue, 11 Jan 2005 15:36:45 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63C9943D2D; Tue, 11 Jan 2005 15:36:44 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from focus.dantavious.com (pcp09757877pcs.gambrl01.md.comcast.net[68.48.122.129]) by comcast.net (sccrmhc13) with ESMTP id <200501111536430160025895e>; Tue, 11 Jan 2005 15:36:43 +0000 From: Derrick Edwards To: freebsd-ports@freebsd.org, scott@sremick.net Date: Tue, 11 Jan 2005 10:52:25 -0500 User-Agent: KMail/1.7.2 References: <20050110191301.84269.qmail@web53603.mail.yahoo.com> In-Reply-To: <20050110191301.84269.qmail@web53603.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501111052.26435.dantavious@comcast.net> cc: ports@freebsd.org cc: ahze@freebsd.org Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 15:36:45 -0000 I am seeing the exact same thing.. any ideas Derrick > On FreeBSD 5.3-RELEASE w/ a ports tree cvsuped around noon EST today. > Here's what I'm getting: > > gmake[4]: Entering directory `/usr/ports/www/nvu/work/mozilla/profile/src' > nsProfile.cpp > c++ -o nsProfile.o -c -DOSTYPE=\"FreeBSD5\" -DOSARCH=\"FreeBSD\" > -I./../dirserviceprovider/src -I../../dist/include/xpcom > -I../../dist/include/xpcom_obsolete -I../../dist/include/string > -I../../dist/include/content -I../../dist/include/docshell > -I../../dist/include/webbrwsr -I../../dist/include/dom > -I../../dist/include/js -I../../dist/include/xpconnect > -I../../dist/include/widget -I../../dist/include/necko > -I../../dist/include/uriloader -I../../dist/include/intl > -I../../dist/include/pref -I../../dist/include/prefmigr > -I../../dist/include/appshell -I../../dist/include/uconv > -I../../dist/include/windowwatcher > -I../../dist/include/profdirserviceprovider -I../../dist/include/profile > -I../../dist/include -I/usr/ports/www/nvu/work/mozilla/dist/include/nspr > -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -fPIC > -I/usr/X11R6/include -I/usr/X11R6/include -fno-rtti -fno-exceptions -Wall > -Wconversion -Wpointer-arith -Wcast-align -Woverloaded-virtual -Wsynth > -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-long-long -O -pipe > -fshort-wchar -pipe -DNDEBUG -DTRIMMED -I/usr/X11R6/include > -I/usr/X11R6/include -DMOZILLA_CLIENT -include ../../mozilla-config.h > -Wp,-MD,.deps/nsProfile.pp nsProfile.cpp > nsProfile.cpp: In member function `virtual nsresult > nsProfile::StartupWithArgs(nsICmdLineService*, PRBool)': > nsProfile.cpp:414: error: 'class nsDerivedSafe' has > no member named 'SelectLocaleForProfile' > nsProfile.cpp:423: error: 'class nsDerivedSafe' has > no member named 'SelectLocaleForProfile' > nsProfile.cpp: In member function `virtual nsresult > nsProfile::CreateNewProfileWithLocales(const PRUnichar*, const PRUnichar*, > const PRUnichar*, const PRUnichar*, PRBool)': > nsProfile.cpp:1724: error: 'class nsDerivedSafe' has > no member named 'SelectLocaleForProfile' > nsProfile.cpp:1736: error: 'class nsDerivedSafe' has > no member named 'GetSelectedSkin' > nsProfile.cpp:1738: error: 'class nsDerivedSafe' has > no member named 'SelectSkinForProfile' > nsProfile.cpp:1760: error: 'class nsDerivedSafe' has > no member named 'SelectLocaleForProfile' > gmake[4]: *** [nsProfile.o] Error 1 > gmake[4]: Leaving directory `/usr/ports/www/nvu/work/mozilla/profile/src' > gmake[3]: *** [libs] Error 2 > gmake[3]: Leaving directory `/usr/ports/www/nvu/work/mozilla/profile' > gmake[2]: *** [tier_9] Error 2 > gmake[2]: Leaving directory `/usr/ports/www/nvu/work/mozilla' > gmake[1]: *** [default] Error 2 > gmake[1]: Leaving directory `/usr/ports/www/nvu/work/mozilla' > gmake: *** [build] Error 2 > *** Error code 2 > > Stop in /usr/ports/www/nvu. > > _______________________________________________ > 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 Jan 11 15:36:45 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 068E516A4CE; Tue, 11 Jan 2005 15:36:45 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63C9943D2D; Tue, 11 Jan 2005 15:36:44 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from focus.dantavious.com (pcp09757877pcs.gambrl01.md.comcast.net[68.48.122.129]) by comcast.net (sccrmhc13) with ESMTP id <200501111536430160025895e>; Tue, 11 Jan 2005 15:36:43 +0000 From: Derrick Edwards To: freebsd-ports@freebsd.org, scott@sremick.net Date: Tue, 11 Jan 2005 10:52:25 -0500 User-Agent: KMail/1.7.2 References: <20050110191301.84269.qmail@web53603.mail.yahoo.com> In-Reply-To: <20050110191301.84269.qmail@web53603.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501111052.26435.dantavious@comcast.net> cc: ports@freebsd.org cc: ahze@freebsd.org Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 15:36:45 -0000 I am seeing the exact same thing.. any ideas Derrick > On FreeBSD 5.3-RELEASE w/ a ports tree cvsuped around noon EST today. > Here's what I'm getting: > > gmake[4]: Entering directory `/usr/ports/www/nvu/work/mozilla/profile/src' > nsProfile.cpp > c++ -o nsProfile.o -c -DOSTYPE=\"FreeBSD5\" -DOSARCH=\"FreeBSD\" > -I./../dirserviceprovider/src -I../../dist/include/xpcom > -I../../dist/include/xpcom_obsolete -I../../dist/include/string > -I../../dist/include/content -I../../dist/include/docshell > -I../../dist/include/webbrwsr -I../../dist/include/dom > -I../../dist/include/js -I../../dist/include/xpconnect > -I../../dist/include/widget -I../../dist/include/necko > -I../../dist/include/uriloader -I../../dist/include/intl > -I../../dist/include/pref -I../../dist/include/prefmigr > -I../../dist/include/appshell -I../../dist/include/uconv > -I../../dist/include/windowwatcher > -I../../dist/include/profdirserviceprovider -I../../dist/include/profile > -I../../dist/include -I/usr/ports/www/nvu/work/mozilla/dist/include/nspr > -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -fPIC > -I/usr/X11R6/include -I/usr/X11R6/include -fno-rtti -fno-exceptions -Wall > -Wconversion -Wpointer-arith -Wcast-align -Woverloaded-virtual -Wsynth > -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-long-long -O -pipe > -fshort-wchar -pipe -DNDEBUG -DTRIMMED -I/usr/X11R6/include > -I/usr/X11R6/include -DMOZILLA_CLIENT -include ../../mozilla-config.h > -Wp,-MD,.deps/nsProfile.pp nsProfile.cpp > nsProfile.cpp: In member function `virtual nsresult > nsProfile::StartupWithArgs(nsICmdLineService*, PRBool)': > nsProfile.cpp:414: error: 'class nsDerivedSafe' has > no member named 'SelectLocaleForProfile' > nsProfile.cpp:423: error: 'class nsDerivedSafe' has > no member named 'SelectLocaleForProfile' > nsProfile.cpp: In member function `virtual nsresult > nsProfile::CreateNewProfileWithLocales(const PRUnichar*, const PRUnichar*, > const PRUnichar*, const PRUnichar*, PRBool)': > nsProfile.cpp:1724: error: 'class nsDerivedSafe' has > no member named 'SelectLocaleForProfile' > nsProfile.cpp:1736: error: 'class nsDerivedSafe' has > no member named 'GetSelectedSkin' > nsProfile.cpp:1738: error: 'class nsDerivedSafe' has > no member named 'SelectSkinForProfile' > nsProfile.cpp:1760: error: 'class nsDerivedSafe' has > no member named 'SelectLocaleForProfile' > gmake[4]: *** [nsProfile.o] Error 1 > gmake[4]: Leaving directory `/usr/ports/www/nvu/work/mozilla/profile/src' > gmake[3]: *** [libs] Error 2 > gmake[3]: Leaving directory `/usr/ports/www/nvu/work/mozilla/profile' > gmake[2]: *** [tier_9] Error 2 > gmake[2]: Leaving directory `/usr/ports/www/nvu/work/mozilla' > gmake[1]: *** [default] Error 2 > gmake[1]: Leaving directory `/usr/ports/www/nvu/work/mozilla' > gmake: *** [build] Error 2 > *** Error code 2 > > Stop in /usr/ports/www/nvu. > > _______________________________________________ > 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 Jan 11 17:08:50 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7225316A4CE for ; Tue, 11 Jan 2005 17:08:50 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E76D43D3F for ; Tue, 11 Jan 2005 17:08:49 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id j0BHKSnP023217 for ; Tue, 11 Jan 2005 14:20:28 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id j0BH8SSV096453 for ; Tue, 11 Jan 2005 14:08:28 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id j0BH8SZc096450 for ports@FreeBSD.ORG; Tue, 11 Jan 2005 14:08:28 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Tue, 11 Jan 2005 14:08:28 -0300 From: Fernan Aguero To: FreeBSD Ports Message-ID: <20050111170828.GC8076@iib.unsam.edu.ar> Mail-Followup-To: FreeBSD Ports Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.6i Subject: how to test ports before submission? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 17:08:50 -0000 Hi! Perhaps this is a FAQ, but I've been unable to find a satisfactory answer. I want to install a port which is not yet in the ports tree, (i.e. it will not be in the INDEX either) and I do not want pkgdb, portupgrade, etc. to complain. I always test the port by installing in another PREFIX, and registering itself in a mock (empty) PKG_DBDIR. But once it builds and installs fine, and before submission, I would like to use it for a while. That is, install it in my usual PREFIX (/usr/local) and register it in /var/db/pkg. Is this possible? (I mean, without having to edit pkgtools.conf and perhaps other files each time) Thanks, Fernan PS: or perhaps just want to know how other porter's deal with this :) From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 17:27:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F70D16A4CE for ; Tue, 11 Jan 2005 17:27:03 +0000 (GMT) Received: from mailhub01.unibe.ch (mailhub01-skge0.unibe.ch [130.92.9.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC76A43D48 for ; Tue, 11 Jan 2005 17:27:02 +0000 (GMT) (envelope-from roth@droopy.unibe.ch) Received: from localhost (scanhub03-eth0.unibe.ch [130.92.254.67]) by mailhub01.unibe.ch (Postfix) with ESMTP id 31C9F25BB36; Tue, 11 Jan 2005 18:27:01 +0100 (MET) Received: from mailhub01.unibe.ch ([130.92.9.52]) by localhost (scanhub03.unibe.ch [130.92.254.67]) (amavisd-new, port 10024) with LMTP id 29620-02-96; Tue, 11 Jan 2005 18:26:56 +0100 (CET) Received: from asterix.unibe.ch (asterix.unibe.ch [130.92.64.4]) by mailhub01.unibe.ch (Postfix) with ESMTP id 5671525BB2C; Tue, 11 Jan 2005 18:26:59 +0100 (MET) Received: from droopy.unibe.ch (droopy [130.92.64.20]) by asterix.unibe.ch (8.11.7p1+Sun/8.11.7) with ESMTP id j0BHQwq29472; Tue, 11 Jan 2005 18:26:58 +0100 (MET) Received: (from roth@localhost) by droopy.unibe.ch (8.12.10+Sun/8.12.9/Submit) id j0BHQr5p004091; Tue, 11 Jan 2005 18:26:53 +0100 (MET) Date: Tue, 11 Jan 2005 18:26:53 +0100 From: Tobias Roth To: Fernan Aguero Message-ID: <20050111172653.GA4074@droopy.unibe.ch> References: <20050111170828.GC8076@iib.unsam.edu.ar> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050111170828.GC8076@iib.unsam.edu.ar> User-Agent: Mutt/1.4i X-message-flag: Warning! Using Outlook is insecure and promotes virus distribution. Please use a different email client. X-Virus-checked: by University of Berne cc: ports@freebsd.org Subject: Re: how to test ports before submission? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 17:27:03 -0000 On Tue, Jan 11, 2005 at 02:08:28PM -0300, Fernan Aguero wrote: > > I want to install a port which is not yet in the ports tree, > (i.e. it will not be in the INDEX either) and I do not want > pkgdb, portupgrade, etc. to complain. What sort of errors do you get? I do it all the time, and I only get some warnings that can be ignored. greets, t. From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 17:53:04 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67AA916A4CE for ; Tue, 11 Jan 2005 17:53:04 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FAC443D3F for ; Tue, 11 Jan 2005 17:52:59 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id j0BI4YnP023765; Tue, 11 Jan 2005 15:04:34 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id j0BHqZQL007086; Tue, 11 Jan 2005 14:52:35 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id j0BHqTiL007069; Tue, 11 Jan 2005 14:52:29 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Tue, 11 Jan 2005 14:52:29 -0300 From: Fernan Aguero To: Tobias Roth Message-ID: <20050111175229.GD8076@iib.unsam.edu.ar> Mail-Followup-To: Tobias Roth , ports@freebsd.org References: <20050111170828.GC8076@iib.unsam.edu.ar> <20050111172653.GA4074@droopy.unibe.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050111172653.GA4074@droopy.unibe.ch> User-Agent: Mutt/1.5.6i cc: ports@freebsd.org Subject: Re: how to test ports before submission? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 17:53:04 -0000 +----[ Tobias Roth (11.Jan.2005 14:33): | | On Tue, Jan 11, 2005 at 02:08:28PM -0300, Fernan Aguero wrote: | > | > I want to install a port which is not yet in the ports tree, | > (i.e. it will not be in the INDEX either) and I do not want | > pkgdb, portupgrade, etc. to complain. | | What sort of errors do you get? I do it all the time, and I only | get some warnings that can be ignored. | | greets, t. | +----] I do not get any errors, just warnings, notices. Of course, I can live with this, but I started to think that maybe I'm missing something obvious, and that everyone else is doing this in a wiser way :) Fernan From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 17:53:23 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 053B616A4CE for ; Tue, 11 Jan 2005 17:53:23 +0000 (GMT) Received: from out005.verizon.net (out005pub.verizon.net [206.46.170.143]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63CC643D46 for ; Tue, 11 Jan 2005 17:53:22 +0000 (GMT) (envelope-from reso3w83@verizon.net) Received: from ringworm.mechee.com ([4.26.84.7]) by out005.verizon.net ESMTP <20050111175321.XTQC28362.out005.verizon.net@ringworm.mechee.com>; Tue, 11 Jan 2005 11:53:21 -0600 Received: by ringworm.mechee.com (Postfix, from userid 1001) id 8DC4E2CE741; Tue, 11 Jan 2005 09:50:01 -0800 (PST) From: "Michael C. Shultz" To: FreeBSD Ports Date: Tue, 11 Jan 2005 09:49:59 -0800 User-Agent: KMail/1.7.2 References: <20050111170828.GC8076@iib.unsam.edu.ar> In-Reply-To: <20050111170828.GC8076@iib.unsam.edu.ar> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501110950.00729.reso3w83@verizon.net> X-Authentication-Info: Submitted using SMTP AUTH at out005.verizon.net from [4.26.84.7] at Tue, 11 Jan 2005 11:53:21 -0600 Subject: Re: how to test ports before submission? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 17:53:23 -0000 On Tuesday 11 January 2005 09:08 am, Fernan Aguero wrote: > Hi! > > Perhaps this is a FAQ, but I've been unable to find a > satisfactory answer. > > I want to install a port which is not yet in the ports tree, > (i.e. it will not be in the INDEX either) and I do not want > pkgdb, portupgrade, etc. to complain. > > I always test the port by installing in another PREFIX, and > registering itself in a mock (empty) PKG_DBDIR. But once it > builds and installs fine, and before submission, I would > like to use it for a while. That is, install it in my usual > PREFIX (/usr/local) and register it in /var/db/pkg. > > Is this possible? (I mean, without having to edit > pkgtools.conf and perhaps other files each time) > > Thanks, > > Fernan > > PS: or perhaps just want to know how other porter's deal > with this :) > _______________________________________________ > 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" excerpt from man 1 portmanager Here is how to handle locally installed ports if you plan to take advantage of some of FreeBSD's port system features: ######################################################################## # Makefile from /usr/ports/local/sysutils/somelocalportname/Makefile ######################################################################## PORTNAME= somelocalportname PORTVERSION= 0.1.0 CATEGORIES= local/sysutils # for FreeBSD to accept our # local category VALID_CATEGORIES+= ${CATEGORIES} Simply add a "local" directory to /usr/ports and install your local ports under that directory. Where a normal FreeBSD port may be in "sysutils/{portname} the example above would reside in "local/sysu- tils/{portname}". then in /etc/make.conf set prefix for the local port something like (an example of one I use): #Because I don't want my development version of portmanager #installing on top of the version in the ports tree .if ${.CURDIR:M*/local/sysutils/portmanager} PREFIX=/home/mike/TEMP .endif -Mike From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 18:12:31 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC62716A4CE for ; Tue, 11 Jan 2005 18:12:31 +0000 (GMT) Received: from mailhub01.unibe.ch (mailhub01.unibe.ch [130.92.9.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65DD043D4C for ; Tue, 11 Jan 2005 18:12:31 +0000 (GMT) (envelope-from roth@droopy.unibe.ch) Received: from localhost (scanhub01-eth0.unibe.ch [130.92.254.65]) by mailhub01.unibe.ch (Postfix) with ESMTP id 0311D25BB25 for ; Tue, 11 Jan 2005 19:12:30 +0100 (MET) Received: from mailhub01.unibe.ch ([130.92.9.52]) by localhost (scanhub01 [130.92.254.65]) (amavisd-new, port 10024) with LMTP id 26689-03-2 for ; Tue, 11 Jan 2005 19:12:31 +0100 (CET) Received: from asterix.unibe.ch (asterix.unibe.ch [130.92.64.4]) by mailhub01.unibe.ch (Postfix) with ESMTP id C369D25BB51 for ; Tue, 11 Jan 2005 19:12:27 +0100 (MET) Received: from droopy.unibe.ch (droopy [130.92.64.20]) by asterix.unibe.ch (8.11.7p1+Sun/8.11.7) with ESMTP id j0BICRq08105 for ; Tue, 11 Jan 2005 19:12:27 +0100 (MET) Received: (from roth@localhost) by droopy.unibe.ch (8.12.10+Sun/8.12.9/Submit) id j0BICPaK004459 for ports@freebsd.org; Tue, 11 Jan 2005 19:12:25 +0100 (MET) Date: Tue, 11 Jan 2005 19:12:25 +0100 From: Tobias Roth To: ports@freebsd.org Message-ID: <20050111181225.GB4361@droopy.unibe.ch> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-message-flag: Warning! Using Outlook is insecure and promotes virus distribution. Please use a different email client. X-Virus-checked: by University of Berne Subject: help fixing amd64 build error (login.app/windowmaker) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 18:12:31 -0000 Hi http://pointyhat.freebsd.org/errorlogs/amd64-errorlogs/e.5.2004100719/login.app-2.1.1.log configure barfs like this: checking for WMReadPropListFromFile in -lWUtil... no configure: error: Can't find WUtil library: Please install Window Maker ===> Script "configure" failed unexpectedly. WMReadPropListFromFile is provided by both libWINGs.a and libWUtil.a, which come with windowmaker. but then, the build logs claim that windowmaker has been added, as it should. does someone have an idea what is going on here? the error only shows on amd64 btw. thanks, t. From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 18:42:37 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B49A16A4CE for ; Tue, 11 Jan 2005 18:42:37 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id C021743D2D for ; Tue, 11 Jan 2005 18:42:35 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id j0BIsDnP024553; Tue, 11 Jan 2005 15:54:13 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id j0BIgEnU029189; Tue, 11 Jan 2005 15:42:14 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id j0BIgEm3029188; Tue, 11 Jan 2005 15:42:14 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Tue, 11 Jan 2005 15:42:14 -0300 From: Fernan Aguero To: "Michael C. Shultz" Message-ID: <20050111184214.GF8076@iib.unsam.edu.ar> Mail-Followup-To: "Michael C. Shultz" , FreeBSD Ports References: <20050111170828.GC8076@iib.unsam.edu.ar> <200501110950.00729.reso3w83@verizon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200501110950.00729.reso3w83@verizon.net> User-Agent: Mutt/1.5.6i cc: FreeBSD Ports Subject: Re: how to test ports before submission? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 18:42:37 -0000 +----[ Michael C. Shultz (11.Jan.2005 14:57): | [snip] | excerpt from man 1 portmanager | | Here is how to handle locally installed ports if you plan to take | advantage of some of FreeBSD's port system features: | | ######################################################################## | # Makefile from /usr/ports/local/sysutils/somelocalportname/Makefile | ######################################################################## | PORTNAME= somelocalportname | PORTVERSION= 0.1.0 | CATEGORIES= local/sysutils | | # for FreeBSD to accept our | # local category | VALID_CATEGORIES+= ${CATEGORIES} | | Simply add a "local" directory to /usr/ports and install your local | ports under that directory. Where a normal FreeBSD port may be in | "sysutils/{portname} the example above would reside in "local/sysu- | tils/{portname}". OK, that's a clever thing. Now, the only thing that is left for the maintainer to do is to fix the Makefile (s/local// and remove the line with the VALID_CATEGORIES) before preparing a diff or shar for send-pr. | then in /etc/make.conf | | set prefix for the local port something like (an example of one I use): | | #Because I don't want my development version of portmanager | #installing on top of the version in the ports tree | .if ${.CURDIR:M*/local/sysutils/portmanager} | PREFIX=/home/mike/TEMP | .endif | | -Mike | +----] OK, I also like this, but perhaps it could be made to set PREFIX for any port under ports/local? Would the following work? .if ${.CURDIR:M/usr/ports/local/*} PREFIX=/my/favourite/prefix .endif Thanks for the tips, Fernan From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 18:46:50 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D809816A4CE for ; Tue, 11 Jan 2005 18:46:50 +0000 (GMT) Received: from onyx.hysteria.sk (onyx.hysteria.sk [195.168.3.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7DA143D39 for ; Tue, 11 Jan 2005 18:46:49 +0000 (GMT) (envelope-from skrat@hysteria.sk) Received: (qmail 17955 invoked by uid 0); 11 Jan 2005 18:46:41 -0000 Received: from 228.red-217-217-103.user.auna.net (HELO [192.168.2.64]) ([217.217.103.228]) (envelope-sender ) by c0re.hysteria.sk (qmail-ldap-1.03) with SMTP for ; 11 Jan 2005 18:46:41 -0000 Message-ID: <41E41F03.1060600@hysteria.sk> Date: Tue, 11 Jan 2005 19:46:27 +0100 From: "dusan >>" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20050108 X-Accept-Language: sk, en-us, en MIME-Version: 1.0 To: olgeni@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on onyx.hysteria.sk X-Spam-Status: No, hits=-4.9 required=5.0 cc: ports@FreeBSD.org Subject: FreeBSD Port: netbeans-4.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 18:46:51 -0000 I have probably a basic problem. after finishing installation of netbeans port, and running it, I can't see much entries in new project dialog, I can't create a project since I have no ant build scripts, I am not familiar with using netbeans on unix / linux, can you help me? -- -- . dusan . . jabber: skrat@jabber.sk -- icq : 322853999 -- msn : skrat64@hotmail.com -- -- | _ ___ _.--. -- | \`.|\..----...-'` `-._.-'_.-'` -- | / ' ` , __.--' -- | )/' _/ \ `-_, / -- | `-'" `"\_ ,_.-;_.-\_ ', -- | _.-'_./ {_.' ; / -- {_.-``-' {_/ From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 19:31:14 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A968C16A4CE for ; Tue, 11 Jan 2005 19:31:14 +0000 (GMT) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id 39E2943D5D for ; Tue, 11 Jan 2005 19:31:13 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 4974 invoked from network); 11 Jan 2005 19:27:33 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 11 Jan 2005 19:27:33 -0000 Received: (qmail 4073 invoked by uid 89); 11 Jan 2005 19:31:17 -0000 Received: from unknown (HELO it.buh.tecnik93.com) (81.196.204.98) by 0 with SMTP; 11 Jan 2005 19:31:17 -0000 Received: from it.buh.tecnik93.com (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id C2390115FD; Tue, 11 Jan 2005 21:30:51 +0200 (EET) Date: Tue, 11 Jan 2005 21:30:51 +0200 From: Ion-Mihai Tetcu To: kde@FreeBSD.org, ports@FreeBSD.org Message-ID: <20050111213051.578e700f@it.buh.tecnik93.com> X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: A little USE_QT help, please X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 19:31:14 -0000 Hi, Could someone take a look at the Makefile at:: http://people.tecnik93.com/~itetcu/FreeBSD/ports/dixit/port/ I would like to be sure I'm handling MAKE_ENV correctly; I should probably patch ${WRKDIR}/dixit/dixit.pro but I'm not sure enough what exactly to patch in it. Thanks, -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 19:37:50 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A063516A4CE for ; Tue, 11 Jan 2005 19:37:50 +0000 (GMT) Received: from onyx.hysteria.sk (onyx.hysteria.sk [195.168.3.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7FFC43D39 for ; Tue, 11 Jan 2005 19:37:49 +0000 (GMT) (envelope-from skrat@hysteria.sk) Received: (qmail 3261 invoked by uid 0); 11 Jan 2005 19:37:41 -0000 Received: from 228.red-217-217-103.user.auna.net (HELO [192.168.2.64]) ([217.217.103.228]) (envelope-sender ) by c0re.hysteria.sk (qmail-ldap-1.03) with SMTP for ; 11 Jan 2005 19:37:41 -0000 Message-ID: <41E42AF3.5050005@hysteria.sk> Date: Tue, 11 Jan 2005 20:37:23 +0100 From: "dusan >>" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20050108 X-Accept-Language: sk, en-us, en MIME-Version: 1.0 To: java@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on onyx.hysteria.sk X-Spam-Status: No, hits=-4.9 required=5.0 cc: ports@FreeBSD.org Subject: FreeBSD Port: linux-sun-jdk14-1.4.2.06_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 19:37:50 -0000 hi. it can be nice to have Java WebStart working without voodoo, just associating .war files in browser with javaws executable.. but javaws is not even in PATH currently ... -- -- . dusan . . jabber: skrat@jabber.sk -- icq : 322853999 -- msn : skrat64@hotmail.com -- -- | _ ___ _.--. -- | \`.|\..----...-'` `-._.-'_.-'` -- | / ' ` , __.--' -- | )/' _/ \ `-_, / -- | `-'" `"\_ ,_.-;_.-\_ ', -- | _.-'_./ {_.' ; / -- {_.-``-' {_/ From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 20:15:18 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A247C16A4E6 for ; Tue, 11 Jan 2005 20:15:18 +0000 (GMT) Received: from onyx.hysteria.sk (onyx.hysteria.sk [195.168.3.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A65A43D31 for ; Tue, 11 Jan 2005 20:15:18 +0000 (GMT) (envelope-from skrat@hysteria.sk) Received: (qmail 15025 invoked by uid 0); 11 Jan 2005 20:15:09 -0000 Received: from 228.red-217-217-103.user.auna.net (HELO [192.168.2.64]) ([217.217.103.228]) (envelope-sender ) by c0re.hysteria.sk (qmail-ldap-1.03) with SMTP for ; 11 Jan 2005 20:15:09 -0000 Message-ID: <41E433BD.6090102@hysteria.sk> Date: Tue, 11 Jan 2005 21:14:53 +0100 From: "dusan >>" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20050108 X-Accept-Language: sk, en-us, en MIME-Version: 1.0 To: steffen@vogelreuter.de Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on onyx.hysteria.sk X-Spam-Status: No, hits=-4.9 required=5.0 cc: ports@FreeBSD.org Subject: FreeBSD Port: gkrellsun-0.2_1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 20:15:18 -0000 hi. is this really working only with gkrellm? is it possible to use it with gkrellm2 port? -- -- . dusan . . jabber: skrat@jabber.sk -- icq : 322853999 -- msn : skrat64@hotmail.com -- -- | _ ___ _.--. -- | \`.|\..----...-'` `-._.-'_.-'` -- | / ' ` , __.--' -- | )/' _/ \ `-_, / -- | `-'" `"\_ ,_.-;_.-\_ ', -- | _.-'_./ {_.' ; / -- {_.-``-' {_/ From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 20:26:52 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75E0016A4CE; Tue, 11 Jan 2005 20:26:52 +0000 (GMT) Received: from imf17aec.mail.bellsouth.net (imf17aec.mail.bellsouth.net [205.152.59.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id B80DF43D2D; Tue, 11 Jan 2005 20:26:51 +0000 (GMT) (envelope-from ahze@ahze.net) Received: from [192.168.1.5] ([68.209.163.3]) by imf17aec.mail.bellsouth.netESMTP <20050111202651.HVXN2402.imf17aec.mail.bellsouth.net@[192.168.1.5]>; Tue, 11 Jan 2005 15:26:51 -0500 In-Reply-To: <200501111052.26435.dantavious@comcast.net> References: <20050110191301.84269.qmail@web53603.mail.yahoo.com> <200501111052.26435.dantavious@comcast.net> Mime-Version: 1.0 (Apple Message framework v682) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Michael Johnson Date: Tue, 11 Jan 2005 15:26:44 -0500 To: Derrick Edwards X-Mailer: Apple Mail (2.682) cc: ports@freebsd.org cc: scott@sremick.net cc: freebsd-ports@freebsd.org Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 20:26:52 -0000 On Jan 11, 2005, at 10:52 AM, Derrick Edwards wrote: > I am seeing the exact same thing.. > any ideas > Derrick > > > I'm looking for a fix, but the problem is I can't reproduce it in live environment or tinderbox. I'm thinking it might have something to do with older versions of nvu being installed. Do you have a older version of nvu installed? Michael > >> On FreeBSD 5.3-RELEASE w/ a ports tree cvsuped around noon EST today. >> Here's what I'm getting: >> >> gmake[4]: Entering directory >> `/usr/ports/www/nvu/work/mozilla/profile/src' >> nsProfile.cpp >> c++ -o nsProfile.o -c -DOSTYPE=\"FreeBSD5\" -DOSARCH=\"FreeBSD\" >> -I./../dirserviceprovider/src -I../../dist/include/xpcom >> -I../../dist/include/xpcom_obsolete -I../../dist/include/string >> -I../../dist/include/content -I../../dist/include/docshell >> -I../../dist/include/webbrwsr -I../../dist/include/dom >> -I../../dist/include/js -I../../dist/include/xpconnect >> -I../../dist/include/widget -I../../dist/include/necko >> -I../../dist/include/uriloader -I../../dist/include/intl >> -I../../dist/include/pref -I../../dist/include/prefmigr >> -I../../dist/include/appshell -I../../dist/include/uconv >> -I../../dist/include/windowwatcher >> -I../../dist/include/profdirserviceprovider >> -I../../dist/include/profile >> -I../../dist/include >> -I/usr/ports/www/nvu/work/mozilla/dist/include/nspr >> -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -fPIC >> -I/usr/X11R6/include -I/usr/X11R6/include -fno-rtti -fno-exceptions >> -Wall >> -Wconversion -Wpointer-arith -Wcast-align -Woverloaded-virtual -Wsynth >> -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-long-long -O -pipe >> -fshort-wchar -pipe -DNDEBUG -DTRIMMED -I/usr/X11R6/include >> -I/usr/X11R6/include -DMOZILLA_CLIENT -include ../../mozilla-config.h >> -Wp,-MD,.deps/nsProfile.pp nsProfile.cpp >> nsProfile.cpp: In member function `virtual nsresult >> nsProfile::StartupWithArgs(nsICmdLineService*, PRBool)': >> nsProfile.cpp:414: error: 'class nsDerivedSafe' >> has >> no member named 'SelectLocaleForProfile' >> nsProfile.cpp:423: error: 'class nsDerivedSafe' >> has >> no member named 'SelectLocaleForProfile' >> nsProfile.cpp: In member function `virtual nsresult >> nsProfile::CreateNewProfileWithLocales(const PRUnichar*, const >> PRUnichar*, >> const PRUnichar*, const PRUnichar*, PRBool)': >> nsProfile.cpp:1724: error: 'class >> nsDerivedSafe' has >> no member named 'SelectLocaleForProfile' >> nsProfile.cpp:1736: error: 'class >> nsDerivedSafe' has >> no member named 'GetSelectedSkin' >> nsProfile.cpp:1738: error: 'class >> nsDerivedSafe' has >> no member named 'SelectSkinForProfile' >> nsProfile.cpp:1760: error: 'class >> nsDerivedSafe' has >> no member named 'SelectLocaleForProfile' >> gmake[4]: *** [nsProfile.o] Error 1 >> gmake[4]: Leaving directory >> `/usr/ports/www/nvu/work/mozilla/profile/src' >> gmake[3]: *** [libs] Error 2 >> gmake[3]: Leaving directory `/usr/ports/www/nvu/work/mozilla/profile' >> gmake[2]: *** [tier_9] Error 2 >> gmake[2]: Leaving directory `/usr/ports/www/nvu/work/mozilla' >> gmake[1]: *** [default] Error 2 >> gmake[1]: Leaving directory `/usr/ports/www/nvu/work/mozilla' >> gmake: *** [build] Error 2 >> *** Error code 2 >> >> Stop in /usr/ports/www/nvu. >> >> _______________________________________________ >> 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 Jan 11 20:26:52 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 75E0016A4CE; Tue, 11 Jan 2005 20:26:52 +0000 (GMT) Received: from imf17aec.mail.bellsouth.net (imf17aec.mail.bellsouth.net [205.152.59.65]) by mx1.FreeBSD.org (Postfix) with ESMTP id B80DF43D2D; Tue, 11 Jan 2005 20:26:51 +0000 (GMT) (envelope-from ahze@ahze.net) Received: from [192.168.1.5] ([68.209.163.3]) by imf17aec.mail.bellsouth.netESMTP <20050111202651.HVXN2402.imf17aec.mail.bellsouth.net@[192.168.1.5]>; Tue, 11 Jan 2005 15:26:51 -0500 In-Reply-To: <200501111052.26435.dantavious@comcast.net> References: <20050110191301.84269.qmail@web53603.mail.yahoo.com> <200501111052.26435.dantavious@comcast.net> Mime-Version: 1.0 (Apple Message framework v682) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Michael Johnson Date: Tue, 11 Jan 2005 15:26:44 -0500 To: Derrick Edwards X-Mailer: Apple Mail (2.682) cc: ports@freebsd.org cc: scott@sremick.net cc: freebsd-ports@freebsd.org Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 20:26:52 -0000 On Jan 11, 2005, at 10:52 AM, Derrick Edwards wrote: > I am seeing the exact same thing.. > any ideas > Derrick > > > I'm looking for a fix, but the problem is I can't reproduce it in live environment or tinderbox. I'm thinking it might have something to do with older versions of nvu being installed. Do you have a older version of nvu installed? Michael > >> On FreeBSD 5.3-RELEASE w/ a ports tree cvsuped around noon EST today. >> Here's what I'm getting: >> >> gmake[4]: Entering directory >> `/usr/ports/www/nvu/work/mozilla/profile/src' >> nsProfile.cpp >> c++ -o nsProfile.o -c -DOSTYPE=\"FreeBSD5\" -DOSARCH=\"FreeBSD\" >> -I./../dirserviceprovider/src -I../../dist/include/xpcom >> -I../../dist/include/xpcom_obsolete -I../../dist/include/string >> -I../../dist/include/content -I../../dist/include/docshell >> -I../../dist/include/webbrwsr -I../../dist/include/dom >> -I../../dist/include/js -I../../dist/include/xpconnect >> -I../../dist/include/widget -I../../dist/include/necko >> -I../../dist/include/uriloader -I../../dist/include/intl >> -I../../dist/include/pref -I../../dist/include/prefmigr >> -I../../dist/include/appshell -I../../dist/include/uconv >> -I../../dist/include/windowwatcher >> -I../../dist/include/profdirserviceprovider >> -I../../dist/include/profile >> -I../../dist/include >> -I/usr/ports/www/nvu/work/mozilla/dist/include/nspr >> -I/usr/local/include -I/usr/local/include -I/usr/X11R6/include -fPIC >> -I/usr/X11R6/include -I/usr/X11R6/include -fno-rtti -fno-exceptions >> -Wall >> -Wconversion -Wpointer-arith -Wcast-align -Woverloaded-virtual -Wsynth >> -Wno-ctor-dtor-privacy -Wno-non-virtual-dtor -Wno-long-long -O -pipe >> -fshort-wchar -pipe -DNDEBUG -DTRIMMED -I/usr/X11R6/include >> -I/usr/X11R6/include -DMOZILLA_CLIENT -include ../../mozilla-config.h >> -Wp,-MD,.deps/nsProfile.pp nsProfile.cpp >> nsProfile.cpp: In member function `virtual nsresult >> nsProfile::StartupWithArgs(nsICmdLineService*, PRBool)': >> nsProfile.cpp:414: error: 'class nsDerivedSafe' >> has >> no member named 'SelectLocaleForProfile' >> nsProfile.cpp:423: error: 'class nsDerivedSafe' >> has >> no member named 'SelectLocaleForProfile' >> nsProfile.cpp: In member function `virtual nsresult >> nsProfile::CreateNewProfileWithLocales(const PRUnichar*, const >> PRUnichar*, >> const PRUnichar*, const PRUnichar*, PRBool)': >> nsProfile.cpp:1724: error: 'class >> nsDerivedSafe' has >> no member named 'SelectLocaleForProfile' >> nsProfile.cpp:1736: error: 'class >> nsDerivedSafe' has >> no member named 'GetSelectedSkin' >> nsProfile.cpp:1738: error: 'class >> nsDerivedSafe' has >> no member named 'SelectSkinForProfile' >> nsProfile.cpp:1760: error: 'class >> nsDerivedSafe' has >> no member named 'SelectLocaleForProfile' >> gmake[4]: *** [nsProfile.o] Error 1 >> gmake[4]: Leaving directory >> `/usr/ports/www/nvu/work/mozilla/profile/src' >> gmake[3]: *** [libs] Error 2 >> gmake[3]: Leaving directory `/usr/ports/www/nvu/work/mozilla/profile' >> gmake[2]: *** [tier_9] Error 2 >> gmake[2]: Leaving directory `/usr/ports/www/nvu/work/mozilla' >> gmake[1]: *** [default] Error 2 >> gmake[1]: Leaving directory `/usr/ports/www/nvu/work/mozilla' >> gmake: *** [build] Error 2 >> *** Error code 2 >> >> Stop in /usr/ports/www/nvu. >> >> _______________________________________________ >> 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 Jan 11 20:32:45 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEB3F16A4CE for ; Tue, 11 Jan 2005 20:32:45 +0000 (GMT) Received: from web53606.mail.yahoo.com (web53606.mail.yahoo.com [206.190.37.39]) by mx1.FreeBSD.org (Postfix) with SMTP id ED6D343D39 for ; Tue, 11 Jan 2005 20:32:44 +0000 (GMT) (envelope-from scott@sremick.net) Received: (qmail 62285 invoked by uid 60001); 11 Jan 2005 20:32:44 -0000 Message-ID: <20050111203244.62283.qmail@web53606.mail.yahoo.com> Received: from [65.213.7.6] by web53606.mail.yahoo.com via HTTP; Tue, 11 Jan 2005 12:32:44 PST X-RocketYMMF: siremick Date: Tue, 11 Jan 2005 12:32:44 -0800 (PST) From: "Scott I. Remick" To: Michael Johnson In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: ports@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: scott@sremick.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 20:32:45 -0000 --- Michael Johnson wrote: > I'm looking for a fix, but the problem is I can't reproduce it > in live environment or tinderbox. I'm thinking it might have > something to do with older versions of nvu being installed. > Do you have a older version of nvu installed? Yes, I have 0.60 installed. I normally use portupgrade to update things. I recently tried portmanager but it fails too. From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 20:32:45 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8FD316A4CF for ; Tue, 11 Jan 2005 20:32:45 +0000 (GMT) Received: from web53606.mail.yahoo.com (web53606.mail.yahoo.com [206.190.37.39]) by mx1.FreeBSD.org (Postfix) with SMTP id 05A3D43D3F for ; Tue, 11 Jan 2005 20:32:45 +0000 (GMT) (envelope-from scott@sremick.net) Received: (qmail 62285 invoked by uid 60001); 11 Jan 2005 20:32:44 -0000 Message-ID: <20050111203244.62283.qmail@web53606.mail.yahoo.com> Received: from [65.213.7.6] by web53606.mail.yahoo.com via HTTP; Tue, 11 Jan 2005 12:32:44 PST X-RocketYMMF: siremick Date: Tue, 11 Jan 2005 12:32:44 -0800 (PST) From: "Scott I. Remick" To: Michael Johnson In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: ports@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: scott@sremick.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 20:32:46 -0000 --- Michael Johnson wrote: > I'm looking for a fix, but the problem is I can't reproduce it > in live environment or tinderbox. I'm thinking it might have > something to do with older versions of nvu being installed. > Do you have a older version of nvu installed? Yes, I have 0.60 installed. I normally use portupgrade to update things. I recently tried portmanager but it fails too. From owner-freebsd-ports@FreeBSD.ORG Tue Jan 11 21:22:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E73016A4CE; Tue, 11 Jan 2005 21:22:47 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADD9143D1D; Tue, 11 Jan 2005 21:22:46 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from focus.dantavious.com (pcp09757877pcs.gambrl01.md.comcast.net[68.48.122.129]) by comcast.net (sccrmhc13) with ESMTP id <200501112122450160023s7ne>; Tue, 11 Jan 2005 21:22:45 +0000 From: Derrick Edwards To: freebsd-ports@freebsd.org, scott@sremick.net Date: Tue, 11 Jan 2005 16:38:29 -0500 User-Agent: KMail/1.7.2 References: <20050111203244.62283.qmail@web53606.mail.yahoo.com> In-Reply-To: <20050111203244.62283.qmail@web53606.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501111638.30302.dantavious@comcast.net> cc: ports@freebsd.org cc: Michael Johnson Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 21:22:47 -0000 On Tuesday 11 January 2005 03:32 pm, Scott I. Remick wrote: I deinstalled and cleaned nvu and tried to install again. I got the same error. Derrick > --- Michael Johnson wrote: > > I'm looking for a fix, but the problem is I can't reproduce it > > in live environment or tinderbox. I'm thinking it might have > > something to do with older versions of nvu being installed. > > Do you have a older version of nvu installed? > > Yes, I have 0.60 installed. I normally use portupgrade to update things. I > recently tried portmanager but it fails too. > > > _______________________________________________ > 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 Jan 11 21:22:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E73016A4CE; Tue, 11 Jan 2005 21:22:47 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADD9143D1D; Tue, 11 Jan 2005 21:22:46 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from focus.dantavious.com (pcp09757877pcs.gambrl01.md.comcast.net[68.48.122.129]) by comcast.net (sccrmhc13) with ESMTP id <200501112122450160023s7ne>; Tue, 11 Jan 2005 21:22:45 +0000 From: Derrick Edwards To: freebsd-ports@freebsd.org, scott@sremick.net Date: Tue, 11 Jan 2005 16:38:29 -0500 User-Agent: KMail/1.7.2 References: <20050111203244.62283.qmail@web53606.mail.yahoo.com> In-Reply-To: <20050111203244.62283.qmail@web53606.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501111638.30302.dantavious@comcast.net> cc: ports@freebsd.org cc: Michael Johnson Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 11 Jan 2005 21:22:47 -0000 On Tuesday 11 January 2005 03:32 pm, Scott I. Remick wrote: I deinstalled and cleaned nvu and tried to install again. I got the same error. Derrick > --- Michael Johnson wrote: > > I'm looking for a fix, but the problem is I can't reproduce it > > in live environment or tinderbox. I'm thinking it might have > > something to do with older versions of nvu being installed. > > Do you have a older version of nvu installed? > > Yes, I have 0.60 installed. I normally use portupgrade to update things. I > recently tried portmanager but it fails too. > > > _______________________________________________ > 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 Jan 12 00:14:06 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5136516A4CE for ; Wed, 12 Jan 2005 00:14:06 +0000 (GMT) Received: from outbound0.sv.meer.net (outbound0.sv.meer.net [205.217.152.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31D0B43D53 for ; Wed, 12 Jan 2005 00:14:06 +0000 (GMT) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (mail.meer.net [209.157.152.14]) j0C0E4wN037387; Tue, 11 Jan 2005 16:14:05 -0800 (PST) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (localhost [127.0.0.1]) by mail.meer.net (8.12.10/8.12.10/meer) with ESMTP id j0C0DqcX085906; Tue, 11 Jan 2005 16:13:53 -0800 (PST) (envelope-from jrhett@mail.meer.net) Received: (from jrhett@localhost) by mail.meer.net (8.12.1/8.12.10) id j0C0DoSn085900; Tue, 11 Jan 2005 16:13:50 -0800 (PST) (envelope-from jrhett) Date: Tue, 11 Jan 2005 16:13:50 -0800 From: Joe Rhett To: Michael Ranner Message-ID: <20050112001350.GD82822@meer.net> References: <6795649E-6280-11D9-812A-000D936EFA20@meer.net> <20050109214709.GC95689@xor.obsecurity.org> <20050109234153.GB28535@meer.net> <200501111024.34665.mranner@inode.at> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200501111024.34665.mranner@inode.at> User-Agent: Mutt/1.4i Organization: Meer.net LLC cc: freebsd-ports@FreeBSD.org Subject: Re: FreeBSD Port: mod_frontpage-1.6.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 00:14:06 -0000 On Tue, Jan 11, 2005 at 10:24:34AM +0100, Michael Ranner wrote: > Because users have to accept the EULA, you should leave downloading this file > to the user like the java ports do. Okay -- how do you write this into the Makefile? (I checked the porters handbook, and there's nothing about how to complain to the user if a necessary download file is missing and tell them where to get it...) -- Joe Rhett Senior Geek Meer.net From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 00:23:52 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A14616A4CE for ; Wed, 12 Jan 2005 00:23:52 +0000 (GMT) Received: from mailtest.sd73.bc.ca (mailtest.sd73.bc.ca [142.24.13.140]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F3F743D49 for ; Wed, 12 Jan 2005 00:23:52 +0000 (GMT) (envelope-from fcash-ml@sd73.bc.ca) Received: from localhost (localhost [127.0.0.1]) by mailtest.sd73.bc.ca (Postfix) with ESMTP id 7C2A5F2370 for ; Tue, 11 Jan 2005 16:23:47 -0800 (PST) Received: from mailtest.sd73.bc.ca ([127.0.0.1]) by localhost (mailtest.sd73.bc.ca [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 94520-01-60 for ; Tue, 11 Jan 2005 16:23:47 -0800 (PST) Received: from s9.sbo (s9.sbo [192.168.0.9]) by mailtest.sd73.bc.ca (Postfix) with ESMTP id 0203AF2326 for ; Tue, 11 Jan 2005 16:23:47 -0800 (PST) From: Freddie Cash Organization: School District 73 - Kamloops, BC To: freebsd-ports@freebsd.org Date: Tue, 11 Jan 2005 16:23:48 -0800 User-Agent: KMail/1.7.2 References: <6795649E-6280-11D9-812A-000D936EFA20@meer.net> <200501111024.34665.mranner@inode.at> <20050112001350.GD82822@meer.net> In-Reply-To: <20050112001350.GD82822@meer.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501111623.48989.fcash-ml@sd73.bc.ca> X-Virus-Scanned: by amavisd-new using ClamAV at sd73.bc.ca Subject: Re: FreeBSD Port: mod_frontpage-1.6.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 00:23:52 -0000 On January 11, 2005 04:13 pm, Joe Rhett wrote: > On Tue, Jan 11, 2005 at 10:24:34AM +0100, Michael Ranner wrote: > > Because users have to accept the EULA, you should leave downloading > > this file to the user like the java ports do. > Okay -- how do you write this into the Makefile? (I checked the > porters handbook, and there's nothing about how to complain to the > user if a necessary download file is missing and tell them where to > get it...) Check the lang/jdk14 or www/dansguardian Makefiles for a couple different methods. -- Freddie Cash, CCNT CCLP Helpdesk / Network Support Tech. School District 73 (250) 377-HELP [377-4357] fcash-ml@sd73.bc.ca From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 00:36:32 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11FDA16A4CE for ; Wed, 12 Jan 2005 00:36:32 +0000 (GMT) Received: from outbound0.sv.meer.net (outbound0.sv.meer.net [205.217.152.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5B3543D53 for ; Wed, 12 Jan 2005 00:36:31 +0000 (GMT) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (mail.meer.net [209.157.152.14]) by outbound0.sv.meer.net (8.12.10/8.12.6) with ESMTP id j0C0aVwN038278 for ; Tue, 11 Jan 2005 16:36:31 -0800 (PST) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (localhost [127.0.0.1]) by mail.meer.net (8.12.10/8.12.10/meer) with ESMTP id j0C0aTcX090798 for ; Tue, 11 Jan 2005 16:36:29 -0800 (PST) (envelope-from jrhett@mail.meer.net) Received: (from jrhett@localhost) by mail.meer.net (8.12.1/8.12.10) id j0C0aTnm090797 for freebsd-ports@FreeBSD.org; Tue, 11 Jan 2005 16:36:29 -0800 (PST) (envelope-from jrhett) Date: Tue, 11 Jan 2005 16:36:29 -0800 From: Joe Rhett To: freebsd-ports@FreeBSD.org Message-ID: <20050112003629.GC89277@meer.net> References: <6795649E-6280-11D9-812A-000D936EFA20@meer.net> <200501111024.34665.mranner@inode.at> <20050112001350.GD82822@meer.net> <200501111623.48989.fcash-ml@sd73.bc.ca> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200501111623.48989.fcash-ml@sd73.bc.ca> User-Agent: Mutt/1.4i Organization: Meer.net LLC Subject: Re: FreeBSD Port: mod_frontpage-1.6.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 00:36:32 -0000 > On January 11, 2005 04:13 pm, Joe Rhett wrote: > > Okay -- how do you write this into the Makefile? (I checked the > > porters handbook, and there's nothing about how to complain to the > > user if a necessary download file is missing and tell them where to > > get it...) On Tue, Jan 11, 2005 at 04:23:48PM -0800, Freddie Cash wrote: > Check the lang/jdk14 or www/dansguardian Makefiles for a couple > different methods. Thanks. Yeah, I also found an example in java/sun-wtk as well, finally. For the record and any other poor schmuck searcing for this, this seems to be the easy way: .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) && !defined(PACKAGE_BUILDING) IGNORE=You must manually fetch the file ${DISTNAME}${EXTRACT_SUFX} from ${DOWNLOAD_URL}, place it in ${DISTDIR} and then run make again .endif -- Joe Rhett Senior Geek Meer.net From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 01:37:25 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42A8F16A4CE; Wed, 12 Jan 2005 01:37:25 +0000 (GMT) Received: from mail.seekingfire.com (caliban.rospa.ca [24.72.10.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0CB343D31; Wed, 12 Jan 2005 01:37:24 +0000 (GMT) (envelope-from tillman@seekingfire.com) Received: by mail.seekingfire.com (Postfix, from userid 500) id 49511332; Tue, 11 Jan 2005 19:37:24 -0600 (CST) Date: Tue, 11 Jan 2005 19:37:24 -0600 From: Tillman Hodgson To: freebsd-ports@freebsd.org, ports@freebsd.org Message-ID: <20050112013724.GE96419@seekingfire.com> References: <20050111203244.62283.qmail@web53606.mail.yahoo.com> <200501111638.30302.dantavious@comcast.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200501111638.30302.dantavious@comcast.net> X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . X-GPG-Key-ID: 828AFC7B X-GPG-Fingerprint: 5584 14BA C9EB 1524 0E68 F543 0F0A 7FBC 828A FC7B X-GPG-Key: http://www.seekingfire.com/personal/gpg_key.asc X-Urban-Legend: There is lots of hidden information in headers X-Tillman-rules: yes he does User-Agent: Mutt/1.5.6i Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 01:37:25 -0000 On Tue, Jan 11, 2005 at 04:38:29PM -0500, Derrick Edwards wrote: > On Tuesday 11 January 2005 03:32 pm, Scott I. Remick wrote: > > I deinstalled and cleaned nvu and tried to install again. I got the same > error. > Derrick I'm seeing the same thing as well. # uname -a FreeBSD backforty.seekingfire.prv 6.0-CURRENT FreeBSD 6.0-CURRENT #2: Fri Nov 19 08:03:52 CST 2004 tillman@backforty.seekingfire.prv:/usr/obj/usr/src/sys/BACKFORTY i386 /usr/ports cvsup'd as of this afternoon. -T -- "The act of communication is the primary ethical act....life is meaningful only if the bounds of self can be transcended." -- Anatol Rapoport From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 01:37:25 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42A8F16A4CE; Wed, 12 Jan 2005 01:37:25 +0000 (GMT) Received: from mail.seekingfire.com (caliban.rospa.ca [24.72.10.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0CB343D31; Wed, 12 Jan 2005 01:37:24 +0000 (GMT) (envelope-from tillman@seekingfire.com) Received: by mail.seekingfire.com (Postfix, from userid 500) id 49511332; Tue, 11 Jan 2005 19:37:24 -0600 (CST) Date: Tue, 11 Jan 2005 19:37:24 -0600 From: Tillman Hodgson To: freebsd-ports@freebsd.org, ports@freebsd.org Message-ID: <20050112013724.GE96419@seekingfire.com> References: <20050111203244.62283.qmail@web53606.mail.yahoo.com> <200501111638.30302.dantavious@comcast.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200501111638.30302.dantavious@comcast.net> X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . X-GPG-Key-ID: 828AFC7B X-GPG-Fingerprint: 5584 14BA C9EB 1524 0E68 F543 0F0A 7FBC 828A FC7B X-GPG-Key: http://www.seekingfire.com/personal/gpg_key.asc X-Urban-Legend: There is lots of hidden information in headers X-Tillman-rules: yes he does User-Agent: Mutt/1.5.6i Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 01:37:25 -0000 On Tue, Jan 11, 2005 at 04:38:29PM -0500, Derrick Edwards wrote: > On Tuesday 11 January 2005 03:32 pm, Scott I. Remick wrote: > > I deinstalled and cleaned nvu and tried to install again. I got the same > error. > Derrick I'm seeing the same thing as well. # uname -a FreeBSD backforty.seekingfire.prv 6.0-CURRENT FreeBSD 6.0-CURRENT #2: Fri Nov 19 08:03:52 CST 2004 tillman@backforty.seekingfire.prv:/usr/obj/usr/src/sys/BACKFORTY i386 /usr/ports cvsup'd as of this afternoon. -T -- "The act of communication is the primary ethical act....life is meaningful only if the bounds of self can be transcended." -- Anatol Rapoport From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 05:43:18 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E817216A4CE; Wed, 12 Jan 2005 05:43:18 +0000 (GMT) Received: from imf19aec.mail.bellsouth.net (imf19aec.mail.bellsouth.net [205.152.59.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FC7743D49; Wed, 12 Jan 2005 05:43:18 +0000 (GMT) (envelope-from ahze@ahze.net) Received: from [192.168.1.5] ([68.209.163.3]) by imf19aec.mail.bellsouth.netESMTP <20050112054317.CGLY2073.imf19aec.mail.bellsouth.net@[192.168.1.5]>; Wed, 12 Jan 2005 00:43:17 -0500 In-Reply-To: <20050112013724.GE96419@seekingfire.com> References: <20050111203244.62283.qmail@web53606.mail.yahoo.com> <200501111638.30302.dantavious@comcast.net> <20050112013724.GE96419@seekingfire.com> Mime-Version: 1.0 (Apple Message framework v682) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Michael Johnson Date: Wed, 12 Jan 2005 00:43:11 -0500 To: Tillman Hodgson X-Mailer: Apple Mail (2.682) cc: ports@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 05:43:19 -0000 On Jan 11, 2005, at 8:37 PM, Tillman Hodgson wrote: > On Tue, Jan 11, 2005 at 04:38:29PM -0500, Derrick Edwards wrote: > >> On Tuesday 11 January 2005 03:32 pm, Scott I. Remick wrote: >> >> I deinstalled and cleaned nvu and tried to install again. I got the >> same error. >> Derrick >> > Everything should be fixed from last commit > I'm seeing the same thing as well. > > # uname -a > FreeBSD backforty.seekingfire.prv 6.0-CURRENT FreeBSD 6.0-CURRENT #2: > Fri Nov 19 08:03:52 CST 2004 > tillman@backforty.seekingfire.prv:/usr/obj/usr/src/sys/BACKFORTY i386 > > /usr/ports cvsup'd as of this afternoon. > > -T > > > -- "The act of communication is the primary ethical act....life is > meaningful only if the bounds of self can be transcended." > -- Anatol Rapoport > _______________________________________________ > 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 Jan 12 05:43:18 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E817216A4CE; Wed, 12 Jan 2005 05:43:18 +0000 (GMT) Received: from imf19aec.mail.bellsouth.net (imf19aec.mail.bellsouth.net [205.152.59.67]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FC7743D49; Wed, 12 Jan 2005 05:43:18 +0000 (GMT) (envelope-from ahze@ahze.net) Received: from [192.168.1.5] ([68.209.163.3]) by imf19aec.mail.bellsouth.netESMTP <20050112054317.CGLY2073.imf19aec.mail.bellsouth.net@[192.168.1.5]>; Wed, 12 Jan 2005 00:43:17 -0500 In-Reply-To: <20050112013724.GE96419@seekingfire.com> References: <20050111203244.62283.qmail@web53606.mail.yahoo.com> <200501111638.30302.dantavious@comcast.net> <20050112013724.GE96419@seekingfire.com> Mime-Version: 1.0 (Apple Message framework v682) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Michael Johnson Date: Wed, 12 Jan 2005 00:43:11 -0500 To: Tillman Hodgson X-Mailer: Apple Mail (2.682) cc: ports@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 05:43:19 -0000 On Jan 11, 2005, at 8:37 PM, Tillman Hodgson wrote: > On Tue, Jan 11, 2005 at 04:38:29PM -0500, Derrick Edwards wrote: > >> On Tuesday 11 January 2005 03:32 pm, Scott I. Remick wrote: >> >> I deinstalled and cleaned nvu and tried to install again. I got the >> same error. >> Derrick >> > Everything should be fixed from last commit > I'm seeing the same thing as well. > > # uname -a > FreeBSD backforty.seekingfire.prv 6.0-CURRENT FreeBSD 6.0-CURRENT #2: > Fri Nov 19 08:03:52 CST 2004 > tillman@backforty.seekingfire.prv:/usr/obj/usr/src/sys/BACKFORTY i386 > > /usr/ports cvsup'd as of this afternoon. > > -T > > > -- "The act of communication is the primary ethical act....life is > meaningful only if the bounds of self can be transcended." > -- Anatol Rapoport > _______________________________________________ > 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 Jan 12 07:41:38 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9BE716A4CE for ; Wed, 12 Jan 2005 07:41:38 +0000 (GMT) Received: from web53605.mail.yahoo.com (web53605.mail.yahoo.com [206.190.37.38]) by mx1.FreeBSD.org (Postfix) with SMTP id 3F76B43D39 for ; Wed, 12 Jan 2005 07:41:38 +0000 (GMT) (envelope-from scott@sremick.net) Received: (qmail 7218 invoked by uid 60001); 12 Jan 2005 07:41:37 -0000 Message-ID: <20050112074137.7216.qmail@web53605.mail.yahoo.com> Received: from [69.171.193.20] by web53605.mail.yahoo.com via HTTP; Tue, 11 Jan 2005 23:41:37 PST X-RocketYMMF: siremick Date: Tue, 11 Jan 2005 23:41:37 -0800 (PST) From: "Scott I. Remick" To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Sort specific category by added date? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: scott@sremick.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 07:41:38 -0000 Is there a way (web-based or command-line) to get a list of all the ports in a specific category sorted by their added (not modified/updated) date? For example: I want a list of all the games, sorted by those added most recently first. I can't seem to come up with a trick, but then again, I'm not all that skilled (but still learning!)... Thanks! From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 09:51:36 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7265016A4CE for ; Wed, 12 Jan 2005 09:51:36 +0000 (GMT) Received: from shani.blueframe.de (blueframe99-el-CHE.eastlink.de [213.187.69.99]) by mx1.FreeBSD.org (Postfix) with ESMTP id C638D43D5F for ; Wed, 12 Jan 2005 09:51:35 +0000 (GMT) (envelope-from service@blueframe.de) Received: from [192.168.1.10] (blueframe102-el-CHE.eastlink.de [213.187.69.102]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by shani.blueframe.de (Postfix) with ESMTP id 3E89F5C762 for ; Wed, 12 Jan 2005 10:51:33 +0100 (CET) Message-ID: <41E4F324.4080703@blueframe.de> Date: Wed, 12 Jan 2005 10:51:32 +0100 From: BlueFrame Kundenservice User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; de-AT; rv:1.7.3) Gecko/20040910 X-Accept-Language: de-de, en MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: scribus-1.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 09:51:36 -0000 Hello, seems to me that this port needs an update, version 1.2.1 is out since last weekend. Thanks in advance Samudra -- BlueFrameMedia | Grafik und Programmierung Inhaber Samudra U. Reiher Albertstrasse 23 | 09212 Limbach-Oberfrohna Tel 03722 - 815415 | Fax 03722 - 817615 Email mailto:service@blueframe.de Website http://www.blueframe.de From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 09:55:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B357816A4D1; Wed, 12 Jan 2005 09:55:47 +0000 (GMT) Received: from mail.terralink.de (mail.tlink.de [217.9.16.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10E1743D45; Wed, 12 Jan 2005 09:55:47 +0000 (GMT) (envelope-from me@daniel.stefan.haischt.name) Received: from smtp.abyssworld.de (daniel-s-haischt.biz [84.252.66.2]) by mail.terralink.de (Postfix) with ESMTP id 2F1DCBD5C2; Wed, 12 Jan 2005 10:55:44 +0100 (CET) Received: from localhost (smtp.abyssworld.de [192.168.1.6]) by smtp.abyssworld.de (Postfix) with ESMTP id DE36B189FD; Wed, 12 Jan 2005 10:55:54 +0100 (CET) Received: from smtp.abyssworld.de ([127.0.0.1])port 10024) with ESMTP id 00711-06; Wed, 12 Jan 2005 10:55:54 +0100 (CET) Received-SPF: none (smtp.abyssworld.de: 192.168.1.6 is neither permitted nor denied by domain of daniel.stefan.haischt.name) client-ip=192.168.1.6; envelope-from=me@daniel.stefan.haischt.name; helo=[192.168.120.239]; Received: from [192.168.120.239] (smtp.abyssworld.de [192.168.1.6]) by smtp.abyssworld.de (Postfix) with ESMTP id 3D21B189F9; Wed, 12 Jan 2005 10:55:54 +0100 (CET) Message-ID: <41E4F420.7070801@daniel.stefan.haischt.name> Date: Wed, 12 Jan 2005 10:55:44 +0100 From: "Daniel S. Haischt" User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: de-DE, de, en-us, en MIME-Version: 1.0 To: dinoex@FreeBSD.org X-Enigmail-Version: 0.89.5.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Processed-By: GNU Anubis v4.0 X-Virus-Scanned: amavisd-new at abyssworld.de cc: ports@FreeBSD.org Subject: FreeBSD Port: bind9-dlz+postgres-9.2.2+0.7.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 09:55:47 -0000 Hello, recently I did install the port mentioned in the subject line. While booting the system, local libraries such as libdb-4.2.so.2 couldn't be found. If I did boot named after a complete system startup, I did not get any error message. To solve the problem I did modify the REQUIRE clause of the /etc/rc.d/named rcNG script as follows: # REQUIRE: SERVERS ldconfig ^^^^^^^^ How would you solve such a problem? -- Mit freundlichen Gruessen / With kind regards Daniel S. Haischt Wan't a complete signature??? Type at a shell prompt: $ > finger -l haischt@daniel.stefan.haischt.name From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 10:18:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C9E616A4CE for ; Wed, 12 Jan 2005 10:18:03 +0000 (GMT) Received: from bloodwood.hunterlink.net.au (smtp-local.hunterlink.net.au [203.12.144.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CEFF43D2F for ; Wed, 12 Jan 2005 10:18:02 +0000 (GMT) (envelope-from boris@brooknet.com.au) Received: from [61.8.40.204] (ppp28CC.dyn.pacific.net.au [61.8.40.204]) j0CAHvGX001132; Wed, 12 Jan 2005 21:17:59 +1100 Message-ID: <41E4F97C.5010508@brooknet.com.au> Date: Wed, 12 Jan 2005 21:18:36 +1100 From: Sam Lawrance User-Agent: Mozilla Thunderbird 1.0 (X11/20050106) X-Accept-Language: en-us, en MIME-Version: 1.0 To: scott@sremick.net References: <20050112074137.7216.qmail@web53605.mail.yahoo.com> In-Reply-To: <20050112074137.7216.qmail@web53605.mail.yahoo.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: Sort specific category by added date? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 10:18:03 -0000 Scott I. Remick wrote: >Is there a way (web-based or command-line) to get a list of all the ports in >a specific category sorted by their added (not modified/updated) date? > >For example: I want a list of all the games, sorted by those added most >recently first. > >I can't seem to come up with a trick, but then again, I'm not all that >skilled (but still learning!)... > >Thanks! >_______________________________________________ >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" > > > > I was going to suggest looking at the "Date created" which is at the top of just about every port Makefile, but there are spelling errors and the format varies a little. Something like the following might help. It extracts the date that the first revision of the Makefile was added. You'll need a copy of the ports tree with which you can use 'cvs'. Run it inside a category directory. cd /usr/ports/games for i in *; do echo -n `cvs log -r1.1 $i/Makefile | grep "date:" | cut -c 7-25`; echo " $i"; done | sort Needs a bit of tweaking, but you get the idea. The output for 'games' is at http://sam.stral.net/freebsd/games-added-date.txt -- Sam Lawrance ph +61 0425 228 579 freenode: deft From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 10:22:06 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0975816A4CE for ; Wed, 12 Jan 2005 10:22:06 +0000 (GMT) Received: from mx1.dus.nkhosting.net (mx1.dus.nkhosting.net [62.67.53.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id E573343D31 for ; Wed, 12 Jan 2005 10:22:04 +0000 (GMT) (envelope-from philip@jocks.to) Received: (qmail 80509 invoked by uid 85); 12 Jan 2005 10:14:34 -0000 Received: from philip@jocks.to by presto.dus.nkhosting.net by uid 89 with qmail-scanner-1.16 (clamscan: 0.65. spamassassin: 2.63. Clear:. Processed in 2.238423 secs); 12 Jan 2005 10:14:34 -0000 Received: from unknown (HELO ?192.168.0.234?) (postmaster@jocks.to@62.226.103.185) by mx1.dus.nkhosting.net with RC4-SHA encrypted SMTP; 12 Jan 2005 10:14:32 -0000 Mime-Version: 1.0 (Apple Message framework v619) Content-Transfer-Encoding: 7bit Message-Id: Content-Type: text/plain; charset=US-ASCII; format=flowed To: ports@FreeBSD.org From: Philip Jocks Date: Wed, 12 Jan 2005 11:21:55 +0100 X-Mailer: Apple Mail (2.619) Subject: irc/irc X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 10:22:06 -0000 Hi, Version 2.11 of the ircd introduced some patch for running ircd inside a jail (lookups didn't really work and that slowed down the server). Maybe you upgrade the port to the latest version... Cheers, Philip From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 10:44:01 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FFC516A4CE; Wed, 12 Jan 2005 10:44:01 +0000 (GMT) Received: from sccrmhc12.comcast.net (sccrmhc12.comcast.net [204.127.202.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id E960F43D45; Wed, 12 Jan 2005 10:44:00 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from focus.dantavious.com (pcp09757877pcs.gambrl01.md.comcast.net[68.48.122.129]) by comcast.net (sccrmhc12) with ESMTP id <2005011210440001200oo6tqe>; Wed, 12 Jan 2005 10:44:00 +0000 From: Derrick Edwards To: michaelnottebrock@gmx.net, perl@FreeBSD.org Date: Wed, 12 Jan 2005 05:59:45 -0500 User-Agent: KMail/1.7.2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501120559.46560.dantavious@comcast.net> cc: ports@FreeBSD.org Subject: DVDRIP X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 10:44:01 -0000 I was wondering if dvdrip is still broken or actually not dvdrip but p5-GdkPixbuf-0.7009_1, a port that dvdrip depends. I continue to get the same error message that I got 2 months ago. I seen some activity on it via freshports. Just want to know if it is still broken. Thanks Derrick uname -mpr 5.3-STABLE i386 i386 make install clean You can disable the cluster daemon and its dependencies by defining WITHOUT_CLUSTER. Warning: dvdrip does not like this and will throw cryptic error-messages. Use with caution. => Video-DVDRip-0.50.18.tar.gz doesn't seem to exist in /usr/ports/distfiles/. => Attempting to fetch from http://www.exit1.org/dvdrip/dist/. Video-DVDRip-0.50.18.tar.gz 100% of 227 kB 234 kBps ===> Extracting for dvdrip-0.50.18_1 => Checksum OK for Video-DVDRip-0.50.18.tar.gz. ===> dvdrip-0.50.18_1 depends on file: /usr/local/bin/perl5.8.5 - found ===> Patching for dvdrip-0.50.18_1 ===> dvdrip-0.50.18_1 depends on file: /usr/local/bin/perl5.8.5 - found ===> Applying FreeBSD patches for dvdrip-0.50.18_1 ===> dvdrip-0.50.18_1 depends on file: /usr/local/lib/perl5/site_perl/5.8.5/mach/Gtk.pm - found ===> dvdrip-0.50.18_1 depends on file: /usr/local/lib/perl5/site_perl/5.8.5/mach/Gtk/Gdk/Pixbuf.pm - not found ===> Verifying install for /usr/local/lib/perl5/site_perl/5.8.5/mach/Gtk/Gdk/Pixbuf.pm in /usr/ports/x11-toolkits/p5-GdkPixbuf ===> p5-GdkPixbuf-0.7009_1 is marked as broken: Build fails. *** Error code 1 Stop in /usr/ports/x11-toolkits/p5-GdkPixbuf. *** Error code 1 Stop in /usr/ports/multimedia/dvdrip. From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 10:56:40 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7677916A539 for ; Wed, 12 Jan 2005 10:56:40 +0000 (GMT) Received: from galaxy.uci.agh.edu.pl (galaxy.uci.agh.edu.pl [149.156.96.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F2CE43D48 for ; Wed, 12 Jan 2005 10:56:39 +0000 (GMT) (envelope-from kkowalik@uci.agh.edu.pl) Received: by galaxy.uci.agh.edu.pl (Postfix, from userid 1001) id 304EDAF3D7; Wed, 12 Jan 2005 11:56:38 +0100 (CET) Date: Wed, 12 Jan 2005 11:56:38 +0100 From: Krzysztof Kowalik To: ports@FreeBSD.org Message-ID: <20050112105638.GA28355@uci.agh.edu.pl> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: irc/irc X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 10:56:40 -0000 Philip Jocks [philip@jocks.to] wrote: > Version 2.11 of the ircd introduced some patch for running ircd inside > a jail (lookups didn't really work and that slowed down the server). > [...] In fact this patch was introduced in 2.10.3p7. More than half a year ago (and the patch itself was in CVS since 2004-03-23). -- Krzysztof Kowalik | () ASCII Ribbon Campaign Computer Center, AGH UST | /\ Support plain text e-mail From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 11:03:46 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80A6016A4CE for ; Wed, 12 Jan 2005 11:03:46 +0000 (GMT) Received: from mx1.ezinedirector.net (mx1.ezinedirector.net [63.84.193.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE2EE43D4C for ; Wed, 12 Jan 2005 11:03:45 +0000 (GMT) (envelope-from jodi@musesmuse.com) Received: from LOCALHOST by LOCALHOST with ESMTP id 1EFBB28633B20944BED8ACB5E85F62DB Wed, 12 Jan 2005 05:03:41 -0600 Message-ID: <2005011215617166956607818050341-mail-room@ezinedirector.com> To: ports@freebsd.org From: The Muses News Date: Wed, 12 Jan 2005 05:03:41 -0600 Subject: The Muse's News Songwriting Newsletter Subscription Confirmed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: jodi@musesmuse.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 11:03:46 -0000 This email is being sent to you to confirm your subscription to The Muse's News Songwriting Newsletter. Thanks very much for subscribing! I feel confident you'll find a lot to help you in this newsletter. This intro letter is pretty long, but I think it's important for you to read the whole thing. **You might also want to keep it handy for later reference.** The VERY first thing you'll want to make sure you do, is put this newsletter, which will come from me at jodi@musesmuse.com, on your whitelist (ie: accepted emails). PLEASE make sure you do this or you may not receive this newsletter and you may never know *why*. With that said, here's the information you need about your subscription: The Muse's News is a newsletter for songwriters on the net, published every month and is free of charge. It includes helpful articles, reviews and listings of songwriting contests, as well as a classified section for market information and helpful services. Subscription Policy ------------------- Please note that The Muse's News is only mailed out to those email addresses for which a subscription request has been received. If a friend has subscribed you without your knowledge (i.e. you start receiving issues even though you never subscribed), you can request to be taken off the list by sending a message to remove-956607818@ezinedirector.net To unsubscribe or subscribe --------------------------- To Subscribe: Send a message to subscribe-956607818@ezinedirector.net OR To Unsubscribe: Send a message to remove-956607818@ezinedirector.net You will receive an automated message confirming your request. If your email address changes after you subscribe ------------------------------------------------- Send email to editor@musesmuse.com with "musesnews address change" in the subject header. Clearly specify your old email address and your new email address. The Muse's News back issues: ---------------------------------- Indexed back issues are available at: http://www.musesmuse.com/musenews.html E-mail contact -------------- Submissions and queries: editor@musesmuse.com (Please put "Submission" or "Query" somewhere in the subject of your message) Classified submissions & rate information: adinfo@musesmuse.com Editor (Jodi Krangle): editor@musesmuse.com When do I receive my first issue? --------------------------------- If you don't receive your first issue of The Muse's News within three to four weeks after sending a subscription request, then something went wrong. Try subscribing again (if you're already subscribed, you'll receive a message telling you so), or contact me. How big are issues? ------------------- Size of issues average 30-40k. Yes, they are on the long side. There's lots of information in them! If you are using an online service (like AOL) that limits email message sizes, your issues may arrive as attached files instead of email messages. How do I submit articles/Market Info suggestions? ----------------------------------------------- Articles for feature spots should be no more than 800 words in length. I can't guarantee I'll use every submission I receive, but I can guarantee I'll give the matter serious consideration. I'll contact you directly to let you know if I'll be using the article or review. Market information or Songwriting Contest listings can be submitted and will be considered for free inclusion. The ideal format for such listings is a heading in all caps, with a paragraph of text including a url to check out for more information. How do I submit a book/product for review? ------------------------------------------ We always welcome songwriting-related books/products for potential review. However, please note the following: (1) Sending a book does not guarantee a review to be published in The Muse's News. Because of limited time and space, I only publish reviews of books I believe to be of special value to songwriters. (2) Please do not ask when your book will be reviewed. I will contact the publishers/authors of books whose reviews will be published in The Muse's News and let them know in advance. General Policies ---------------- Subscribers are welcome to recirculate or reprint The Muse's News for nonprofit use as long as the appropriate credit is given and the entire text of the newsletter is included (including credits and information at the end of each issue). Other cases should contact me at editor@musesmuse.com. Please do NOT use the subscriber list for mass-mailing purposes (don't bother trying, it won't work). Anyone attempting to do so will have his/her subscription terminated immediately. Finally, please note that I will never give away or sell The Muse's News subscriber list for any reason. Now, since you're obviously interested in improving your songwriting and/or musicianship and in getting more involved in the songwriting community out there on the 'net along with possibly promoting your work, here are a few locations on The Muse's Muse that you might want to check out: =========== ARTIST SPOTLIGHTS: http://www.musesmuse.com/artistspotlights.html At the url above, you'll find a bunch of great musicians and songwriters listed with a graphic of their CD or something that represents their music, a description of the music they create, their genre, and a link to their website. How can you get YOUR music featured there? Have a look at http://www.musesmuse.com/spotlightinfo.html for more details. No, the service isn't free, but most of the site is and this just helps keep it that way. In any case, the fee is designed to be basically pocket change for most folks. A mention in this newsletter is included in the month your spotlight is introduced, and having a link from The Muse's Muse to your website should give it a nice big boost in the search engines too - so it's well worth it! Contact me if you're interested in participating. =========== THE SONGWRITING STORE ON THE MUSE'S MUSE http://www.musesmuse.com/songwriting-store.html The Songwriting Store is filled with many useful educational and helpful items and services for busy songwriters. It's well worth checking out and you'll frequently find discounts on these various products and services that you won't find anywhere else! =========== I hope you enjoy this newsletter! If you have any questions, feel free to email me. I'll be happy to talk with you. All the best, --Jodi ----------------------------------------------------------------- This message has been sent to you because the email address ports@freebsd.org entered by the individual at 4.26.121.116 was used for a subscription request to The Muse's News Songwriting Newsletter at www.musesmuse.com/musenews.html. If you did not subscribe to The Muse's News Songwriting Newsletter please contact us immediately by replying to this email. From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 11:16:25 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54A1416A4CE for ; Wed, 12 Jan 2005 11:16:25 +0000 (GMT) Received: from male.aldigital.co.uk (male.thebunker.net [213.129.64.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09BCA43D39 for ; Wed, 12 Jan 2005 11:16:24 +0000 (GMT) (envelope-from m.seaman@infracaninophile.co.uk) Received: from gravitas.thebunker.net (gateway.ash.thebunker.net [213.129.64.4]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by male.aldigital.co.uk (Postfix) with ESMTP id A543B977CA; Wed, 12 Jan 2005 11:16:22 +0000 (GMT) Received: from [127.0.0.1] (localhost [127.0.0.1])j0CBG5tB088084; Wed, 12 Jan 2005 11:16:18 GMT (envelope-from m.seaman@infracaninophile.co.uk) Message-ID: <41E506F0.2080900@infracaninophile.co.uk> Date: Wed, 12 Jan 2005 11:16:00 +0000 From: Matthew Seaman Organization: Infracaninophile User-Agent: Mozilla Thunderbird 1.0 (X11/20041229) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Sam Lawrance References: <20050112074137.7216.qmail@web53605.mail.yahoo.com> <41E4F97C.5010508@brooknet.com.au> In-Reply-To: <41E4F97C.5010508@brooknet.com.au> X-Enigmail-Version: 0.89.5.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="------------enig4B93559C163585C064D8EBBD" cc: scott@sremick.net cc: freebsd-ports@freebsd.org Subject: Re: Sort specific category by added date? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 11:16:25 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig4B93559C163585C064D8EBBD Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sam Lawrance wrote: > Scott I. Remick wrote: > >> Is there a way (web-based or command-line) to get a list of all the >> ports in >> a specific category sorted by their added (not modified/updated) date? >> >> For example: I want a list of all the games, sorted by those added most >> recently first. >> >> I can't seem to come up with a trick, but then again, I'm not all that >> skilled (but still learning!)... > I was going to suggest looking at the "Date created" which is at the top > of just about every port Makefile, but there are spelling errors and the > format varies a little. > > Something like the following might help. It extracts the date that the > first revision of the Makefile was added. You'll need a copy of the > ports tree with which you can use 'cvs'. Run it inside a category > directory. > > cd /usr/ports/games > for i in *; do > echo -n `cvs log -r1.1 $i/Makefile | grep "date:" | cut -c 7-25`; > echo " $i"; > done | sort > > Needs a bit of tweaking, but you get the idea. The output for 'games' is > at http://sam.stral.net/freebsd/games-added-date.txt Or you could look at the Makefile in /usr/ports/games -- specifically the output of 'cvs annotate': http://www.freebsd.org/cgi/cvsweb.cgi/ports/games/Makefile?annotate=1.732 The 'SUBDIR += portname' lines get basically added when the port is first committed, so correlating the Makefile version numbers with the date that version was created will give you a pretty good answer. It's not perfect -- for instance if the port was renamed it will give you the date that happened -- but it's probably a lot quicker than an exhaustive search through the whole CVS history for the category. Cheers, Matthew -- Dr Matthew J Seaman MA, D.Phil. 8 Dane Court Manor School Rd PGP: http://www.infracaninophile.co.uk/pgpkey Tilmanstone Tel: +44 1304 617253 Kent, CT14 0JL UK --------------enig4B93559C163585C064D8EBBD 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.0 (FreeBSD) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iQCVAwUBQeUG9Zr7OpndfbmCAQJNFwP/QfFgu4DaM92OO7++1b/sQ0MfW+93vbIf pTTRPDArvrnqn1OtJeQecV4nU6c2/yY+eBJ03uL06oCnOp1pX9bZWEzkQqaOCOPa 9Ck99/v+W/wPhKc5eSS8uvF2q1GtYcEl8Q8dP7etyxQBfoOwhS6QbsSnoGfSEDM0 FSjH9jUs01I= =8oqR -----END PGP SIGNATURE----- --------------enig4B93559C163585C064D8EBBD-- From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 11:48:43 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 834E716A4CE; Wed, 12 Jan 2005 11:48:43 +0000 (GMT) Received: from sccrmhc12.comcast.net (sccrmhc12.comcast.net [204.127.202.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0235343D46; Wed, 12 Jan 2005 11:48:43 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from focus.dantavious.com (pcp09757877pcs.gambrl01.md.comcast.net[68.48.122.129]) by comcast.net (sccrmhc12) with ESMTP id <2005011211484201200ovh95e>; Wed, 12 Jan 2005 11:48:42 +0000 From: Derrick Edwards To: freebsd-ports@freebsd.org Date: Wed, 12 Jan 2005 07:04:28 -0500 User-Agent: KMail/1.7.2 References: <20050111203244.62283.qmail@web53606.mail.yahoo.com> <20050112013724.GE96419@seekingfire.com> In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200501120704.29379.dantavious@comcast.net> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: Michael Johnson Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 11:48:43 -0000 I continue to get the same error. uname -mr 5.3-STABLE i386 nsProfile.cpp:423: error: 'class nsDerivedSafe' has no member named 'SelectLocaleForProfile' nsProfile.cpp: In member function `virtual nsresult nsProfile::CreateNewProfileWithLocales(const PRUnichar*, const PRUnichar*, const PRUnichar*, const PRUnichar*, PRBool)': nsProfile.cpp:1724: error: 'class nsDerivedSafe' has no member named 'SelectLocaleForProfile' nsProfile.cpp:1736: error: 'class nsDerivedSafe' has no member named 'GetSelectedSkin' nsProfile.cpp:1738: error: 'class nsDerivedSafe' has no member named 'SelectSkinForProfile' nsProfile.cpp:1760: error: 'class nsDerivedSafe' has no member named 'SelectLocaleForProfile' gmake[4]: *** [nsProfile.o] Error 1 gmake[4]: Leaving directory `/usr/ports/www/nvu/work/mozilla/profile/src' gmake[3]: *** [libs] Error 2 gmake[3]: Leaving directory `/usr/ports/www/nvu/work/mozilla/profile' gmake[2]: *** [tier_9] Error 2 gmake[2]: Leaving directory `/usr/ports/www/nvu/work/mozilla' gmake[1]: *** [default] Error 2 gmake[1]: Leaving directory `/usr/ports/www/nvu/work/mozilla' gmake: *** [build] Error 2 *** Error code 2 Stop in /usr/ports/www/nvu. > On Jan 11, 2005, at 8:37 PM, Tillman Hodgson wrote: > > On Tue, Jan 11, 2005 at 04:38:29PM -0500, Derrick Edwards wrote: > >> On Tuesday 11 January 2005 03:32 pm, Scott I. Remick wrote: > >> > >> I deinstalled and cleaned nvu and tried to install again. I got the > >> same error. > >> Derrick > > Everything should be fixed from last commit > > > I'm seeing the same thing as well. > > > > # uname -a > > FreeBSD backforty.seekingfire.prv 6.0-CURRENT FreeBSD 6.0-CURRENT #2: > > Fri Nov 19 08:03:52 CST 2004 > > tillman@backforty.seekingfire.prv:/usr/obj/usr/src/sys/BACKFORTY i386 > > > > /usr/ports cvsup'd as of this afternoon. > > > > -T > > > > > > -- "The act of communication is the primary ethical act....life is > > meaningful only if the bounds of self can be transcended." > > -- Anatol Rapoport > > _______________________________________________ > > 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" > > _______________________________________________ > 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 Jan 12 11:48:43 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 834E716A4CE; Wed, 12 Jan 2005 11:48:43 +0000 (GMT) Received: from sccrmhc12.comcast.net (sccrmhc12.comcast.net [204.127.202.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0235343D46; Wed, 12 Jan 2005 11:48:43 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from focus.dantavious.com (pcp09757877pcs.gambrl01.md.comcast.net[68.48.122.129]) by comcast.net (sccrmhc12) with ESMTP id <2005011211484201200ovh95e>; Wed, 12 Jan 2005 11:48:42 +0000 From: Derrick Edwards To: freebsd-ports@freebsd.org Date: Wed, 12 Jan 2005 07:04:28 -0500 User-Agent: KMail/1.7.2 References: <20050111203244.62283.qmail@web53606.mail.yahoo.com> <20050112013724.GE96419@seekingfire.com> In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200501120704.29379.dantavious@comcast.net> Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: Michael Johnson Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 11:48:43 -0000 I continue to get the same error. uname -mr 5.3-STABLE i386 nsProfile.cpp:423: error: 'class nsDerivedSafe' has no member named 'SelectLocaleForProfile' nsProfile.cpp: In member function `virtual nsresult nsProfile::CreateNewProfileWithLocales(const PRUnichar*, const PRUnichar*, const PRUnichar*, const PRUnichar*, PRBool)': nsProfile.cpp:1724: error: 'class nsDerivedSafe' has no member named 'SelectLocaleForProfile' nsProfile.cpp:1736: error: 'class nsDerivedSafe' has no member named 'GetSelectedSkin' nsProfile.cpp:1738: error: 'class nsDerivedSafe' has no member named 'SelectSkinForProfile' nsProfile.cpp:1760: error: 'class nsDerivedSafe' has no member named 'SelectLocaleForProfile' gmake[4]: *** [nsProfile.o] Error 1 gmake[4]: Leaving directory `/usr/ports/www/nvu/work/mozilla/profile/src' gmake[3]: *** [libs] Error 2 gmake[3]: Leaving directory `/usr/ports/www/nvu/work/mozilla/profile' gmake[2]: *** [tier_9] Error 2 gmake[2]: Leaving directory `/usr/ports/www/nvu/work/mozilla' gmake[1]: *** [default] Error 2 gmake[1]: Leaving directory `/usr/ports/www/nvu/work/mozilla' gmake: *** [build] Error 2 *** Error code 2 Stop in /usr/ports/www/nvu. > On Jan 11, 2005, at 8:37 PM, Tillman Hodgson wrote: > > On Tue, Jan 11, 2005 at 04:38:29PM -0500, Derrick Edwards wrote: > >> On Tuesday 11 January 2005 03:32 pm, Scott I. Remick wrote: > >> > >> I deinstalled and cleaned nvu and tried to install again. I got the > >> same error. > >> Derrick > > Everything should be fixed from last commit > > > I'm seeing the same thing as well. > > > > # uname -a > > FreeBSD backforty.seekingfire.prv 6.0-CURRENT FreeBSD 6.0-CURRENT #2: > > Fri Nov 19 08:03:52 CST 2004 > > tillman@backforty.seekingfire.prv:/usr/obj/usr/src/sys/BACKFORTY i386 > > > > /usr/ports cvsup'd as of this afternoon. > > > > -T > > > > > > -- "The act of communication is the primary ethical act....life is > > meaningful only if the bounds of self can be transcended." > > -- Anatol Rapoport > > _______________________________________________ > > 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" > > _______________________________________________ > 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 Jan 12 12:54:35 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 607D916A4CE for ; Wed, 12 Jan 2005 12:54:35 +0000 (GMT) Received: from rikers.itso.iu.edu (rikers.itso.iu.edu [149.166.143.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0459943D53 for ; Wed, 12 Jan 2005 12:54:35 +0000 (GMT) (envelope-from ajk@iu.edu) Received: by rikers.itso.iu.edu (Postfix, from userid 1000) id AA9CEB8C02A; Wed, 12 Jan 2005 07:53:55 -0500 (EST) To: ports@freebsd.org From: ajk@iu.edu (Andrew J. Korty) Date: Wed, 12 Jan 2005 07:53:55 -0500 Message-ID: <87wtui7qqk.fsf@rikers.itso.iu.edu> User-Agent: Gnus/5.110003 (No Gnus v0.3) Emacs/21.3.50 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha1; protocol="application/pgp-signature" Subject: New maintainer needed for security/cracklib and security/p5-Authen-Krb5 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 12:54:35 -0000 --=-=-= Greetings. I no longer use the cracklib and p5-Authen-Krb5 ports, which in my case makes for lousy maintenance. Will anyone take over? -- Andrew J. Korty, Chief Security Engineer, GCIA, GCFA Office of the Vice President for Information Technology Indiana University --=-=-= Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (GNU/Linux) iD8DBQBB5R3j8gM8+Mr5peERAhVFAJ9FJ0T0tX6dPDFFkVLAqBv3gB4mlgCfae7R fjIGpfIYbO1hv+ho+i1eaVo= =VbfZ -----END PGP SIGNATURE----- --=-=-=-- From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 13:18:32 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0244416A4CE for ; Wed, 12 Jan 2005 13:18:32 +0000 (GMT) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52EF243D5A for ; Wed, 12 Jan 2005 13:18:30 +0000 (GMT) (envelope-from apircalabu@bitdefender.com) Received: (qmail 24796 invoked from network); 12 Jan 2005 13:18:29 -0000 Received: from apircalabu.dsd.ro (10.10.15.22) by mail.dsd.ro with AES256-SHA encrypted SMTP; 12 Jan 2005 13:18:28 -0000 Date: Wed, 12 Jan 2005 15:21:02 +0200 From: Adi Pircalabu To: freebsd-ports@freebsd.org Message-ID: <20050112152102.57fc843a@apircalabu.dsd.ro> Organization: BitDefender X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BitDefender-SpamStamp: 1.1.2 036000040111 X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.1 on mail.bitdefender.com X-BitDefender-Spam: No (0) cc: freebsd-questions@freebsd.org Subject: Security port: automated integration in the mail/file server - to do or not to do ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 13:18:32 -0000 Hello, I'm working for a security port and I noticed that none of the existing ones integrate their filters automatically after install, regardless of the agent they are installed for. Instead, every port gives (usually from pkg-message) the necessary information on how to integrate the filter. My question is: what is the right FreeBSD way to handle this filter integration issue? I definitely see two options: 1. automatic integration of the filter (probably from pkg-plist or pkg-install), including the needed changes in agent's configuration. 2. the integration should be done by the user using the information provided in post install messages. Any advice will be highly appreciated. Thank you -- Adrian Pircalabu Public KeyID = 0xF902393A -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 14:04:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79A1016A4CE; Wed, 12 Jan 2005 14:04:29 +0000 (GMT) Received: from mail.seekingfire.com (caliban.rospa.ca [24.72.10.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2811D43D39; Wed, 12 Jan 2005 14:04:29 +0000 (GMT) (envelope-from tillman@seekingfire.com) Received: by mail.seekingfire.com (Postfix, from userid 500) id 93644253; Wed, 12 Jan 2005 08:04:28 -0600 (CST) Date: Wed, 12 Jan 2005 08:04:28 -0600 From: Tillman Hodgson To: freebsd-ports@freebsd.org, ports@freebsd.org Message-ID: <20050112140428.GG96419@seekingfire.com> References: <20050111203244.62283.qmail@web53606.mail.yahoo.com> <200501111638.30302.dantavious@comcast.net> <20050112013724.GE96419@seekingfire.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . X-GPG-Key-ID: 828AFC7B X-GPG-Fingerprint: 5584 14BA C9EB 1524 0E68 F543 0F0A 7FBC 828A FC7B X-GPG-Key: http://www.seekingfire.com/personal/gpg_key.asc X-Urban-Legend: There is lots of hidden information in headers X-Tillman-rules: yes he does User-Agent: Mutt/1.5.6i Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 14:04:29 -0000 On Wed, Jan 12, 2005 at 12:43:11AM -0500, Michael Johnson wrote: > Everything should be fixed from last commit That did it for me, thanks :-) -T -- All programs evolve until they can send email. - A.S.R. quote (Richard Letts) Except Microsoft Exchange. - A.S.R. quote (Art) From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 14:04:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79A1016A4CE; Wed, 12 Jan 2005 14:04:29 +0000 (GMT) Received: from mail.seekingfire.com (caliban.rospa.ca [24.72.10.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2811D43D39; Wed, 12 Jan 2005 14:04:29 +0000 (GMT) (envelope-from tillman@seekingfire.com) Received: by mail.seekingfire.com (Postfix, from userid 500) id 93644253; Wed, 12 Jan 2005 08:04:28 -0600 (CST) Date: Wed, 12 Jan 2005 08:04:28 -0600 From: Tillman Hodgson To: freebsd-ports@freebsd.org, ports@freebsd.org Message-ID: <20050112140428.GG96419@seekingfire.com> References: <20050111203244.62283.qmail@web53606.mail.yahoo.com> <200501111638.30302.dantavious@comcast.net> <20050112013724.GE96419@seekingfire.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Habeas-SWE-1: winter into spring X-Habeas-SWE-2: brightly anticipated X-Habeas-SWE-3: like Habeas SWE (tm) X-Habeas-SWE-4: Copyright 2002 Habeas (tm) X-Habeas-SWE-5: Sender Warranted Email (SWE) (tm). The sender of this X-Habeas-SWE-6: email in exchange for a license for this Habeas X-Habeas-SWE-7: warrant mark warrants that this is a Habeas Compliant X-Habeas-SWE-8: Message (HCM) and not spam. Please report use of this X-Habeas-SWE-9: mark in spam to . X-GPG-Key-ID: 828AFC7B X-GPG-Fingerprint: 5584 14BA C9EB 1524 0E68 F543 0F0A 7FBC 828A FC7B X-GPG-Key: http://www.seekingfire.com/personal/gpg_key.asc X-Urban-Legend: There is lots of hidden information in headers X-Tillman-rules: yes he does User-Agent: Mutt/1.5.6i Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 14:04:29 -0000 On Wed, Jan 12, 2005 at 12:43:11AM -0500, Michael Johnson wrote: > Everything should be fixed from last commit That did it for me, thanks :-) -T -- All programs evolve until they can send email. - A.S.R. quote (Richard Letts) Except Microsoft Exchange. - A.S.R. quote (Art) From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 14:07:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2A6E16A4CE for ; Wed, 12 Jan 2005 14:07:47 +0000 (GMT) Received: from files.jawa.at (jawa.at [213.229.17.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0843E43D66 for ; Wed, 12 Jan 2005 14:07:47 +0000 (GMT) (envelope-from mranner@jawa.at) Received: from localhost (localhost [127.0.0.1]) by files.jawa.at (Postfix) with ESMTP id 452FCFDAD; Wed, 12 Jan 2005 15:07:45 +0100 (CET) Received: from files.jawa.at ([127.0.0.1]) by localhost (files.jawa.at [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 98334-05; Wed, 12 Jan 2005 15:07:42 +0100 (CET) Received: by files.jawa.at (Postfix, from userid 60) id 4BD0DFDCF; Wed, 12 Jan 2005 15:07:42 +0100 (CET) Received: from walgrind.jawa.at (walgrind.jawa.at [192.168.200.56]) by files.jawa.at (Postfix) with ESMTP id AC012FDCD; Wed, 12 Jan 2005 15:07:34 +0100 (CET) From: Michael Ranner To: Joe Rhett Date: Wed, 12 Jan 2005 15:07:32 +0100 User-Agent: KMail/1.7.1 References: <6795649E-6280-11D9-812A-000D936EFA20@meer.net> <200501111024.34665.mranner@inode.at> <20050112001350.GD82822@meer.net> In-Reply-To: <20050112001350.GD82822@meer.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501121507.33022.mranner@jawa.at> X-Spam-Checker-Version: SpamAssassin 3.0.1 (2004-10-22) on files.jawa.at X-Spam-Level: X-Spam-Status: No, score=-5.8 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.0.1 X-Virus-Scanned: amavisd-new at jawa.at cc: freebsd-ports@freebsd.org Subject: Re: FreeBSD Port: mod_frontpage-1.6.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 14:07:47 -0000 Am Mittwoch, 12. Januar 2005 01:13 schrieb Joe Rhett: > On Tue, Jan 11, 2005 at 10:24:34AM +0100, Michael Ranner wrote: > > Because users have to accept the EULA, you should leave downloading this > > file to the user like the java ports do. > > Okay -- how do you write this into the Makefile? (I checked the porters > handbook, and there's nothing about how to complain to the user if a > necessary download file is missing and tell them where to get it...) Probably look at /usr/ports/java/jdk14 Regards -- /\/\ichael Ranner mranner@jawa.at - mranner@bitonline.cc - webmaster@mariazell.at ---------------------------------------------------------------------- JAWA Management Software GmbH - http://www.jawa.at/ Liebenauer Hauptstrasse 2oo - A-8041 Graz Tel +43 316 403274 21 - Fax +43 316 403274 10 ---------------------------------------------------------------------- Mariazell Online - http://www.mariazell.at/ ---------------------------------------------------------------------- From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 14:20:38 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8476A16A4CF for ; Wed, 12 Jan 2005 14:20:38 +0000 (GMT) Received: from ptb-relay02.plus.net (ptb-relay02.plus.net [212.159.14.213]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33FF143D60 for ; Wed, 12 Jan 2005 14:20:38 +0000 (GMT) (envelope-from marko@freebsd.org) Received: from [80.229.231.20] (helo=[192.168.254.25]) by ptb-relay02.plus.net with esmtp (Exim) id 1CojMT-000N7l-7i; Wed, 12 Jan 2005 14:20:37 +0000 Message-ID: <41E532C6.20703@freebsd.org> Date: Wed, 12 Jan 2005 14:23:02 +0000 From: Mark Ovens User-Agent: Mozilla Thunderbird 7.0 (X11/20050110) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Francois Tigeot References: <41CAAA60.2080001@freebsd.org> <20041226171434.GA2658@aoi.wolfpond.org> In-Reply-To: <20041226171434.GA2658@aoi.wolfpond.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: Digikam broken? Mutex lock failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 14:20:38 -0000 Francois Tigeot wrote: > On Thu, Dec 23, 2004 at 11:22:08AM +0000, Mark Ovens wrote: >> digikam-0.7 >> >> FreeBSD redshift 5.3-STABLE FreeBSD 5.3-STABLE #0: Wed Dec 22 13:16:53 >> GMT 2004 mark@redshift:/usr/obj/usr/src/sys/REDSHIFT i386 >> >> When I select my camera, Canon Powershot A70, from the Camera menu I get >> these errors: >> >> Mutex lock failure: Resource deadlock avoided >> Mutex unlock failure: Operation not permitted >> >> This used to work with previous versions of FreeBSD 5.x and digikam >> although I don't know when it stopped working. >> >> I can't find a PR for this so I'm guessing it may be something specific >> to my system. >> >> Can anyone shed any light on this please? > > Well, it seems to be more general: I have a similar problem here. > (5.3-RELEASE-p2/amd64) > > The errors are a bit different: > > /libexec/ld-elf.so.1: /usr/X11R6/lib/libqt-mt.so.3: Undefined symbol > "pthread_attr_init" > Mutex destroy failure: Device busy > ICE default IO error handler doing an exit(), pid = 58057, errno = 2 > Francois, I don't know if you've got digikam working yet but I found this which should fix it for you - just need to cvsup your ports tree and rebuild. It got rid of the mutex errors for me but I still get "Can't connect to camera" in digikam itself :-( I hope you have better luck! Regards, Mark From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 14:26:21 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 292E116A4CE for ; Wed, 12 Jan 2005 14:26:21 +0000 (GMT) Received: from mail.orangexl.nl (mail.orangexl.nl [194.109.66.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 565D043D55 for ; Wed, 12 Jan 2005 14:26:20 +0000 (GMT) (envelope-from info@orangexl.com) Received: from OrangeXL (cp262152-a.roose1.nb.home.nl [84.26.101.188]) (AUTH: LOGIN postmaster@orangexl.com) by mail.orangexl.nl with esmtp; Wed, 12 Jan 2005 15:26:18 +0100 From: "Sander Holthaus - Orange XL" To: Meno.Abels@Adviser.com Date: Wed, 12 Jan 2005 15:26:24 +0100 Organization: Orange XL Message-ID: MIME-Version: 1.0 X-Mailer: Microsoft Office Outlook, Build 11.0.6353 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2527 Thread-Index: AcT4srHFGpQYLNpXTNKmk+BdILKnKw== Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: ports@FreeBSD.org Subject: FreeBSD Port: crm114-20040221_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 14:26:21 -0000 Hello there, Just a quick question: I was interested in testing out CRM114, so I looked it up on Freshports. But it seems it is no longer maintained as a port, seeing that the stable-version is 20040627 (current is 20041231) while the port-version is 20040221 :-(. Will there be any updates to the port of CRM114 in the near future? Kind Regards, Sander Holthaus From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 14:58:51 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 612D816A4CF for ; Wed, 12 Jan 2005 14:58:51 +0000 (GMT) Received: from relay.rdsnet.ro (gimli.rdsnet.ro [193.231.236.70]) by mx1.FreeBSD.org (Postfix) with SMTP id 6C4B943D49 for ; Wed, 12 Jan 2005 14:58:50 +0000 (GMT) (envelope-from itetcu@people.tecnik93.com) Received: (qmail 26863 invoked from network); 12 Jan 2005 14:55:09 -0000 Received: from unknown (HELO smtp.rdsnet.ro) (62.231.74.130) by smtp1-133.rdsnet.ro with SMTP; 12 Jan 2005 14:55:09 -0000 Received: (qmail 2571 invoked by uid 89); 12 Jan 2005 14:59:00 -0000 Received: from unknown (HELO it.buh.tecnik93.com) (81.196.204.98) by 0 with SMTP; 12 Jan 2005 14:59:00 -0000 Received: from it.buh.tecnik93.com (localhost.buh.tecnik93.com [127.0.0.1]) by it.buh.tecnik93.com (Postfix) with ESMTP id B87EF11611; Wed, 12 Jan 2005 16:58:10 +0200 (EET) Date: Wed, 12 Jan 2005 16:58:10 +0200 From: Ion-Mihai Tetcu To: Adi Pircalabu Message-ID: <20050112165810.07364fcd@it.buh.tecnik93.com> In-Reply-To: <20050112152102.57fc843a@apircalabu.dsd.ro> References: <20050112152102.57fc843a@apircalabu.dsd.ro> X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: freebsd-questions@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: Security port: automated integration in the mail/file server - to do or not to do ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 14:58:51 -0000 On Wed, 12 Jan 2005 15:21:02 +0200 Adi Pircalabu wrote: > Hello, > > I'm working for a security port and I noticed that none of the existing > ones integrate their filters automatically after install, regardless of > the agent they are installed for. Instead, every port gives (usually > from pkg-message) the necessary information on how to integrate the > filter. > My question is: what is the right FreeBSD way to handle this filter > integration issue? I definitely see two options: > 1. automatic integration of the filter (probably from pkg-plist or > pkg-install), including the needed changes in agent's configuration. > 2. the integration should be done by the user using the information > provided in post install messages. While I try to make my ports as user friendly and automated as possible, I would vote for 2) above. I hate when something just changes on my system without me telling it to do so explicitly; plus I could very well install the port today and wait to the end of the week to switch it on for testing; plus there will always be some strange edge cases when you'll just break some custom configuration. Eventually (if possible, since I didn't saw that Makefile ;) ) if you can somehow integrated the required changes but not activate them (e.g. an rc script and a portname_enable="YES" that one should set to activate them). And BTW one would be able to run (part of) that "security port" as a nice postfix queue filter without having to scratch its left left side with the right foot, right ? :) -- IOnut Unregistered ;) FreeBSD "user" From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 16:06:27 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 944E116A4CE; Wed, 12 Jan 2005 16:06:27 +0000 (GMT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2085843D46; Wed, 12 Jan 2005 16:06:27 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from focus.dantavious.com (pcp09757877pcs.gambrl01.md.comcast.net[68.48.122.129]) by comcast.net (sccrmhc11) with ESMTP id <2005011216062001100395p3e>; Wed, 12 Jan 2005 16:06:24 +0000 From: Derrick Edwards To: freebsd-ports@freebsd.org Date: Wed, 12 Jan 2005 11:22:07 -0500 User-Agent: KMail/1.7.2 References: <20050111203244.62283.qmail@web53606.mail.yahoo.com> <20050112140428.GG96419@seekingfire.com> In-Reply-To: <20050112140428.GG96419@seekingfire.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501121122.08114.dantavious@comcast.net> cc: ports@freebsd.org Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 16:06:27 -0000 I am getting this error after cvsup make install clean ===> Extracting for nvu-0.70 => Checksum OK for nvu-0.70-sources.tar.bz2. ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found ===> Patching for nvu-0.70 ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found ===> Applying FreeBSD patches for nvu-0.70 2 out of 4 hunks failed--saving rejects to xpcom/reflect/xptcall/src/md/unix/Makefile.in.rej => Patch patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in failed to apply cleanly. => Patch(es) patch-build_unix_mozilla-xpcom.pc.in patch-nsprpub-pr-include-md-_pth.h patch-nsprpub-pr-src-io-prprf.c patch-nsprpub::pr::include::md::_freebsd.cfg patch-nsprpub::pr::include::md::_freebsd.h patch-nsprpub::pr::src::pthreads::ptio.c patch-uriloader_exthandler_unix_nsGNOMERegistry.cpp patch-xpcom-reflect-xptcall-src-md-unix-Makefile.in patch-xpcom::reflect::xptcall::public::xptcstubsdecl.inc applied cleanly. *** Error code 1 Stop in /usr/ports/www/nvu. From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 16:06:27 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 944E116A4CE; Wed, 12 Jan 2005 16:06:27 +0000 (GMT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2085843D46; Wed, 12 Jan 2005 16:06:27 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from focus.dantavious.com (pcp09757877pcs.gambrl01.md.comcast.net[68.48.122.129]) by comcast.net (sccrmhc11) with ESMTP id <2005011216062001100395p3e>; Wed, 12 Jan 2005 16:06:24 +0000 From: Derrick Edwards To: freebsd-ports@freebsd.org Date: Wed, 12 Jan 2005 11:22:07 -0500 User-Agent: KMail/1.7.2 References: <20050111203244.62283.qmail@web53606.mail.yahoo.com> <20050112140428.GG96419@seekingfire.com> In-Reply-To: <20050112140428.GG96419@seekingfire.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501121122.08114.dantavious@comcast.net> cc: ports@freebsd.org Subject: Re: New Nvu 0.70 dies on FreeBSD 5.3-R X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 16:06:27 -0000 I am getting this error after cvsup make install clean ===> Extracting for nvu-0.70 => Checksum OK for nvu-0.70-sources.tar.bz2. ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found ===> Patching for nvu-0.70 ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found ===> Applying FreeBSD patches for nvu-0.70 2 out of 4 hunks failed--saving rejects to xpcom/reflect/xptcall/src/md/unix/Makefile.in.rej => Patch patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in failed to apply cleanly. => Patch(es) patch-build_unix_mozilla-xpcom.pc.in patch-nsprpub-pr-include-md-_pth.h patch-nsprpub-pr-src-io-prprf.c patch-nsprpub::pr::include::md::_freebsd.cfg patch-nsprpub::pr::include::md::_freebsd.h patch-nsprpub::pr::src::pthreads::ptio.c patch-uriloader_exthandler_unix_nsGNOMERegistry.cpp patch-xpcom-reflect-xptcall-src-md-unix-Makefile.in patch-xpcom::reflect::xptcall::public::xptcstubsdecl.inc applied cleanly. *** Error code 1 Stop in /usr/ports/www/nvu. From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 16:12:07 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F19EE16A4CE for ; Wed, 12 Jan 2005 16:12:07 +0000 (GMT) Received: from srvdmz13.oekb.co.at (srvdmz13.oekb.co.at [143.245.5.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B51343D46 for ; Wed, 12 Jan 2005 16:12:04 +0000 (GMT) (envelope-from Ewald.Jenisch@oekb.at) Received: from Unknown [143.245.2.191] by srvdmz13.oekb.co.at - SurfControl E-mail Filter (4.7); Wed, 12 Jan 2005 17:12:01 +0100 Received: from aurora.oekb.co.at ([143.245.9.16]) by MAIL01.oekb.co.at with Microsoft SMTPSVC(5.0.2195.6713); Wed, 12 Jan 2005 17:12:00 +0100 Received: from aurora.oekb.co.at (localhost.oekb.co.at [127.0.0.1]) by aurora.oekb.co.at (8.13.1/8.13.1) with ESMTP id j0CGC0hF048252 for ; Wed, 12 Jan 2005 17:12:00 +0100 (CET) (envelope-from ej@aurora.oekb.co.at) Received: (from ej@localhost) by aurora.oekb.co.at (8.13.1/8.13.1/Submit) id j0CGC09V048251 for freebsd-ports@freebsd.org; Wed, 12 Jan 2005 17:12:00 +0100 (CET) (envelope-from ej) Message-ID: <20050112161200.GA48213@aurora.oekb.co.at> From: Ewald Jenisch To: freebsd-ports@freebsd.org Date: Wed, 12 Jan 2005 17:12:00 +0100 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-OriginalArrivalTime: 12 Jan 2005 16:12:00.0937 (UTC) FILETIME=[72AA8190:01C4F8C1] User-Agent: Mutt/1.4.2.1i Subject: VNCviewer fullscreen under Gnome 2.8 - loosing window decorations X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 16:12:08 -0000 Hi, Since my original posting to freebsd-questions didn't give a single reply I'm trying here - maybe somebody is experiencing the same problem... I'm running in a strange problem using VNCviewer (VNC 3.3.7 built from ports) in fullscreen mode: vncviewer uses function key F8 to switch between normal and fullscreen mode. When I drop out of VNC fullscreen-mode using F8 I'm loosing the window decorations of VNCViewer under X. When pressing F8 again to bring up the vncviewer popup window that should allow me to go back to vnc fullscreen mode nothing happens. The only way to get back out again of vnc is to terminate the vnc-connection on the server-side in order to kill the vnc-client window running on my machine - really annoying. >From what I can tell this problem *might* have to do something with Gnome(desktop) handling the vnc-session and going in- and out of VNC fullscreen mode. Here's my environment: FreeBSD 5.3 Gnome 2.8 VNC 3.3.7 from ports all ports current "up to the minute" (i.e. I've done "portupgrade -arR" some days ago) Has anybody else experienced this problem? Anything that can be done against it? Thanks much in advance for your help, -ewald From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 17:15:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 161B616A4D7; Wed, 12 Jan 2005 17:15:29 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA05A43D46; Wed, 12 Jan 2005 17:15:24 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id j0CHQqnP039692; Wed, 12 Jan 2005 14:26:52 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id j0CHEwua042506; Wed, 12 Jan 2005 14:14:58 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id j0CHEvFe042503; Wed, 12 Jan 2005 14:14:57 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Wed, 12 Jan 2005 14:14:57 -0300 From: Fernan Aguero To: FreeBSD Ports Message-ID: <20050112171457.GA63187@iib.unsam.edu.ar> Mail-Followup-To: FreeBSD Ports , openoffice@FreeBSD.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.6i cc: openoffice@FreeBSD.ORG Subject: is openoffice broken in FreeBSD 4.x? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 17:15:29 -0000 I noticed that OO has been updated to 1.1.4, however, when I try to build it I receive this message: ** Port marked as IGNORE: editors/openoffice-1.1: "is marked as broken: "rtld depends on _end symbol. type make -DBROKEN to see how to upgrade your rtld"" But, when I type 'make -DBROKEN' nothing different happens, just the same message again. I am running FreeBSD-4.10p5 (RELENG_4_10), and would like to know how to upgrade my rtld, if that's possible, and then openoffice. Thanks, Fernan From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 17:27:22 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52EC516A4CE for ; Wed, 12 Jan 2005 17:27:22 +0000 (GMT) Received: from mail.vslash.com (gambetta-2-82-67-185-6.fbx.proxad.net [82.67.185.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7752543D45 for ; Wed, 12 Jan 2005 17:27:21 +0000 (GMT) (envelope-from valery@vslash.com) Received: from [192.168.0.22] (oxe [192.168.0.22]) by mail.vslash.com (Postfix) with ESMTP id C33D41DA02; Wed, 12 Jan 2005 17:44:00 +0100 (CET) Message-ID: <41E552FB.70506@vslash.com> Date: Wed, 12 Jan 2005 17:40:27 +0100 From: =?ISO-8859-1?Q?Val=E9ry?= User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040616 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ewald Jenisch References: <20050112161200.GA48213@aurora.oekb.co.at> In-Reply-To: <20050112161200.GA48213@aurora.oekb.co.at> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: VNCviewer fullscreen under Gnome 2.8 - loosing window decorations X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 17:27:22 -0000 Dear Ewald, i think you aren't into the good thread ; where to go is on your own email : > I'm running in a strange problem using VNCviewer (VNC 3.3.7 built from 1 - VNC problem, not FreeBSD > decorations of VNCViewer under X. When pressing F8 again to bring up 2 - X problem, not FreeBSD > Gnome 2.8 3 - Gnome problem, not FreeBSD All these 3 components are independant from FreeBSD. Well, saying that, because i'm working sometime with VNC, trying to solve your problem : 1 - What say VNC log ? (~/.vnc/yourHost:yourDisplay.log, with ~ = userHome directory where you launch VNC Server) If there is a problem rendering something, it's possible to get interesting msg from here. 2 - Are you using VNC Client & VNC Server on the same computer ?? 3 - If not, VNC Server is running on what ? MS-W., FreeBSD, ... ? 4 - you must set the same window size on both server && client, this is the best way to use them ; if you use a non-fullscreen client, you must know that if your client window is less than the overall size of your server window, the client window size is not adjusted, this is not dynamic. VNC mean "Video", ie you get a Video image, not logical object. It's like a TV if you want, VNC open a Video Stream btw you and the server. Ok ? Well, in regard, i think the best way to use VNC is fullscreen. Read your log, and look if the problem is from gconf (gnome), VNC or other things. I'm not specialist, please contact VNC or Gnome if you want more information, or try Google, Metacrawler and so., but i think FreeBSD don't reply to you on a problem on which they cannot do anything, B. regards, v/ Ewald Jenisch wrote: > Hi, > > Since my original posting to freebsd-questions didn't give a single > reply I'm trying here - maybe somebody is experiencing the same > problem... > > I'm running in a strange problem using VNCviewer (VNC 3.3.7 built from > ports) in fullscreen mode: > > vncviewer uses function key F8 to switch between normal and fullscreen > mode. > > When I drop out of VNC fullscreen-mode using F8 I'm loosing the window > decorations of VNCViewer under X. When pressing F8 again to bring up > the vncviewer popup window that should allow me to go back to vnc > fullscreen mode nothing happens. The only way to get back out again of > vnc is to terminate the vnc-connection on the server-side in order to > kill the vnc-client window running on my machine - really annoying. > >>From what I can tell this problem *might* have to do something with > Gnome(desktop) handling the vnc-session and going in- and out of VNC > fullscreen mode. > > Here's my environment: > FreeBSD 5.3 > Gnome 2.8 > VNC 3.3.7 from ports > > all ports current "up to the minute" (i.e. I've done "portupgrade > -arR" some days ago) > > Has anybody else experienced this problem? Anything that can be done > against it? > > > Thanks much in advance for your help, > -ewald > > _______________________________________________ > 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 Jan 12 18:05:41 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 842A816A4CE for ; Wed, 12 Jan 2005 18:05:41 +0000 (GMT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D82F43D1F for ; Wed, 12 Jan 2005 18:05:41 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 6D2C5148DB; Wed, 12 Jan 2005 12:05:40 -0600 (CST) Date: Wed, 12 Jan 2005 12:05:40 -0600 (CST) From: Mark Linimon X-X-Sender: linimon@pancho To: Sander Holthaus - Orange XL In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@FreeBSD.org cc: Meno.Abels@Adviser.com Subject: Re: FreeBSD Port: crm114-20040221_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 18:05:41 -0000 The last update to the distfile of crm114 happened on 2004/03/01. There was a partial (not completed) repocopy to crm114-devel which was done months ago, but recently removed because it had never been completed. Apparently the idea was to have the two ports track the stable and latest versions respectively. I'd recommend filing a PR to update the main port and if there's no answer from the maintainer then you might have just volunteered :-) mcl From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 20:33:18 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E35CA16A4CE; Wed, 12 Jan 2005 20:33:18 +0000 (GMT) Received: from motgate4.mot.com (motgate4.mot.com [144.189.100.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CEE743D1F; Wed, 12 Jan 2005 20:33:18 +0000 (GMT) (envelope-from rittle@latour.waar.labs.mot.com) Received: from az33exr01.mot.com (az33exr01.mot.com [10.64.251.231]) by motgate4.mot.com (8.12.11/Motgate4) with ESMTP id j0CKaO5T029962; Wed, 12 Jan 2005 13:36:24 -0700 (MST) Received: from latour.waar.labs.mot.com (latour.waar.labs.mot.com [173.23.133.73])j0CKVkxd024760; Wed, 12 Jan 2005 14:31:46 -0600 Received: from latour.waar.labs.mot.com (localhost.waar.labs.mot.com [127.0.0.1])j0CKVxR7084839; Wed, 12 Jan 2005 14:31:59 -0600 (CST) (envelope-from rittle@latour.waar.labs.mot.com) Received: (from rittle@localhost) by latour.waar.labs.mot.com (8.13.1/8.13.1/Submit) id j0CKVxjP084836; Wed, 12 Jan 2005 14:31:59 -0600 (CST) (envelope-from rittle) Date: Wed, 12 Jan 2005 14:31:59 -0600 (CST) From: Loren James Rittle Message-Id: <200501122031.j0CKVxjP084836@latour.waar.labs.mot.com> To: gerald@pfeifer.com In-reply-to: (message from Gerald Pfeifer on Sun, 9 Jan 2005 23:58:08 +0100 (CET)) References: <200501081657.j08GvnML053109@sakura.ninth-nine.com> cc: ports@FreeBSD.org cc: nork@FreeBSD.org cc: obrien@FreeBSD.org Subject: Re: Fix -pthread issue on lang/gcc3[34] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: rittle@labs.mot.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 20:33:19 -0000 In article , Gerald Pfeifer writes: [...] > David, Loren, how shall we proceed? I believe David raised issues wrt. > cross-compilation which would render the #ifdefs unsuitable for upstream. > Would a configure option, which is then used by the FreeBSD ports, be an > option? >> Index: gcc33/Makefile >> Index: gcc34/Makefile [...] David already patched both mainline and 3.4 branch on FSF. Thus, I think it is OK to have an equivalent port patch at least until you start to use an FSF release with the patch. I didn't check closely to see if this proposed port patch was exactly what David installed on the FSF tree. Regards, Loren From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 20:34:02 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B36B816A4CE for ; Wed, 12 Jan 2005 20:34:02 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 88E5943D41 for ; Wed, 12 Jan 2005 20:34:01 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: (qmail invoked by alias); 12 Jan 2005 20:34:00 -0000 Received: from p3EE26A63.dip.t-dialin.net (EHLO lofi.dyndns.org) (62.226.106.99) by mail.gmx.net (mp014) with SMTP; 12 Jan 2005 21:34:00 +0100 X-Authenticated: #443188 Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id j0CKXp0Z017293 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Wed, 12 Jan 2005 21:33:53 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Derrick Edwards Date: Wed, 12 Jan 2005 21:33:50 +0100 User-Agent: KMail/1.7.1 References: <200501120559.46560.dantavious@comcast.net> In-Reply-To: <200501120559.46560.dantavious@comcast.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501122133.50735.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new X-Y-GMX-Trusted: 0 cc: ports@freebsd.org cc: perl@freebsd.org Subject: Re: DVDRIP X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 20:34:02 -0000 Am Mittwoch, 12. Januar 2005 11:59 schrieb Derrick Edwards: > I was wondering if dvdrip is still broken or actually not dvdrip but > p5-GdkPixbuf-0.7009_1, a port that dvdrip depends. I continue to get the > same error message that I got 2 months ago. I seen some activity on it via > freshports. Just want to know if it is still broken. At least it doesn't seem to build on the package builder. Try commenting out the BROKEN line in the port-Makefile of p5-GdkPixbuf and see if it builds for you, I have a hunch it might. -- ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 20:38:16 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54B4D16A4CF; Wed, 12 Jan 2005 20:38:16 +0000 (GMT) Received: from ares.wolfpond.org (ns1.wolfpond.org [62.212.96.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A8C243D4C; Wed, 12 Jan 2005 20:38:12 +0000 (GMT) (envelope-from ftigeot@aoi.wolfpond.org) Received: from aoi.wolfpond.org (aoi.wolfpond.org [IPv6:2001:7a8:24db:1:20c:76ff:feb4:27e1]) by ares.wolfpond.org (8.13.1/8.13.1) with ESMTP id j0CKcKwL015900; Wed, 12 Jan 2005 21:38:20 +0100 (CET) (envelope-from ftigeot@aoi.wolfpond.org) Received: from aoi.wolfpond.org (localhost [127.0.0.1]) by aoi.wolfpond.org (8.13.1/8.13.1) with ESMTP id j0CKcAqY066734; Wed, 12 Jan 2005 21:38:10 +0100 (CET) (envelope-from ftigeot@aoi.wolfpond.org) Received: (from ftigeot@localhost) by aoi.wolfpond.org (8.13.1/8.13.1/Submit) id j0CKcAQM066733; Wed, 12 Jan 2005 21:38:10 +0100 (CET) (envelope-from ftigeot) Date: Wed, 12 Jan 2005 21:38:10 +0100 From: Francois Tigeot To: Mark Ovens Message-ID: <20050112203810.GA1892@aoi.wolfpond.org> References: <41CAAA60.2080001@freebsd.org> <20041226171434.GA2658@aoi.wolfpond.org> <41E532C6.20703@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41E532C6.20703@freebsd.org> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org Subject: Re: Digikam broken? Mutex lock failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 20:38:16 -0000 On Wed, Jan 12, 2005 at 02:23:02PM +0000, Mark Ovens wrote: > Francois Tigeot wrote: > >On Thu, Dec 23, 2004 at 11:22:08AM +0000, Mark Ovens wrote: > >>digikam-0.7 > >> > >>FreeBSD redshift 5.3-STABLE FreeBSD 5.3-STABLE #0: Wed Dec 22 13:16:53 > >>GMT 2004 mark@redshift:/usr/obj/usr/src/sys/REDSHIFT i386 > >> > >>When I select my camera, Canon Powershot A70, from the Camera menu I get > >>these errors: > >> > >>Mutex lock failure: Resource deadlock avoided > >>Mutex unlock failure: Operation not permitted > >> > >Well, it seems to be more general: I have a similar problem here. > >(5.3-RELEASE-p2/amd64) > > > >The errors are a bit different: > > > >/libexec/ld-elf.so.1: /usr/X11R6/lib/libqt-mt.so.3: Undefined symbol > >"pthread_attr_init" > >Mutex destroy failure: Device busy > >ICE default IO error handler doing an exit(), pid = 58057, errno = 2 > > > I don't know if you've got digikam working yet but I found this > > which should fix it for you - just need to cvsup your ports tree and > rebuild. > > It got rid of the mutex errors for me but I still get "Can't connect to > camera" in digikam itself :-( I rebuilt digikam today, still no change. The gui appears to run fine for a moment and crash when I select the camera. Since gphoto works for me, I can wait for the pthread stuff to be properly sorted on amd64... -- Francois Tigeot From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 21:08:37 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA34816A4D0 for ; Wed, 12 Jan 2005 21:08:37 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6370843D48 for ; Wed, 12 Jan 2005 21:08:37 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 83BEC51783; Wed, 12 Jan 2005 13:08:36 -0800 (PST) Date: Wed, 12 Jan 2005 13:08:36 -0800 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20050112210836.GA53854@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="u3/rZRmxL6MmkK24" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 21:08:37 -0000 --u3/rZRmxL6MmkK24 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline For the past month I've been sending warnings to maintainers of ports that have broken pkg-plists (i.e. leave behind files after deinstallation). Now that we've passed the 4.11-RELEASE freeze, it's a good time to take this to the next level and begin phasing in strict enforcement of pkg-plist correctness. What this means is that the port build will now fail on the package cluster if certain kinds of files are left behind (to avoid false positives I will be phasing in matching of the 'extra file list' with a set of regexps that will be added to over time). Thus, your package will no longer appear on the ftp site, will be marked BROKEN="Incomplete pkg-plist" and will eventually be scheduled for removal should the problem continue to be ignored by the maintainer. If you are the maintainer of an affected port, you will have already received mail from me detailing the missing files. If you've already submitted a PR containing a fix, you don't have anything further to worry about (although you might like to send a reminder to ports@ if you think it's been overlooked). If you haven't yet addressed the problems, please do so ASAP. Thanks, Kris "Ports Janitor" Kennaway --u3/rZRmxL6MmkK24 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB5ZHSWry0BWjoQKURAmWxAJ4yZrfOFHGLEGgMv1tuKtUYHsjWEgCfQ2p5 8y37fjAd77bwSwvGsiEQjVw= =yC/2 -----END PGP SIGNATURE----- --u3/rZRmxL6MmkK24-- From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 21:15:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D884F16A4CE for ; Wed, 12 Jan 2005 21:15:03 +0000 (GMT) Received: from mail2out.barnet.com.au (mail2out.barnet.com.au [202.83.176.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E84643D55 for ; Wed, 12 Jan 2005 21:15:03 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mail2out.barnet.com.au (Postfix, from userid 27) id D0C6B70744C; Thu, 13 Jan 2005 08:15:01 +1100 (EST) X-Viruscan-Id: <41E593550001306CD8CCF4@BarNet> Received: from mail2-auth.barnet.com.au (mail2.barnet.com.au [202.83.176.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id 6E8F1707446; Thu, 13 Jan 2005 08:15:01 +1100 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id DC640707445; Thu, 13 Jan 2005 08:15:00 +1100 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 23872610F; Thu, 13 Jan 2005 08:14:59 +1100 (EST) Date: Thu, 13 Jan 2005 08:14:59 +1100 From: Edwin Groothuis To: Kris Kennaway Message-ID: <20050112211458.GA1175@k7.mavetju> References: <20050112210836.GA53854@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050112210836.GA53854@xor.obsecurity.org> User-Agent: Mutt/1.5.6i cc: ports@FreeBSD.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 21:15:04 -0000 On Wed, Jan 12, 2005 at 01:08:36PM -0800, Kris Kennaway wrote: > For the past month I've been sending warnings to maintainers of ports > that have broken pkg-plists (i.e. leave behind files after > deinstallation). Now that we've passed the 4.11-RELEASE freeze, it's > a good time to take this to the next level and begin phasing in strict > enforcement of pkg-plist correctness. Please have a look at ports/75379: bsd.port.mk / add-plist-docs is too relaxed Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 21:29:30 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B818716A4CE for ; Wed, 12 Jan 2005 21:29:30 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 748D743D49 for ; Wed, 12 Jan 2005 21:29:30 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.43 (FreeBSD)) id 1Coq35-000IKD-Pp; Wed, 12 Jan 2005 22:29:03 +0100 Date: Wed, 12 Jan 2005 22:29:03 +0100 From: Kirill Ponomarew To: Edwin Groothuis Message-ID: <20050112212903.GA69532@voodoo.oberon.net> References: <20050112210836.GA53854@xor.obsecurity.org> <20050112211458.GA1175@k7.mavetju> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="3V7upXqbjpZ4EhLz" Content-Disposition: inline In-Reply-To: <20050112211458.GA1175@k7.mavetju> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: ports@FreeBSD.org cc: Kris Kennaway Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 21:29:30 -0000 --3V7upXqbjpZ4EhLz Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Jan 13, 2005 at 08:14:59AM +1100, Edwin Groothuis wrote: > On Wed, Jan 12, 2005 at 01:08:36PM -0800, Kris Kennaway wrote: > > For the past month I've been sending warnings to maintainers of ports > > that have broken pkg-plists (i.e. leave behind files after > > deinstallation). Now that we've passed the 4.11-RELEASE freeze, it's > > a good time to take this to the next level and begin phasing in strict > > enforcement of pkg-plist correctness. > > Please have a look at ports/75379: > bsd.port.mk / add-plist-docs is too relaxed Well, the problem described seems to be software specific and can be easily patched. There are rare cases when described mess happens. -Kirill --3V7upXqbjpZ4EhLz Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB5ZafQC1G6a60JuURAgTJAJ0Y2cg2SzcwHNjK04IQKa26A2oPiwCgu2g2 O5Yig+cVV6tb5wRY15STERY= =tbcu -----END PGP SIGNATURE----- --3V7upXqbjpZ4EhLz-- From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 21:47:09 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39AFE16A4CE for ; Wed, 12 Jan 2005 21:47:09 +0000 (GMT) Received: from mail2out.barnet.com.au (mail2out.barnet.com.au [202.83.176.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF60D43D2F for ; Wed, 12 Jan 2005 21:47:08 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mail2out.barnet.com.au (Postfix, from userid 27) id D7B0270744F; Thu, 13 Jan 2005 08:47:07 +1100 (EST) X-Viruscan-Id: <41E59ADB00000D7E9AAB7D@BarNet> Received: from mail2-auth.barnet.com.au (mail2.barnet.com.au [202.83.176.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id 964CC70744C; Thu, 13 Jan 2005 08:47:07 +1100 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id 0821B707444; Thu, 13 Jan 2005 08:47:07 +1100 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id F1741610F; Thu, 13 Jan 2005 08:47:05 +1100 (EST) Date: Thu, 13 Jan 2005 08:47:05 +1100 From: Edwin Groothuis To: Kirill Ponomarew Message-ID: <20050112214705.GB1175@k7.mavetju> References: <20050112210836.GA53854@xor.obsecurity.org> <20050112211458.GA1175@k7.mavetju> <20050112212903.GA69532@voodoo.oberon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050112212903.GA69532@voodoo.oberon.net> User-Agent: Mutt/1.5.6i cc: ports@FreeBSD.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 21:47:09 -0000 On Wed, Jan 12, 2005 at 10:29:03PM +0100, Kirill Ponomarew wrote: > On Thu, Jan 13, 2005 at 08:14:59AM +1100, Edwin Groothuis wrote: > > On Wed, Jan 12, 2005 at 01:08:36PM -0800, Kris Kennaway wrote: > > > For the past month I've been sending warnings to maintainers of ports > > > that have broken pkg-plists (i.e. leave behind files after > > > deinstallation). Now that we've passed the 4.11-RELEASE freeze, it's > > > a good time to take this to the next level and begin phasing in strict > > > enforcement of pkg-plist correctness. > > > > Please have a look at ports/75379: > > bsd.port.mk / add-plist-docs is too relaxed > > Well, the problem described seems to be software specific and can be > easily patched. There are rare cases when described mess happens. Yes, the same rare cases where the pkg-plist is messed up. - If I miss one file in the pkg_plist, the port gets marked as broken because the pkg_delete complains about it. - If I add one file too much to the PLIST_FILES, the port doesn't get marked as broken because the framework is too soft on it. In that case I have a better plan: why not let the framework figure out which files are installed, so that we don't need these horrible pkg-plist files anymore? Yes, bad idea. How about we let the ports framework be strict on what it gets configured (both with pkg-plist and PLIST_FILES/PLIST_DIRS) and make sure we have told the framework exactly what we want it to happen, and that the framework itself doesn't try to be friendly to us. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 21:47:12 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CB1216A504; Wed, 12 Jan 2005 21:47:12 +0000 (GMT) Received: from sccrmhc12.comcast.net (sccrmhc12.comcast.net [204.127.202.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF7F943D2F; Wed, 12 Jan 2005 21:47:11 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from focus.dantavious.com (pcp09757877pcs.gambrl01.md.comcast.net[68.48.122.129]) by comcast.net (sccrmhc12) with ESMTP id <2005011221471001200pjp7je>; Wed, 12 Jan 2005 21:47:11 +0000 From: Derrick Edwards To: Michael Nottebrock Date: Wed, 12 Jan 2005 17:02:57 -0500 User-Agent: KMail/1.7.2 References: <200501120559.46560.dantavious@comcast.net> <200501122133.50735.michaelnottebrock@gmx.net> In-Reply-To: <200501122133.50735.michaelnottebrock@gmx.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501121702.58653.dantavious@comcast.net> cc: ports@freebsd.org cc: perl@freebsd.org Subject: Re: DVDRIP X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 21:47:12 -0000 Thanks Michael, It is now working. v/r Derrick > Am Mittwoch, 12. Januar 2005 11:59 schrieb Derrick Edwards: > > I was wondering if dvdrip is still broken or actually not dvdrip but > > p5-GdkPixbuf-0.7009_1, a port that dvdrip depends. I continue to get the > > same error message that I got 2 months ago. I seen some activity on it > > via freshports. Just want to know if it is still broken. > > At least it doesn't seem to build on the package builder. Try commenting > out the BROKEN line in the port-Makefile of p5-GdkPixbuf and see if it > builds for you, I have a hunch it might. From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 22:21:04 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B95DC16A4CE for ; Wed, 12 Jan 2005 22:21:04 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76A6343D1D for ; Wed, 12 Jan 2005 22:21:04 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 566F551505; Wed, 12 Jan 2005 14:21:02 -0800 (PST) Date: Wed, 12 Jan 2005 14:21:01 -0800 From: Kris Kennaway To: Edwin Groothuis Message-ID: <20050112222101.GA692@xor.obsecurity.org> References: <20050112210836.GA53854@xor.obsecurity.org> <20050112211458.GA1175@k7.mavetju> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EVF5PPMfhYS0aIcm" Content-Disposition: inline In-Reply-To: <20050112211458.GA1175@k7.mavetju> User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org cc: Kris Kennaway Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 22:21:04 -0000 --EVF5PPMfhYS0aIcm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jan 13, 2005 at 08:14:59AM +1100, Edwin Groothuis wrote: > On Wed, Jan 12, 2005 at 01:08:36PM -0800, Kris Kennaway wrote: > > For the past month I've been sending warnings to maintainers of ports > > that have broken pkg-plists (i.e. leave behind files after > > deinstallation). Now that we've passed the 4.11-RELEASE freeze, it's > > a good time to take this to the next level and begin phasing in strict > > enforcement of pkg-plist correctness. >=20 > Please have a look at ports/75379: > bsd.port.mk / add-plist-docs is too relaxed Thanks, we'll toss that it in with the next 4-exp build. Kris --EVF5PPMfhYS0aIcm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB5aLNWry0BWjoQKURAghZAKDuQYHCdbYX4lrjEZEf1TNNSvaaOQCdGq6H JEnfxSECk4aTsLd/+ODj8Z8= =X1nk -----END PGP SIGNATURE----- --EVF5PPMfhYS0aIcm-- From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 23:14:55 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7BE116A4CF for ; Wed, 12 Jan 2005 23:14:55 +0000 (GMT) Received: from web53603.mail.yahoo.com (web53603.mail.yahoo.com [206.190.37.36]) by mx1.FreeBSD.org (Postfix) with SMTP id D987443D48 for ; Wed, 12 Jan 2005 23:14:54 +0000 (GMT) (envelope-from scott@sremick.net) Received: (qmail 44630 invoked by uid 60001); 12 Jan 2005 23:14:54 -0000 Message-ID: <20050112231454.44628.qmail@web53603.mail.yahoo.com> Received: from [65.213.7.6] by web53603.mail.yahoo.com via HTTP; Wed, 12 Jan 2005 15:14:54 PST X-RocketYMMF: siremick Date: Wed, 12 Jan 2005 15:14:54 -0800 (PST) From: "Scott I. Remick" To: ahze@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: ports@FreeBSD.org Subject: Nvu 0.70. still won't build - new error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: scott@sremick.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 23:14:55 -0000 There were some updates today but it's still dying, now with a new error right away: ===> Cleaning for nvu-0.70 ===> Found saved configuration for nvu-0.50_1 ===> Extracting for nvu-0.70 => Checksum OK for nvu-0.70-sources.tar.bz2. ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found ===> Patching for nvu-0.70 ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found ===> Applying FreeBSD patches for nvu-0.70 Ignoring previously applied (or reversed) patch. 4 out of 4 hunks ignored--saving rejects to xpcom/reflect/xptcall/src/md/unix/Makefile.in.rej => Patch patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in failed to apply cleanly. => Patch(es) patch-build_unix_mozilla-xpcom.pc.in patch-nsprpub-pr-include-md-_pth.h patch-nsprpub-pr-src-io-prprf.c patch-nsprpub::pr::include::md::_freebsd.cfg patch-nsprpub::pr::include::md::_freebsd.h patch-nsprpub::pr::src::pthreads::ptio.c patch-uriloader_exthandler_unix_nsGNOMERegistry.cpp patch-xpcom-reflect-xptcall-src-md-unix-Makefile.in patch-xpcom::reflect::xptcall::public::xptcstubsdecl.inc applied cleanly. *** Error code 1 Stop in /usr/ports/www/nvu. From owner-freebsd-ports@FreeBSD.ORG Wed Jan 12 23:23:58 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 633BD16A4CE; Wed, 12 Jan 2005 23:23:58 +0000 (GMT) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30AB043D4C; Wed, 12 Jan 2005 23:23:58 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from focus.dantavious.com (pcp09757877pcs.gambrl01.md.comcast.net[68.48.122.129]) by comcast.net (rwcrmhc12) with ESMTP id <2005011223235701400gmpl1e>; Wed, 12 Jan 2005 23:23:57 +0000 From: Derrick Edwards To: freebsd-ports@freebsd.org, scott@sremick.net Date: Wed, 12 Jan 2005 18:39:38 -0500 User-Agent: KMail/1.7.2 References: <20050112231454.44628.qmail@web53603.mail.yahoo.com> In-Reply-To: <20050112231454.44628.qmail@web53603.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501121839.40399.dantavious@comcast.net> cc: ports@freebsd.org cc: ahze@freebsd.org Subject: Re: Nvu 0.70. still won't build - new error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 23:23:58 -0000 Same thing here On Wednesday 12 January 2005 06:14 pm, Scott I. Remick wrote: Checksum OK for nvu-0.70-sources.tar.bz2. ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found ===> Patching for nvu-0.70 ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found ===> Applying FreeBSD patches for nvu-0.70 Ignoring previously applied (or reversed) patch. 4 out of 4 hunks ignored--saving rejects to xpcom/reflect/xptcall/src/md/unix/Makefile.in.rej => Patch patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in failed to apply cleanly. => Patch(es) patch-build_unix_mozilla-xpcom.pc.in patch-nsprpub-pr-include-md-_pth.h patch-nsprpub-pr-src-io-prprf.c patch-nsprpub::pr::include::md::_freebsd.cfg patch-nsprpub::pr::include::md::_freebsd.h patch-nsprpub::pr::src::pthreads::ptio.c patch-uriloader_exthandler_unix_nsGNOMERegistry.cpp patch-xpcom-reflect-xptcall-src-md-unix-Makefile.in patch-xpcom::reflect::xptcall::public::xptcstubsdecl.inc applied cleanly. *** Error code 1 Stop in /usr/ports/www/nvu. > There were some updates today but it's still dying, now with a new error > right away: > > ===> Cleaning for nvu-0.70 > ===> Found saved configuration for nvu-0.50_1 > ===> Extracting for nvu-0.70 > => Checksum OK for nvu-0.70-sources.tar.bz2. > ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found > ===> Patching for nvu-0.70 > ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found > ===> Applying FreeBSD patches for nvu-0.70 > Ignoring previously applied (or reversed) patch. > 4 out of 4 hunks ignored--saving rejects to > xpcom/reflect/xptcall/src/md/unix/Makefile.in.rej > => Patch patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in failed > to apply cleanly. > => Patch(es) patch-build_unix_mozilla-xpcom.pc.in > patch-nsprpub-pr-include-md-_pth.h patch-nsprpub-pr-src-io-prprf.c > patch-nsprpub::pr::include::md::_freebsd.cfg > patch-nsprpub::pr::include::md::_freebsd.h > patch-nsprpub::pr::src::pthreads::ptio.c > patch-uriloader_exthandler_unix_nsGNOMERegistry.cpp > patch-xpcom-reflect-xptcall-src-md-unix-Makefile.in > patch-xpcom::reflect::xptcall::public::xptcstubsdecl.inc applied cleanly. > *** Error code 1 > > Stop in /usr/ports/www/nvu. > _______________________________________________ > 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 Jan 12 23:23:58 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 633BD16A4CE; Wed, 12 Jan 2005 23:23:58 +0000 (GMT) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30AB043D4C; Wed, 12 Jan 2005 23:23:58 +0000 (GMT) (envelope-from dantavious@comcast.net) Received: from focus.dantavious.com (pcp09757877pcs.gambrl01.md.comcast.net[68.48.122.129]) by comcast.net (rwcrmhc12) with ESMTP id <2005011223235701400gmpl1e>; Wed, 12 Jan 2005 23:23:57 +0000 From: Derrick Edwards To: freebsd-ports@freebsd.org, scott@sremick.net Date: Wed, 12 Jan 2005 18:39:38 -0500 User-Agent: KMail/1.7.2 References: <20050112231454.44628.qmail@web53603.mail.yahoo.com> In-Reply-To: <20050112231454.44628.qmail@web53603.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501121839.40399.dantavious@comcast.net> cc: ports@freebsd.org cc: ahze@freebsd.org Subject: Re: Nvu 0.70. still won't build - new error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 12 Jan 2005 23:23:58 -0000 Same thing here On Wednesday 12 January 2005 06:14 pm, Scott I. Remick wrote: Checksum OK for nvu-0.70-sources.tar.bz2. ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found ===> Patching for nvu-0.70 ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found ===> Applying FreeBSD patches for nvu-0.70 Ignoring previously applied (or reversed) patch. 4 out of 4 hunks ignored--saving rejects to xpcom/reflect/xptcall/src/md/unix/Makefile.in.rej => Patch patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in failed to apply cleanly. => Patch(es) patch-build_unix_mozilla-xpcom.pc.in patch-nsprpub-pr-include-md-_pth.h patch-nsprpub-pr-src-io-prprf.c patch-nsprpub::pr::include::md::_freebsd.cfg patch-nsprpub::pr::include::md::_freebsd.h patch-nsprpub::pr::src::pthreads::ptio.c patch-uriloader_exthandler_unix_nsGNOMERegistry.cpp patch-xpcom-reflect-xptcall-src-md-unix-Makefile.in patch-xpcom::reflect::xptcall::public::xptcstubsdecl.inc applied cleanly. *** Error code 1 Stop in /usr/ports/www/nvu. > There were some updates today but it's still dying, now with a new error > right away: > > ===> Cleaning for nvu-0.70 > ===> Found saved configuration for nvu-0.50_1 > ===> Extracting for nvu-0.70 > => Checksum OK for nvu-0.70-sources.tar.bz2. > ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found > ===> Patching for nvu-0.70 > ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found > ===> Applying FreeBSD patches for nvu-0.70 > Ignoring previously applied (or reversed) patch. > 4 out of 4 hunks ignored--saving rejects to > xpcom/reflect/xptcall/src/md/unix/Makefile.in.rej > => Patch patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in failed > to apply cleanly. > => Patch(es) patch-build_unix_mozilla-xpcom.pc.in > patch-nsprpub-pr-include-md-_pth.h patch-nsprpub-pr-src-io-prprf.c > patch-nsprpub::pr::include::md::_freebsd.cfg > patch-nsprpub::pr::include::md::_freebsd.h > patch-nsprpub::pr::src::pthreads::ptio.c > patch-uriloader_exthandler_unix_nsGNOMERegistry.cpp > patch-xpcom-reflect-xptcall-src-md-unix-Makefile.in > patch-xpcom::reflect::xptcall::public::xptcstubsdecl.inc applied cleanly. > *** Error code 1 > > Stop in /usr/ports/www/nvu. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 00:28:40 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F225E16A4CE for ; Thu, 13 Jan 2005 00:28:40 +0000 (GMT) Received: from imf23aec.mail.bellsouth.net (imf23aec.mail.bellsouth.net [205.152.59.71]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49F5943D1F for ; Thu, 13 Jan 2005 00:28:40 +0000 (GMT) (envelope-from ahze@ahze.net) Received: from [192.168.1.5] ([68.209.163.3]) by imf23aec.mail.bellsouth.netESMTP <20050113002839.MMJC2378.imf23aec.mail.bellsouth.net@[192.168.1.5]>; Wed, 12 Jan 2005 19:28:39 -0500 In-Reply-To: <20050112231454.44628.qmail@web53603.mail.yahoo.com> References: <20050112231454.44628.qmail@web53603.mail.yahoo.com> Mime-Version: 1.0 (Apple Message framework v682) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <09EE1613-4473-458C-A5A3-B7B8242B8437@ahze.net> Content-Transfer-Encoding: 7bit From: Michael Johnson Date: Wed, 12 Jan 2005 19:28:32 -0500 To: scott@sremick.net X-Mailer: Apple Mail (2.682) cc: ports@FreeBSD.org Subject: Re: Nvu 0.70. still won't build - new error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 00:28:41 -0000 On Jan 12, 2005, at 6:14 PM, Scott I. Remick wrote: should be fix, sorry about that. > There were some updates today but it's still dying, now with a new > error > right away: > > ===> Cleaning for nvu-0.70 > ===> Found saved configuration for nvu-0.50_1 > ===> Extracting for nvu-0.70 > => Checksum OK for nvu-0.70-sources.tar.bz2. > ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found > ===> Patching for nvu-0.70 > ===> nvu-0.70 depends on file: /usr/local/bin/perl5.8.5 - found > ===> Applying FreeBSD patches for nvu-0.70 > Ignoring previously applied (or reversed) patch. > 4 out of 4 hunks ignored--saving rejects to > xpcom/reflect/xptcall/src/md/unix/Makefile.in.rej > => Patch patch-xpcom::reflect::xptcall::src::md::unix::Makefile.in > failed to > apply cleanly. > => Patch(es) patch-build_unix_mozilla-xpcom.pc.in > patch-nsprpub-pr-include-md-_pth.h patch-nsprpub-pr-src-io-prprf.c > patch-nsprpub::pr::include::md::_freebsd.cfg > patch-nsprpub::pr::include::md::_freebsd.h > patch-nsprpub::pr::src::pthreads::ptio.c > patch-uriloader_exthandler_unix_nsGNOMERegistry.cpp > patch-xpcom-reflect-xptcall-src-md-unix-Makefile.in > patch-xpcom::reflect::xptcall::public::xptcstubsdecl.inc applied > cleanly. > *** Error code 1 > > Stop in /usr/ports/www/nvu. > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to > "freebsd-ports-unsubscribe@freebsd.org" > From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 03:29:35 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84E2F16A4CE; Thu, 13 Jan 2005 03:29:35 +0000 (GMT) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 551C843D2D; Thu, 13 Jan 2005 03:29:35 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.13.1/8.13.1) with ESMTP id j0D3TTlx037250; Wed, 12 Jan 2005 19:29:29 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id j0D3TOp9037247; Wed, 12 Jan 2005 19:29:24 -0800 (PST) (envelope-from obrien) Date: Wed, 12 Jan 2005 19:29:24 -0800 From: "David O'Brien" To: rittle@labs.mot.com Message-ID: <20050113032924.GB36950@dragon.nuxi.com> References: <200501081657.j08GvnML053109@sakura.ninth-nine.com> <200501122031.j0CKVxjP084836@latour.waar.labs.mot.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200501122031.j0CKVxjP084836@latour.waar.labs.mot.com> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 6.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: ports@FreeBSD.org cc: gerald@pfeifer.com cc: nork@FreeBSD.org Subject: Re: Fix -pthread issue on lang/gcc3[34] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 03:29:35 -0000 On Wed, Jan 12, 2005 at 02:31:59PM -0600, Loren James Rittle wrote: > In article , > Gerald Pfeifer writes: > > [...] > > David, Loren, how shall we proceed? I believe David raised issues wrt. > > cross-compilation which would render the #ifdefs unsuitable for upstream. > > Would a configure option, which is then used by the FreeBSD ports, be an > > option? > > >> Index: gcc33/Makefile > >> Index: gcc34/Makefile > [...] > > David already patched both mainline and 3.4 branch on FSF. > > Thus, I think it is OK to have an equivalent port patch at least until > you start to use an FSF release with the patch. I didn't check > closely to see if this proposed port patch was exactly what David > installed on the FSF tree. What is in the FSF tree is the best we can do given the existing framework and cross-build requirements. The FreeBSD Ports Collection does not support cross-builds (either arch or OS); so I am able to commit something more exact there. -- -- David (obrien@FreeBSD.org) From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 03:34:58 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29AF316A4CE; Thu, 13 Jan 2005 03:34:58 +0000 (GMT) Received: from dragon.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37E8443D3F; Thu, 13 Jan 2005 03:34:57 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by dragon.nuxi.com (8.13.1/8.13.1) with ESMTP id j0D3YpuR039506; Wed, 12 Jan 2005 19:34:51 -0800 (PST) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id j0D3Yo0h039505; Wed, 12 Jan 2005 19:34:50 -0800 (PST) (envelope-from obrien) Date: Wed, 12 Jan 2005 19:34:50 -0800 From: "David O'Brien" To: Gerald Pfeifer Message-ID: <20050113033450.GC36950@dragon.nuxi.com> References: <200501081657.j08GvnML053109@sakura.ninth-nine.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 6.0-CURRENT Organization: The NUXI BSD Group X-Pgp-Rsa-Fingerprint: B7 4D 3E E9 11 39 5F A3 90 76 5D 69 58 D9 98 7A X-Pgp-Rsa-Keyid: 1024/34F9F9D5 cc: ports@FreeBSD.org cc: Loren James Rittle cc: Norikatsu Shigemura Subject: Re: Fix -pthread issue on lang/gcc3[34] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 03:34:58 -0000 On Sun, Jan 09, 2005 at 11:58:08PM +0100, Gerald Pfeifer wrote: > Thanks for the patch! > > I know that David had a look into these issues and updated GCC mainline > (with his changes now being in the current lang/gcc40 port), so I would > like him and Loren who is also taking care of FreeBSD in GCC-land to have > a look at this patch, so I'm Cc:ing both and providing a full quote. > > If possible in any way, I really would like to keep the port as close to > the upstream versions as possible, not the least because this will avoid > problems for users who want or even need to use these versions. > > David, Loren, how shall we proceed? I believe David raised issues wrt. > cross-compilation which would render the #ifdefs unsuitable for upstream. > Would a configure option, which is then used by the FreeBSD ports, be an > option? Gerald, I did not realize GCC 3.3 was still being updated. Loren do I have your permission to commit the GCC 3.4 fix into the 3.3 branch? I assume this branch is open to bug fixes? -- David -- -- David (obrien@FreeBSD.org) From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 05:20:26 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78F2D16A4CE for ; Thu, 13 Jan 2005 05:20:26 +0000 (GMT) Received: from ms-smtp-03-eri0.ohiordc.rr.com (ms-smtp-03-smtplb.ohiordc.rr.com [65.24.5.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 064EC43D41 for ; Thu, 13 Jan 2005 05:20:26 +0000 (GMT) (envelope-from dmehler26@woh.rr.com) Received: from satellite (dhcp065-031-041-029.woh.rr.com [65.31.41.29]) j0D5KNwZ018974 for ; Thu, 13 Jan 2005 00:20:23 -0500 (EST) Message-ID: <010b01c4f92f$64c863d0$0400a8c0@satellite> From: "dave" To: Date: Thu, 13 Jan 2005 00:19:01 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1437 X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1441 X-Virus-Scanned: Symantec AntiVirus Scan Engine Subject: lib_depends port patch and pkg-plist X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: dave List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 05:20:26 -0000 Hello, I'm trying to alter a port, i want to change it so that instead of pulling in all the lib depends, they are not all necessary for the port they just give extra functionality, i use "if defined" blocks. My goal is if someone wants a feature "make WITH_FEATURE=yes" will do it, but if not they won't get all the extra dependencies needed. I've got the if defines going, and that seems to be working, but my problem is with the pkg-plist file, how do i handle this in view of the dependencies? Thanks. Dave. From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 05:34:33 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4E0E16A4CE for ; Thu, 13 Jan 2005 05:34:33 +0000 (GMT) Received: from buexe.b-5.de (buexe.b-5.de [80.148.32.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69D3D43D4C for ; Thu, 13 Jan 2005 05:34:30 +0000 (GMT) (envelope-from lupe@lupe-christoph.de) Received: from antalya.lupe-christoph.de (antalya.lupe-christoph.de [172.17.0.9])j0D5YQ0L011095 for ; Thu, 13 Jan 2005 06:34:26 +0100 Received: from localhost (localhost [127.0.0.1]) by antalya.lupe-christoph.de (Postfix) with ESMTP id 30295B886 for ; Thu, 13 Jan 2005 06:34:39 +0100 (CET) Received: from antalya.lupe-christoph.de ([127.0.0.1]) by localhost (antalya [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 28402-03 for ; Thu, 13 Jan 2005 06:34:32 +0100 (CET) Received: by antalya.lupe-christoph.de (Postfix, from userid 1000) id CAFC1B885; Thu, 13 Jan 2005 06:34:32 +0100 (CET) Date: Thu, 13 Jan 2005 06:34:32 +0100 To: freebsd-ports@freebsd.org Message-ID: <20050113053432.GB10123@lupe-christoph.de> References: <20050112210836.GA53854@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050112210836.GA53854@xor.obsecurity.org> User-Agent: Mutt/1.5.6+20040907i From: lupe@lupe-christoph.de (Lupe Christoph) X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at lupe-christoph.de Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 05:34:33 -0000 On Wednesday, 2005-01-12 at 13:08:36 -0800, Kris Kennaway wrote: > For the past month I've been sending warnings to maintainers of ports > that have broken pkg-plists (i.e. leave behind files after > deinstallation). Now that we've passed the 4.11-RELEASE freeze, it's > a good time to take this to the next level and begin phasing in strict > enforcement of pkg-plist correctness. > What this means is that the port build will now fail on the package > cluster if certain kinds of files are left behind (to avoid false > positives I will be phasing in matching of the 'extra file list' with > a set of regexps that will be added to over time). Thus, your package > will no longer appear on the ftp site, will be marked > BROKEN="Incomplete pkg-plist" and will eventually be scheduled for > removal should the problem continue to be ignored by the maintainer. > If you are the maintainer of an affected port, you will have already > received mail from me detailing the missing files. If you've already > submitted a PR containing a fix, you don't have anything further to > worry about (although you might like to send a reminder to ports@ if > you think it's been overlooked). If you haven't yet addressed the > problems, please do so ASAP. OK, back to a thread I started a while ago. How do you treat an upgrade? Both Munin ports need to conserve state. And they can only do that by leaving symlinks and files behind. Please refer to the thread starting at http://lists.freebsd.org/mailman/htdig/freebsd-ports/2004-December/018592.html Kris, I have not received a mail from you about missing files. This may have been because the munin-node port was broken by the new environment variable ARCH. And munin-main only leaves files behing if a cron run happens while it is installed. Can you please run them again? Leaving munin-main installed for say ten minutes? BTW: The ports system has no way to marking files as configuration files. Debian apt-get has a "--purge" option to remove even those. And the ports system has AFAIK no way to dynamically enter a file in the database like Solaris' installf. You have to handle all this in a deinstall script. Lupe Christoph -- | lupe@lupe-christoph.de | http://www.lupe-christoph.de/ | | Ask not what your computer can do for you | | ask what you can do for your computer. | From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 06:06:16 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 927B216A4CE for ; Thu, 13 Jan 2005 06:06:16 +0000 (GMT) Received: from bloodwood.hunterlink.net.au (smtp-local.hunterlink.net.au [203.12.144.17]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF12743D2D for ; Thu, 13 Jan 2005 06:06:14 +0000 (GMT) (envelope-from boris@brooknet.com.au) Received: from [61.8.40.248] (ppp28F8.dyn.pacific.net.au [61.8.40.248]) j0D669wU031401; Thu, 13 Jan 2005 17:06:10 +1100 Message-ID: <41E60FFD.8020208@brooknet.com.au> Date: Thu, 13 Jan 2005 17:06:53 +1100 From: Sam Lawrance User-Agent: Mozilla Thunderbird 1.0 (X11/20050106) X-Accept-Language: en-us, en MIME-Version: 1.0 To: dave References: <010b01c4f92f$64c863d0$0400a8c0@satellite> In-Reply-To: <010b01c4f92f$64c863d0$0400a8c0@satellite> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: lib_depends port patch and pkg-plist X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 06:06:16 -0000 dave wrote: >Hello, > I'm trying to alter a port, i want to change it so that instead of >pulling in all the lib depends, they are not all necessary for the port they >just give extra functionality, i use "if defined" blocks. My goal is if >someone wants a feature "make WITH_FEATURE=yes" will do it, but if not they >won't get all the extra dependencies needed. I've got the if defines going, >and that seems to be working, but my problem is with the pkg-plist file, how >do i handle this in view of the dependencies? >Thanks. >Dave. > > dave wrote: >Hello, > I'm trying to alter a port, i want to change it so that instead of >pulling in all the lib depends, they are not all necessary for the port they >just give extra functionality, i use "if defined" blocks. My goal is if >someone wants a feature "make WITH_FEATURE=yes" will do it, but if not they >won't get all the extra dependencies needed. I've got the if defines going, >and that seems to be working, but my problem is with the pkg-plist file, how >do i handle this in view of the dependencies? > > The way this was explained to me was to put all the files in the pkg-plist, then use PLIST_SUB to comment them out if they aren't used. Example: if WITH_FOOBAR is not defined, %%FOOBAR%% in the pkg-plist is replaced with "@comment ", making that line a no-op. In the port Makefile: .if defined(${WITH_FOOBAR}) PLIST_SUB+= FOOBAR="" .else PLIST_SUB+= FOOBAR="@comment " .endif In pkg-plist: %%FOOBAR%%some/file/for/foobar/option -- Sam Lawrance ph +61 0425 228 579 freenode: deft From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 07:40:21 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC14216A4CF for ; Thu, 13 Jan 2005 07:40:21 +0000 (GMT) Received: from web53904.mail.yahoo.com (web53904.mail.yahoo.com [206.190.36.214]) by mx1.FreeBSD.org (Postfix) with SMTP id 1957A43D49 for ; Thu, 13 Jan 2005 07:40:13 +0000 (GMT) (envelope-from snailboy1@yahoo.com) Received: (qmail 70302 invoked by uid 60001); 13 Jan 2005 07:40:12 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=GXPnsi+nlZGmTbOt/urNnEUKvKakZaS4GFM6x/mYm+E0tc8pSkGhKe+DcJZBLYCpvB5vV2JvbBvce01Oaud3JpsHwRLdiNtWVtvA1SOsvnV9LDKbjJ7dN/fb6cNAF/pd/shu+11u3S8eYgUNCBHVr+QZdJOEZ4I7jwVTbogqYtQ= ; Message-ID: <20050113074012.70300.qmail@web53904.mail.yahoo.com> Received: from [207.136.9.151] by web53904.mail.yahoo.com via HTTP; Wed, 12 Jan 2005 23:40:12 PST Date: Wed, 12 Jan 2005 23:40:12 -0800 (PST) From: David LeCount To: freebsd-ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: VPCE will not run X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 07:40:21 -0000 I have installed vpce (the Turbografx emulator) in FreeBSD 5.3. When I try to run it, it gives an error "couldn't open /usr/libexec/ld.so". I'm not sure if this file was in previous versions of FreeBSD or what. When I link ld-elf.so.1 to it in libmap.conf, it still gives the same error. When I make a symlink, it gives a "bad magic number" error. It was mentioned to me that it might be built for 4.x, but I don't see why the emulation in my kernel wouldn't handle it. I'm lost as to what to do, but this port has been like this for months so hopefully someone can look into the issue. Thanks. __________________________________ Do you Yahoo!? Yahoo! Mail - You care about security. So do we. http://promotions.yahoo.com/new_mail __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 07:46:08 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CF8616A4CE; Thu, 13 Jan 2005 07:46:08 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C7FD43D41; Thu, 13 Jan 2005 07:46:07 +0000 (GMT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([24.20.127.157]) by comcast.net (sccrmhc13) with ESMTP id <20050113074606016006oilce>; Thu, 13 Jan 2005 07:46:07 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id C781A18175; Wed, 12 Jan 2005 23:46:04 -0800 (PST) Date: Wed, 12 Jan 2005 23:46:04 -0800 From: Clint Olsen To: ports@freebsd.org Message-ID: <20050113074604.GA8487@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! cc: gnome@freebsd.org Subject: Gnome-background-properties dumps core X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 07:46:08 -0000 I was using gnomecontrolcenter2-2.8.1_2. Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 1 (LWP 100196)] 0x28959ac2 in g_str_hash () from /usr/local/lib/libglib-2.0.so.400 (gdb) bt #0 0x28959ac2 in g_str_hash () from /usr/local/lib/libglib-2.0.so.400 #1 0x28938f5f in g_hash_table_lookup () from /usr/local/lib/libglib-2.0.so.400 #2 0x0804d437 in gnome_wp_main_quit () #3 0x28945f14 in g_idle_dispatch () from /usr/local/lib/libglib-2.0.so.400 #4 0x289430fb in g_main_dispatch () from /usr/local/lib/libglib-2.0.so.400 #5 0x28943fc7 in g_main_context_dispatch () from /usr/local/lib/libglib-2.0.so.400 #6 0x289443a6 in g_main_context_iterate () from /usr/local/lib/libglib-2.0.so.400 #7 0x28944a12 in g_main_loop_run () from /usr/local/lib/libglib-2.0.so.400 #8 0x2843602a in gtk_main () from /usr/X11R6/lib/libgtk-x11-2.0.so.400 #9 0x0804ee50 in main () FreeBSD belle.0lsen.net 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #11: Fri Dec 10 22:33:57 PST 2004 root@belle.0lsen.net:/usr/obj/usr/src/sys/GENERIC i386 -Clint From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 08:53:18 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23CFF16A4CE for ; Thu, 13 Jan 2005 08:53:18 +0000 (GMT) Received: from mail.moniforce.com (mail.moniforce.com [213.133.55.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5808543D2D for ; Thu, 13 Jan 2005 08:53:17 +0000 (GMT) (envelope-from fbsd@corine-robert.nl) Received: from intra.moniforce.com (almere [82.201.0.50]) by mail.moniforce.com (Postfix) with ESMTP id C10B3445BE for ; Thu, 13 Jan 2005 09:51:14 +0100 (CET) Received: by intra.moniforce.com (Postfix, from userid 65534) id 8E5B39F1A8; Thu, 13 Jan 2005 09:53:15 +0100 (CET) Received: from [10.2.1.173] (unknown [10.2.1.173]) by intra.moniforce.com (Postfix) with ESMTP id B87659EFBC for ; Thu, 13 Jan 2005 09:53:12 +0100 (CET) Message-ID: <41E636F8.5020806@corine-robert.nl> Date: Thu, 13 Jan 2005 09:53:12 +0100 From: "R.Brouwer" User-Agent: Mozilla Thunderbird 0.9 (Windows/20041103) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 2.61 (1.212.2.1-2003-12-09-exp) on monistore.moniforce.com X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.61 Subject: Fix for port-Makefiles X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 08:53:18 -0000 Dear , I regularly receive the error "warning: String comparison operator should be either == or !=" when I rebuild the ports-index. Or the error: Malformed conditional ((${OSVERSION} < 503001 && ${OSVERSION} >= 500000) || (${OSVERSION} < 492000)) To prevent these errors I correct all errounious information in port Makefiles with the following script: ======== fix_makefiles.sh ==== #!/usr/local/bin/bash FILES=`find /usr/ports/ -name Makefile* -exec egrep -l " [0-9]+[)]" {} \;` for i in ${FILES} do # Process all files with an number and connected ) mv $i $i.old # Add a space after the number if [ -f $i.old ] ; then sed -E "s/( [0-9]+)[)]/\\1 )/g" <$i.old >$i fi done ========================== This script is placed in the daily cron line as follows: /usr/local/bin/cvsup -g -L 2 /usr/local/etc/ports-supfile -l /var/run/ports-update.lock >/var/log/ports-update.log ; /usr/local/bin/fix_makefiles.sh; /usr/local/sbin/portsdb -Uu I don't know if it is useful to have this functionallity somewhere in the freebsd software. For me this works just fine. Kind regards, Robert Brouwer From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 08:57:12 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D53C216A4CE; Thu, 13 Jan 2005 08:57:12 +0000 (GMT) Received: from satie.private.org (qclgw.qcl.t.u-tokyo.ac.jp [133.11.70.190]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAF8E43D2D; Thu, 13 Jan 2005 08:57:11 +0000 (GMT) (envelope-from chat95@mac.com) Received: from localhost (localhost [IPv6:::1]) by satie.private.org (8.13.1/8.13.1) with ESMTP id j0D8urHU001872; Thu, 13 Jan 2005 17:56:58 +0900 (JST) (envelope-from chat95@mac.com) Date: Thu, 13 Jan 2005 17:56:53 +0900 (JST) Message-Id: <20050113.175653.424245961.chat95@mac.com> To: fernan@iib.unsam.edu.ar From: NAKATA Maho In-Reply-To: <20050112171457.GA63187@iib.unsam.edu.ar> References: <20050112171457.GA63187@iib.unsam.edu.ar> Organization: private X-Mailer: Mew version 3.3 on XEmacs 21.4.16 (Corporate Culture) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.ORG cc: openoffice@FreeBSD.ORG Subject: Re: is openoffice broken in FreeBSD 4.x? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 08:57:13 -0000 In Message-ID: <20050112171457.GA63187@iib.unsam.edu.ar> Fernan Aguero wrote: > But, when I type 'make -DBROKEN' nothing different happens, > just the same message again. Sorry this is my fault. > I am running FreeBSD-4.10p5 (RELENG_4_10), and would like to > know how to upgrade my rtld, if that's possible, and then > openoffice. from http://porting.openoffice.org/freebsd/ We had minor but serious implementation difference in rtld.c between FreeBSD and NetBSD/Linux/Solaris which had been inducing very weired problem, and workaround also inducing a hard-to-track bug. It was fixed after 5.2.1-RELEASE and 4.10-RELEASE. Please see commit log also for details. So we decided to mark these port as BROKEN for them. However, an unconfirmed patch for rtld.c is available, and it is totally unsupported. At your own risk, and feedback is welcome. @${ECHO} "# fetch http://people.freebsd.org/~maho/ooo/patch-rtld.c" @${ECHO} "# cd /usr/src/libexec/rtld-elf ; patch < patch-rtld.c" @${ECHO} "# make ; make depend ; make install" @${ECHO} "AT YOUR OWN RISK!" I don't recommend you to do it...even I don't confirm that patch can be applied cleanly. and in the worst case you must reinstall entier FreeBSD. I'm serious. thanks, -- NAKATA, Maho From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 09:12:54 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF65C16A4CF for ; Thu, 13 Jan 2005 09:12:54 +0000 (GMT) Received: from mx.critical.ch (admin.critical.ch [67.18.86.178]) by mx1.FreeBSD.org (Postfix) with SMTP id DE48243D39 for ; Thu, 13 Jan 2005 09:12:53 +0000 (GMT) (envelope-from haupt@critical.ch) Received: (qmail 79822 invoked from network); 13 Jan 2005 09:12:52 -0000 Received: from unknown (HELO wiggles.cablecom.ch) (127.0.0.1) by 0 with SMTP; 13 Jan 2005 09:12:52 -0000 Date: Thu, 13 Jan 2005 10:11:33 +0100 From: Emanuel Haupt To: fjoe@FreeBSD.org Message-Id: <20050113101133.2b9118ad.haupt@critical.ch> X-Mailer: Sylpheed version 1.0.0rc (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: patch: misc/mc X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 09:12:54 -0000 hello, the following patch will suppress a pretty useless warning that is written if you follow a symlink. the warning written to stderr breaks almost every terminal and requires you to press ctrl-l. the patch also includes previous changes at src/subshell.c so you can completely replace misc/mc/files/patch-src-subshell.c with this patch: regards, emanuel ---patch starts here--- --- src/subshell.c.orig Fri Jan 24 22:37:28 2003 +++ src/subshell.c Thu Jan 13 09:57:04 2005 @@ -710,7 +710,9 @@ } g_free (subshell_prompt); + g_free (pty_buffer); subshell_prompt = NULL; + pty_buffer = NULL; return quit; } @@ -838,8 +840,10 @@ subshell_state = RUNNING_COMMAND; feed_subshell (QUIETLY, FALSE); + /* this warning breaks almost every terminal if the directory you follow is a symlink if (subshell_alive && strcmp (subshell_cwd, cpanel->cwd) && strcmp (cpanel->cwd, ".")) fprintf (stderr, _("Warning: Cannot change to %s.\n"), cpanel->cwd); + */ if (reset_prompt) prompt_pos = 0; @@ -1166,6 +1170,8 @@ #elif IS_AIX strcpy (pty_name, "/dev/ptc"); pty_master = open (pty_name, O_RDWR); +#elif defined(__FreeBSD__) + pty_master = posix_openpt(O_RDWR); #else strcpy (pty_name, "/dev/ptmx"); pty_master = open (pty_name, O_RDWR); ---patch ends here--- From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 09:14:17 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2F7316A4CE for ; Thu, 13 Jan 2005 09:14:17 +0000 (GMT) Received: from atlas.informatik.rwth-aachen.de (atlas.informatik.RWTH-Aachen.DE [137.226.194.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDEE043D4C for ; Thu, 13 Jan 2005 09:14:16 +0000 (GMT) (envelope-from stolz@i2.informatik.rwth-aachen.de) Received: from i2.informatik.rwth-aachen.de (menelaos.informatik.RWTH-Aachen.DE [137.226.194.73]) with ESMTP id j0D9EDos011055; Thu, 13 Jan 2005 10:14:15 +0100 Received: (from stolz@localhost)j0D9EBD2031704; Thu, 13 Jan 2005 10:14:11 +0100 (CET) (envelope-from stolz) Date: Thu, 13 Jan 2005 10:14:11 +0100 From: Volker Stolz To: freebsd-ports@freebsd.org Message-ID: <20050113091411.GA31120@i2.informatik.rwth-aachen.de> References: <20050112210836.GA53854@xor.obsecurity.org> <20050113053432.GB10123@lupe-christoph.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050113053432.GB10123@lupe-christoph.de> X-PGP-Key: finger vs@foldr.org X-PGP-Id: 0x3FD1B6B5 User-Agent: Mutt/1.5.6i cc: Lupe Christoph Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 09:14:18 -0000 In gmane.os.freebsd.devel.ports, you wrote: > The ports system has no way to marking files as configuration files. > Debian apt-get has a "--purge" option to remove even those. And the > ports system has AFAIK no way to dynamically enter a file in the > database like Solaris' installf. You have to handle all this in a > deinstall script. Yes, we are aware of this issue and some people are thinking about possible solutions. Volker -- http://www-i2.informatik.rwth-aachen.de/stolz/ *** PGP *** S/MIME From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 09:39:00 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB80F16A4CE for ; Thu, 13 Jan 2005 09:39:00 +0000 (GMT) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BC0E43D4C for ; Thu, 13 Jan 2005 09:38:59 +0000 (GMT) (envelope-from apircalabu@bitdefender.com) Received: (qmail 18526 invoked from network); 13 Jan 2005 09:38:57 -0000 Received: from apircalabu.dsd.ro (10.10.15.22) by mail.dsd.ro with AES256-SHA encrypted SMTP; 13 Jan 2005 09:38:57 -0000 Date: Thu, 13 Jan 2005 11:41:31 +0200 From: Adi Pircalabu To: Ion-Mihai Tetcu Message-ID: <20050113114131.5f1ae808@apircalabu.dsd.ro> In-Reply-To: <20050112165810.07364fcd@it.buh.tecnik93.com> References: <20050112152102.57fc843a@apircalabu.dsd.ro> <20050112165810.07364fcd@it.buh.tecnik93.com> Organization: BitDefender X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BitDefender-SpamStamp: 1.1.2 036000040111AAAAAAE X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.1 on mail.bitdefender.com X-BitDefender-Spam: No (0) cc: freebsd-questions@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: Security port: automated integration in the mail/file server - to do or not to do ? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 09:39:00 -0000 On Wed, 12 Jan 2005 16:58:10 +0200 Ion-Mihai Tetcu wrote: > While I try to make my ports as user friendly and automated as > possible, I would vote for 2) above. I hate when something just > changes on my system without me telling it to do so explicitly; plus I > could very well install the port today and wait to the end of the week > to switch it on for testing; plus there will always be some strange > edge cases when you'll just break some custom configuration. Thank you for answering. I'll think about your answer, trying to balance the opinions on this topic, but the adequate decision is still quite difficult to take at this moment. Any other opinions which I should consider? -- Adrian Pircalabu Public KeyID = 0xF902393A -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 15:07:11 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78D3216A4CE; Thu, 13 Jan 2005 15:07:11 +0000 (GMT) Received: from simmts5-srv.bellnexxia.net (simmts5.bellnexxia.net [206.47.199.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DFD043D1D; Thu, 13 Jan 2005 15:07:08 +0000 (GMT) (envelope-from matt.adams@morcor.com) Received: from [192.168.1.50] ([69.159.72.157]) by simmts5-srv.bellnexxia.netESMTP <20050113150707.SGUD1614.simmts5-srv.bellnexxia.net@[192.168.1.50]>; Thu, 13 Jan 2005 10:07:07 -0500 Message-ID: <41E68E9A.9060500@morcor.com> Date: Thu, 13 Jan 2005 10:07:06 -0500 From: Matt Adams Organization: Morcor Solutions Inc. User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20041229 X-Accept-Language: en-us, en MIME-Version: 1.0 To: mat@FreeBSD.org X-Enigmail-Version: 0.89.5.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: multipart/mixed; boundary="------------060306090605020504070403" cc: ports@FreeBSD.org Subject: FreeBSD Port: p5-Class-DBI-Loader-0.11 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: matt.adams@morcor.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 15:07:11 -0000 This is a multi-part message in MIME format. --------------060306090605020504070403 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Hi there: Just wanted to let you know that Class::DBI::Loader::Generic uses Lingua::EN::Inflect and that the Makefile for p5-Class-DBI-Loader should probably include Lingua::EN::Inflect as a RUN_DEPENDS. I've attached a patch against the current Makefile (as of version 1.7). Cheers Matt -- Matt Adams Development Specialist Morcor Solutions Inc. (613) 354-2912 x228 GnuPG public key at Key fingerprint: BED5 B4F7 CCF5 D7B5 7C56 0505 9A0A A0FB C937 5975 --------------060306090605020504070403 Content-Type: text/plain; name="Makefile.patch" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="Makefile.patch" --- Makefile Thu Jan 13 09:58:38 2005 +++ Makefile.new Thu Jan 13 10:05:26 2005 @@ -17,7 +17,8 @@ BUILD_DEPENDS= ${RUN_DEPENDS} \ ${SITE_PERL}/Test/More.pm:${PORTSDIR}/devel/p5-Test-Simple -RUN_DEPENDS= ${SITE_PERL}/Class/DBI.pm:${PORTSDIR}/databases/p5-Class-DBI +RUN_DEPENDS= ${SITE_PERL}/Class/DBI.pm:${PORTSDIR}/databases/p5-Class-DBI \ + ${SITE_PERL}/Lingua/EN/Inflect.pm:${PORTSDIR}/textproc/p5-Lingua-EN-Inflect PERL_CONFIGURE= yes --------------060306090605020504070403-- From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 13:12:20 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAB9616A4CE for ; Thu, 13 Jan 2005 13:12:20 +0000 (GMT) Received: from sc.usp.br (hermes.cisc.usp.br [143.107.225.5]) by mx1.FreeBSD.org (Postfix) with SMTP id 120D443D2D for ; Thu, 13 Jan 2005 13:12:19 +0000 (GMT) (envelope-from ragomes@sc.usp.br) Received: (qmail 31821 invoked by uid 99); 13 Jan 2005 13:12:06 -0000 Received: from 200-171-20-19.dsl.telesp.net.br (200-171-20-19.dsl.telesp.net.br [200.171.20.19]) by webmail.sc.usp.br (IMP) with HTTP for ; Thu, 13 Jan 2005 11:12:06 -0200 Message-ID: <1105621926.41e673a608cdc@webmail.sc.usp.br> Date: Thu, 13 Jan 2005 11:12:06 -0200 From: ragomes@sc.usp.br To: ports@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.1 X-Originating-IP: 200.171.20.19 X-Mailman-Approved-At: Thu, 13 Jan 2005 15:19:36 +0000 Subject: Update for fr-aster-7.3.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 13:12:20 -0000 Dear ports maintainner, The program Aster has a new version, Aster-7.4... Do you intend to update the ports of this program? Thanks! Ricardo. From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 15:25:06 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B086316A4CE for ; Thu, 13 Jan 2005 15:25:06 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4437C43D45 for ; Thu, 13 Jan 2005 15:25:06 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 8CE6E512CB; Wed, 12 Jan 2005 22:27:39 -0800 (PST) Date: Wed, 12 Jan 2005 22:27:39 -0800 From: Kris Kennaway To: Lupe Christoph Message-ID: <20050113062739.GA28658@xor.obsecurity.org> References: <20050112210836.GA53854@xor.obsecurity.org> <20050113053432.GB10123@lupe-christoph.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ReaqsoxgOBHFXBhH" Content-Disposition: inline In-Reply-To: <20050113053432.GB10123@lupe-christoph.de> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 15:25:06 -0000 --ReaqsoxgOBHFXBhH Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jan 13, 2005 at 06:34:32AM +0100, Lupe Christoph wrote: > On Wednesday, 2005-01-12 at 13:08:36 -0800, Kris Kennaway wrote: > > For the past month I've been sending warnings to maintainers of ports > > that have broken pkg-plists (i.e. leave behind files after > > deinstallation). Now that we've passed the 4.11-RELEASE freeze, it's > > a good time to take this to the next level and begin phasing in strict > > enforcement of pkg-plist correctness. >=20 > > What this means is that the port build will now fail on the package > > cluster if certain kinds of files are left behind (to avoid false > > positives I will be phasing in matching of the 'extra file list' with > > a set of regexps that will be added to over time). Thus, your package > > will no longer appear on the ftp site, will be marked > > BROKEN=3D"Incomplete pkg-plist" and will eventually be scheduled for > > removal should the problem continue to be ignored by the maintainer. >=20 > > If you are the maintainer of an affected port, you will have already > > received mail from me detailing the missing files. If you've already > > submitted a PR containing a fix, you don't have anything further to > > worry about (although you might like to send a reminder to ports@ if > > you think it's been overlooked). If you haven't yet addressed the > > problems, please do so ASAP. >=20 > OK, back to a thread I started a while ago. >=20 > How do you treat an upgrade? Both Munin ports need to conserve state. > And they can only do that by leaving symlinks and files behind. >=20 > Please refer to the thread starting at > http://lists.freebsd.org/mailman/htdig/freebsd-ports/2004-December/0185= 92.html There's got to be some way to handle the somewhat different configuration needs of this port in a way compatible with the requirements imposed on the rest of the ports collection, but I don't have time to think about it right now. > Kris, I have not received a mail from you about missing files. This may > have been because the munin-node port was broken by the new environment > variable ARCH. And munin-main only leaves files behing if a cron run > happens while it is installed. Can you please run them again? Leaving > munin-main installed for say ten minutes? I can't do that, deinstallation happens immediately following installation. Kris --ReaqsoxgOBHFXBhH Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB5hTbWry0BWjoQKURAhxQAJ4u8ggXgVMcPYyE8Bxhlx88r6dvFACeJr6W qLzkyRHiIDp3ct/yw9CvLw8= =4aey -----END PGP SIGNATURE----- --ReaqsoxgOBHFXBhH-- From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 16:14:52 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8932616A4CE; Thu, 13 Jan 2005 16:14:52 +0000 (GMT) Received: from motgate8.mot.com (motgate8.mot.com [129.188.136.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08FB543D2D; Thu, 13 Jan 2005 16:14:52 +0000 (GMT) (envelope-from rittle@latour.waar.labs.mot.com) Received: from il06exr06.mot.com (il06exr06.mot.com [129.188.137.136]) by motgate8.mot.com (Motorola/Motgate8) with ESMTP id j0DGGgJD004772; Thu, 13 Jan 2005 09:16:42 -0700 (MST) Received: from latour.waar.labs.mot.com (latour.waar.labs.mot.com [173.23.133.73])j0DGEn61027387; Thu, 13 Jan 2005 10:14:49 -0600 Received: from latour.waar.labs.mot.com (localhost.waar.labs.mot.com [127.0.0.1])j0DGDcM6092477; Thu, 13 Jan 2005 10:13:38 -0600 (CST) (envelope-from rittle@latour.waar.labs.mot.com) Received: (from rittle@localhost) by latour.waar.labs.mot.com (8.13.1/8.13.1/Submit) id j0DGDcnm092474; Thu, 13 Jan 2005 10:13:38 -0600 (CST) (envelope-from rittle) Date: Thu, 13 Jan 2005 10:13:38 -0600 (CST) From: Loren James Rittle Message-Id: <200501131613.j0DGDcnm092474@latour.waar.labs.mot.com> To: obrien@FreeBSD.org In-reply-to: <20050113033450.GC36950@dragon.nuxi.com> (obrien@FreeBSD.org) References: <200501081657.j08GvnML053109@sakura.ninth-nine.com> <20050113033450.GC36950@dragon.nuxi.com> User-Agent: SEMI/1.14.4 (Hosorogi) FLIM/1.14.4 (=?ISO-8859-4?Q?Kashiharaji?= =?ISO-8859-4?Q?ng=FE-mae?=) LEMI/1.14.1 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.4 - "Hosorogi") Content-Type: text/plain; charset=US-ASCII cc: ports@FreeBSD.org cc: gerald@pfeifer.com cc: nork@FreeBSD.org Subject: Re: Fix -pthread issue on lang/gcc3[34] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: rittle@labs.mot.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 16:14:52 -0000 In article <20050113033450.GC36950@dragon.nuxi.com>, "David O'Brien" writes: > I did not realize GCC 3.3 was still being updated. Loren do I have your > permission to commit the GCC 3.4 fix into the 3.3 branch? I assume this > branch is open to bug fixes? You do indeed. Yes, definitely open to per-port bug fixes. Note: It is unknown to me (at least) whether another release will ever spin off that branch. Regards, Loren From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 17:24:26 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DBE816A4CE for ; Thu, 13 Jan 2005 17:24:26 +0000 (GMT) Received: from smtprelay04.ispgateway.de (smtprelay04.ispgateway.de [80.67.18.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F66443D5A for ; Thu, 13 Jan 2005 17:24:25 +0000 (GMT) (envelope-from ports@mark.reidel.info) Received: (qmail 7209 invoked from network); 13 Jan 2005 17:24:24 -0000 Received: from unknown (HELO karm.dyndns.org) (793055@[62.226.19.230]) (envelope-sender ) by smtprelay04.ispgateway.de (qmail-ldap-1.03) with SMTP for ; 13 Jan 2005 17:24:24 -0000 Received: (qmail 18096 invoked by uid 0); 13 Jan 2005 17:24:22 -0000 Received: from unknown (HELO ?192.168.42.12?) (192.168.42.12) by karm.dyndns.org with SMTP; 13 Jan 2005 17:24:22 -0000 Message-ID: <41E6AEC7.1000406@mark.reidel.info> Date: Thu, 13 Jan 2005 18:24:23 +0100 From: Mark Daniel Reidel User-Agent: Mozilla Thunderbird 1.0 (X11/20050113) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org X-Enigmail-Version: 0.86.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit Subject: Thunderbird crashes since Xorg 6.8.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 17:24:26 -0000 Dear list, ever since I switched to Xorg 6.8.1, thunderbird crashes when successfully fetching mail in the background. I see that new mail has arrived and *bang* SIGSEGV :o( Has anyone else had this problem? The only information thunderbird -g gives me is at the end of the mail. I also rebuilded all my ports using portupgrade -fa, but to no success. Any ideas? - Mark Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 1 (LWP 100147)] 0x29774a94 in nsTransferDBFolderInfo::nsTransferDBFolderInfo () from /usr/X11R6/lib/thunderbird/lib/thunderbird-1.0/components/libmail.so (gdb) bt #0 0x29774a94 in nsTransferDBFolderInfo::nsTransferDBFolderInfo () from /usr/X11R6/lib/thunderbird/lib/thunderbird-1.0/components/libmail.so #1 0x297aec5d in nsImapMailFolder::GetBodysToDownload () from /usr/X11R6/lib/thunderbird/lib/thunderbird-1.0/components/libmail.so #2 0xbfbfcfd4 in ?? () #3 0x298d5c70 in nsIMsgAccount::GetIID()::iid () from /usr/X11R6/lib/thunderbird/lib/thunderbird-1.0/components/libmail.so #4 0x00000000 in ?? () #5 0x289388b0 in ?? () from /usr/X11R6/lib/thunderbird/lib/thunderbird-1.0/libnspr4.so #6 0x28939c44 in ?? () from /usr/X11R6/lib/thunderbird/lib/thunderbird-1.0/libnspr4.so #7 0x00000002 in ?? () #8 0xbfbfcf30 in ?? () #9 0x28a41909 in pthread_mutex_unlock () from /usr/lib/libpthread.so.1 Previous frame inner to this frame (corrupt stack?) From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 17:24:39 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5A6E16A4CE; Thu, 13 Jan 2005 17:24:39 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E03643D55; Thu, 13 Jan 2005 17:24:31 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id j0DHZonP060025; Thu, 13 Jan 2005 14:35:50 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id j0DHO2Tb096273; Thu, 13 Jan 2005 14:24:02 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id j0DHO1E7096270; Thu, 13 Jan 2005 14:24:01 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Thu, 13 Jan 2005 14:24:01 -0300 From: Fernan Aguero To: NAKATA Maho Message-ID: <20050113172401.GH23549@iib.unsam.edu.ar> Mail-Followup-To: NAKATA Maho , ports@FreeBSD.ORG, openoffice@FreeBSD.ORG References: <20050112171457.GA63187@iib.unsam.edu.ar> <20050113.175653.424245961.chat95@mac.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050113.175653.424245961.chat95@mac.com> User-Agent: Mutt/1.5.6i cc: ports@FreeBSD.ORG cc: openoffice@FreeBSD.ORG Subject: Re: is openoffice broken in FreeBSD 4.x? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 17:24:40 -0000 +----[ NAKATA Maho (13.Jan.2005 06:03): | [snip] | > I am running FreeBSD-4.10p5 (RELENG_4_10), and would like to | > know how to upgrade my rtld, if that's possible, and then | > openoffice. | | from | http://porting.openoffice.org/freebsd/ | We had minor but serious implementation difference in rtld.c between FreeBSD and NetBSD/Linux/Solaris which had been inducing very weired problem, and workaround also inducing a hard-to-track bug. It was fixed after 5.2.1-RELEASE and 4.10-RELEASE. Please see commit log also for details. So we decided to mark these port as BROKEN for them. However, an unconfirmed patch for rtld.c is available, and it is totally unsupported. At your own risk, and feedback is welcome. So, if it was fixed after 4.10-RELEASE and I don't see it in my /usr/src/UPDATING (I'm tracking RELENG_4_10) perhaps it's already available in STABLE (RELENG_4)? Or in 4.11-RELEASE? | @${ECHO} "# fetch http://people.freebsd.org/~maho/ooo/patch-rtld.c" | @${ECHO} "# cd /usr/src/libexec/rtld-elf ; patch < patch-rtld.c" | @${ECHO} "# make ; make depend ; make install" | @${ECHO} "AT YOUR OWN RISK!" | | I don't recommend you to do it...even I don't confirm that patch can | be applied cleanly. and in the worst case you must reinstall entier | FreeBSD. I'm serious. | | thanks, | -- NAKATA, Maho | +----] But this patch is already applied to 4.11 sources, isn't it? And what problems it is causing? If I cvsup and update my sources to RELENG_4 or RELENG_4_11, should I need to reinstall all ports (portupgrade -fa) apart from the whole world (FreeBSD base)? Thanks for shedding any light on this, Fernan From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 17:40:02 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2C7D16A4CE for ; Thu, 13 Jan 2005 17:40:02 +0000 (GMT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C99843D39 for ; Thu, 13 Jan 2005 17:40:02 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id CA1D0148F4; Thu, 13 Jan 2005 11:40:01 -0600 (CST) Date: Thu, 13 Jan 2005 11:40:01 -0600 (CST) From: Mark Linimon X-X-Sender: linimon@pancho To: "R.Brouwer" In-Reply-To: <41E636F8.5020806@corine-robert.nl> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@FreeBSD.org Subject: Re: Fix for port-Makefiles X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 17:40:02 -0000 On Thu, 13 Jan 2005, R.Brouwer wrote: > I regularly receive the error "warning: String comparison operator > should be either == or !=" when I rebuild the ports-index. > Or the error: Malformed conditional ((${OSVERSION} < 503001 && > ${OSVERSION} >= 500000) || (${OSVERSION} < 492000)) My guess is that you're running either 4.8 or an early 5.2? These had a buggy make(1) that need this workaround. Perhaps this test should be in portlint or something, but ... we really don't guarantee that the ports collection will work on anything other than fairly recent versions of FreeBSD. mcl From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 17:48:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AA8A16A4CE for ; Thu, 13 Jan 2005 17:48:29 +0000 (GMT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDC3143D2F for ; Thu, 13 Jan 2005 17:48:28 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 85576148F4; Thu, 13 Jan 2005 11:48:28 -0600 (CST) Date: Thu, 13 Jan 2005 11:48:28 -0600 (CST) From: Mark Linimon X-X-Sender: linimon@pancho To: ragomes@sc.usp.br In-Reply-To: <1105621926.41e673a608cdc@webmail.sc.usp.br> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@FreeBSD.org Subject: Re: Update for fr-aster-7.3.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 17:48:29 -0000 On Thu, 13 Jan 2005 ragomes@sc.usp.br wrote: > Dear ports maintainner, > > The program Aster has a new version, Aster-7.4... Do you intend to update > the port of this program? "ports@FreeBSD.org" is the null maintainer, so, until someone sends in a PR with an update, it probably won't be updated. mcl From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 17:56:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A518E16A4CF for ; Thu, 13 Jan 2005 17:56:03 +0000 (GMT) Received: from graf.pompo.net (graf.pompo.net [81.56.186.139]) by mx1.FreeBSD.org (Postfix) with ESMTP id 227AF43D41 for ; Thu, 13 Jan 2005 17:56:03 +0000 (GMT) (envelope-from thierry@pompo.net) Received: by graf.pompo.net (Postfix, from userid 1001) id 5BB527670; Thu, 13 Jan 2005 18:53:55 +0100 (CET) Date: Thu, 13 Jan 2005 18:53:55 +0100 From: Thierry Thomas To: Mark Linimon Message-ID: <20050113175355.GC64310@graf.pompo.net> Mail-Followup-To: Mark Linimon , ragomes@sc.usp.br, ports@FreeBSD.org References: <1105621926.41e673a608cdc@webmail.sc.usp.br> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-STABLE i386 Organization: Kabbale Eros X-PGP: 0xC71405A2 cc: ports@FreeBSD.org cc: ragomes@sc.usp.br Subject: Re: Update for fr-aster-7.3.0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 17:56:03 -0000 Le Jeu 13 jan 05 à 18:48:28 +0100, Mark Linimon écrivait : > On Thu, 13 Jan 2005 ragomes@sc.usp.br wrote: > > > Dear ports maintainner, > > > > The program Aster has a new version, Aster-7.4... Do you intend to update > > the port of this program? I'm working on it, but it takes some time, because the build mechanism has been rewritten. Could be committed saturday or sunday, if nothing goes wrong. Regards, -- Th. Thomas. From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 17:56:20 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37C0216A4CE for ; Thu, 13 Jan 2005 17:56:20 +0000 (GMT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F72E43D2D for ; Thu, 13 Jan 2005 17:56:20 +0000 (GMT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 92913148ED; Thu, 13 Jan 2005 11:56:19 -0600 (CST) Date: Thu, 13 Jan 2005 11:56:19 -0600 (CST) From: Mark Linimon X-X-Sender: linimon@pancho To: Kris Kennaway In-Reply-To: <20050113062739.GA28658@xor.obsecurity.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Lupe Christoph cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 17:56:20 -0000 On Wed, 12 Jan 2005, Kris Kennaway wrote: > > How do you treat an upgrade? Both Munin ports need to conserve state. > > And they can only do that by leaving symlinks and files behind. > > There's got to be some way to handle the somewhat different > configuration needs of this port in a way compatible with the > requirements imposed on the rest of the ports collection, but I don't > have time to think about it right now. My suggestion is that we mark this port IGNORE for now to keep it out of our error reports, to allow us to concentrate on fixing as many of the other problematic ports as possible. About a month ago I went through all the IGNOREd ports and there is some further work to be done on some of them but IMHO at a lower priority than BROKEN/DEPRECATED issues. Moving (almost) all of the non-plist-compliant ports into the BROKEN/DEPRECATED space is a big change; I doubt we can catch every edge condition as we do so. mcl From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 18:05:06 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DAC816A4CE for ; Thu, 13 Jan 2005 18:05:06 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5DA843D41 for ; Thu, 13 Jan 2005 18:05:05 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 82EE8512C4; Thu, 13 Jan 2005 10:05:04 -0800 (PST) Date: Thu, 13 Jan 2005 10:05:04 -0800 From: Kris Kennaway To: Mark Linimon Message-ID: <20050113180504.GA26064@xor.obsecurity.org> References: <20050113062739.GA28658@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="J2SCkAp4GZ/dPZZf" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i cc: Lupe Christoph cc: freebsd-ports@freebsd.org cc: Kris Kennaway Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 18:05:06 -0000 --J2SCkAp4GZ/dPZZf Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Jan 13, 2005 at 11:56:19AM -0600, Mark Linimon wrote: > On Wed, 12 Jan 2005, Kris Kennaway wrote: >=20 > > > How do you treat an upgrade? Both Munin ports need to conserve state. > > > And they can only do that by leaving symlinks and files behind. > >=20 > > There's got to be some way to handle the somewhat different > > configuration needs of this port in a way compatible with the > > requirements imposed on the rest of the ports collection, but I don't > > have time to think about it right now. >=20 > My suggestion is that we mark this port IGNORE for now to keep it > out of our error reports, to allow us to concentrate on fixing as > many of the other problematic ports as possible. >=20 > About a month ago I went through all the IGNOREd ports and there is > some further work to be done on some of them but IMHO at a lower > priority than BROKEN/DEPRECATED issues. Moving (almost) all of the > non-plist-compliant ports into the BROKEN/DEPRECATED space is a big > change; I doubt we can catch every edge condition as we do so. I'm going to be careful about not allowing the "questionable" packages to fall foul of the pkg-plist checking, until we decide one way or the other whether they should be considered "broken". Kris --J2SCkAp4GZ/dPZZf Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB5rhPWry0BWjoQKURAuz9AJ0RdvVHlMXrIz3UgrFVzsiyz+9fvgCgkgKE MCgNnjuk35gfmmDzLDkJFaU= =uPRX -----END PGP SIGNATURE----- --J2SCkAp4GZ/dPZZf-- From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 18:07:58 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B8C016A4CE for ; Thu, 13 Jan 2005 18:07:58 +0000 (GMT) Received: from antivirus.uni-rostock.de (antivirus.uni-rostock.de [139.30.8.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id B779243D53 for ; Thu, 13 Jan 2005 18:07:57 +0000 (GMT) (envelope-from karsten.rothemund@uni-rostock.de) Received: from antivirus.exch.rz.uni-rostock.de ([127.0.0.1]) by antivirus.uni-rostock.de with Microsoft SMTPSVC(6.0.3790.211); Thu, 13 Jan 2005 19:07:56 +0100 Received: from antivirus.uni-rostock.de (unverified) by antivirus.exch.rz.uni-rostock.de for ; Thu, 13 Jan 2005 19:07:55 +0100 Received: from mail.uni-rostock.de ([139.30.8.11]) by antivirus.uni-rostock.de with Microsoft SMTPSVC(6.0.3790.211); Thu, 13 Jan 2005 19:07:55 +0100 Received: from conversion-daemon.mail2.uni-rostock.de by mail2.uni-rostock.de (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) id <0IA900H01OOF36@mail.uni-rostock.de> (original mail from karsten.rothemund@uni-rostock.de) for ports@FreeBSD.org; Thu, 13 Jan 2005 19:07:55 +0100 (MET) Received: from Worf.mydomain.home (B5c1d.b.pppool.de [213.7.92.29]) by mail2.uni-rostock.de (iPlanet Messaging Server 5.2 Patch 2 (built Jul 14 2004)) with ESMTPA id <0IA9001ZGP15KL@mail.uni-rostock.de> for ports@FreeBSD.org; Thu, 13 Jan 2005 19:07:55 +0100 (MET) Date: Thu, 13 Jan 2005 19:04:36 +0100 From: Karsten Rothemund To: ports@FreeBSD.org Message-id: <20050113190436.7e3b9069.karsten.rothemund@uni-rostock.de> Organization: private site MIME-version: 1.0 X-Mailer: Sylpheed version 0.9.99-gtk2-20041024 (GTK+ 2.4.14; i386-portbld-freebsd5.3) Content-type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Signature=_Thu__13_Jan_2005_19_04_36_+0100_HjV8ikr7FJjoXGPO" X-OriginalArrivalTime: 13 Jan 2005 18:07:55.0805 (UTC) FILETIME=[CE80E4D0:01C4F99A] Subject: Documentation for tochnog not included in the port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 18:07:58 -0000 --Signature=_Thu__13_Jan_2005_19_04_36_+0100_HjV8ikr7FJjoXGPO Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7bit Dear Maintainer of the tochnog-port for FreeBSD. I try to evaluate several FEM-programs in open source. I found tochnog in the FreeBSD-ports and installed it. But it seams, there is no documentation included. I found an online html-manual, but, because I am online via an expensive modem-line at home ... And there is no pdf- or postscript-doc available. Is it possible to pack the html-manual into the port, so that it is possible to install it locally and browse it? Thank you for your answere, -- Karsten Rothemund GnuPG-Key-ID: 8B67404C (Please use it) GnuPG-Key Fingerprint: AD34 7314 EE3A 7B9F E7A2 23F6 E35D 76D6 8B67 404C --Signature=_Thu__13_Jan_2005_19_04_36_+0100_HjV8ikr7FJjoXGPO Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFB5rhA41121otnQEwRAv56AKCO+m294ICH9GKPHlel2+X/JddRKwCfakb6 qM8c8w0ikQdPp1cxltPncTQ= =y0O8 -----END PGP SIGNATURE----- --Signature=_Thu__13_Jan_2005_19_04_36_+0100_HjV8ikr7FJjoXGPO-- From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 18:12:30 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74AA816A4CE for ; Thu, 13 Jan 2005 18:12:30 +0000 (GMT) Received: from smtp.unsam.edu.ar (smtp.unsam.edu.ar [170.210.48.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8966F43D5E for ; Thu, 13 Jan 2005 18:12:28 +0000 (GMT) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (pi.iib.unsam.edu.ar [192.168.10.11]) by smtp.unsam.edu.ar (8.12.6/8.12.6) with ESMTP id j0DINonP060868; Thu, 13 Jan 2005 15:23:50 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: from pi.iib.unsam.edu.ar (localhost.iib.unsam.edu.ar [127.0.0.1]) by pi.iib.unsam.edu.ar (8.12.11/8.12.9) with ESMTP id j0DIC2jW008205; Thu, 13 Jan 2005 15:12:02 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) Received: (from fernan@localhost) by pi.iib.unsam.edu.ar (8.12.11/8.12.11/Submit) id j0DIC2db008204; Thu, 13 Jan 2005 15:12:02 -0300 (ART) (envelope-from fernan@iib.unsam.edu.ar) X-Authentication-Warning: pi.iib.unsam.edu.ar: fernan set sender to fernan@iib.unsam.edu.ar using -f Date: Thu, 13 Jan 2005 15:12:02 -0300 From: Fernan Aguero To: Kris Kennaway Message-ID: <20050113181202.GI23549@iib.unsam.edu.ar> Mail-Followup-To: Kris Kennaway , ports@freebsd.org References: <20050109054522.GA38123@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050109054522.GA38123@xor.obsecurity.org> User-Agent: Mutt/1.5.6i cc: ports@freebsd.org Subject: Re: FreeBSD ports scheduled for removal X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 18:12:30 -0000 +----[ Kris Kennaway (09.Jan.2005 02:55): | | biology/molden rmiya@cc.hirosaki-u.ac.jp 2005-02-18 | biology/spdbv chuynh@biolateral.com.au 2005-02-18 | +----] I have a working update for biology/molden that will be submitted soon. Regarding spdbv I have already contacted the authors to see if it's possible to provide a static binary so that we can remove the dependency on linux-openmotif. BTW, the email for Camson Chuyhn (chuynh@biolateral.com.au) is bouncing me. If any of you know of an alternative address, please contact me. Fernan From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 18:15:53 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B968B16A4CE for ; Thu, 13 Jan 2005 18:15:53 +0000 (GMT) Received: from mindfields.energyhq.es.eu.org (73.Red-213-97-200.pooles.rima-tde.net [213.97.200.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47B5143D5C for ; Thu, 13 Jan 2005 18:15:52 +0000 (GMT) (envelope-from flynn@energyhq.es.eu.org) Received: from scienide.energyhq.es.eu.org (scienide.energyhq.es.eu.org [192.168.100.1]) by mindfields.energyhq.es.eu.org (Postfix) with SMTP id 720E934FC1; Thu, 13 Jan 2005 19:15:49 +0100 (CET) Date: Thu, 13 Jan 2005 19:15:33 +0100 From: Miguel Mendez To: Karsten Rothemund Message-Id: <20050113191533.1f7a5503.flynn@energyhq.es.eu.org> In-Reply-To: <20050113190436.7e3b9069.karsten.rothemund@uni-rostock.de> References: <20050113190436.7e3b9069.karsten.rothemund@uni-rostock.de> X-Mailer: Sylpheed version 0.9.99-gtk2-20041024 (GTK+ 2.4.14; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="pgp-sha1"; boundary="Signature=_Thu__13_Jan_2005_19_15_33_+0100_.3Pv5lz3ldvmxhl/" cc: ports@FreeBSD.org Subject: Re: Documentation for tochnog not included in the port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 18:15:53 -0000 --Signature=_Thu__13_Jan_2005_19_15_33_+0100_.3Pv5lz3ldvmxhl/ Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7bit On Thu, 13 Jan 2005 19:04:36 +0100 Karsten Rothemund wrote: Karsten, [tochnog port] > Is it possible to pack the html-manual into the port, so that it is > possible to install it locally and browse it? The tochnog port maintainer is currently set to ports@freebsd.org, which basically means that nobody is taking care of it. If you find the program useful for you then you could become maintainer of the port and add the option to install the html documentation. The FreeBSD Porter's Handbook (1) is a good place to start. (1) http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/ Cheers, -- Miguel Mendez http://www.energyhq.es.eu.org PGP Key: 0xDC8514F1 --Signature=_Thu__13_Jan_2005_19_15_33_+0100_.3Pv5lz3ldvmxhl/ Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFB5rrInLctrNyFFPERAt1kAJ9KdgJkOOQCHXuSgJlRDqPUqo7bZQCcD4k2 A/eipCUNAU5+6rHZup4yvkg= =lM5R -----END PGP SIGNATURE----- --Signature=_Thu__13_Jan_2005_19_15_33_+0100_.3Pv5lz3ldvmxhl/-- From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 19:43:10 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4C7016A4CE for ; Thu, 13 Jan 2005 19:43:10 +0000 (GMT) Received: from web53602.mail.yahoo.com (web53602.mail.yahoo.com [206.190.37.35]) by mx1.FreeBSD.org (Postfix) with SMTP id 503A143D49 for ; Thu, 13 Jan 2005 19:43:10 +0000 (GMT) (envelope-from scott@sremick.net) Received: (qmail 22271 invoked by uid 60001); 13 Jan 2005 19:43:09 -0000 Message-ID: <20050113194309.22269.qmail@web53602.mail.yahoo.com> Received: from [65.213.7.6] by web53602.mail.yahoo.com via HTTP; Thu, 13 Jan 2005 11:43:09 PST X-RocketYMMF: siremick Date: Thu, 13 Jan 2005 11:43:09 -0800 (PST) From: "Scott I. Remick" To: Michael Johnson In-Reply-To: <09EE1613-4473-458C-A5A3-B7B8242B8437@ahze.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii cc: ports@FreeBSD.org Subject: Re: Nvu 0.70. still won't build - new error X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: scott@sremick.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 19:43:10 -0000 --- Michael Johnson wrote: > should be fix, sorry about that. I don't think your fix made it to cvs. I tried cvsup on ports several times since you've sent this, even going as far as rm -R on nvu/ first, and it's still failing the same way. From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 20:27:24 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0DD916A4CE; Thu, 13 Jan 2005 20:27:24 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 955AB43D1F; Thu, 13 Jan 2005 20:27:24 +0000 (GMT) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 01DA63D40; Thu, 13 Jan 2005 15:27:23 -0500 (EST) From: "Dan Langille" To: fjoe@freebsd.org Date: Thu, 13 Jan 2005 15:29:25 -0500 MIME-Version: 1.0 Message-ID: <41E693D5.28457.92D804F2@localhost> Priority: normal X-mailer: Pegasus Mail for Windows (4.21c) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body cc: freebsd-ports@freebsd.org Subject: database/pgadmin3 cores X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 20:27:24 -0000 Hi, On FreeBSD 5.3-stable, I'm getting a core dump: # pgadmin3 Segmentation fault (core dumped) This is pgadmin3-1.2.0 under xorg-6.8.1 Any ideas? -- Dan Langille : http://www.langille.org/ BSDCan - The Technical BSD Conference - http://www.bsdcan.org/ From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 20:46:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B507B16A4CE for ; Thu, 13 Jan 2005 20:46:47 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [193.30.224.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65E3343D1F for ; Thu, 13 Jan 2005 20:46:47 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from pouet.in.mat.cc (pouet.in.mat.cc [193.30.224.122]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id 9970EA24051; Thu, 13 Jan 2005 21:46:45 +0100 (CET) Date: Thu, 13 Jan 2005 21:46:41 +0100 From: Mathieu Arnold To: matt.adams@morcor.com Message-ID: In-Reply-To: <41E68E9A.9060500@morcor.com> References: <41E68E9A.9060500@morcor.com> X-Mailer: Mulberry/4.0.0a4 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========8DB85CAB1A3E2FC4FBB0==========" cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: p5-Class-DBI-Loader-0.11 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 20:46:47 -0000 --==========8DB85CAB1A3E2FC4FBB0========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-Le 13/01/2005 10:07 -0500, Matt Adams a dit : | Hi there: | | Just wanted to let you know that Class::DBI::Loader::Generic uses | Lingua::EN::Inflect and that the Makefile for p5-Class-DBI-Loader should | probably include Lingua::EN::Inflect as a RUN_DEPENDS. | | I've attached a patch against the current Makefile (as of version 1.7). Good catch, I've committed your patch, thanks ! -- Mathieu Arnold --==========8DB85CAB1A3E2FC4FBB0========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQebeM1vROjYJ63c1AQKXeggAhSiwkRbUGr1LCQFGQAta1V06sEPLkRGd s8cSOunGGYo13HGr6juE6dst6cRNieVPNBbXIPSOd/r+VHD6KLXvg0SI+ZCAIKyM pzuGm0eYmqWlm5Vin6W5rb1AaSNwTAYdD7SCljFG9aJZxx7loEmzKMRKZmdOtvxl aWr/ICXWAaX5QQXsrkrb/Z6waWgT3HvsLwkstHeThUkYnqIf/82RiabbxV3roD+g 8NjhNMrjqX/c9ZNK23UWY602TuPdDohxWQ0B74ITr+Nc8NNm+2xI+6iP6LM22XHb 9YnJ+YOhXB11XMBJtG4zDHmN5jsUyjJXg7JLt/dRo/wGlXtSEx+SJQ== =jrWy -----END PGP SIGNATURE----- --==========8DB85CAB1A3E2FC4FBB0==========-- From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 21:32:02 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A234416A4CE for ; Thu, 13 Jan 2005 21:32:02 +0000 (GMT) Received: from web51606.mail.yahoo.com (web51606.mail.yahoo.com [206.190.38.211]) by mx1.FreeBSD.org (Postfix) with SMTP id 21B5043D1D for ; Thu, 13 Jan 2005 21:32:02 +0000 (GMT) (envelope-from giffunip@yahoo.com) Received: (qmail 47256 invoked by uid 60001); 13 Jan 2005 21:32:01 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=vBRCbKQOGOEZttwOMQJwULZVv2sBdtnqPNpy8QM8EnmKdnz5ITfErBhHHEFETUlb/RV12Gr9nVpzDYwK3sA4Cufv2DfGZiYA2HepeVI+EJnOqPKYysueQO2rb9eqNtpF0ZIf0ylca6Pdhf+TPWd4kRsUm4ogc5uwHLOI6gNiAzs= ; Message-ID: <20050113213201.47254.qmail@web51606.mail.yahoo.com> Received: from [200.119.73.118] by web51606.mail.yahoo.com via HTTP; Thu, 13 Jan 2005 13:32:01 PST Date: Thu, 13 Jan 2005 13:32:01 -0800 (PST) From: "Pedro F. Giffuni" To: karsten.rothemund@uni-rostock.de, freebsd-ports@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: re: Documentation for tochnog not included in the port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 21:32:02 -0000 Hi; I am the author of that port. I openly admit that I was too lazy to add the documentation and I don't have time to do it now :(. I usually leave my ports without maintainer because I don't want to be an obstacle to other people contributing to them, so feel free to submit patches ;). One way to go is get the postscript files from the NetBSD repositories and add them to the port. CalculiX can produce files for tochnog so you probably want to use it (an update for it is waiting review). There is another nice FEA tool coming soon but I think Code Aster is the most powerful and we are lucky to have french people looking over it. FWIW, I think FreeBSD can be proud of carrying more high quality FEA tools than any other free OS. cheers, Pedro. __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 21:38:18 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5660516A4CE; Thu, 13 Jan 2005 21:38:18 +0000 (GMT) Received: from shark.rtp.freebsd.org (rtp6.bsdwins.com [192.58.184.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id E662C43D48; Thu, 13 Jan 2005 21:38:17 +0000 (GMT) (envelope-from "") Received: from shark.rtp.freebsd.org (localhost [127.0.0.1]) j0DLbKI2049801; Thu, 13 Jan 2005 16:37:21 -0500 (EST) Received: (from eik@localhost) by shark.rtp.freebsd.org (8.12.11/8.12.11/Submit) id j0DLbKhi049799; Thu, 13 Jan 2005 16:37:20 -0500 (EST) Date: Thu, 13 Jan 2005 16:37:20 -0500 (EST) Message-Id: <200501132137.j0DLbKhi049799@shark.rtp.freebsd.org> X-Authentication-Warning: shark.rtp.freebsd.org: eik set sender to <> using -f From: chkversion To: FreeBSD ports X-FreeBSD-Chkversion: PKGORIGIN cc: kwm@FreeBSD.org Subject: Ports with a broken PKGORIGIN: multimedia/libtheora X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: FreeBSD ports List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 21:38:18 -0000 ** The following ports have an incorrect PKGORIGIN ** PKGORIGIN connects packaged or installed ports to the directory they originated from. This is essential for tools like pkg_version or portupgrade to work correctly. Wrong PKGORIGINs are often caused by a wrong order of CATEGORIES after a repocopy. Please fix any errors as soon as possible. - *multimedia/libtheora* : graphics/libtheora | revision 1.5 | date: 2005/01/13 19:00:03; author: kwm; state: Exp; lines: +6 -14 | Finish repocopy from graphics to multimedia. | Update to alpha4, based on [1] | | PR: 75961 [1] | Submitted by: Stefan Walter sw AT gegenunendlich dot de | Repocopyed by: marcus From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 23:45:36 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE73816A4CE for ; Thu, 13 Jan 2005 23:45:36 +0000 (GMT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8659743D49 for ; Thu, 13 Jan 2005 23:45:36 +0000 (GMT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) j0DNjaJu087713 for ; Thu, 13 Jan 2005 18:45:36 -0500 (EST) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id j0DNjavV051393 for ports@FreeBSD.org; Thu, 13 Jan 2005 18:45:36 -0500 (EST) (envelope-from kris) Date: Thu, 13 Jan 2005 18:45:36 -0500 (EST) From: Kris Kennaway Message-Id: <200501132345.j0DNjavV051393@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed for 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 23:45:37 -0000 INDEX build failed with errors: Generating INDEX - please wait..gnome2-fifth-toe-2.8.2: "/vol/vol0/users/kris/ports.clean/www/bluefish-devel" non-existent -- dependency list incomplete ===> x11/gnome2-fifth-toe failed *** Error code 1 *** Error code 1 Stop in /vol/vol0/users/kris/ports.clean. *** Error code 1 Stop in /vol/vol0/users/kris/ports.clean. 1 error Committers on the hook: dinoex kwm lioux mat mezz nectar niels obrien pav Most recent CVS update was: U MOVED U databases/p5-Class-DBI-Loader/Makefile U devel/ffcall/Makefile U devel/ffcall/distinfo U games/gomoku.app/Makefile U games/gomoku.app/distinfo U games/gomoku.app/pkg-plist U games/gshisen/Makefile U games/gshisen/distinfo U games/gshisen/pkg-descr U lang/gcc31/Makefile U lang/gcc32/Makefile U mail/quickml/Makefile U mail/quickml/files/patch-quickml-analog.in U multimedia/libtheora/Makefile U multimedia/libxine/Makefile U net/Makefile U net/azureus/Makefile U net/azureus/distinfo U net/azureus/files/azureus U net/azureus/files/build.xml U net/libmms/Makefile U net/seda/Makefile U net/seda/distinfo U net/seda/pkg-descr U net/seda/files/build.xml U security/libtomcrypt/Makefile U security/libtomcrypt/distinfo U security/libtomcrypt/pkg-plist U security/libtomcrypt/files/patch-demos-test-makefile U security/libtomcrypt/files/patch-makefile U security/proxytunnel/Makefile U security/proxytunnel/distinfo U security/proxytunnel/files/patch-Makefile U security/vuxml/vuln.xml U sysutils/ataidle/Makefile U sysutils/ataidle/distinfo U sysutils/ataidle/pkg-descr U textproc/xmlroff/Makefile U textproc/xmlroff/pkg-plist U www/Makefile U www/bluefish/Makefile U www/bluefish/distinfo U www/bluefish/pkg-descr U www/bluefish/pkg-plist From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 01:12:53 2005 Return-Path: Delivered-To: freebsd-ports@www.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3190D16A4CE for ; Fri, 14 Jan 2005 01:12:53 +0000 (GMT) Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16D7543D1F for ; Fri, 14 Jan 2005 01:12:53 +0000 (GMT) (envelope-from marcus@corp.grupos.com.br) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 0B6BE556B8 for ; Fri, 14 Jan 2005 01:12:53 +0000 (GMT) (envelope-from marcus@corp.grupos.com.br) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09E5416A4CE for ; Fri, 14 Jan 2005 01:12:53 +0000 (GMT) Received: from gwmail1.grupos.com.br (gwmail1.grupos.com.br [66.90.64.125]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9A9543D1F for ; Fri, 14 Jan 2005 01:12:52 +0000 (GMT) (envelope-from marcus@corp.grupos.com.br) Received: from corp.grupos.com.br (unknown [150.162.166.55]) by gwmail1.grupos.com.br (Postfix) with ESMTP id AA6B43C926 for ; Thu, 13 Jan 2005 23:12:51 -0200 (BRST) Received: from [192.168.1.3] (200-138-246-091.fnsce7006.dsl.brasiltelecom.net.br [200.138.246.91]) by corp.grupos.com.br (Postfix) with ESMTP id 4D70D20A22; Thu, 13 Jan 2005 23:12:23 -0200 (BRST) Message-ID: <41E71C74.8040007@corp.grupos.com.br> Date: Thu, 13 Jan 2005 23:12:20 -0200 From: Marcus Grando User-Agent: Mozilla Thunderbird 1.0 (X11/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@lists.freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: About pkg-plist and PLIST_FILES X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 01:12:53 -0000 Hi list, If port install few files, create pkg-plist is best? or use PLIST_FILES in Makefile? Which is the recommended? For example, if port install one file, i think that use PLIST_FILES is the best way, for save space. That's correct? Regards -- Marcus Grando Grupos Internet S/A marcus(at)corp.grupos.com.br From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 01:18:44 2005 Return-Path: Delivered-To: freebsd-ports@www.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F6EC16A4CE for ; Fri, 14 Jan 2005 01:18:44 +0000 (GMT) Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDF9143D4C for ; Fri, 14 Jan 2005 01:18:43 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id 10BAA5565A for ; Fri, 14 Jan 2005 01:18:21 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B70216A4CF for ; Fri, 14 Jan 2005 01:18:21 +0000 (GMT) Received: from mail2out.barnet.com.au (mail2out.barnet.com.au [202.83.176.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id E00C443D41 for ; Fri, 14 Jan 2005 01:18:19 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mail2out.barnet.com.au (Postfix, from userid 27) id 15CA1707446; Fri, 14 Jan 2005 12:18:18 +1100 (EST) X-Viruscan-Id: <41E71DD900002CAA6D37CB@BarNet> Received: from mail2-auth.barnet.com.au (mail2.barnet.com.au [202.83.176.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id C6E60707445; Fri, 14 Jan 2005 12:18:17 +1100 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id 49E45707444; Fri, 14 Jan 2005 12:18:17 +1100 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 159B56131; Fri, 14 Jan 2005 12:18:16 +1100 (EST) Date: Fri, 14 Jan 2005 12:18:16 +1100 From: Edwin Groothuis To: Marcus Grando Message-ID: <20050114011815.GC1175@k7.mavetju> References: <41E71C74.8040007@corp.grupos.com.br> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41E71C74.8040007@corp.grupos.com.br> User-Agent: Mutt/1.5.6i cc: freebsd-ports@lists.freebsd.org Subject: Re: About pkg-plist and PLIST_FILES X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 01:18:44 -0000 On Thu, Jan 13, 2005 at 11:12:20PM -0200, Marcus Grando wrote: > If port install few files, create pkg-plist is best? or use PLIST_FILES > in Makefile? Which is the recommended? If it's just a simple one two three files, feel free to use PLIST_FILES and PLIST_DIRS. For anything more complicated I myself use pkg-plist. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 01:24:02 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8907216A4CE; Fri, 14 Jan 2005 01:24:02 +0000 (GMT) Received: from satie.private.org (qclgw.qcl.t.u-tokyo.ac.jp [133.11.70.190]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90ED943D41; Fri, 14 Jan 2005 01:24:01 +0000 (GMT) (envelope-from chat95@mac.com) Received: from localhost (localhost [IPv6:::1]) by satie.private.org (8.13.1/8.13.1) with ESMTP id j0E1Ncsh045288; Fri, 14 Jan 2005 10:23:50 +0900 (JST) (envelope-from chat95@mac.com) Date: Fri, 14 Jan 2005 10:23:38 +0900 (JST) Message-Id: <20050114.102338.846980233.chat95@mac.com> To: fernan@iib.unsam.edu.ar From: NAKATA Maho In-Reply-To: <20050113172401.GH23549@iib.unsam.edu.ar> References: <20050112171457.GA63187@iib.unsam.edu.ar> <20050113.175653.424245961.chat95@mac.com> <20050113172401.GH23549@iib.unsam.edu.ar> Organization: private X-Mailer: Mew version 3.3 on XEmacs 21.4.16 (Corporate Culture) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.ORG cc: openoffice@FreeBSD.ORG Subject: Re: is openoffice broken in FreeBSD 4.x? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 01:24:02 -0000 In Message-ID: <20050113172401.GH23549@iib.unsam.edu.ar> Fernan Aguero wrote: > So, if it was fixed after 4.10-RELEASE and I don't see it in > my /usr/src/UPDATING (I'm tracking RELENG_4_10) perhaps it's > already available in STABLE (RELENG_4)? Or in 4.11-RELEASE? Yes. it was not here. please see the commit log by kan. http://docs.freebsd.org/cgi/getmsg.cgi?fetch=1751749+0+archive/2004/cvs-all/20040229.cvs-all Even I havn't notice this recently. I tried to remove _end patch after finishing our ooo-2.0-devel port, last year, I noticed OOo runs without _end patch. So I googled around and found his commit. > But this patch is already applied to 4.11 sources, isn't it? yes. > And what problems it is causing? If I cvsup and update my > sources to RELENG_4 or RELENG_4_11, should I need to reinstall > all ports (portupgrade -fa) apart from the whole world > (FreeBSD base)? I don't know. Only port that might affect by this is OOo. However rtld.c is very fundamental part, I cannot imagine what will happen to you... IMHO, it is safe. you don't have to recompile everything. just only recompiling OOo might be enough. But I'm not 100% convinced. Safest way to do is just upgrade your FreeBSD to newest version, or 4-stable user, cvsup your src tree to up-to-date one and rebuild world. thanks a lot, -- NAKATA, Maho From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 01:44:08 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E64C916A4CF for ; Fri, 14 Jan 2005 01:44:08 +0000 (GMT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64B1043D66 for ; Fri, 14 Jan 2005 01:44:08 +0000 (GMT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) j0E1i7H5087878 for ; Thu, 13 Jan 2005 20:44:07 -0500 (EST) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id j0E1i7wF002786 for ports@FreeBSD.org; Thu, 13 Jan 2005 20:44:07 -0500 (EST) (envelope-from kris) Date: Thu, 13 Jan 2005 20:44:07 -0500 (EST) From: Kris Kennaway Message-Id: <200501140144.j0E1i7wF002786@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX now builds successfully on 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 01:44:09 -0000 From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 02:14:17 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43E3716A4CE for ; Fri, 14 Jan 2005 02:14:16 +0000 (GMT) Received: from lakermmtao09.cox.net (lakermmtao09.cox.net [68.230.240.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77AD643D5A for ; Fri, 14 Jan 2005 02:14:15 +0000 (GMT) (envelope-from ski@indymedia.org) Received: from wuhjuhbuh.afraid.org ([68.106.120.181]) by lakermmtao09.cox.net (InterMail vM.6.01.04.00 201-2131-117-20041022) with ESMTP <20050114021413.IDW1713.lakermmtao09.cox.net@wuhjuhbuh.afraid.org> for ; Thu, 13 Jan 2005 21:14:13 -0500 Received: from 10.0.0.26 (SquirrelMail authenticated user ski); by wuhjuhbuh.afraid.org with HTTP; Thu, 13 Jan 2005 21:14:14 -0500 (EST) Message-ID: <3057.10.0.0.26.1105668854.squirrel@10.0.0.26> Date: Thu, 13 Jan 2005 21:14:14 -0500 (EST) From: "Brian Szymanski" To: freebsd-ports@freebsd.org User-Agent: SquirrelMail/1.4.3a X-Mailer: SquirrelMail/1.4.3a MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit Subject: mysql41-server/mysql40-server not starting? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 02:14:17 -0000 Hi. I'm having trouble installing mysql4?-server on my 5.3 box. I've tried both 4.0 and 4.1, same results. The port compiles and installs fine, but then I cannot start mysql: # /usr/local/etc/rc.d/mysql-server.sh start # ps auxww | grep sql root 39450 0.0 0.2 1556 812 p2 S+ 9:16PM 0:00.00 grep sql Where'd it go? Let's try invoking mysqld_safe by hand: # mysqld_safe Starting mysqld daemon with databases from /var/db/mysql STOPPING server from pid file /var/db/mysql/ozelmo.wuhjuhbuh.afraid.org.pid 050113 21:16:51 mysqld ended Not sure where to look for logs indicating the problem and the mysql.com doc pages have nothing relevant. Man page doesn't have anything about a invoking the daemon in the foreground or with different verbosity options. Erm. Anyone seen this before? Help? Thanks, Brian Szymanski ski@indymedia.org From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 02:20:45 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A68D16A4CE for ; Fri, 14 Jan 2005 02:20:45 +0000 (GMT) Received: from wproxy.gmail.com (wproxy.gmail.com [64.233.184.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id B751443D45 for ; Fri, 14 Jan 2005 02:20:43 +0000 (GMT) (envelope-from ggonter@gmail.com) Received: by wproxy.gmail.com with SMTP id 68so443906wri for ; Thu, 13 Jan 2005 18:20:43 -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:references; b=c5QOKln6uZLAtPLqohsG+K9/iuKN/AGznS8OlygW6+YCo9FLFvcRkzk+P/Bq/xLeAilT4SpIco0BK0XQkEjT71hK0Y1gr0uRG7PafT68VeScRBpWEhUEwQlNGt5ein09DXQ6DwO9hU/iIwDO/wqnx1vEpESY4Mmk2J+H1ai58Z4= Received: by 10.54.50.50 with SMTP id x50mr179739wrx; Thu, 13 Jan 2005 18:20:42 -0800 (PST) Received: by 10.54.7.13 with HTTP; Thu, 13 Jan 2005 18:20:42 -0800 (PST) Message-ID: <5cfbc47305011318205611a3b5@mail.gmail.com> Date: Fri, 14 Jan 2005 03:20:42 +0100 From: Gerhard Gonter To: ports@freebsd.org In-Reply-To: <20050112105638.GA28355@uci.agh.edu.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: <20050112105638.GA28355@uci.agh.edu.pl> cc: Krzysztof Kowalik Subject: Re: irc/irc X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Gerhard Gonter List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 02:20:45 -0000 Unless someone else does, I could look into upgrading that port since I have to upgrade one box to version 2.11 anyway. GG From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 02:44:29 2005 Return-Path: Delivered-To: freebsd-ports@www.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D8D016A4CE for ; Fri, 14 Jan 2005 02:44:29 +0000 (GMT) Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by mx1.FreeBSD.org (Postfix) with ESMTP id E431943D5D for ; Fri, 14 Jan 2005 02:44:28 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id D6A7255465 for ; Fri, 14 Jan 2005 02:44:28 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D535016A4CE for ; Fri, 14 Jan 2005 02:44:28 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9590643D5D for ; Fri, 14 Jan 2005 02:44:28 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id D38C151397; Thu, 13 Jan 2005 18:44:27 -0800 (PST) Date: Thu, 13 Jan 2005 18:44:27 -0800 From: Kris Kennaway To: Edwin Groothuis Message-ID: <20050114024427.GA66684@xor.obsecurity.org> References: <41E71C74.8040007@corp.grupos.com.br> <20050114011815.GC1175@k7.mavetju> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LQksG6bCIzRHxTLp" Content-Disposition: inline In-Reply-To: <20050114011815.GC1175@k7.mavetju> User-Agent: Mutt/1.4.2.1i cc: Marcus Grando cc: freebsd-ports@lists.freebsd.org Subject: Re: About pkg-plist and PLIST_FILES X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 02:44:29 -0000 --LQksG6bCIzRHxTLp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 14, 2005 at 12:18:16PM +1100, Edwin Groothuis wrote: > On Thu, Jan 13, 2005 at 11:12:20PM -0200, Marcus Grando wrote: > > If port install few files, create pkg-plist is best? or use PLIST_FILES= =20 > > in Makefile? Which is the recommended? >=20 > If it's just a simple one two three files, feel free to use PLIST_FILES > and PLIST_DIRS. >=20 > For anything more complicated I myself use pkg-plist. Make sure you don't forget about directories created by your port, this is a very common and irritating mistake. Kris --LQksG6bCIzRHxTLp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB5zILWry0BWjoQKURArqqAJ9Wnq0eyThqOGqyb9DIpuD7fDE/twCgwp3T s8r82BHT2NCeNdO1SZtqqic= =CnL7 -----END PGP SIGNATURE----- --LQksG6bCIzRHxTLp-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 03:22:07 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C32016A4CE for ; Fri, 14 Jan 2005 03:22:07 +0000 (GMT) Received: from web51609.mail.yahoo.com (web51609.mail.yahoo.com [206.190.38.214]) by mx1.FreeBSD.org (Postfix) with SMTP id 06BC343D1D for ; Fri, 14 Jan 2005 03:22:07 +0000 (GMT) (envelope-from giffunip@yahoo.com) Received: (qmail 68446 invoked by uid 60001); 14 Jan 2005 03:22:06 -0000 Comment: DomainKeys? See http://antispam.yahoo.com/domainkeys DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=s1024; d=yahoo.com; b=pVr6ZkxVtiP/9FUpHdOmV0Yk2S0+cf5FaFerWOCzlYhMw56qN5+yneKcwKf8ZAQlssYVxYdDV4m8+kiHJVyIR/LduG9PKXP01nuRBWhrtADfxMxbpfuLhV43be9lhWmI2b8b/E/qtqUpQLsOD1ec1UyOIPjKgZh4hzAmxs17WCs= ; Message-ID: <20050114032206.68444.qmail@web51609.mail.yahoo.com> Received: from [200.119.73.90] by web51609.mail.yahoo.com via HTTP; Thu, 13 Jan 2005 19:22:05 PST Date: Thu, 13 Jan 2005 19:22:05 -0800 (PST) From: "Pedro F. Giffuni" To: freebsd-ports@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Anyone using graphics/rayshade? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 03:22:07 -0000 Hi; Has anyone used rayshade? I was trying to update it following the instructions for urt-3.1b and to use OpenGL, but it generates coredumps with or without my patches. I would like to know if this was already broken or if I broke it with some recent urt changes I made. cheers, Pedro. __________________________________ Do you Yahoo!? Take Yahoo! Mail with you! Get it on your mobile phone. http://mobile.yahoo.com/maildemo From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 03:27:20 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 816B316A4CE; Fri, 14 Jan 2005 03:27:20 +0000 (GMT) Received: from mail-in-03.arcor-online.net (mail-in-03.arcor-online.net [151.189.21.43]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04B8743D31; Fri, 14 Jan 2005 03:27:20 +0000 (GMT) (envelope-from happy@xboxnews.de) Received: from muggi (dsl-084-056-099-176.arcor-ip.net [84.56.99.176]) by mail-in-03.arcor-online.net (Postfix) with ESMTP id 5AFDB14F441; Fri, 14 Jan 2005 04:27:18 +0100 (CET) From: Martin K-F To: lioux@FreeBSD.org Content-Type: text/plain Date: Fri, 14 Jan 2005 04:25:26 +0100 Message-Id: <1105673126.74931.3.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.0.3 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: mplayerxp-0.1.9_2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 03:27:20 -0000 I have Freebsd 5.3 p4 on Intel p4 2.2 pkg_add -r mplayerxp don't working and make too (with and without options) The last line from make : Fehler= Error nuppelvideo.c: In function `decode_nuv': nuppelvideo.c:45: warning: passing arg 1 of `RTjpeg_init_decompress' from incompatible pointer type cc -c -O -pipe -o RTjpegN.o RTjpegN.c RTjpegN.c: In function `RTjpeg_b2s': RTjpegN.c:163: warning: use of cast expressions as lvalues is deprecated RTjpegN.c:172: warning: use of cast expressions as lvalues is deprecated RTjpegN.c:201: warning: use of cast expressions as lvalues is deprecated RTjpegN.c:213: warning: use of cast expressions as lvalues is deprecated RTjpegN.c:230: warning: use of cast expressions as lvalues is deprecated RTjpegN.c:251: warning: use of cast expressions as lvalues is deprecated RTjpegN.c:261: warning: use of cast expressions as lvalues is deprecated RTjpegN.c:268: warning: use of cast expressions as lvalues is deprecated cc -c -O -pipe -o minilzo.o minilzo.c ld --shared -soname libnuppelvideo.so -o libnuppelvideo.so nuppelvideo.o RTjpegN.o minilzo.o -lc gmake[2]: Entering directory `/usr/ports/multimedia/mplayerxp/work/mplayerxp-0.1.9/codecs/mp3lib' cc -c -O -pipe -o sr1.o sr1.c cc -c -O -pipe -o decode_i586.o decode_i586.c decode_i586.c: In function `synth_1to1_pent': decode_i586.c:308: error: bp cannot be used in asm here gmake[2]: *** [decode_i586.o] Fehler 1 gmake[2]: Leaving directory `/usr/ports/multimedia/mplayerxp/work/mplayerxp-0.1.9/codecs/mp3lib' gmake[1]: *** [all] Fehler 2 gmake[1]: Leaving directory `/usr/ports/multimedia/mplayerxp/work/mplayerxp-0.1.9/codecs' gmake: *** [all] Fehler 2 *** Error code 2 Stop in /usr/ports/multimedia/mplayerxp. root@muggi:/usr/ports/multimedia/mplayerxp# -- Martin K-F From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 03:31:01 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D091516A4CE for ; Fri, 14 Jan 2005 03:31:01 +0000 (GMT) Received: from mail.animecowboy.com (rrcs-67-78-77-230.sw.biz.rr.com [67.78.77.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F76843D4C for ; Fri, 14 Jan 2005 03:31:01 +0000 (GMT) (envelope-from animecowboy@animecowboy.com) Received: from localhost ([]) by mail.animecowboy.com (Merak 7.1.6) with ESMTP id ABA37675; Thu, 13 Jan 2005 21:31:02 -0600 Received: from toran.animecowboy.com (toran.animecowboy.com [10.0.0.15]) by www.animecowboy.com (IMP) with HTTP for ; Thu, 13 Jan 2005 21:30:59 -0600 Message-ID: <1105673459.41e73cf367832@www.animecowboy.com> Date: Thu, 13 Jan 2005 21:30:59 -0600 From: Brian Bailey To: Brian Szymanski References: <3057.10.0.0.26.1105668854.squirrel@10.0.0.26> In-Reply-To: <3057.10.0.0.26.1105668854.squirrel@10.0.0.26> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.2 X-Originating-IP: 10.0.0.15 cc: freebsd-ports Subject: Re: mysql41-server/mysql40-server not starting? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 03:31:01 -0000 Quoting Brian Szymanski : > Hi. > > I'm having trouble installing mysql4?-server on my 5.3 box. > > I've tried both 4.0 and 4.1, same results. Your error file should be /var/db/mysql/ozelmo.wuhjuhbuh.afraid.org.err Probable cause is bad permissions on the database. If you are still having problems, try running mysql(not mysql_safe) -T. I've had problems similar to this, although mine was from trying to start defective using defective databases. If I remember right running mysql was how I found the problem. > > The port compiles and installs fine, but then I cannot start mysql: > # /usr/local/etc/rc.d/mysql-server.sh start > # ps auxww | grep sql > root 39450 0.0 0.2 1556 812 p2 S+ 9:16PM 0:00.00 grep > sql > > Where'd it go? Let's try invoking mysqld_safe by hand: > # mysqld_safe > Starting mysqld daemon with databases from /var/db/mysql > STOPPING server from pid file /var/db/mysql/ozelmo.wuhjuhbuh.afraid.org.pid > 050113 21:16:51 mysqld ended > > Not sure where to look for logs indicating the problem and the mysql.com > doc pages have nothing relevant. Man page doesn't have anything about a > invoking the daemon in the foreground or with different verbosity options. > > Erm. Anyone seen this before? Help? > > Thanks, > Brian Szymanski > ski@indymedia.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 Jan 14 03:33:24 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C094416A4CE for ; Fri, 14 Jan 2005 03:33:24 +0000 (GMT) Received: from ritamari.vonostingroup.com (ip193-230.digitalrealm.net [216.144.193.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57D6243D45 for ; Fri, 14 Jan 2005 03:33:24 +0000 (GMT) (envelope-from laszlof@vonostingroup.com) Received: from pcp01939994pcs.waldlk01.mi.comcast.net ([68.32.91.161]) by ritamari.vonostingroup.com with esmtpa (Exim 4.43 (FreeBSD)) id 1CpICt-000GpI-T4; Thu, 13 Jan 2005 22:33:04 -0500 Message-ID: <41E73D8A.1090401@vonostingroup.com> Date: Thu, 13 Jan 2005 22:33:30 -0500 From: "Frank J. Laszlo" User-Agent: Mozilla Thunderbird 0.9 (Windows/20041103) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Brian Bailey References: <3057.10.0.0.26.1105668854.squirrel@10.0.0.26> <1105673459.41e73cf367832@www.animecowboy.com> In-Reply-To: <1105673459.41e73cf367832@www.animecowboy.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - ritamari.vonostingroup.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [26 6] X-AntiAbuse: Sender Address Domain - vonostingroup.com X-Source: X-Source-Args: X-Source-Dir: cc: freebsd-ports cc: Brian Szymanski Subject: Re: mysql41-server/mysql40-server not starting? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 03:33:24 -0000 Did you add the rcvar to your rc.conf? -Frank Brian Bailey wrote: >Quoting Brian Szymanski : > > > >>Hi. >> >>I'm having trouble installing mysql4?-server on my 5.3 box. >> >>I've tried both 4.0 and 4.1, same results. >> >> >Your error file should be /var/db/mysql/ozelmo.wuhjuhbuh.afraid.org.err >Probable cause is bad permissions on the database. >If you are still having problems, try running mysql(not mysql_safe) -T. > >I've had problems similar to this, although mine was from trying to start >defective using defective databases. If I remember right running mysql was how >I found the problem. > > > >>The port compiles and installs fine, but then I cannot start mysql: >># /usr/local/etc/rc.d/mysql-server.sh start >># ps auxww | grep sql >>root 39450 0.0 0.2 1556 812 p2 S+ 9:16PM 0:00.00 grep >>sql >> >>Where'd it go? Let's try invoking mysqld_safe by hand: >># mysqld_safe >>Starting mysqld daemon with databases from /var/db/mysql >>STOPPING server from pid file /var/db/mysql/ozelmo.wuhjuhbuh.afraid.org.pid >>050113 21:16:51 mysqld ended >> >>Not sure where to look for logs indicating the problem and the mysql.com >>doc pages have nothing relevant. Man page doesn't have anything about a >>invoking the daemon in the foreground or with different verbosity options. >> >>Erm. Anyone seen this before? Help? >> >>Thanks, >>Brian Szymanski >>ski@indymedia.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" >> >> >> > > > > >_______________________________________________ >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 Jan 14 06:07:12 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A82216A4CE for ; Fri, 14 Jan 2005 06:07:12 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5FE243D45 for ; Fri, 14 Jan 2005 06:07:11 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 3DC8E51300; Thu, 13 Jan 2005 22:07:11 -0800 (PST) Date: Thu, 13 Jan 2005 22:07:11 -0800 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20050114060711.GC19000@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bAmEntskrkuBymla" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: [ports-i386@FreeBSD.org: exim-doc-info-4.40 failed on i386 6] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 06:07:12 -0000 --bAmEntskrkuBymla Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable FYI; can you please investigate and/or report to the developers? If you are already aware of this problem but do not yet have a fix, please mark the port BROKEN in the appropriate case, so that users do not unexpectedly encounter it. Thanks, Kris ----- Forwarded message from User Ports-i386 ----- X-Original-To: kkenn@localhost Delivered-To: kkenn@localhost.obsecurity.org Delivered-To: kris@freebsd.org Date: Fri, 14 Jan 2005 06:02:27 GMT From: User Ports-i386 To: krion@FreeBSD.org, kris@FreeBSD.org Subject: exim-doc-info-4.40 failed on i386 6 X-UIDL: H\l!!Jk0"!R:c!!T[##! X-Bogosity: No, tests=3Dbogofilter, spamicity=3D0.000000, version=3D0.92.8 building exim-doc-info-4.40 on gohan13.freebsd.org in directory /x/tmp/6/chroot/4920 maintained by: ports@FreeBSD.org port directory: /usr/ports/mail/exim-doc-info build started at Fri Jan 14 06:01:34 UTC 2005 FETCH_DEPENDS=3D PATCH_DEPENDS=3D EXTRACT_DEPENDS=3D BUILD_DEPENDS=3D RUN_DEPENDS=3D add_pkg =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Vulnerability check disabled =3D> exim-texinfo-4.40.tar.bz2 doesn't seem to exist in /tmp/distfiles/exim. =3D> Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/port= s/distfiles/exim/. exim-texinfo-4.40.tar.bz2 304 kB 3198 kBps =3D> Checksum OK for exim/exim-texinfo-4.40.tar.bz2. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg =3D=3D=3D> Vulnerability check disabled =3D=3D=3D> Extracting for exim-doc-info-4.40 =3D> Checksum OK for exim/exim-texinfo-4.40.tar.bz2. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg =3D=3D=3D> Patching for exim-doc-info-4.40 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg =3D=3D=3D> Configuring for exim-doc-info-4.40 =3D=3D=3D> Building for exim-doc-info-4.40 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg =3D=3D=3D> Installing for exim-doc-info-4.40 =3D=3D=3D> Generating temporary packing list =3D=3D=3D> Checking if mail/exim-doc-info already installed =3D=3D=3D> Registering installation for exim-doc-info-4.40 =3D=3D=3D> Building package for exim-doc-info-4.40 Creating package /tmp/packages/All/exim-doc-info-4.40.tbz Registering depends:. Creating bzip'd tar ball in '/tmp/packages/All/exim-doc-info-4.40.tbz' Deleting exim-doc-info-4.40=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D Checking filesystem state list of extra files and directories in / (not present before this port was = installed but present after it was deinstalled) 947455 8 drwxr-xr-x 2 root wheel 512 = Jan 14 06:01 usr/local/share/doc/exim ----- End forwarded message ----- --bAmEntskrkuBymla Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB52GOWry0BWjoQKURAr8jAKDj6UGBsT8Tag4p4bJMJLm7D2Gb+QCaA1D0 58fbfGrGGCHn0q59AQGGjHg= =bxRn -----END PGP SIGNATURE----- --bAmEntskrkuBymla-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 06:19:02 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9399816A4CE for ; Fri, 14 Jan 2005 06:19:02 +0000 (GMT) Received: from mail2out.barnet.com.au (mail2out.barnet.com.au [202.83.176.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCEF643D1D for ; Fri, 14 Jan 2005 06:19:01 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mail2out.barnet.com.au (Postfix, from userid 27) id 3BDD3707446; Fri, 14 Jan 2005 17:19:00 +1100 (EST) X-Viruscan-Id: <41E764540000848EE5C332@BarNet> Received: from mail2-auth.barnet.com.au (mail2.barnet.com.au [202.83.176.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id E909F707445; Fri, 14 Jan 2005 17:18:59 +1100 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id 6D1BF707444; Fri, 14 Jan 2005 17:18:59 +1100 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 3679B6109; Fri, 14 Jan 2005 17:18:58 +1100 (EST) Date: Fri, 14 Jan 2005 17:18:58 +1100 From: Edwin Groothuis To: Kris Kennaway Message-ID: <20050114061858.GD1175@k7.mavetju> References: <20050114060711.GC19000@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050114060711.GC19000@xor.obsecurity.org> User-Agent: Mutt/1.5.6i cc: ports@FreeBSD.org Subject: Re: [ports-i386@FreeBSD.org: exim-doc-info-4.40 failed on i386 6] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 06:19:02 -0000 On Thu, Jan 13, 2005 at 10:07:11PM -0800, Kris Kennaway wrote: > FYI; can you please investigate and/or report to the developers? If > you are already aware of this problem but do not yet have a fix, > please mark the port BROKEN in the appropriate case, so that users do > not unexpectedly encounter it. Fixed -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 07:02:02 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7D9516A4CF for ; Fri, 14 Jan 2005 07:02:02 +0000 (GMT) Received: from mail.gmx.net (imap.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 9C32443D1F for ; Fri, 14 Jan 2005 07:02:01 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: (qmail invoked by alias); 14 Jan 2005 07:01:59 -0000 Received: from pD95D86FA.dip.t-dialin.net (EHLO lofi.dyndns.org) (217.93.134.250) by mail.gmx.net (mp025) with SMTP; 14 Jan 2005 08:01:59 +0100 X-Authenticated: #443188 Received: from [192.168.8.4] (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id j0E71p0Z046211 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 14 Jan 2005 08:01:53 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) Message-ID: <41E76E5E.1050804@gmx.net> Date: Fri, 14 Jan 2005 08:01:50 +0100 From: Michael Nottebrock User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax) X-Accept-Language: en-us, en, de-de MIME-Version: 1.0 To: Francois Tigeot References: <41CAAA60.2080001@freebsd.org> <20041226171434.GA2658@aoi.wolfpond.org> <41E532C6.20703@freebsd.org> <20050112203810.GA1892@aoi.wolfpond.org> In-Reply-To: <20050112203810.GA1892@aoi.wolfpond.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new X-Y-GMX-Trusted: 0 cc: freebsd-ports@freebsd.org cc: Mark Ovens Subject: Re: Digikam broken? Mutex lock failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 07:02:02 -0000 Francois Tigeot wrote: > I rebuilt digikam today, still no change. The gui appears to run fine for > a moment and crash when I select the camera. Look at (or save) the build output of digikam. If you have anything saying "--as-needed" in there, you didn't cvsup or didn't cvsup the needed parts of the ports-tree (the change is in Mk/bsd.kde.mk). -- ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 08:31:33 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5641F16A4D3 for ; Fri, 14 Jan 2005 08:31:33 +0000 (GMT) Received: from galaxy.uci.agh.edu.pl (galaxy.uci.agh.edu.pl [149.156.96.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72E5843D2F for ; Fri, 14 Jan 2005 08:31:32 +0000 (GMT) (envelope-from kkowalik@uci.agh.edu.pl) Received: by galaxy.uci.agh.edu.pl (Postfix, from userid 1001) id 1DD5AAF417; Fri, 14 Jan 2005 09:31:31 +0100 (CET) Date: Fri, 14 Jan 2005 09:31:31 +0100 From: Krzysztof Kowalik To: ports@freebsd.org Message-ID: <20050114083130.GB16338@uci.agh.edu.pl> References: <20050112105638.GA28355@uci.agh.edu.pl> <5cfbc47305011318205611a3b5@mail.gmail.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <5cfbc47305011318205611a3b5@mail.gmail.com> Subject: Re: irc/irc X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 08:31:33 -0000 Gerhard Gonter [ggonter@gmail.com] wrote: > Unless someone else does, I could look into upgrading that port since > I have to upgrade one box to version 2.11 anyway. Perhaps it would be good to have two ports, one for 2.10 serie and one for the new 2.11. It's not like all people will love 2.11 regardless of what they use it for. -- Krzysztof Kowalik | () ASCII Ribbon Campaign Computer Center, AGH UST | /\ Support plain text e-mail From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 10:00:35 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0447516A4CE for ; Fri, 14 Jan 2005 10:00:35 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C203A43D58 for ; Fri, 14 Jan 2005 10:00:34 +0000 (GMT) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (fenner@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.1/8.13.1) with ESMTP id j0EA0YBn057466 for ; Fri, 14 Jan 2005 10:00:34 GMT (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.13.1/8.13.1/Submit) id j0EA0Yfv057449 for ports@freebsd.org; Fri, 14 Jan 2005 10:00:34 GMT (envelope-from fenner) Date: Fri, 14 Jan 2005 10:00:34 GMT From: Bill Fenner Message-Id: <200501141000.j0EA0Yfv057449@freefall.freebsd.org> To: ports@freebsd.org Subject: Possibly unbuildable ports reminder X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 10:00:35 -0000 Dear porters, This is just a reminder to please periodically check the list of unbuildable ports at http://pointyhat.freebsd.org/errorlogs/ . A list by MAINTAINER is http://people.freebsd.org/~fenner/errorlogs/ so you can easily check the status of ports that you maintain. In addition, the list of ports with no MAINTAINER with build problems is http://people.freebsd.org/~fenner/errorlogs/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. Thanks for your help! Bill "annoying port email" Fenner From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 11:01:33 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A96316A4CE for ; Fri, 14 Jan 2005 11:01:33 +0000 (GMT) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id E806243D1F for ; Fri, 14 Jan 2005 11:01:31 +0000 (GMT) (envelope-from apircalabu@bitdefender.com) Received: (qmail 29520 invoked from network); 14 Jan 2005 11:01:30 -0000 Received: from apircalabu.dsd.ro (10.10.15.22) by mail.dsd.ro with AES256-SHA encrypted SMTP; 14 Jan 2005 11:01:28 -0000 Date: Fri, 14 Jan 2005 13:04:04 +0200 From: Adi Pircalabu To: freebsd-ports@freebsd.org Message-ID: <20050114130404.250d6e26@apircalabu.dsd.ro> In-Reply-To: <20050113180504.GA26064@xor.obsecurity.org> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> Organization: BitDefender X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BitDefender-SpamStamp: 1.1.2 036000040111AAAAAAE X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.1 on mail.bitdefender.com X-BitDefender-Spam: No (0) Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 11:01:33 -0000 On Thu, 13 Jan 2005 10:05:04 -0800 Kris Kennaway wrote: > I'm going to be careful about not allowing the "questionable" packages > to fall foul of the pkg-plist checking, until we decide one way or the > other whether they should be considered "broken". This is a tricky situation from my point of view. I'm following this thread with a lot of interest since I'll be managing a port which CAN NOT honor pkg-plist strict checking. Here are few details: - The configuration files are created and heavily modified at install time from .dist files, will be modified as needed and should not be deleted at uninstall - the configuration should be kept for a later upgrade. This will definitely break "make install deinstall" on the packages cluster, but the files are required since they must contain information about various modules and plugins of the port, and this information must be written through a daemon started at post-install. - The port uses several other files (plugins, modules) which will be updated from time to time. Also, new modules / plugins whose names could not be initially listed in pkg-plist may be added, as well as existing ones may be updated or even deleted. I do not know at this time what is the right way to handle the pkg-plist checking, but this topic definitely gives me a lot of headache :) Another relevant message you posted last month on freebsd-ports@: http://lists.freebsd.org/mailman/htdig/freebsd-ports/2004-December/018607.html "It's an important requirement that doing 'make install deinstall' (alternatively pkg_add; pkg_delete) leaves the system in the same state it was before the 'install', and not leave behind random cruft in ${PREFIX}." >From the above mentioned point of view, the port I'll be maintaining has very few chances to get rid of IGNORE/BROKEN stamps. And, as you can easily imagine, this is not what I want :) Thank you -- Adrian Pircalabu Public KeyID = 0xF902393A -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 11:29:45 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 035D216A4CE for ; Fri, 14 Jan 2005 11:29:45 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6A5943D58 for ; Fri, 14 Jan 2005 11:29:44 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.43 (FreeBSD)) id 1CpPdm-000MB2-OZ; Fri, 14 Jan 2005 12:29:18 +0100 Date: Fri, 14 Jan 2005 12:29:18 +0100 From: Kirill Ponomarew To: Adi Pircalabu Message-ID: <20050114112918.GF69532@voodoo.oberon.net> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="W18qbkTAGYos9/y6" Content-Disposition: inline In-Reply-To: <20050114130404.250d6e26@apircalabu.dsd.ro> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 11:29:45 -0000 --W18qbkTAGYos9/y6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Jan 14, 2005 at 01:04:04PM +0200, Adi Pircalabu wrote: > > I'm going to be careful about not allowing the "questionable" packages > > to fall foul of the pkg-plist checking, until we decide one way or the > > other whether they should be considered "broken". > > This is a tricky situation from my point of view. I'm following this > thread with a lot of interest since I'll be managing a port which CAN > NOT honor pkg-plist strict checking. Here are few details: > > - The configuration files are created and heavily modified at install > time from .dist files, will be modified as needed and should not be > deleted at uninstall - the configuration should be kept for a later > upgrade. This will definitely break "make install deinstall" on the > packages cluster, but the files are required since they must contain > information about various modules and plugins of the port, and this > information must be written through a daemon started at post-install. You can try cmp(1) in pkg-plist to compare configurations files. Take a look at ports collection, there are enough examples. > - The port uses several other files (plugins, modules) which will be > updated from time to time. Also, new modules / plugins whose names could > not be initially listed in pkg-plist may be added, as well as existing > ones may be updated or even deleted. It's better to use ~/.your_port directory in such cases. -Kirill --W18qbkTAGYos9/y6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB560OQC1G6a60JuURAj+yAJ4yHfJ+ekS3Fvy2sVFCX8MWeslkJACeJjyW cWQ6AnxIxqWaFu0tQzcvGhs= =HegM -----END PGP SIGNATURE----- --W18qbkTAGYos9/y6-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 11:31:59 2005 Return-Path: Delivered-To: freebsd-ports@www.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25D8816A4CE for ; Fri, 14 Jan 2005 11:31:59 +0000 (GMT) Received: from mx2.freebsd.org (mx2.freebsd.org [216.136.204.119]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D1DE43D2D for ; Fri, 14 Jan 2005 11:31:59 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18]) by mx2.freebsd.org (Postfix) with ESMTP id F32CD55554 for ; Fri, 14 Jan 2005 11:31:58 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE36316A4CE for ; Fri, 14 Jan 2005 11:31:58 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE01043D2F for ; Fri, 14 Jan 2005 11:31:58 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.43 (FreeBSD)) id 1CpPfy-000MCO-7K; Fri, 14 Jan 2005 12:31:34 +0100 Date: Fri, 14 Jan 2005 12:31:34 +0100 From: Kirill Ponomarew To: Marcus Grando Message-ID: <20050114113134.GG69532@voodoo.oberon.net> References: <41E71C74.8040007@corp.grupos.com.br> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bSr84fpmRhc6ULjY" Content-Disposition: inline In-Reply-To: <41E71C74.8040007@corp.grupos.com.br> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: freebsd-ports@lists.freebsd.org Subject: Re: About pkg-plist and PLIST_FILES X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 11:31:59 -0000 --bSr84fpmRhc6ULjY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Jan 13, 2005 at 11:12:20PM -0200, Marcus Grando wrote: > Hi list, > > If port install few files, create pkg-plist is best? or use PLIST_FILES > in Makefile? Which is the recommended? > > For example, if port install one file, i think that use PLIST_FILES is > the best way, for save space. That's correct? Yes, plus PLIST_DIRS if it's necessary. -Kirill --bSr84fpmRhc6ULjY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB562WQC1G6a60JuURAs80AJ9oHRaizEwO9tjt0bNa6oq0cVYyVQCfVQuS 5RG+ueIfd0a0k2VEOw7cgf8= =MN2v -----END PGP SIGNATURE----- --bSr84fpmRhc6ULjY-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 11:35:37 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CA0C16A4CE; Fri, 14 Jan 2005 11:35:37 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BCA243D3F; Fri, 14 Jan 2005 11:35:37 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.43 (FreeBSD)) id 1CpPjW-000MDN-NU; Fri, 14 Jan 2005 12:35:14 +0100 Date: Fri, 14 Jan 2005 12:35:14 +0100 From: Kirill Ponomarew To: Dan Langille Message-ID: <20050114113514.GH69532@voodoo.oberon.net> References: <41E693D5.28457.92D804F2@localhost> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LkL3iLkxWcC48rNm" Content-Disposition: inline In-Reply-To: <41E693D5.28457.92D804F2@localhost> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: fjoe@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: database/pgadmin3 cores X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 11:35:37 -0000 --LkL3iLkxWcC48rNm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, Jan 13, 2005 at 03:29:25PM -0500, Dan Langille wrote: > On FreeBSD 5.3-stable, I'm getting a core dump: > > # pgadmin3 > Segmentation fault (core dumped) > > This is pgadmin3-1.2.0 under xorg-6.8.1 > > Any ideas? Compiling it with debug symbols and gdb(1) output would help maintainer more to analyze this problem. -Kirill --LkL3iLkxWcC48rNm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB565yQC1G6a60JuURAnqUAKCiL39c/N2O5r7dl56bpFNMz61NiwCgj6Qp cvhKi8O+CkisU9jA6lTAFI0= =TzC6 -----END PGP SIGNATURE----- --LkL3iLkxWcC48rNm-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 11:39:23 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EEF816A4CE; Fri, 14 Jan 2005 11:39:23 +0000 (GMT) Received: from www.portaone.com (web.portaone.com [195.70.151.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A64C43D1F; Fri, 14 Jan 2005 11:39:20 +0000 (GMT) (envelope-from sobomax@portaone.com) Received: from [192.168.0.128] (sobohome.portaone.com [193.28.87.24]) (authenticated bits=0) by www.portaone.com (8.12.11/8.12.11) with ESMTP id j0EBdEwg074380 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 14 Jan 2005 12:39:17 +0100 (CET) (envelope-from sobomax@portaone.com) Message-ID: <41E7AF5A.3020603@portaone.com> Date: Fri, 14 Jan 2005 13:39:06 +0200 From: Maxim Sobolev Organization: Porta Software Ltd User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ale@freebsd.org, ports@freebsd.org Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.80/589/Wed Nov 17 13:38:41 2004 clamav-milter version 0.80j on www.portaone.com X-Virus-Status: Clean Subject: PHP ports/packages framework is seriously flawed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 11:39:23 -0000 Hi guys, Maybe I am missing something obvious, but as long as I can see, the whole PHP framework is currently severely flawed. Specifically I am talking about www/mod_php4 port/package. Current system doesn't allow any PHP extensions to be installed for it, at the same time when building mod_php4 it explicitly disables all possible extensions, so that resulting module is nearly useless since it lacks even essential functions and it's impossible to install them later on. Perhaps FreeBSD PHP maintainers should take a closer look on how this problem is addressed in major linux distros. Regards, Maxim From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 11:55:32 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA23D16A4F0 for ; Fri, 14 Jan 2005 11:55:31 +0000 (GMT) Received: from com-and.com (relay.andxor.it [195.223.2.3]) by mx1.FreeBSD.org (Postfix) with SMTP id BD50C43D2D for ; Fri, 14 Jan 2005 11:55:11 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: (qmail 34803 invoked from network); 14 Jan 2005 11:55:07 -0000 Received: from unknown (HELO ?192.168.2.5?) (192.168.2.5) by com-and.com with SMTP; 14 Jan 2005 11:55:07 -0000 Message-ID: <41E7B31A.2060701@FreeBSD.org> Date: Fri, 14 Jan 2005 12:55:06 +0100 From: Alex Dupre User-Agent: Mozilla Thunderbird 1.0 (X11/20041229) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Maxim Sobolev References: <41E7AF5A.3020603@portaone.com> In-Reply-To: <41E7AF5A.3020603@portaone.com> Content-Type: text/plain; charset=KOI8-U; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: PHP ports/packages framework is seriously flawed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 11:55:32 -0000 Maxim Sobolev wrote: > Perhaps FreeBSD PHP maintainers should take a closer look on how this > problem is addressed in major linux distros. Perhaps you should have read ports/UPDATING in the last 6 months. Look at 20040719 entry. -- Alex Dupre From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 12:06:43 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8900316A4CE for ; Fri, 14 Jan 2005 12:06:43 +0000 (GMT) Received: from buexe.b-5.de (buexe.b-5.de [80.148.32.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9857243D39 for ; Fri, 14 Jan 2005 12:06:41 +0000 (GMT) (envelope-from lupe@lupe-christoph.de) Received: from buexe.b-5.de (www-data@localhost [127.0.0.1]) j0EC6d0L020087 for ; Fri, 14 Jan 2005 13:06:39 +0100 Received: (from www-data@localhost) by buexe.b-5.de (8.12.3/8.12.3/b-5/buexe-msp1.2) id j0EC6cgv020085 for freebsd-ports@freebsd.org; Fri, 14 Jan 2005 13:06:38 +0100 Received: from h-213.61.77.22.host.de.colt.net (h-213.61.77.22.host.de.colt.net [213.61.77.22]) by buexe.b-5.de (IMP) with HTTP for ; Fri, 14 Jan 2005 13:06:38 +0100 Message-ID: <1105704398.41e7b5ce7dc5e@buexe.b-5.de> Date: Fri, 14 Jan 2005 13:06:38 +0100 From: Lupe Christoph To: freebsd-ports@freebsd.org References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> In-Reply-To: <20050114112918.GF69532@voodoo.oberon.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.2 Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 12:06:43 -0000 Quoting Kirill Ponomarew : > You can try cmp(1) in pkg-plist to compare configurations files. > Take a look at ports collection, there are enough examples. Not useful for munin-node because it creates system-dependent symlinks. I'm not aware of any other port doing this. And munin-main will create a lot of files if a cron run happens to coincide with the few moments the port is installed during the test. I have only the option to burden the user with doing all the parts of the installation that create state that cannot be easily undone or are detrimental to the test like the crontab entry. Things that are easily done automatically. Also I wonder if having a default of "No" for the rc.conf variable (i.e. 'don't run the daemon') is really necessary. Is this required? The whole point of installing munin-node is to run the daemon. > It's better to use ~/.your_port directory in such cases. For system-wide defaults? Put them in /root/.foo.conf rather than /usr/local/etc/foo.conf? Luep Christoph -- | lupe@lupe-christoph.de | http://www.lupe-christoph.de/ | | "... putting a mail server on the Internet without filtering is like | | covering yourself with barbecue sauce and breaking into the Charity | | Home for Badgers with Rabies. Michael Lucas | From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 12:41:20 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61C0F16A4CE for ; Fri, 14 Jan 2005 12:41:20 +0000 (GMT) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4913143D1F for ; Fri, 14 Jan 2005 12:41:19 +0000 (GMT) (envelope-from apircalabu@bitdefender.com) Received: (qmail 28790 invoked from network); 14 Jan 2005 12:41:17 -0000 Received: from apircalabu.dsd.ro (10.10.15.22) by mail.dsd.ro with AES256-SHA encrypted SMTP; 14 Jan 2005 12:41:17 -0000 Date: Fri, 14 Jan 2005 14:43:53 +0200 From: Adi Pircalabu To: freebsd-ports@freebsd.org Message-ID: <20050114144353.1aad2014@apircalabu.dsd.ro> In-Reply-To: <1105704398.41e7b5ce7dc5e@buexe.b-5.de> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> Organization: BitDefender X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BitDefender-SpamStamp: 1.1.2 036000040111AAAAAAE X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.1 on mail.bitdefender.com X-BitDefender-Spam: No (0) Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 12:41:20 -0000 On Fri, 14 Jan 2005 13:06:38 +0100 Lupe Christoph wrote: > > It's better to use ~/.your_port directory in such cases. > > For system-wide defaults? Put them in /root/.foo.conf rather than > /usr/local/etc/foo.conf? For these specific cases, I do not think he meant installing anything that should go system-wide in some user's home directory. Instead, I'm thinking about setting port's dirs/files into ${PREFIX}/portname/ following a standard UNIX structure as in: ${PREFIX}/portname/bin/ ${PREFIX}/portname/etc/ ${PREFIX}/portname/lib/ ${PREFIX}/portname/share/ ${PREFIX}/portname/var/ and so on (where PREFIX will likely be /usr/local). All dirs/files placed outside the above directory scheme will be completely deleted at deinstall. In my case, after port's deinstall, there will always be files left in ${PREFIX}/portname/. Is this a reason for tagging the port BROKEN/IGNORE? -- Adrian Pircalabu Public KeyID = 0xF902393A -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 12:56:13 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A939216A4CE for ; Fri, 14 Jan 2005 12:56:13 +0000 (GMT) Received: from www.portaone.com (support.portaone.com [195.70.151.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id C233C43D31 for ; Fri, 14 Jan 2005 12:56:12 +0000 (GMT) (envelope-from sobomax@portaone.com) Received: from [192.168.0.128] (sobohome.portaone.com [193.28.87.24]) (authenticated bits=0) by www.portaone.com (8.12.11/8.12.11) with ESMTP id j0ECEB6C078746 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 14 Jan 2005 13:14:15 +0100 (CET) (envelope-from sobomax@portaone.com) Message-ID: <41E7B78B.9020709@portaone.com> Date: Fri, 14 Jan 2005 14:14:03 +0200 From: Maxim Sobolev Organization: Porta Software Ltd User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Edwin Groothuis , ports@freebsd.org References: <41E7AF5A.3020603@portaone.com> <20050114120042.GE1175@k7.mavetju> In-Reply-To: <20050114120042.GE1175@k7.mavetju> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.80/589/Wed Nov 17 13:38:41 2004 clamav-milter version 0.80j on www.portaone.com X-Virus-Status: Clean Subject: Re: PHP ports/packages framework is seriously flawed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 12:56:13 -0000 Edwin Groothuis wrote: > On Fri, Jan 14, 2005 at 01:39:06PM +0200, Maxim Sobolev wrote: > >>Maybe I am missing something obvious, but as long as I can see, the > > > Forgotten to run cvsup for a long time? > > Your favourite ports will be: > - lang/php4 > - lang/php4-extensions Thanks, though I figured it out already. The question boilds down to the following: why there is www/mod_php4? As I said it is mostly useless and only misleads users like me. -Maxim From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 13:06:12 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91DA816A4CE for ; Fri, 14 Jan 2005 13:06:12 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8EAD43D2F for ; Fri, 14 Jan 2005 13:06:11 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 2A5B9519EC; Fri, 14 Jan 2005 05:06:11 -0800 (PST) Date: Fri, 14 Jan 2005 05:06:11 -0800 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20050114130611.GG27279@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="oOB74oR0WcNeq9Zb" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: [ports-i386@FreeBSD.org: gauche-gaunit-0.0.9 failed on i386 6] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 13:06:12 -0000 --oOB74oR0WcNeq9Zb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable FYI; can you please investigate and/or report to the developers? If you are already aware of this problem but do not yet have a fix, please mark the port BROKEN in the appropriate case, so that users do not unexpectedly encounter it. Thanks, Kris ----- Forwarded message from User Ports-i386 ----- X-Original-To: kkenn@localhost Delivered-To: kkenn@localhost.obsecurity.org Delivered-To: kris@freebsd.org Date: Fri, 14 Jan 2005 07:34:59 GMT From: User Ports-i386 To: krion@FreeBSD.org, kris@FreeBSD.org Subject: gauche-gaunit-0.0.9 failed on i386 6 X-UIDL: g<=3D!!/(d!!#]a"!a+3!! X-Bogosity: No, tests=3Dbogofilter, spamicity=3D0.000000, version=3D0.92.8 building gauche-gaunit-0.0.9 on gohan27.freebsd.org in directory /x/tmp/6/chroot/2707 maintained by: ports@FreeBSD.org port directory: /usr/ports/devel/gauche-gaunit build started at Fri Jan 14 07:34:28 UTC 2005 FETCH_DEPENDS=3D PATCH_DEPENDS=3D EXTRACT_DEPENDS=3D BUILD_DEPENDS=3Dgauche-0.8.3.tbz libiconv-1.9.2_1.tbz RUN_DEPENDS=3Dgauche-0.8.3.tbz libiconv-1.9.2_1.tbz add_pkg =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Vulnerability check disabled =3D> gaunit-0.0.9.tar.gz doesn't seem to exist in /tmp/distfiles/. =3D> Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/port= s/distfiles/. gaunit-0.0.9.tar.gz 29 kB 966 kBps =3D> Checksum OK for gaunit-0.0.9.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg =3D=3D=3D> Vulnerability check disabled =3D=3D=3D> Extracting for gauche-gaunit-0.0.9 =3D> Checksum OK for gaunit-0.0.9.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg =3D=3D=3D> Patching for gauche-gaunit-0.0.9 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg gauche-0.8.3.tbz libiconv-1.9.2_1.tbz adding dependencies pkg_add gauche-0.8.3.tbz pkg_add libiconv-1.9.2_1.tbz skipping libiconv-1.9.2_1, already added =3D=3D=3D> gauche-gaunit-0.0.9 depends on executable: gosh - found =3D=3D=3D> Configuring for gauche-gaunit-0.0.9 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg gauche-0.8.3.tbz libiconv-1.9.2_1.tbz adding dependencies pkg_add gauche-0.8.3.tbz skipping gauche-0.8.3, already added pkg_add libiconv-1.9.2_1.tbz skipping libiconv-1.9.2_1, already added =3D=3D=3D> Installing for gauche-gaunit-0.0.9 =3D=3D=3D> gauche-gaunit-0.0.9 depends on executable: gosh - found =3D=3D=3D> Generating temporary packing list =3D=3D=3D> Checking if devel/gauche-gaunit already installed cd /tmp/a/ports/devel/gauche-gaunit/work/gaunit-0.0.9; /usr/local/bin/gosh = install/install.scm making installed directory /usr/local/share/gauche/site/lib/ making installed directory /usr/local/share/gauche/site/lib//test making installed directory /usr/local/share/gauche/site/lib//test/unit installing lib/test/unit/assertions.scm =3D> /usr/local/share/gauche/site/l= ib/test/unit/assertions.scm installing lib/test/unit/autorunner.scm =3D> /usr/local/share/gauche/site/l= ib/test/unit/autorunner.scm installing lib/test/unit/base.scm =3D> /usr/local/share/gauche/site/lib/tes= t/unit/base.scm installing lib/test/unit/common.scm =3D> /usr/local/share/gauche/site/lib/t= est/unit/common.scm installing lib/test/unit/result.scm =3D> /usr/local/share/gauche/site/lib/t= est/unit/result.scm making installed directory /usr/local/share/gauche/site/lib//test/unit/ui installing lib/test/unit/ui/gtk.scm =3D> /usr/local/share/gauche/site/lib/t= est/unit/ui/gtk.scm installing lib/test/unit/ui/text.scm =3D> /usr/local/share/gauche/site/lib/= test/unit/ui/text.scm installing lib/test/unit/ui.scm =3D> /usr/local/share/gauche/site/lib/test/= unit/ui.scm installing lib/test/unit.scm =3D> /usr/local/share/gauche/site/lib/test/uni= t.scm /bin/mkdir -p /usr/local/share/doc/gauche/gaunit cd /tmp/a/ports/devel/gauche-gaunit/work/gaunit-0.0.9; install -o root -g = wheel -m 444 README.* Tutorial.* /usr/local/share/doc/gauche/gaunit /bin/mkdir -p /usr/local/share/examples/gauche/gaunit /bin/cp -R /tmp/a/ports/devel/gauche-gaunit/work/gaunit-0.0.9/sample/* /usr= /local/share/examples/gauche/gaunit =3D=3D=3D> Registering installation for gauche-gaunit-0.0.9 =3D=3D=3D> Building package for gauche-gaunit-0.0.9 Creating package /tmp/packages/All/gauche-gaunit-0.0.9.tbz Registering depends: gauche-0.8.3 libiconv-1.9.2_1. Creating bzip'd tar ball in '/tmp/packages/All/gauche-gaunit-0.0.9.tbz' Deleting gauche-gaunit-0.0.9=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Deleting libiconv-1.9.2_1 gauche-0.8.3=20 =3D=3D=3D Checking filesystem state list of extra files and directories in / (not present before this port was = installed but present after it was deinstalled) 1803221 8 drwxr-xr-x 2 root wheel 512= Jan 14 07:34 usr/local/share/doc/gauche ----- End forwarded message ----- --oOB74oR0WcNeq9Zb Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB58PCWry0BWjoQKURAiHCAKCFd6DhKJK9ftG5CvPxHfRsZ7dH4wCgmXYk 8fOcZj2qkhPdin/sdAWXBQI= =5VUy -----END PGP SIGNATURE----- --oOB74oR0WcNeq9Zb-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 13:06:42 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC65216A4CE for ; Fri, 14 Jan 2005 13:06:41 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22A1443D1D for ; Fri, 14 Jan 2005 13:06:41 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 711FC5145A; Fri, 14 Jan 2005 05:06:40 -0800 (PST) Date: Fri, 14 Jan 2005 05:06:40 -0800 From: Kris Kennaway To: ports@FreebSD.org Message-ID: <20050114130640.GH27279@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qM81t570OJUP5TU/" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: [ports-i386@FreeBSD.org: ja-gauche-kakasi-0.1 failed on i386 6] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 13:06:42 -0000 --qM81t570OJUP5TU/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable FYI; can you please investigate and/or report to the developers? If you are already aware of this problem but do not yet have a fix, please mark the port BROKEN in the appropriate case, so that users do not unexpectedly encounter it. Thanks, Kris ----- Forwarded message from User Ports-i386 ----- X-Original-To: kkenn@localhost Delivered-To: kkenn@localhost.obsecurity.org Delivered-To: kris@freebsd.org Date: Fri, 14 Jan 2005 07:35:22 GMT From: User Ports-i386 To: krion@FreeBSD.org, kris@FreeBSD.org Subject: ja-gauche-kakasi-0.1 failed on i386 6 X-UIDL: 7he!!3+_"!\dM"!pdX"! X-Bogosity: No, tests=3Dbogofilter, spamicity=3D0.000000, version=3D0.92.8 building ja-gauche-kakasi-0.1 on gohan25.freebsd.org in directory /x/tmp/6/chroot/23301 maintained by: ports@FreeBSD.org port directory: /usr/ports/japanese/gauche-kakasi build started at Fri Jan 14 07:34:36 UTC 2005 FETCH_DEPENDS=3D PATCH_DEPENDS=3D EXTRACT_DEPENDS=3D BUILD_DEPENDS=3Dgauche-0.8.3.tbz ja-kakasi-2.3.4.tbz libiconv-1.9.2_1.tbz RUN_DEPENDS=3Dgauche-0.8.3.tbz ja-kakasi-2.3.4.tbz libiconv-1.9.2_1.tbz add_pkg =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Vulnerability check disabled =3D> Gauche-kakasi-0.1.tgz doesn't seem to exist in /tmp/distfiles/. =3D> Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/port= s/distfiles/. Gauche-kakasi-0.1.tgz 55 kB 1254 kBps =3D> Checksum OK for Gauche-kakasi-0.1.tgz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg =3D=3D=3D> Vulnerability check disabled =3D=3D=3D> Extracting for ja-gauche-kakasi-0.1 =3D=3D=3D> Vulnerability check disabled =3D> Checksum OK for Gauche-kakasi-0.1.tgz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg =3D=3D=3D> Patching for ja-gauche-kakasi-0.1 /usr/bin/sed -i.bak -e "s/\(@LDFLAGS@\) \(@KAKASI_LIBDIR@\)/\2 \1/" /tmp/a= /ports/japanese/gauche-kakasi/work/Gauche-kakasi-0.1/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=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg gauche-0.8.3.tbz ja-kakasi-2.3.4.tbz libiconv-1.9.2_1.tbz adding dependencies pkg_add gauche-0.8.3.tbz pkg_add ja-kakasi-2.3.4.tbz pkg_add libiconv-1.9.2_1.tbz skipping libiconv-1.9.2_1, already added =3D=3D=3D> ja-gauche-kakasi-0.1 depends on executable: gosh - found =3D=3D=3D> ja-gauche-kakasi-0.1 depends on shared library: kakasi.3 - fou= nd =3D=3D=3D> Configuring for ja-gauche-kakasi-0.1 configure: WARNING: you should use --build, --host, --target checking build system type... i386-portbld-freebsd6.0 checking host system type... i386-portbld-freebsd6.0 checking target system type... i386-portbld-freebsd6.0 checking for gosh... /usr/local/bin/gosh checking for gauche-config... /usr/local/bin/gauche-config checking for gauche-package... /usr/local/bin/gauche-package checking for gauche-install... /usr/local/bin/gauche-install configure: creating Gauche-kakasi.gpd configure: creating ./config.status config.status: creating Makefile =3D=3D=3D> Building for ja-gauche-kakasi-0.1 /usr/local/bin/gauche-config --fixup-extension kakasi cc -O2 -fno-strict-aliasing -pipe -I/usr/local/lib/gauche/0.8.3/include -= I/usr/local/include -c kakasi_head.c -o kakasi_head.o cc -O2 -fno-strict-aliasing -pipe -I/usr/local/lib/gauche/0.8.3/include -= I/usr/local/include -c kakasi.c -o kakasi.o cc -O2 -fno-strict-aliasing -pipe -I/usr/local/lib/gauche/0.8.3/include -= I/usr/local/include -c kakasilib.c -o kakasilib.o cc -O2 -fno-strict-aliasing -pipe -I/usr/local/lib/gauche/0.8.3/include -= I/usr/local/include -c kakasi_tail.c -o kakasi_tail.o cc -Wl,-rpath -Wl,`gauche-config --sysarchdir` -L/usr/local/lib -shared -= o kakasi.so kakasi_head.o kakasi.o kakasilib.o kakasi_tail.o -lka= kasi -L/usr/local/lib/gauche/0.8.3/i386-portbld-freebsd6.0 -lgauche -lcryp= t -lutil -lm =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg gauche-0.8.3.tbz ja-kakasi-2.3.4.tbz libiconv-1.9.2_1.tbz adding dependencies pkg_add gauche-0.8.3.tbz skipping gauche-0.8.3, already added pkg_add ja-kakasi-2.3.4.tbz skipping ja-kakasi-2.3.4, already added pkg_add libiconv-1.9.2_1.tbz skipping libiconv-1.9.2_1, already added =3D=3D=3D> Installing for ja-gauche-kakasi-0.1 =3D=3D=3D> ja-gauche-kakasi-0.1 depends on executable: gosh - found =3D=3D=3D> ja-gauche-kakasi-0.1 depends on shared library: kakasi.3 - fou= nd =3D=3D=3D> Generating temporary packing list =3D=3D=3D> Checking if japanese/gauche-kakasi already installed /usr/local/bin/gauche-install -m 444 -T `/usr/local/bin/gauche-config --sit= eincdir`=20 /usr/local/bin/gauche-install -m 444 -T `/usr/local/bin/gauche-config --sit= elibdir` text/kakasi.scm /usr/local/bin/gauche-install -m 555 -T `/usr/local/bin/gauche-config --sit= earchdir` kakasi.so /usr/local/bin/gauche-install -m 444 -T `/usr/local/bin/gauche-config --sit= elibdir`/.packages Gauche-kakasi.gpd /bin/mkdir -p /usr/local/share/doc/gauche/kakasi cd /tmp/a/ports/japanese/gauche-kakasi/work/Gauche-kakasi-0.1; install -o = root -g wheel -m 444 README.eucjp /usr/local/share/doc/gauche/kakasi =3D=3D=3D> Registering installation for ja-gauche-kakasi-0.1 =3D=3D=3D> Building package for ja-gauche-kakasi-0.1 Creating package /tmp/packages/All/ja-gauche-kakasi-0.1.tbz Registering depends: gauche-0.8.3 ja-kakasi-2.3.4 libiconv-1.9.2_1. Creating bzip'd tar ball in '/tmp/packages/All/ja-gauche-kakasi-0.1.tbz' Deleting ja-gauche-kakasi-0.1=20 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Deleting libiconv-1.9.2_1 ja-kakasi-2.3.4 gauche-0.8.3=20 pkg_delete: unable to completely remove directory '/usr/local/share/gauche/= site/lib' pkg_delete: unable to completely remove directory '/usr/local/share/gauche/= site' pkg_delete: unable to completely remove directory '/usr/local/share/gauche' pkg_delete: couldn't entirely delete package (perhaps the packing list is incorrectly specified?) =3D=3D=3D Checking filesystem state list of extra files and directories in / (not present before this port was = installed but present after it was deinstalled) 1095368 8 drwxr-xr-x 2 root wheel 512= Jan 14 07:35 usr/local/share/doc/gauche 1095366 8 drwxr-xr-x 2 root wheel 512= Jan 14 07:35 usr/local/share/gauche/site/lib/.packages ----- End forwarded message ----- --qM81t570OJUP5TU/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB58PfWry0BWjoQKURAsnYAJ94mZFTtuOvwsSffJXU/1AJfQ7vggCfRMob c8UVHnoWHHSN7HyXlBTggS8= =3DdY -----END PGP SIGNATURE----- --qM81t570OJUP5TU/-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 13:21:57 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6663116A4CE for ; Fri, 14 Jan 2005 13:21:57 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1F6443D39 for ; Fri, 14 Jan 2005 13:21:56 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id F3D0D5145A; Fri, 14 Jan 2005 05:21:55 -0800 (PST) Date: Fri, 14 Jan 2005 05:21:55 -0800 From: Kris Kennaway To: Adi Pircalabu Message-ID: <20050114132155.GA42830@xor.obsecurity.org> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> <20050114144353.1aad2014@apircalabu.dsd.ro> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6c2NcOVqGQ03X4Wi" Content-Disposition: inline In-Reply-To: <20050114144353.1aad2014@apircalabu.dsd.ro> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 13:21:57 -0000 --6c2NcOVqGQ03X4Wi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 14, 2005 at 02:43:53PM +0200, Adi Pircalabu wrote: > On Fri, 14 Jan 2005 13:06:38 +0100 > Lupe Christoph wrote: >=20 > > > It's better to use ~/.your_port directory in such cases. > >=20 > > For system-wide defaults? Put them in /root/.foo.conf rather than > > /usr/local/etc/foo.conf? >=20 > For these specific cases, I do not think he meant installing anything > that should go system-wide in some user's home directory. Instead, I'm > thinking about setting port's dirs/files into ${PREFIX}/portname/ > following a standard UNIX structure as in: > ${PREFIX}/portname/bin/ > ${PREFIX}/portname/etc/ > ${PREFIX}/portname/lib/ > ${PREFIX}/portname/share/ > ${PREFIX}/portname/var/ > and so on (where PREFIX will likely be /usr/local). All dirs/files > placed outside the above directory scheme will be completely deleted at > deinstall. > In my case, after port's deinstall, there will always be files left in > ${PREFIX}/portname/. Is this a reason for tagging the port > BROKEN/IGNORE? Yes, it doesn't change the rules :-) Kris --6c2NcOVqGQ03X4Wi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB58dzWry0BWjoQKURAqbtAJ430P/xvEZq0RZDDkoZ4QS7CGz2gQCgnHpV +GGpJ1Bk0UPDf9g5zmuJkKU= =i2b4 -----END PGP SIGNATURE----- --6c2NcOVqGQ03X4Wi-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 13:29:59 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8097016A4CE for ; Fri, 14 Jan 2005 13:29:59 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36B0043D46 for ; Fri, 14 Jan 2005 13:29:59 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.43 (FreeBSD)) id 1CpRW1-000MWp-A8; Fri, 14 Jan 2005 14:29:25 +0100 Date: Fri, 14 Jan 2005 14:29:25 +0100 From: Kirill Ponomarew To: Lupe Christoph Message-ID: <20050114132925.GM69532@voodoo.oberon.net> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XrjDSOQsS4AlGTKt" Content-Disposition: inline In-Reply-To: <1105704398.41e7b5ce7dc5e@buexe.b-5.de> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 13:29:59 -0000 --XrjDSOQsS4AlGTKt Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Jan 14, 2005 at 01:06:38PM +0100, Lupe Christoph wrote: > > You can try cmp(1) in pkg-plist to compare configurations files. > > Take a look at ports collection, there are enough examples. > > Not useful for munin-node because it creates system-dependent > symlinks. I'm not aware of any other port doing this. And munin-main > will create a lot of files if a cron run happens to coincide with > the few moments the port is installed during the test. > > I have only the option to burden the user with doing all the parts > of the installation that create state that cannot be easily undone > or are detrimental to the test like the crontab entry. Things that > are easily done automatically. > > Also I wonder if having a default of "No" for the rc.conf variable > (i.e. 'don't run the daemon') is really necessary. Is this required? > The whole point of installing munin-node is to run the daemon. > > > It's better to use ~/.your_port directory in such cases. > > For system-wide defaults? For files which should be changed/deleted/added etc while software is running. -Kirill --XrjDSOQsS4AlGTKt Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB58k1QC1G6a60JuURAgT4AKDIOIuALR7NnD1y28EBNyV49I8t0QCgvdc4 2Q19+avk2LMXKgWT2XGz5G8= =LZ41 -----END PGP SIGNATURE----- --XrjDSOQsS4AlGTKt-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 13:31:12 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52CF816A4CE for ; Fri, 14 Jan 2005 13:31:12 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id F036A43D67 for ; Fri, 14 Jan 2005 13:31:11 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.43 (FreeBSD)) id 1CpRXO-000MXX-4H; Fri, 14 Jan 2005 14:30:50 +0100 Date: Fri, 14 Jan 2005 14:30:50 +0100 From: Kirill Ponomarew To: Adi Pircalabu Message-ID: <20050114133050.GN69532@voodoo.oberon.net> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> <20050114144353.1aad2014@apircalabu.dsd.ro> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+E165xXSMiO4rFaE" Content-Disposition: inline In-Reply-To: <20050114144353.1aad2014@apircalabu.dsd.ro> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 13:31:12 -0000 --+E165xXSMiO4rFaE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Jan 14, 2005 at 02:43:53PM +0200, Adi Pircalabu wrote: > For these specific cases, I do not think he meant installing anything > that should go system-wide in some user's home directory. Instead, I'm > thinking about setting port's dirs/files into ${PREFIX}/portname/ > following a standard UNIX structure as in: > ${PREFIX}/portname/bin/ > ${PREFIX}/portname/etc/ > ${PREFIX}/portname/lib/ > ${PREFIX}/portname/share/ > ${PREFIX}/portname/var/ > and so on (where PREFIX will likely be /usr/local). All dirs/files > placed outside the above directory scheme will be completely deleted at > deinstall. > In my case, after port's deinstall, there will always be files left in > ${PREFIX}/portname/. Is this a reason for tagging the port > BROKEN/IGNORE? Leftovers are considered to be a reason for BROKEN tag. -Kirill --+E165xXSMiO4rFaE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB58mKQC1G6a60JuURAmY5AJ9TUKIBiXsIOXRo9AU6TCrbDoRJkQCguUqq AQKfjKQuLiMpQbhs2hDb2Xw= =ReEg -----END PGP SIGNATURE----- --+E165xXSMiO4rFaE-- From owner-freebsd-ports@FreeBSD.ORG Thu Jan 13 22:02:17 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8969516A4CE; Thu, 13 Jan 2005 22:02:17 +0000 (GMT) Received: from encontacto.net (dsl-200-78-46-242.prod-infinitum.com.mx [200.78.46.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F85043D31; Thu, 13 Jan 2005 22:02:16 +0000 (GMT) (envelope-from eculp@encontacto.net) Received: from localhost (localhost [127.0.0.1]) (uid 80) by encontacto.net with local; Sun, 09 Jan 2005 07:41:41 -0600 Received: from dsl-201-135-175-230.prod-infinitum.com.mx (dsl-201-135-175-230.prod-infinitum.com.mx [201.135.175.230]) by mail.encontacto.net (Horde) with HTTP for ; Sun, 9 Jan 2005 07:41:41 -0600 Message-ID: <20050109074141.0hvuhlpjk8g408ss@mail.encontacto.net> Date: Sun, 9 Jan 2005 07:41:41 -0600 From: "Edwin L. Culp" To: Derrick Edwards References: <200501090447.45708.dantavious@comcast.net> In-Reply-To: <200501090447.45708.dantavious@comcast.net> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) 4.0-cvs X-WebMail-Company: EnContacto.net X-Originating-IP: 201.135.175.230 X-Remote-Browser: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20050103 Firefox/1.0 X-Mailman-Approved-At: Fri, 14 Jan 2005 13:33:08 +0000 cc: ports@freebsd.org cc: netchild@freebsd.org Subject: Re: Skype problems X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 13 Jan 2005 22:02:17 -0000 Quoting Derrick Edwards : > Hi, > I would like to know if skype is freezing and restarting X after you launch > it. I have been having this problem for about a week. I was already using > linux_base 8 but I went ahead and "portupgrade -rf emulators/linux_base-8". > Any ideas, > Derrick > _______________________________________________ > 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" > Skype works perfectly here with: skype-0.92.0.12_1: with the following dependencies installed: linux_base-8-8.0_4 libiconv-1.9.2_1 gettext-0.14.1 linux-expat-1.95.5_2 popt-1.7 rpm-3.0.6_9 linux-fontconfig-2.1_2 linux-XFree86-libs-4.3.99.902_1 Running with: xorg-6.8.1 and kde-3.3.2 All up to date, I think, on current from yesterday. Actually, I've never had skype crash or crash anything else. I've been using it for almost six months. Hopefully some of this info will help you find the problem. Good luck, ed From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 13:34:27 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C698916A4CE for ; Fri, 14 Jan 2005 13:34:27 +0000 (GMT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CC8143D49 for ; Fri, 14 Jan 2005 13:34:27 +0000 (GMT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) j0EDYQKX089242 for ; Fri, 14 Jan 2005 08:34:26 -0500 (EST) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id j0EDYQ7S087124 for ports@FreeBSD.org; Fri, 14 Jan 2005 08:34:26 -0500 (EST) (envelope-from kris) Date: Fri, 14 Jan 2005 08:34:26 -0500 (EST) From: Kris Kennaway Message-Id: <200501141334.j0EDYQ7S087124@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX build failed for 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 13:34:27 -0000 INDEX build failed with errors: Generating INDEX - please wait.."Makefile", line 32: warning: String comparison operator should be either == or != "Makefile", line 32: Malformed conditional (${ARCH} = alpha) "Makefile", line 32: Need an operator "Makefile", line 34: if-less endif "Makefile", line 34: Need an operator make: fatal errors encountered -- cannot continue ===> lang/gcc295 failed *** Error code 1 *** Error code 1 Stop in /vol/vol0/users/kris/ports.clean. *** Error code 1 Stop in /vol/vol0/users/kris/ports.clean. 1 error Committers on the hook: ache danfe erwin trevor Most recent CVS update was: U Mk/bsd.sites.mk U devel/maketool/Makefile U games/openttd/Makefile U games/openttd/distinfo U games/openttd/pkg-plist U games/openttd/files/patch-Makefile U graphics/acidwarp/Makefile U graphics/linplasma/Makefile U lang/gcc295/Makefile U net/gopher/Makefile U net/svnc/Makefile U www/mnogosearch/Makefile U www/wb0/Makefile From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 13:41:00 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C22CA16A4CE for ; Fri, 14 Jan 2005 13:41:00 +0000 (GMT) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id A962D43D39 for ; Fri, 14 Jan 2005 13:40:50 +0000 (GMT) (envelope-from apircalabu@bitdefender.com) Received: (qmail 15890 invoked from network); 14 Jan 2005 13:40:37 -0000 Received: from apircalabu.dsd.ro (10.10.15.22) by mail.dsd.ro with AES256-SHA encrypted SMTP; 14 Jan 2005 13:40:36 -0000 Date: Fri, 14 Jan 2005 15:43:12 +0200 From: Adi Pircalabu To: freebsd-ports@freebsd.org Message-ID: <20050114154312.57462980@apircalabu.dsd.ro> In-Reply-To: <20050114132925.GM69532@voodoo.oberon.net> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> <20050114132925.GM69532@voodoo.oberon.net> Organization: BitDefender X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BitDefender-SpamStamp: 1.1.2 036000040111AAAAAAE X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.1 on mail.bitdefender.com X-BitDefender-Spam: No (0) Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 13:41:00 -0000 On Fri, 14 Jan 2005 14:29:25 +0100 Kirill Ponomarew wrote: > > > It's better to use ~/.your_port directory in such cases. > > > > For system-wide defaults? > > For files which should be changed/deleted/added etc while software is > running. Oops, then what if there are files changed/deleted/added during runtime which must reside in, let's say, port's base directory? How can I treat these files? Should I enfore deletion from pkg-deinstall or pkg-plist? -- Adrian Pircalabu Public KeyID = 0xF902393A -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 13:43:30 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D154516A4CE for ; Fri, 14 Jan 2005 13:43:30 +0000 (GMT) Received: from charlie.socruel.nu (gone.xs4all.nl [213.84.247.136]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC07A43D49 for ; Fri, 14 Jan 2005 13:43:29 +0000 (GMT) (envelope-from freebsd-ports@socruel.nu) Received: from lotus.ad.socruel.org (lotus.ad.socruel.org [172.16.0.200]) by charlie.socruel.nu (Postfix) with ESMTP id 63F5B1DE84D for ; Fri, 14 Jan 2005 14:43:28 +0100 (CET) MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Fri, 14 Jan 2005 14:43:26 +0100 X-MimeOLE: Produced By Microsoft Exchange V6.0.6249.0 content-class: urn:content-classes:message Message-ID: <2578F22C7A5515449899AF290E2D4832202B@lotus.ad.socruel.org> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Question about 'option screens' Thread-Index: AcT6PwVc7OlVyDXSQmqsl7R9v1PSbA== From: "freebsd-ports" To: Subject: Question about 'option screens' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 13:43:30 -0000 Hello, I can't seem to find out were chosen options of an option screen of a port are stored. The following is happening on a FreeBSD 4.10-RELEASE-p4 system : I started the installation of the nagios-plugins port and got the option screen. I choose the net-snmp option and continued with OK. But then I realized that I don't want the net-snmp option, because it means that net-snmp is installed which I don't want so I stopped the nagios-plugin port installation by pressing CTL-c. I then did a 'make clean'. The I started the nagios-plugin installation again (make; make install), but this time I didn't get the option screen! It automatically choose the previous choosen option. So this must be stored somewhere??? MTIA. Regards, Lars. From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 13:46:54 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8863516A4DA for ; Fri, 14 Jan 2005 13:46:54 +0000 (GMT) Received: from mail.ciam.ru (mail.ciam.ru [213.147.57.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC53543D31 for ; Fri, 14 Jan 2005 13:46:53 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from ppp83-237-103-186.pppoe.mtu-net.ru ([83.237.103.186] helo=[192.168.0.3]) by mail.ciam.ru with esmtpa (Exim 4.x) id 1CpRmr-000Jwv-J5; Fri, 14 Jan 2005 16:46:49 +0300 Message-ID: <41E7CD60.3090509@FreeBSD.org> Date: Fri, 14 Jan 2005 16:47:12 +0300 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20050111 X-Accept-Language: ru, en-us, en MIME-Version: 1.0 To: Edwin Groothuis References: <20050112210836.GA53854@xor.obsecurity.org> <20050112211458.GA1175@k7.mavetju> In-Reply-To: <20050112211458.GA1175@k7.mavetju> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org cc: Kris Kennaway Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 13:46:54 -0000 Edwin Groothuis wrote: > > Please have a look at ports/75379: > bsd.port.mk / add-plist-docs is too relaxed But why you create files that does not really exists? It looks like hack. -- Sem. From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 13:47:19 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4E6116A4CF for ; Fri, 14 Jan 2005 13:47:19 +0000 (GMT) Received: from uri.sublimemail.com (uri.sublimemail.com [66.45.27.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 448B943D1F for ; Fri, 14 Jan 2005 13:47:19 +0000 (GMT) (envelope-from steve@havk.org) Received: from bsd.havk.org (unknown [63.108.131.214]) by uri.sublimemail.com (Postfix) with ESMTP id 4C6E14FC01E; Fri, 14 Jan 2005 07:47:18 -0600 (CST) Received: by bsd.havk.org (Postfix, from userid 1001) id 05D521A78A; Fri, 14 Jan 2005 07:47:18 -0600 (CST) Date: Fri, 14 Jan 2005 07:47:17 -0600 From: Steve Price To: freebsd-ports Message-ID: <20050114134717.GE27846@bsd.havk.org> References: <2578F22C7A5515449899AF290E2D4832202B@lotus.ad.socruel.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2578F22C7A5515449899AF290E2D4832202B@lotus.ad.socruel.org> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.9-STABLE i386 cc: freebsd-ports@freebsd.org Subject: Re: Question about 'option screens' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 13:47:19 -0000 On Fri, Jan 14, 2005 at 02:43:26PM +0100, freebsd-ports wrote: > > I can't seem to find out were chosen options of an option screen of a > port are stored. Type 'make rmconfig' from the directory of the port for which you want to remove the saved options. -steve From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 13:47:32 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B12A16A4CE for ; Fri, 14 Jan 2005 13:47:32 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 066B543D46 for ; Fri, 14 Jan 2005 13:47:32 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.43 (FreeBSD)) id 1CpRnC-000MhD-9H; Fri, 14 Jan 2005 14:47:10 +0100 Date: Fri, 14 Jan 2005 14:47:10 +0100 From: Kirill Ponomarew To: Adi Pircalabu Message-ID: <20050114134710.GO69532@voodoo.oberon.net> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> <20050114132925.GM69532@voodoo.oberon.net> <20050114154312.57462980@apircalabu.dsd.ro> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XLWMkxR+mZNQ4WTO" Content-Disposition: inline In-Reply-To: <20050114154312.57462980@apircalabu.dsd.ro> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 13:47:32 -0000 --XLWMkxR+mZNQ4WTO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Jan 14, 2005 at 03:43:12PM +0200, Adi Pircalabu wrote: > Oops, then what if there are files changed/deleted/added during runtime > which must reside in, let's say, port's base directory? In general it's bad idea. > How can I treat these files? Should I enfore deletion from > pkg-deinstall or pkg-plist? If files/directories aren't registered during installation, how do you want to delete them ? -Kirill --XLWMkxR+mZNQ4WTO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB581eQC1G6a60JuURAhWkAKCy36qfZsL6drQ67gXAqLSwo8eU0gCaA5go MRIjWUBS/QtYfj+tTFDPEUA= =e3aM -----END PGP SIGNATURE----- --XLWMkxR+mZNQ4WTO-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 13:55:12 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1374616A4CE for ; Fri, 14 Jan 2005 13:55:12 +0000 (GMT) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id D85AC43D49 for ; Fri, 14 Jan 2005 13:55:10 +0000 (GMT) (envelope-from apircalabu@bitdefender.com) Received: (qmail 8797 invoked from network); 14 Jan 2005 13:55:10 -0000 Received: from apircalabu.dsd.ro (10.10.15.22) by mail.dsd.ro with AES256-SHA encrypted SMTP; 14 Jan 2005 13:55:10 -0000 Date: Fri, 14 Jan 2005 15:57:45 +0200 From: Adi Pircalabu To: freebsd-ports@freebsd.org Message-ID: <20050114155745.179a1bfe@apircalabu.dsd.ro> In-Reply-To: <20050114133050.GN69532@voodoo.oberon.net> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> <20050114144353.1aad2014@apircalabu.dsd.ro> <20050114133050.GN69532@voodoo.oberon.net> Organization: BitDefender X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BitDefender-SpamStamp: 1.1.2 036000040111AAAAAAE X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.1 on mail.bitdefender.com X-BitDefender-Spam: No (0) Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 13:55:12 -0000 On Fri, 14 Jan 2005 14:30:50 +0100 Kirill Ponomarew wrote: > > In my case, after port's deinstall, there will always be files left > > in${PREFIX}/portname/. Is this a reason for tagging the port > > BROKEN/IGNORE? > > Leftovers are considered to be a reason for BROKEN tag. I understand your point, it is very decent from an application to clean-up after deinstall. But sometimes it is not appropriate to complete delete all the dirs/files, especially when the files are, let's say, system-wide configuration files. What if I upgrade the software? Do I have to backup the configuration before upgrading, and then restore it after the upgrade completed? I'm too lazy for that, I'd like a smooth and easy upgrade :) In my case, it is very common for the port to change/modify/delete files at runtime, even configuration files are changed while the product is running. If this is the reason for marking the port BROKEN I'm in big trouble :| -- Adrian Pircalabu Public KeyID = 0xF902393A -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 14:01:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D57016A4E0 for ; Fri, 14 Jan 2005 14:01:27 +0000 (GMT) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86F1C43D39 for ; Fri, 14 Jan 2005 14:01:26 +0000 (GMT) (envelope-from apircalabu@bitdefender.com) Received: (qmail 21923 invoked from network); 14 Jan 2005 14:01:26 -0000 Received: from apircalabu.dsd.ro (10.10.15.22) by mail.dsd.ro with AES256-SHA encrypted SMTP; 14 Jan 2005 14:01:26 -0000 Date: Fri, 14 Jan 2005 16:04:01 +0200 From: Adi Pircalabu To: freebsd-ports@freebsd.org Message-ID: <20050114160401.69a45dac@apircalabu.dsd.ro> In-Reply-To: <20050114134710.GO69532@voodoo.oberon.net> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> <20050114132925.GM69532@voodoo.oberon.net> <20050114154312.57462980@apircalabu.dsd.ro> <20050114134710.GO69532@voodoo.oberon.net> Organization: BitDefender X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BitDefender-SpamStamp: 1.1.2 036000040111AAAAAAE X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.1 on mail.bitdefender.com X-BitDefender-Spam: No (0) Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 14:01:29 -0000 On Fri, 14 Jan 2005 14:47:10 +0100 Kirill Ponomarew wrote: > > How can I treat these files? Should I enfore deletion from > > pkg-deinstall or pkg-plist? > > If files/directories aren't registered during installation, how do > you want to delete them ? Heh, you've got my point:), this is obvious I can't delete what was not created. But I'd like to check all the possible ways to port the application without breaking the ports system, and, until now, the only conclusion is that the port will always be tagged as broken. -- Adrian Pircalabu Public KeyID = 0xF902393A -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 14:02:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59B3716A4CE for ; Fri, 14 Jan 2005 14:02:03 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12E1C43D54 for ; Fri, 14 Jan 2005 14:02:03 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.43 (FreeBSD)) id 1CpS1F-000Mkt-B7; Fri, 14 Jan 2005 15:01:41 +0100 Date: Fri, 14 Jan 2005 15:01:41 +0100 From: Kirill Ponomarew To: Adi Pircalabu Message-ID: <20050114140141.GP69532@voodoo.oberon.net> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> <20050114144353.1aad2014@apircalabu.dsd.ro> <20050114133050.GN69532@voodoo.oberon.net> <20050114155745.179a1bfe@apircalabu.dsd.ro> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="oHxSCaSS3y4TqjY8" Content-Disposition: inline In-Reply-To: <20050114155745.179a1bfe@apircalabu.dsd.ro> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 14:02:03 -0000 --oHxSCaSS3y4TqjY8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Fri, Jan 14, 2005 at 03:57:45PM +0200, Adi Pircalabu wrote: > I understand your point, it is very decent from an application to > clean-up after deinstall. But sometimes it is not appropriate to > complete delete all the dirs/files, especially when the files are, let's > say, system-wide configuration files. What if I upgrade the software? Do > I have to backup the configuration before upgrading, and then restore it > after the upgrade completed? I'm too lazy for that, I'd like a smooth > and easy upgrade :) That's why I suggested to use cmp(1) in pkg-plist to compare *default* configuration files and *user-defined* configuration files :) -Kirill --oHxSCaSS3y4TqjY8 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB59DFQC1G6a60JuURAha4AKDRfM4ZW3sCOgHyaAQ9uOEsBtTKxwCZAa6s TVDzp/qQ7NoaXja8Y4R6Wfs= =/wzh -----END PGP SIGNATURE----- --oHxSCaSS3y4TqjY8-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 14:02:29 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34E8516A4CE for ; Fri, 14 Jan 2005 14:02:29 +0000 (GMT) Received: from mail.ciam.ru (mail.ciam.ru [213.147.57.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB2C443D2D for ; Fri, 14 Jan 2005 14:02:28 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from ppp83-237-103-186.pppoe.mtu-net.ru ([83.237.103.186] helo=[192.168.0.3]) by mail.ciam.ru with esmtpa (Exim 4.x) id 1CpS1z-000KEB-6B; Fri, 14 Jan 2005 17:02:27 +0300 Message-ID: <41E7D10A.8070308@FreeBSD.org> Date: Fri, 14 Jan 2005 17:02:50 +0300 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20050111 X-Accept-Language: ru, en-us, en MIME-Version: 1.0 To: Adi Pircalabu References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> <20050114144353.1aad2014@apircalabu.dsd.ro> <20050114133050.GN69532@voodoo.oberon.net> <20050114155745.179a1bfe@apircalabu.dsd.ro> In-Reply-To: <20050114155745.179a1bfe@apircalabu.dsd.ro> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 14:02:29 -0000 Adi Pircalabu wrote: > In my case, it is very common for the port to change/modify/delete files > at runtime, even configuration files are changed while the product is > running. If this is the reason for marking the port BROKEN I'm in big > trouble :| > What port are you talking about? And why it's a bad thought for you to remove files if they are not changed. -- Sem. From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 14:21:31 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E181516A4CE for ; Fri, 14 Jan 2005 14:21:31 +0000 (GMT) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id E951F43D4C for ; Fri, 14 Jan 2005 14:21:30 +0000 (GMT) (envelope-from apircalabu@bitdefender.com) Received: (qmail 26668 invoked from network); 14 Jan 2005 14:21:28 -0000 Received: from apircalabu.dsd.ro (10.10.15.22) by mail.dsd.ro with AES256-SHA encrypted SMTP; 14 Jan 2005 14:21:28 -0000 Date: Fri, 14 Jan 2005 16:24:05 +0200 From: Adi Pircalabu To: freebsd-ports@freebsd.org Message-ID: <20050114162405.2777fa0a@apircalabu.dsd.ro> In-Reply-To: <41E7D10A.8070308@FreeBSD.org> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> <20050114144353.1aad2014@apircalabu.dsd.ro> <20050114133050.GN69532@voodoo.oberon.net> <20050114155745.179a1bfe@apircalabu.dsd.ro> <41E7D10A.8070308@FreeBSD.org> Organization: BitDefender X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BitDefender-SpamStamp: 1.1.2 036000040111AAAAAAEAAAAAAAAAAAAAAAAAAAAB X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.1 on mail.bitdefender.com X-BitDefender-Spam: No (0) Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 14:21:32 -0000 On Fri, 14 Jan 2005 17:02:50 +0300 Sergey Matveychuk wrote: > What port are you talking about? It's BitDefender Antivirus I have to port on FreeBSD. The architecture and behaviour is similar to Linux version. Besides creating the configuration files at install time from generic .dist files, it also creates new files (especially AV definition and signature files), along with modifying existing ones. A typical situation: A new AV engine is created and the decision is to put the detection code in a new file, which was not present in the system after install. Obviously the file was not registered at install so I can not delete it when deinstalling (I have no idea of the filename, size, md5). Therefore the file will be left as is after install, leading to a broken port. > And why it's a bad thought for you to remove files if they are not > changed. I did not mean that, it's common sense to delete them if they have not changed. -- Adrian Pircalabu Public KeyID = 0xF902393A -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 14:22:39 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A59316A4CE; Fri, 14 Jan 2005 14:22:39 +0000 (GMT) Received: from mail.vslash.com (gambetta-2-82-67-185-6.fbx.proxad.net [82.67.185.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 746C243D55; Fri, 14 Jan 2005 14:22:38 +0000 (GMT) (envelope-from valery@vslash.com) Received: from [192.168.0.22] (oxe [192.168.0.22]) by mail.vslash.com (Postfix) with ESMTP id 6D9991DA00; Fri, 14 Jan 2005 15:25:59 +0100 (CET) Message-ID: <41E7D58B.8020905@vslash.com> Date: Fri, 14 Jan 2005 15:22:03 +0100 From: =?UTF-8?B?VmFsw6lyeQ==?= User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040616 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Maxim Sobolev References: <41E7AF5A.3020603@portaone.com> In-Reply-To: <41E7AF5A.3020603@portaone.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org cc: ale@freebsd.org Subject: Re: PHP ports/packages framework is seriously flawed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 14:22:39 -0000 Hi, i'm not from FreeBSD, but if i can advise you : php is *very scalable*, and before having all options you want, you must build it 5 or 6 times. I'm using 4.3.4, and it was compiled not from the BSD ports, but from the php.net sources. The 1st reason is that - i think - a port cannot show you every configuration you want, specially with php ; there's a lot of '3rd part software' with php. The second one is that compiling php in this way is not difficult, php is well done, and well documented, and you'll get exactly what you expect from php (eg GD, XML, XSL, CLI or CGI, ...). More, you can patch your php without waiting a new port, and this is important for security. In my point of view, i think that with a solution like php, you must know everithing about it, specially at the build time, this is very important if you want to be accurate, and know why you get an error using a functionnality ; you'll win time. Well, try to compile it yourself, and see what you want. i hope this help you, br v/ Maxim Sobolev wrote: > Hi guys, > > Maybe I am missing something obvious, but as long as I can see, the > whole PHP framework is currently severely flawed. Specifically I am > talking about www/mod_php4 port/package. Current system doesn't allow > any PHP extensions to be installed for it, at the same time when > building mod_php4 it explicitly disables all possible extensions, so > that resulting module is nearly useless since it lacks even essential > functions and it's impossible to install them later on. > > Perhaps FreeBSD PHP maintainers should take a closer look on how this > problem is addressed in major linux distros. > > Regards, > > Maxim > _______________________________________________ > 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 Jan 14 14:27:58 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4BC4116A4CE for ; Fri, 14 Jan 2005 14:27:58 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF26443D2D for ; Fri, 14 Jan 2005 14:27:57 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 00FDD513CE; Fri, 14 Jan 2005 06:27:56 -0800 (PST) Date: Fri, 14 Jan 2005 06:27:56 -0800 From: Kris Kennaway To: Adi Pircalabu Message-ID: <20050114142756.GA58907@xor.obsecurity.org> References: <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> <20050114144353.1aad2014@apircalabu.dsd.ro> <20050114133050.GN69532@voodoo.oberon.net> <20050114155745.179a1bfe@apircalabu.dsd.ro> <41E7D10A.8070308@FreeBSD.org> <20050114162405.2777fa0a@apircalabu.dsd.ro> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="VS++wcV0S1rZb1Fb" Content-Disposition: inline In-Reply-To: <20050114162405.2777fa0a@apircalabu.dsd.ro> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 14:27:58 -0000 --VS++wcV0S1rZb1Fb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 14, 2005 at 04:24:05PM +0200, Adi Pircalabu wrote: > On Fri, 14 Jan 2005 17:02:50 +0300 > Sergey Matveychuk wrote: >=20 > > What port are you talking about? >=20 > It's BitDefender Antivirus I have to port on FreeBSD. The architecture > and behaviour is similar to Linux version. Besides creating the > configuration files at install time from generic .dist files, it also > creates new files (especially AV definition and signature files), along > with modifying existing ones. A typical situation: > A new AV engine is created and the decision is to put the detection code > in a new file, which was not present in the system after install. > Obviously the file was not registered at install so I can not delete it > when deinstalling (I have no idea of the filename, size, md5). Therefore > the file will be left as is after install, leading to a broken port. The main case you need to worry about is when someone (e.g. package cluster) does 'make install deinstall'. It's OK, but not ideal, for the package to leave behind some runtime-created files when the software has been used or configured by the user. You should then add a pkg-deinstall message warning about where the leftover files live, if they exist, so the administrator can choose to delete them by hand. Kris --VS++wcV0S1rZb1Fb Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB59bsWry0BWjoQKURAs/jAKDUYfVjTLggp60+NU9t7UyTOtsH1gCeIuYO jQq6posoy2yBF7zrbPX3TiY= =c6RJ -----END PGP SIGNATURE----- --VS++wcV0S1rZb1Fb-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 14:36:44 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EE9816A4CE for ; Fri, 14 Jan 2005 14:36:44 +0000 (GMT) Received: from mail.bitdefender.com (ns.bitdefender.com [217.156.83.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2910043D58 for ; Fri, 14 Jan 2005 14:36:43 +0000 (GMT) (envelope-from apircalabu@bitdefender.com) Received: (qmail 26135 invoked from network); 14 Jan 2005 14:36:40 -0000 Received: from apircalabu.dsd.ro (10.10.15.22) by mail.dsd.ro with AES256-SHA encrypted SMTP; 14 Jan 2005 14:36:40 -0000 Date: Fri, 14 Jan 2005 16:39:17 +0200 From: Adi Pircalabu To: freebsd-ports@freebsd.org Message-ID: <20050114163917.7ecfa898@apircalabu.dsd.ro> In-Reply-To: <20050114142756.GA58907@xor.obsecurity.org> References: <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> <20050114144353.1aad2014@apircalabu.dsd.ro> <20050114133050.GN69532@voodoo.oberon.net> <20050114155745.179a1bfe@apircalabu.dsd.ro> <41E7D10A.8070308@FreeBSD.org> <20050114162405.2777fa0a@apircalabu.dsd.ro> <20050114142756.GA58907@xor.obsecurity.org> Organization: BitDefender X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-BitDefender-SpamStamp: 1.1.2 036000040111AAAAAAE X-BitDefender-Scanner: Clean, Agent: BitDefender Qmail 1.6.1 on mail.bitdefender.com X-BitDefender-Spam: No (0) Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 14:36:44 -0000 On Fri, 14 Jan 2005 06:27:56 -0800 Kris Kennaway wrote: > The main case you need to worry about is when someone (e.g. package > cluster) does 'make install deinstall'. I see, but this does not worry me at this moment > It's OK, but not ideal, for the package to leave behind some > runtime-created files when the software has been used or configured by > the user. You should then add a pkg-deinstall message warning about > where the leftover files live, if they exist, so the administrator can > choose to delete them by hand. Well, this is what I'd been waiting for :) I noticed that many (I mean MANY) ports follow this line. Initially I thought this is the right way to do it, as a good compromise between port's needs and system's consistency after deinstall. But, after seen you initial post on this thread, I started to worry about it. If this is a correct way to handle the port, then I'll follow it :) Thank you -- Adrian Pircalabu Public KeyID = 0xF902393A -- This message was scanned for spam and viruses by BitDefender. For more information please visit http://www.bitdefender.com/ From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 14:37:51 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16F5B16A4CE; Fri, 14 Jan 2005 14:37:51 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3D7B43D48; Fri, 14 Jan 2005 14:37:50 +0000 (GMT) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 539463D40; Fri, 14 Jan 2005 09:37:50 -0500 (EST) From: "Dan Langille" To: Kirill Ponomarew Date: Fri, 14 Jan 2005 09:39:52 -0500 MIME-Version: 1.0 Message-ID: <41E79368.8020.96BE58B9@localhost> Priority: normal In-reply-to: <20050114113514.GH69532@voodoo.oberon.net> References: <41E693D5.28457.92D804F2@localhost> X-mailer: Pegasus Mail for Windows (4.21c) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body cc: fjoe@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: database/pgadmin3 cores X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 14:37:51 -0000 On 14 Jan 2005 at 12:35, Kirill Ponomarew wrote: > On Thu, Jan 13, 2005 at 03:29:25PM -0500, Dan Langille wrote: > > On FreeBSD 5.3-stable, I'm getting a core dump: > > > > # pgadmin3 > > Segmentation fault (core dumped) > > > > This is pgadmin3-1.2.0 under xorg-6.8.1 > > > > Any ideas? > > Compiling it with debug symbols and gdb(1) output would help > maintainer more to analyze this problem. Good point. HTH: (gdb) run Starting program: /usr/local/bin/pgadmin3 Program received signal SIGSEGV, Segmentation fault. [Switching to Thread 1 (LWP 100166)] 0x28a57a68 in wxMBConvUTF8::MB2WC () from /usr/X11R6/lib/libwx_base- 2.5.so.3 (gdb) bt #0 0x28a57a68 in wxMBConvUTF8::MB2WC () from /usr/X11R6/lib/libwx_base-2.5.so.3 #1 0x0819e04e in wxUtfFile::Read (this=0xbfbfe7c0, str=@0xbfbfe7f0, nCount=1654) at utils/utffile.cpp:86 #2 0x08197018 in FileRead (filename=@0xbfbfe940, format=1) at utils/misc.cpp:482 #3 0x0806719a in pgAdmin3::OnInit (this=0x831f080) at pgAdmin3.cpp:228 #4 0x08069578 in wxAppConsole::CallOnInit (this=0x831f080) at app.h:87 #5 0x28a44131 in wxEntry () from /usr/X11R6/lib/libwx_base-2.5.so.3 #6 0x08066983 in main (argc=1, argv=0xbfbfea98) at pgAdmin3.cpp:300 (gdb) cheers -- Dan Langille : http://www.langille.org/ BSDCan - The Technical BSD Conference - http://www.bsdcan.org/ From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 14:39:21 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A1CC316A4CE for ; Fri, 14 Jan 2005 14:39:21 +0000 (GMT) Received: from buexe.b-5.de (buexe.b-5.de [80.148.32.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77E7143D48 for ; Fri, 14 Jan 2005 14:39:19 +0000 (GMT) (envelope-from lupe@lupe-christoph.de) Received: from buexe.b-5.de (www-data@localhost [127.0.0.1]) j0EEdH0L023561 for ; Fri, 14 Jan 2005 15:39:17 +0100 Received: (from www-data@localhost) by buexe.b-5.de (8.12.3/8.12.3/b-5/buexe-msp1.2) id j0EEdHZR023559 for freebsd-ports@freebsd.org; Fri, 14 Jan 2005 15:39:17 +0100 Received: from h-213.61.77.22.host.de.colt.net (h-213.61.77.22.host.de.colt.net [213.61.77.22]) by buexe.b-5.de (IMP) with HTTP for ; Fri, 14 Jan 2005 15:39:17 +0100 Message-ID: <1105713557.41e7d9958ddd5@buexe.b-5.de> Date: Fri, 14 Jan 2005 15:39:17 +0100 From: Lupe Christoph To: freebsd-ports@freebsd.org References: <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <1105704398.41e7b5ce7dc5e@buexe.b-5.de> <20050114144353.1aad2014@apircalabu.dsd.ro> <20050114133050.GN69532@voodoo.oberon.net> <20050114155745.179a1bfe@apircalabu.dsd.ro> <41E7D10A.8070308@FreeBSD.org> <20050114162405.2777fa0a@apircalabu.dsd.ro> <20050114142756.GA58907@xor.obsecurity.org> In-Reply-To: <20050114142756.GA58907@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit User-Agent: Internet Messaging Program (IMP) 3.2.2 Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 14:39:21 -0000 Quoting Kris Kennaway : > The main case you need to worry about is when someone (e.g. package > cluster) does 'make install deinstall'. It's OK, but not ideal, for > the package to leave behind some runtime-created files when the > software has been used or configured by the user. You should then add > a pkg-deinstall message warning about where the leftover files live, > if they exist, so the administrator can choose to delete them by hand. Hmm. What about an environment variable DELETE_PORT_COMPLETELY that let's you test the port knows which files etc it normally leaves behind and shows that by rm'ing them? This way a port can leave things behind but still pass the deinstall test. Of course I'd still prefer a way to specify config files/dirs. But to delete them, the package management system still needs a way to distingiush an upgrade delete from a complete delete. Lupe Christoph -- | lupe@lupe-christoph.de | http://www.lupe-christoph.de/ | | "... putting a mail server on the Internet without filtering is like | | covering yourself with barbecue sauce and breaking into the Charity | | Home for Badgers with Rabies. Michael Lucas | From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 14:48:43 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3CF616A4CE; Fri, 14 Jan 2005 14:48:43 +0000 (GMT) Received: from www.portaone.com (support.portaone.com [195.70.151.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 328BF43D1F; Fri, 14 Jan 2005 14:48:43 +0000 (GMT) (envelope-from sobomax@portaone.com) Received: from [192.168.0.222] (portacare.portaone.com [195.140.247.242]) (authenticated bits=0) by www.portaone.com (8.12.11/8.12.11) with ESMTP id j0EEmAY4099920 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 14 Jan 2005 15:48:14 +0100 (CET) (envelope-from sobomax@portaone.com) Message-ID: <41E7DBA4.3010407@portaone.com> Date: Fri, 14 Jan 2005 16:48:04 +0200 From: Maxim Sobolev Organization: Porta Software Ltd User-Agent: Mozilla Thunderbird 1.0 (Windows/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alex Dupre , ports@FreeBSD.org References: <41E7AF5A.3020603@portaone.com> <20050114120042.GE1175@k7.mavetju> <41E7B78B.9020709@portaone.com> <41E7CBBA.3040408@FreeBSD.org> In-Reply-To: <41E7CBBA.3040408@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV 0.80/589/Wed Nov 17 13:38:41 2004 clamav-milter version 0.80j on www.portaone.com X-Virus-Status: Clean Subject: Re: PHP ports/packages framework is seriously flawed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 14:48:43 -0000 Alex Dupre wrote: > Maxim Sobolev wrote: > >> Thanks, though I figured it out already. The question boilds down to >> the following: why there is www/mod_php4? > > > Because many people don't want the CLI version of PHP. Please read my original message. This non-CLI version is seriously flawed and mostly useless, since almost any practical PHP project will use one or another "standard" PHP extension, while www/mod_php compiles with all extensions disabled and doesn't allow one to install any of them separately. -Maxim From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 14:50:22 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D473E16A4CE for ; Fri, 14 Jan 2005 14:50:22 +0000 (GMT) Received: from com-and.com (relay.andxor.it [195.223.2.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 2DB0543D4C for ; Fri, 14 Jan 2005 14:50:18 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: (qmail 38158 invoked from network); 14 Jan 2005 14:50:15 -0000 Received: from unknown (HELO ?192.168.2.5?) (192.168.2.5) by com-and.com with SMTP; 14 Jan 2005 14:50:15 -0000 Message-ID: <41E7DC26.6040305@FreeBSD.org> Date: Fri, 14 Jan 2005 15:50:14 +0100 From: Alex Dupre User-Agent: Mozilla Thunderbird 1.0 (X11/20041229) X-Accept-Language: en-us, en MIME-Version: 1.0 To: =?ISO-8859-1?Q?Val=E9ry?= References: <41E7AF5A.3020603@portaone.com> <41E7D58B.8020905@vslash.com> In-Reply-To: <41E7D58B.8020905@vslash.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit cc: ports@freebsd.org cc: Maxim Sobolev Subject: Re: PHP ports/packages framework is seriously flawed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 14:50:22 -0000 Valéry wrote: > i'm not from FreeBSD, but if i can advise you : > php is *very scalable*, and before having all > options you want, you must build it 5 or 6 times. > I'm using 4.3.4 Then, build it another time, 4.3.4 has a lot of serious bugs. FYI, you can install new extensions without rebuild php, using the ports. > and it was compiled not from > the BSD ports, but from the php.net sources. > The 1st reason is that - i think - a port cannot show > you every configuration you want, specially with > php ; there's a lot of '3rd part software' with > php. Ever tried lang/php4-extensions? > The second one is that compiling php in > this way is not difficult, php is well done, > and well documented, and you'll get > exactly what you expect from php (eg GD, XML, > XSL, CLI or CGI, ...). Same with ports, without messing the filesystem. > More, you can patch your php without waiting > a new port, and this is important for security. Sure, this is the reason you have 4.3.4 version and the port is at 4.3.10, right? :-) -- Alex Dupre From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 14:54:37 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DDC416A4CE; Fri, 14 Jan 2005 14:54:37 +0000 (GMT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1022F43D2D; Fri, 14 Jan 2005 14:54:37 +0000 (GMT) (envelope-from fbsd-ports@trini0.org) Received: from hivemind.trini0.org (trini0.org[65.34.205.195]) by comcast.net (sccrmhc11) with ESMTP id <20050114145436011000numne>; Fri, 14 Jan 2005 14:54:36 +0000 Received: from [192.168.0.16] (gladiator.trini0.org [192.168.0.16]) by hivemind.trini0.org (Postfix) with ESMTP id DBCE460C6; Fri, 14 Jan 2005 09:54:35 -0500 (EST) Message-ID: <41E7DD2F.9070606@trini0.org> Date: Fri, 14 Jan 2005 09:54:39 -0500 From: Gerard Samuel User-Agent: Mozilla Thunderbird 1.0 (X11/20050105) X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: kde@freebsd.org Subject: Quanta/kdewebdev slow starting??? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 14:54:37 -0000 Im currently using (lets call it quanta for now) FreeBSD 5.3, quanta 3.3.2/kde 3.3.2 installed from the ports (actually upgraded via portupgrade) about 2 weeks ago. Everytime I start quanta, the program loads, then it has to sit there, for about 30 seconds before anything can be clicked/used. For example, I cannot open anything, look at the menus, or enter data in the editor until after approx 30 second sleep. Im double checking with the list here to see if anyone else has been experiencing this. I briefly looked at quanta's mailing list archive to last October, but didn't find anything similar to what Im experiencing. Thanks for your time From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 14:57:16 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B176916A4CE for ; Fri, 14 Jan 2005 14:57:16 +0000 (GMT) Received: from com-and.com (relay.andxor.it [195.223.2.3]) by mx1.FreeBSD.org (Postfix) with SMTP id 11BFE43D1D for ; Fri, 14 Jan 2005 14:57:14 +0000 (GMT) (envelope-from ale@FreeBSD.org) Received: (qmail 38302 invoked from network); 14 Jan 2005 14:57:11 -0000 Received: from unknown (HELO ?192.168.2.5?) (192.168.2.5) by com-and.com with SMTP; 14 Jan 2005 14:57:11 -0000 Message-ID: <41E7DDC7.8020808@FreeBSD.org> Date: Fri, 14 Jan 2005 15:57:11 +0100 From: Alex Dupre User-Agent: Mozilla Thunderbird 1.0 (X11/20041229) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Maxim Sobolev References: <41E7AF5A.3020603@portaone.com> <20050114120042.GE1175@k7.mavetju> <41E7B78B.9020709@portaone.com> <41E7CBBA.3040408@FreeBSD.org> <41E7DBA4.3010407@portaone.com> In-Reply-To: <41E7DBA4.3010407@portaone.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: Re: PHP ports/packages framework is seriously flawed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 14:57:16 -0000 Maxim Sobolev wrote: > Please read my original message. I've read it. > This non-CLI version is seriously > flawed and mostly useless, since almost any practical PHP project will > use one or another "standard" PHP extension, while www/mod_php compiles > with all extensions disabled and doesn't allow one to install any of > them separately. Who said it? You can use php extensions with *ALL* php ports and sapis. -- Alex Dupre From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 15:47:14 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9079D16A4CE for ; Fri, 14 Jan 2005 15:47:14 +0000 (GMT) Received: from triangle.rtp.FreeBSD.Org (triangle.rtp.FreeBSD.org [192.58.184.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F1E743D39 for ; Fri, 14 Jan 2005 15:47:14 +0000 (GMT) (envelope-from kris@8ball.rtp.freebsd.org) Received: from 8ball.rtp.freebsd.org (8ball.rtp.FreeBSD.Org [172.21.1.5]) j0EFlDT8089421 for ; Fri, 14 Jan 2005 10:47:13 -0500 (EST) (envelope-from kris@8ball.rtp.freebsd.org) Received: (from kris@localhost) by 8ball.rtp.freebsd.org (8.12.9/8.12.9/Submit) id j0EFlDjT038552 for ports@FreeBSD.org; Fri, 14 Jan 2005 10:47:13 -0500 (EST) (envelope-from kris) Date: Fri, 14 Jan 2005 10:47:13 -0500 (EST) From: Kris Kennaway Message-Id: <200501141547.j0EFlDjT038552@8ball.rtp.freebsd.org> To: ports@FreeBSD.org Subject: INDEX now builds successfully on 4.x X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 15:47:14 -0000 From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 16:11:07 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E64E916A4CE for ; Fri, 14 Jan 2005 16:11:07 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1F4D43D2D for ; Fri, 14 Jan 2005 16:11:07 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7AB1C5180A; Fri, 14 Jan 2005 08:11:06 -0800 (PST) Date: Fri, 14 Jan 2005 08:11:06 -0800 From: Kris Kennaway To: freebsd-ports Message-ID: <20050114161106.GB58907@xor.obsecurity.org> References: <2578F22C7A5515449899AF290E2D4832202B@lotus.ad.socruel.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LyciRD1jyfeSSjG0" Content-Disposition: inline In-Reply-To: <2578F22C7A5515449899AF290E2D4832202B@lotus.ad.socruel.org> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org Subject: Re: Question about 'option screens' X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 16:11:08 -0000 --LyciRD1jyfeSSjG0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 14, 2005 at 02:43:26PM +0100, freebsd-ports wrote: > Hello, >=20 > I can't seem to find out were chosen options of an option screen of a > port are stored. /var/db/ports > The following is happening on a FreeBSD 4.10-RELEASE-p4 system : I > started the installation of the nagios-plugins port and got the option > screen. I choose the net-snmp option and continued with OK. But then I > realized that I don't want the net-snmp option, because it means that > net-snmp is installed which I don't want so I stopped the nagios-plugin > port installation by pressing CTL-c. I then did a 'make clean'. The I > started the nagios-plugin installation again (make; make install), but > this time I didn't get the option screen! It automatically choose the > previous choosen option. See ports(7) for make targets related to options. Kris --LyciRD1jyfeSSjG0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB5+8ZWry0BWjoQKURAsj8AKCOQ7VQacbcOAiypVMZPHmS/JfVMACgp+D6 zQEKM90bLtcxIYOm0gTqgOU= =M4Ni -----END PGP SIGNATURE----- --LyciRD1jyfeSSjG0-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 16:15:57 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1239516A4CE for ; Fri, 14 Jan 2005 16:15:57 +0000 (GMT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 784D343D41 for ; Fri, 14 Jan 2005 16:15:56 +0000 (GMT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([24.20.127.157]) by comcast.net (sccrmhc11) with ESMTP id <20050114161555011000d1i5e>; Fri, 14 Jan 2005 16:15:56 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id E3FA0181A5; Fri, 14 Jan 2005 08:15:54 -0800 (PST) Date: Fri, 14 Jan 2005 08:15:54 -0800 From: Clint Olsen To: vivek@khera.org Message-ID: <20050114161554.GA30945@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! cc: ports@freebsd.org Subject: Postfix: Mysterious undelivered message to root X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 16:15:57 -0000 Ever since I've enabled the Postfix port on FreeBSD 5.X, I've had this annoying message that keeps being sent. I don't know what process that's running keeps generating it. It's possible I have Postfix somehow misconfigured since I've been carrying around the same configuration file for a number of Postfix releases. Thanks, -Clint Return-Path: <> X-Original-To: root@0lsen.net Delivered-To: root@0lsen.net Received: by 0lsen.net (Postfix) id 92B1817AD8; Tue, 4 Jan 2005 03:01:00 -0800 (PST) Date: Tue, 4 Jan 2005 03:01:00 -0800 (PST) From: MAILER-DAEMON@0lsen.net (Mail Delivery System) Subject: Undelivered Mail Returned to Sender To: root@0lsen.net MIME-Version: 1.0 Content-Type: multipart/report; report-type=delivery-status; boundary="7E9C417AD5.1104836460/0lsen.net" Message-Id: <20050104110100.92B1817AD8@0lsen.net> [-- Attachment #1: Notification --] [-- Type: text/plain, Encoding: 7bit, Size: 0.4K --] Content-Description: Notification Content-Type: text/plain This is the Postfix program at host 0lsen.net. I'm sorry to have to inform you that your message could not be be delivered to one or more recipients. It's attached below. For further assistance, please send mail to If you do so, please include this problem report. You can delete your own text from the attached returned message. The Postfix program : No recipients specified [-- Attachment #2: Delivery report --] [-- Type: message/delivery-status, Encoding: 7bit, Size: 0.3K --] Content-Description: Delivery report Content-Type: message/delivery-status Reporting-MTA: dns; 0lsen.net X-Postfix-Queue-ID: 7E9C417AD5 X-Postfix-Sender: rfc822; root@0lsen.net Arrival-Date: Tue, 4 Jan 2005 03:01:00 -0800 (PST) Final-Recipient: rfc822; unknown Action: failed Status: 5.0.0 Diagnostic-Code: X-Postfix; No recipients specified [-- Attachment #3: Undelivered Message --] [-- Type: message/rfc822, Encoding: 7bit, Size: 0.3K --] Content-Description: Undelivered Message Content-Type: message/rfc822 Received: by 0lsen.net (Postfix, from userid 0) id 7E9C417AD5; Tue, 4 Jan 2005 03:01:00 -0800 (PST) Message-Id: <20050104110100.7E9C417AD5@0lsen.net> Date: Tue, 4 Jan 2005 03:01:00 -0800 (PST) From: root@0lsen.net (Charlie Root) To: undisclosed-recipients:; From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 16:31:49 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A377816A4CE for ; Fri, 14 Jan 2005 16:31:49 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5965043D5C for ; Fri, 14 Jan 2005 16:31:49 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id AE382513CE; Fri, 14 Jan 2005 08:31:47 -0800 (PST) Date: Fri, 14 Jan 2005 08:31:47 -0800 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20050114163147.GA90668@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline User-Agent: Mutt/1.4.2.1i Subject: i386 5.x packages pass 11000 mark X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 16:31:49 -0000 --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable The latest i386 build for FreeBSD 5.x built 11016 packages (12213 ports in the collection, 779 ports IGNORED/BROKEN/FORBIDDEN on 5.x, affecting a total of 1071 ports, with the remainder broken or prevented by a broken port but not yet annotated in the makefile). This is the first build to have surpassed 11000 (4.x is at 10849 and was overtaken by 5.x some time ago, probably largely because of the perl ports that are not buildable with the 4.x system perl). For comparison, the other 5.x arches built:=20 amd64: 9841 sparc64: 9601 ia64: 8996 Kris --6TrnltStXW4iwmi0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB5/PyWry0BWjoQKURAkwPAKD7tX94dORYIt94OGbMD53tHT8rUgCfadLt gVFXT9bLt+UphuZgP/ofu/o= =5MFv -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 16:39:33 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 168FE16A4CE for ; Fri, 14 Jan 2005 16:39:33 +0000 (GMT) Received: from mail.freebsd.org.cn (dns3.freebsd.org.cn [61.129.66.75]) by mx1.FreeBSD.org (Postfix) with SMTP id CA36643D1D for ; Fri, 14 Jan 2005 16:39:25 +0000 (GMT) (envelope-from delphij@frontfree.net) Received: (qmail 25942 invoked by uid 0); 14 Jan 2005 16:31:45 -0000 Received: from unknown (HELO beastie.frontfree.net) (219.239.99.7) by mail.freebsd.org.cn with SMTP; 14 Jan 2005 16:31:45 -0000 Received: from localhost (localhost.frontfree.net [127.0.0.1]) by beastie.frontfree.net (Postfix) with ESMTP id 99BE11312D9; Sat, 15 Jan 2005 00:39:13 +0800 (CST) Received: from beastie.frontfree.net ([127.0.0.1]) by localhost (beastie.frontfree.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 18681-10; Sat, 15 Jan 2005 00:38:54 +0800 (CST) Received: by beastie.frontfree.net (Postfix, from userid 1001) id 953C81311C9; Sat, 15 Jan 2005 00:38:53 +0800 (CST) Date: Sat, 15 Jan 2005 00:38:53 +0800 From: Xin LI To: Kris Kennaway Message-ID: <20050114163853.GA19142@frontfree.net> References: <20050114163147.GA90668@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="1yeeQ81UyVL57Vl7" Content-Disposition: inline In-Reply-To: <20050114163147.GA90668@xor.obsecurity.org> User-Agent: Mutt/1.4.2.1i X-GPG-key-ID/Fingerprint: 0xCAEEB8C0 / 43B8 B703 B8DD 0231 B333 DC28 39FB 93A0 CAEE B8C0 X-GPG-Public-Key: http://www.delphij.net/delphij.asc X-Operating-System: FreeBSD beastie.frontfree.net 5.3-RELEASE-p2 FreeBSD 5.3-RELEASE-p2 #15: Wed Dec 15 10:43:16 CST 2004 delphij@beastie.frontfree.net:/usr/obj/usr/src/sys/BEASTIE i386 X-URL: http://www.delphij.net X-By: delphij@beastie.frontfree.net X-Location: Beijing, China X-Virus-Scanned: by amavisd-new at frontfree.net cc: ports@FreeBSD.org Subject: Re: i386 5.x packages pass 11000 mark X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 16:39:33 -0000 --1yeeQ81UyVL57Vl7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 14, 2005 at 08:31:47AM -0800, Kris Kennaway wrote: > The latest i386 build for FreeBSD 5.x built 11016 packages (12213 > ports in the collection, 779 ports IGNORED/BROKEN/FORBIDDEN on 5.x, > affecting a total of 1071 ports, with the remainder broken or > prevented by a broken port but not yet annotated in the makefile). >=20 > This is the first build to have surpassed 11000 (4.x is at 10849 and > was overtaken by 5.x some time ago, probably largely because of the > perl ports that are not buildable with the 4.x system perl). >=20 > For comparison, the other 5.x arches built:=20 >=20 > amd64: 9841 > sparc64: 9601 > ia64: 8996 Yay!! Thanks to all contributors (especially the Ports Fury ;-), committes and portmgr@ that made this happen. Cheers, --=20 Xin LI http://www.delphij.net/ See complete headers for GPG key and other information. --1yeeQ81UyVL57Vl7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB5/Wd/cVsHxFZiIoRApIfAKCO1TyA3Z6xQE/KlFFVzhQ3Go562gCbB7CT sH8/4iH7DnW++9uI+ZDQ6MU= =Utw1 -----END PGP SIGNATURE----- --1yeeQ81UyVL57Vl7-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 17:05:21 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E1DE16A4CE for ; Fri, 14 Jan 2005 17:05:21 +0000 (GMT) Received: from mci-mail.nodes.net.ad-flow.com (mci-mail.nodes.net.ad-flow.com [66.48.68.70]) by mx1.FreeBSD.org (Postfix) with ESMTP id B45FE43D31 for ; Fri, 14 Jan 2005 17:05:18 +0000 (GMT) (envelope-from freebsd@danielquinn.org) Received: from douglas ([66.59.162.146]) (authenticated)j0EH5D303508 for ; Fri, 14 Jan 2005 17:05:14 GMT Exocomm-Delivery-Date: Fri, 14 Jan 2005 17:05:14 GMT Exocomm-URL: www.exocomm.com From: daniel quinn To: freebsd-ports@freebsd.org Date: Fri, 14 Jan 2005 12:03:47 -0500 User-Agent: KMail/1.7.2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501141203.47536.freebsd@danielquinn.org> Subject: can't build gettext package X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 17:05:21 -0000 i've managed to build packages for everything else on the system, and gettext seems to compile and install just fine, but for some reason, building the package fails: ===> Building package for gettext-0.14.1 Creating package /usr/ports/packages/All/gettext-0.14.1.tbz Registering depends: libiconv-1.9.2_1. Creating bzip'd tar ball in '/usr/ports/packages/All/gettext-0.14.1.tbz' tar: include/autosprintf.h: Could not stat: No such file or directory tar: lib/libasprintf.a: Could not stat: No such file or directory tar: lib/libasprintf.so: Could not stat: No such file or directory tar: lib/libasprintf.so.0: Could not stat: No such file or directory tar: share/doc/libasprintf/autosprintf.html: Could not stat: No such file or directory pkg_create: make_dist: tar command failed with code 256 *** Error code 1 now i understand what the error means, what i don't understand is why the error exists in the first place. if these files aren't created with the initial make, why is the packager trying to include them? and how do i fix this? -- "the nationalist not only does not dissaprove of atrocities committed by his own side, he has a remarkable capacity for not even hearing about them." - george orwell From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 17:24:16 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2442A16A4CE for ; Fri, 14 Jan 2005 17:24:16 +0000 (GMT) Received: from s01060050fc24de67.cg.shawcable.net (S01060050fc24de67.cg.shawcable.net [68.144.193.12]) by mx1.FreeBSD.org (Postfix) with SMTP id 923C343D49 for ; Fri, 14 Jan 2005 17:24:15 +0000 (GMT) (envelope-from admin@bsdhelp.net) Received: (qmail 81521 invoked by uid 89); 14 Jan 2005 17:00:49 -0000 Received: from unknown (HELO jomoms) (192.168.0.9) by s01060050fc24de67.cg.shawcable.net with SMTP; 14 Jan 2005 17:00:49 -0000 From: "Joe St.Louis" To: "'Brian Bailey'" Date: Fri, 14 Jan 2005 10:26:01 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft Office Outlook, Build 11.0.6353 In-Reply-To: <41E73D8A.1090401@vonostingroup.com> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.2180 Thread-Index: AcT55oTbnivjNBg9RLGWMDrsN9qtkQAd4/2A Message-Id: <20050114172415.923C343D49@mx1.FreeBSD.org> cc: 'Brian Szymanski' cc: 'freebsd-ports' Subject: RE: mysql41-server/mysql40-server not starting? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 17:24:16 -0000 I would have to concur with frank. Make sure that you have the following line added to your /etc/rc.conf file mysql_enable = "YES" also make sure that if you are attempting to start it manually though the rc.d, then just double check that you are indeed SU. Otherwise just reboot. If you still don't get it to start, please send us the appropriate lines of /var/log/messages Regards Joe -----Original Message----- From: owner-freebsd-ports@freebsd.org [mailto:owner-freebsd-ports@freebsd.org] On Behalf Of Frank J. Laszlo Sent: Thursday, January 13, 2005 8:34 PM To: Brian Bailey Cc: freebsd-ports; Brian Szymanski Subject: Re: mysql41-server/mysql40-server not starting? Did you add the rcvar to your rc.conf? -Frank Brian Bailey wrote: >Quoting Brian Szymanski : > > > >>Hi. >> >>I'm having trouble installing mysql4?-server on my 5.3 box. >> >>I've tried both 4.0 and 4.1, same results. >> >> >Your error file should be /var/db/mysql/ozelmo.wuhjuhbuh.afraid.org.err >Probable cause is bad permissions on the database. >If you are still having problems, try running mysql(not mysql_safe) -T. > >I've had problems similar to this, although mine was from trying to start >defective using defective databases. If I remember right running mysql was how >I found the problem. > > > >>The port compiles and installs fine, but then I cannot start mysql: >># /usr/local/etc/rc.d/mysql-server.sh start >># ps auxww | grep sql >>root 39450 0.0 0.2 1556 812 p2 S+ 9:16PM 0:00.00 grep >>sql >> >>Where'd it go? Let's try invoking mysqld_safe by hand: >># mysqld_safe >>Starting mysqld daemon with databases from /var/db/mysql >>STOPPING server from pid file /var/db/mysql/ozelmo.wuhjuhbuh.afraid.org.pid >>050113 21:16:51 mysqld ended >> >>Not sure where to look for logs indicating the problem and the mysql.com >>doc pages have nothing relevant. Man page doesn't have anything about a >>invoking the daemon in the foreground or with different verbosity options. >> >>Erm. Anyone seen this before? Help? >> >>Thanks, >>Brian Szymanski >>ski@indymedia.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" >> >> >> > > > > >_______________________________________________ >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" > > _______________________________________________ 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 Jan 14 18:43:26 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B226B16A4CE for ; Fri, 14 Jan 2005 18:43:26 +0000 (GMT) Received: from yertle.kcilink.com (yertle.kcilink.com [65.205.34.180]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2708243D58 for ; Fri, 14 Jan 2005 18:43:24 +0000 (GMT) (envelope-from vivek@khera.org) Received: from [192.168.7.103] (host-103.int.kcilink.com [192.168.7.103]) by yertle.kcilink.com (Postfix) with ESMTP id 61C97B878; Fri, 14 Jan 2005 13:43:23 -0500 (EST) In-Reply-To: <20050114161554.GA30945@0lsen.net> References: <20050114161554.GA30945@0lsen.net> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: multipart/signed; micalg=sha1; boundary=Apple-Mail-3-719469511; protocol="application/pkcs7-signature" Message-Id: <2C16A324-665C-11D9-A52E-000A9578CFCC@khera.org> From: Vivek Khera Date: Fri, 14 Jan 2005 13:43:24 -0500 To: Clint Olsen X-Mailer: Apple Mail (2.619) X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: ports@freebsd.org Subject: Re: Postfix: Mysterious undelivered message to root X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 18:43:26 -0000 --Apple-Mail-3-719469511 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset=US-ASCII; format=flowed did you activate postfix in your /etc/mail/mailer.conf file? perhaps something is improperly submitting email. a likely candidate is your nightly system admin script. On Jan 14, 2005, at 11:15 AM, Clint Olsen wrote: > Ever since I've enabled the Postfix port on FreeBSD 5.X, I've had this > annoying message that keeps being sent. I don't know what process > that's > running keeps generating it. It's possible I have Postfix somehow > misconfigured since I've been carrying around the same configuration > file > for a number of Postfix releases. > > Thanks, > > -Clint > > Return-Path: <> > X-Original-To: root@0lsen.net > Delivered-To: root@0lsen.net > Received: by 0lsen.net (Postfix) > id 92B1817AD8; Tue, 4 Jan 2005 03:01:00 -0800 (PST) > Date: Tue, 4 Jan 2005 03:01:00 -0800 (PST) > From: MAILER-DAEMON@0lsen.net (Mail Delivery System) > Subject: Undelivered Mail Returned to Sender > To: root@0lsen.net > MIME-Version: 1.0 > Content-Type: multipart/report; report-type=delivery-status; > boundary="7E9C417AD5.1104836460/0lsen.net" > Message-Id: <20050104110100.92B1817AD8@0lsen.net> > > [-- Attachment #1: Notification --] > [-- Type: text/plain, Encoding: 7bit, Size: 0.4K --] > Content-Description: Notification > Content-Type: text/plain > > This is the Postfix program at host 0lsen.net. > > I'm sorry to have to inform you that your message could not be > be delivered to one or more recipients. It's attached below. > > For further assistance, please send mail to > > If you do so, please include this problem report. You can > delete your own text from the attached returned message. > > The Postfix program > > : No recipients specified > > [-- Attachment #2: Delivery report --] > [-- Type: message/delivery-status, Encoding: 7bit, Size: 0.3K --] > Content-Description: Delivery report > Content-Type: message/delivery-status > > Reporting-MTA: dns; 0lsen.net > X-Postfix-Queue-ID: 7E9C417AD5 > X-Postfix-Sender: rfc822; root@0lsen.net > Arrival-Date: Tue, 4 Jan 2005 03:01:00 -0800 (PST) > > Final-Recipient: rfc822; unknown > Action: failed > Status: 5.0.0 > Diagnostic-Code: X-Postfix; No recipients specified > > [-- Attachment #3: Undelivered Message --] > [-- Type: message/rfc822, Encoding: 7bit, Size: 0.3K --] > Content-Description: Undelivered Message > Content-Type: message/rfc822 > > Received: by 0lsen.net (Postfix, from userid 0) > id 7E9C417AD5; Tue, 4 Jan 2005 03:01:00 -0800 (PST) > Message-Id: <20050104110100.7E9C417AD5@0lsen.net> > Date: Tue, 4 Jan 2005 03:01:00 -0800 (PST) > From: root@0lsen.net (Charlie Root) > To: undisclosed-recipients:; > > Vivek Khera, Ph.D. +1-301-869-4449 x806 --Apple-Mail-3-719469511-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 18:48:45 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9287B16A4CE for ; Fri, 14 Jan 2005 18:48:45 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E61B43D1D for ; Fri, 14 Jan 2005 18:48:44 +0000 (GMT) (envelope-from clint@0lsen.net) Received: from 0lsen.net ([24.20.127.157]) by comcast.net (sccrmhc13) with ESMTP id <20050114184839016006qmlee>; Fri, 14 Jan 2005 18:48:44 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id 762D417180; Fri, 14 Jan 2005 10:48:39 -0800 (PST) Date: Fri, 14 Jan 2005 10:48:39 -0800 From: Clint Olsen To: Vivek Khera Message-ID: <20050114184839.GC31139@0lsen.net> References: <20050114161554.GA30945@0lsen.net> <2C16A324-665C-11D9-A52E-000A9578CFCC@khera.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2C16A324-665C-11D9-A52E-000A9578CFCC@khera.org> User-Agent: Mutt/1.4.2.1i Organization: NULlsen Network X-Disclaimer: Mutt Bites! cc: ports@freebsd.org Subject: Re: Postfix: Mysterious undelivered message to root X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 18:48:45 -0000 On Jan 14, Vivek Khera wrote: > did you activate postfix in your /etc/mail/mailer.conf file? perhaps > something is improperly submitting email. a likely candidate is your > nightly system admin script. Yes, my mailer.conf file looks like: # $FreeBSD: src/etc/mail/mailer.conf,v 1.3 2002/04/05 04:25:12 gshapiro Exp $ # # Execute the Postfix sendmail program, named /usr/local/sbin/sendmail # sendmail /usr/local/sbin/sendmail send-mail /usr/local/sbin/sendmail mailq /usr/local/sbin/sendmail newaliases /usr/local/sbin/sendmail hoststat /usr/local/sbin/sendmail purgestat /usr/local/sbin/sendmail It's definitely something like an admin thing as you described. I get it at right around 3am every day. I do have two cron jobs running that cvsups ports and releases at 2 and 2:30am but I'm getting normal output from those jobs submissions as it is. -Clint From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 19:29:48 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E87F316A4CE for ; Fri, 14 Jan 2005 19:29:48 +0000 (GMT) Received: from lambermont.dyndns.org (j226018.upc-j.chello.nl [24.132.226.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8866043D49 for ; Fri, 14 Jan 2005 19:29:48 +0000 (GMT) (envelope-from hans@lambermont.dyndns.org) Received: by lambermont.dyndns.org (Postfix, from userid 1001) id 17F1E95867; Fri, 14 Jan 2005 20:29:47 +0100 (CET) Date: Fri, 14 Jan 2005 20:29:47 +0100 To: Clint Olsen Message-ID: <20050114192947.GO80381@leia.lambermont.dyndns.org> References: <20050114161554.GA30945@0lsen.net> <2C16A324-665C-11D9-A52E-000A9578CFCC@khera.org> <20050114184839.GC31139@0lsen.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050114184839.GC31139@0lsen.net> User-Agent: Mutt/1.4.2.1i From: hans@lambermont.dyndns.org (Hans Lambermont) cc: ports@freebsd.org cc: Vivek Khera Subject: Re: Postfix: Mysterious undelivered message to root X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 19:29:49 -0000 Clint Olsen wrote: > On Jan 14, Vivek Khera wrote: >> did you activate postfix in your /etc/mail/mailer.conf file? > > Yes, my mailer.conf file looks like: > sendmail /usr/local/sbin/sendmail > send-mail /usr/local/sbin/sendmail > mailq /usr/local/sbin/sendmail > newaliases /usr/local/sbin/sendmail > hoststat /usr/local/sbin/sendmail > purgestat /usr/local/sbin/sendmail > >> perhaps >> something is improperly submitting email. a likely candidate is your >> nightly system admin script. > > It's definitely something like an admin thing as you described. I get it > at right around 3am every day. I do have two cron jobs running that cvsups > ports and releases at 2 and 2:30am but I'm getting normal output from those > jobs submissions as it is. I think one of these in /etc/periodic.conf fixes your problem : daily_status_include_submit_mailq="NO" daily_status_mail_rejects_enable="NO" daily_submit_queuerun="NO" (I also have these related ones in there: daily_clean_hoststat_enable="NO" daily_status_mailq_enable="YES" daily_queuerun_enable="YES" ) Succes, Hans Lambermont -- http://hans.dse.nl/ () ASCII-ribbon campaign against vCards, /\ HTML-mail and proprietary formats. From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 19:33:42 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 391F416A4CE for ; Fri, 14 Jan 2005 19:33:42 +0000 (GMT) Received: from mailgw-20.stcloudstate.edu (exchange8.stcloudstate.edu [199.17.25.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id C723443D49 for ; Fri, 14 Jan 2005 19:33:41 +0000 (GMT) (envelope-from bepratt@stcloudstate.edu) Received: from exchange2.campus.stcloudstate.edu [199.17.25.200] by mailgw-20.stcloudstate.edu with XWall v3.31b ; Fri, 14 Jan 2005 13:33:40 -0600 X-MimeOLE: Produced By Microsoft Exchange V6.5.7226.0 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Fri, 14 Jan 2005 13:33:39 -0600 Message-ID: <22ECDF671FCD564398087D64CFCF46BD056E0C5F@EXCHANGE.campus.stcloudstate.edu> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: ns & tclcl on FreeBSD 5.3 Thread-Index: AcT6b/L6si3CZEMWQfOkyW5Ved2yAQ== From: "Pratt, Benjamin E." To: Subject: ns & tclcl on FreeBSD 5.3 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 19:33:42 -0000 Hello, I recently heard about the port net/ns so I thought I'd give it a try. Unfortunately when I tried installing it I found that one of it's dependencies is broken, devel/tclcl. The error message that I get when trying to install tclcl is "=3D=3D=3D> tclcl-1.15 is marked as broken: = Does not compile on FreeBSD >=3D 5.x." However when I search http://www.freebsd.org/ports/ and restrict the search to ports that are for 5-STABLE/i386 I am able to find tclcl-1.15, the broken port. I recently got an announcement listing the ports that are scheduled for removal and neither ns or tclcl were on that list. Does that mean that tclcl is being fixed?? If it is being fixed is there an estimated date at which we will be able to install tclcl and therefore install ns?? Thank you for any information, Ben From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 19:37:54 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE2F416A4CE; Fri, 14 Jan 2005 19:37:54 +0000 (GMT) Received: from mail.vslash.com (gambetta-2-82-67-185-6.fbx.proxad.net [82.67.185.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0FC543D2D; Fri, 14 Jan 2005 19:37:53 +0000 (GMT) (envelope-from valery@vslash.com) Received: from [192.168.0.22] (oxe [192.168.0.22]) by mail.vslash.com (Postfix) with ESMTP id 36E141DA00; Fri, 14 Jan 2005 20:41:31 +0100 (CET) Message-ID: <41E81F7F.8020908@vslash.com> Date: Fri, 14 Jan 2005 20:37:35 +0100 From: =?ISO-8859-1?Q?Val=E9ry?= User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040616 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alex Dupre References: <41E7AF5A.3020603@portaone.com> <41E7D58B.8020905@vslash.com> <41E7DC26.6040305@FreeBSD.org> In-Reply-To: <41E7DC26.6040305@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit cc: ports@freebsd.org Subject: Re: PHP ports/packages framework is seriously flawed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 19:37:54 -0000 Sorry it was just some advice of a poor lonesome com-boy, many thanks for yours, i add them to my "Good things to do in 2005" :o) v/ Alex Dupre wrote: > Valéry wrote: > >> i'm not from FreeBSD, but if i can advise you : >> php is *very scalable*, and before having all >> options you want, you must build it 5 or 6 times. >> I'm using 4.3.4 > > > Then, build it another time, 4.3.4 has a lot of serious bugs. > FYI, you can install new extensions without rebuild php, using the ports. > >> and it was compiled not from >> the BSD ports, but from the php.net sources. >> The 1st reason is that - i think - a port cannot show >> you every configuration you want, specially with >> php ; there's a lot of '3rd part software' with >> php. > > > Ever tried lang/php4-extensions? > >> The second one is that compiling php in >> this way is not difficult, php is well done, >> and well documented, and you'll get >> exactly what you expect from php (eg GD, XML, >> XSL, CLI or CGI, ...). > > > Same with ports, without messing the filesystem. > >> More, you can patch your php without waiting >> a new port, and this is important for security. > > > Sure, this is the reason you have 4.3.4 version and the port is at > 4.3.10, right? :-) > > -- > Alex Dupre > _______________________________________________ > 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 Jan 14 19:51:13 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0FA7416A4CE for ; Fri, 14 Jan 2005 19:51:13 +0000 (GMT) Received: from connectmail.carleton.ca (connectmail.carleton.ca [134.117.2.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3DF743D41 for ; Fri, 14 Jan 2005 19:51:12 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from [192.168.1.105] ([134.117.145.25]) by connectmail.carleton.ca (iPlanet Messaging Server 5.2 HotFix 2.02 (built Oct 21 2004)) with ESMTPSA id <0IAB00141OHC0A@connectmail.carleton.ca> for ports@FreeBSD.org; Fri, 14 Jan 2005 14:51:12 -0500 (EST) Date: Fri, 14 Jan 2005 14:53:38 -0500 From: Adam Weinberger To: ports@FreeBSD.org Message-id: <41E82342.9000000@FreeBSD.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla Thunderbird 1.0 (X11/20050105) Subject: IMPORTANT: warning to all libgnomesu users X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 19:51:13 -0000 If you installed yesterdays's libgnomesu (13 January 2005), this is VERY important. You must remove the installed /etc/pam.d/gnomesu-pam or replace it with the new one from the port. Failure to do so on a 4.x box will completely lock out all users. Remove /etc/pam.d/gnomesu-pam manually, cvsup your ports tree, and upgrade libgnomesu. You may then copy the appropriate gnomesu-pam sample configuration file into /etc/pam.d/gnomesu-pam, or skip that step if you prefer to use su(1). # Adam -- Adam Weinberger adamw@magnesium.net || adamw@FreeBSD.org adamw@vectors.cx || adamw@gnome.org http://www.vectors.cx From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 19:58:35 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D889116A4CE; Fri, 14 Jan 2005 19:58:35 +0000 (GMT) Received: from connectmail.carleton.ca (connectmail.carleton.ca [134.117.2.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAFEC43D39; Fri, 14 Jan 2005 19:58:35 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from [192.168.1.105] ([134.117.145.25]) by connectmail.carleton.ca (iPlanet Messaging Server 5.2 HotFix 2.02 (built Oct 21 2004)) with ESMTPSA id <0IAB001KNOTN0A@connectmail.carleton.ca>; Fri, 14 Jan 2005 14:58:35 -0500 (EST) Date: Fri, 14 Jan 2005 15:01:01 -0500 From: Adam Weinberger In-reply-to: <41E82342.9000000@FreeBSD.org> To: Adam Weinberger Message-id: <41E824FD.6030306@FreeBSD.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla Thunderbird 1.0 (X11/20050105) References: <41E82342.9000000@FreeBSD.org> cc: ports@FreeBSD.org Subject: Re: IMPORTANT: warning to all libgnomesu users X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 19:58:36 -0000 Adam Weinberger wrote: > You must remove the installed /etc/pam.d/gnomesu-pam or replace it with > the new one from the port. On a 4.x box, if /etc/pam.d is empty, you must remove that directory as well, or you will remain locked out of your box. Sorry about all this... # Adam -- Adam Weinberger adamw@magnesium.net || adamw@FreeBSD.org adamw@vectors.cx || adamw@gnome.org http://www.vectors.cx From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 20:05:31 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89B3216A4CE for ; Fri, 14 Jan 2005 20:05:31 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 5299D43D48 for ; Fri, 14 Jan 2005 20:05:30 +0000 (GMT) (envelope-from skalla.raabjorn@gmx.de) Received: (qmail invoked by alias); 14 Jan 2005 20:05:28 -0000 Received: from pD955B25A.dip.t-dialin.net (EHLO olaf.hackerzberg.dyndns.org) (217.85.178.90) by mail.gmx.net (mp021) with SMTP; 14 Jan 2005 21:05:28 +0100 X-Authenticated: #8038066 Date: Fri, 14 Jan 2005 21:05:26 +0100 From: Skalla Raabjorn To: freebsd-ports@freebsd.org Message-ID: <20050114210526.717931dc@olaf.hackerzberg.dyndns.org> In-Reply-To: <20041214002313.H10154@duey.wolves.k12.mo.us> References: <20041213221520.V10154@duey.wolves.k12.mo.us> <20041214043729.GE1435@k7.mavetju> <20041214062110.GF1435@k7.mavetju> <20041214002313.H10154@duey.wolves.k12.mo.us> X-Mailer: Sylpheed-Claws 0.9.13 (GTK+ 1.2.10; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Y-GMX-Trusted: 0 Subject: Re: PATCH: Adding config-recursive to bsd.port.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 20:05:31 -0000 On Tue, 14 Dec 2004 01:05:54 -0600 (CST) Chris Dillon wrote: > New patch is at: > > ftp://ftp.wolves.k12.mo.us/pub/stuff/config-recursive.patch > > If this is acceptable I will submit it in a PR for portmgr to > consider. I can't download the patch, server down? Will this get committed? I would really like to have this feature :) cheers Skalla From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 20:19:38 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C581C16A4CE for ; Fri, 14 Jan 2005 20:19:38 +0000 (GMT) Received: from mail.wolves.k12.mo.us (duey.wolves.k12.mo.us [207.160.214.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88C7D43D2D for ; Fri, 14 Jan 2005 20:19:38 +0000 (GMT) (envelope-from cdillon@wolves.k12.mo.us) Received: from localhost (localhost [127.0.0.1]) by mail.wolves.k12.mo.us (Postfix) with ESMTP id 139F61FE25; Fri, 14 Jan 2005 14:19:38 -0600 (CST) Received: from mail.wolves.k12.mo.us ([127.0.0.1]) by localhost (mail.wolves.k12.mo.us [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 21507-01; Fri, 14 Jan 2005 14:19:34 -0600 (CST) Received: by mail.wolves.k12.mo.us (Postfix, from userid 1001) id D2AF21FE1F; Fri, 14 Jan 2005 14:19:34 -0600 (CST) Received: from localhost (localhost [127.0.0.1]) by mail.wolves.k12.mo.us (Postfix) with ESMTP id CE61B1A90D; Fri, 14 Jan 2005 14:19:34 -0600 (CST) Date: Fri, 14 Jan 2005 14:19:34 -0600 (CST) From: Chris Dillon To: Skalla Raabjorn In-Reply-To: <20050114210526.717931dc@olaf.hackerzberg.dyndns.org> Message-ID: <20050114141848.I22743@duey.wolves.k12.mo.us> References: <20041213221520.V10154@duey.wolves.k12.mo.us> <20041214043729.GE1435@k7.mavetju> <20041214002313.H10154@duey.wolves.k12.mo.us> <20050114210526.717931dc@olaf.hackerzberg.dyndns.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Virus-Scanned: amavisd-new at wolves.k12.mo.us cc: freebsd-ports@freebsd.org Subject: Re: PATCH: Adding config-recursive to bsd.port.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 20:19:38 -0000 On Fri, 14 Jan 2005, Skalla Raabjorn wrote: >> New patch is at: >> >> ftp://ftp.wolves.k12.mo.us/pub/stuff/config-recursive.patch >> >> If this is acceptable I will submit it in a PR for portmgr to >> consider. > > I can't download the patch, server down? > > Will this get committed? I would really like to have this feature :) Don't know why you wouldn't be able to fetch it, the server is usually never down and has a reliable internet connection. Anyway, I've just now submitted a PR for it. -- Chris Dillon - cdillon(at)wolves.k12.mo.us FreeBSD: The fastest, most open, and most stable OS on the planet - Available for IA32, IA64, AMD64, PC98, Alpha, and UltraSPARC architectures - PowerPC, ARM, MIPS, and S/390 under development - http://www.freebsd.org Q: Because it reverses the logical flow of conversation. A: Why is putting a reply at the top of the message frowned upon? From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 21:12:11 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 923F116A4CE for ; Fri, 14 Jan 2005 21:12:11 +0000 (GMT) Received: from mail2out.barnet.com.au (mail2out.barnet.com.au [202.83.176.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id B06BC43D3F for ; Fri, 14 Jan 2005 21:12:10 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mail2out.barnet.com.au (Postfix, from userid 27) id 04F1B707445; Sat, 15 Jan 2005 08:12:09 +1100 (EST) X-Viruscan-Id: <41E835A800012ECCB73F05@BarNet> Received: from mail2-auth.barnet.com.au (mail2.barnet.com.au [202.83.176.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id B26EF707444; Sat, 15 Jan 2005 08:12:08 +1100 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id 1CFAD707439; Sat, 15 Jan 2005 08:12:08 +1100 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 096E36139; Sat, 15 Jan 2005 08:12:07 +1100 (EST) Date: Sat, 15 Jan 2005 08:12:06 +1100 From: Edwin Groothuis To: Kirill Ponomarew Message-ID: <20050114211206.GF1175@k7.mavetju> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050114112918.GF69532@voodoo.oberon.net> User-Agent: Mutt/1.5.6i cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 21:12:11 -0000 On Fri, Jan 14, 2005 at 12:29:18PM +0100, Kirill Ponomarew wrote: > On Fri, Jan 14, 2005 at 01:04:04PM +0200, Adi Pircalabu wrote: > > > I'm going to be careful about not allowing the "questionable" packages > > > to fall foul of the pkg-plist checking, until we decide one way or the > > > other whether they should be considered "broken". > > > > This is a tricky situation from my point of view. I'm following this > > thread with a lot of interest since I'll be managing a port which CAN > > NOT honor pkg-plist strict checking. Here are few details: > > > > - The configuration files are created and heavily modified at install > > time from .dist files, will be modified as needed and should not be > > deleted at uninstall - the configuration should be kept for a later > > upgrade. This will definitely break "make install deinstall" on the > > packages cluster, but the files are required since they must contain > > information about various modules and plugins of the port, and this > > information must be written through a daemon started at post-install. > > You can try cmp(1) in pkg-plist to compare configurations files. > Take a look at ports collection, there are enough examples. Maybe we need two additional @ commands for pkg-plist: - @dirrmifempty foo/bar does do what "@unexec rmdir %D/foo/bar 2>/dev/null || true" does. - @rmifdifferent foo/bar foo/baz does do what "@unexec cmp %D/foo/bar %D/foo/baz && rm %D/foo/bar" does. This way we - have an easy and consistent syntax for a difficult command - have less chance for errors (forgetting %D, && instead of ||) Comments? Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 21:29:43 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C489716A4CE for ; Fri, 14 Jan 2005 21:29:43 +0000 (GMT) Received: from mail.cm.utexas.edu (mail.cm.utexas.edu [146.6.135.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CC9C43D2D for ; Fri, 14 Jan 2005 21:29:43 +0000 (GMT) (envelope-from virenp@mail.utexas.edu) Received: from mail.cm.utexas.edu (localhost [127.0.0.1]) by mail.cm.utexas.edu (Postfix) with ESMTP id 22AAB6D452 for ; Fri, 14 Jan 2005 15:29:43 -0600 (CST) Received: from 146.6.178.5 (SquirrelMail authenticated user virenp); by mail.cm.utexas.edu with HTTP; Fri, 14 Jan 2005 15:29:43 -0600 (CST) Message-ID: <33416.146.6.178.5.1105738183.squirrel@146.6.178.5> Date: Fri, 14 Jan 2005 15:29:43 -0600 (CST) From: "Viren Patel" To: freebsd-ports@freebsd.org User-Agent: SquirrelMail/1.4.3a X-Mailer: SquirrelMail/1.4.3a MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal Subject: rt3-elixus problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: virenp@mail.utexas.edu List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 21:29:43 -0000 Hello. I am not sure this is the correct list for this sort of question. Please re-direct me if necessary. I installed rt3-elixus port (along will all other requirements). When loading index.html the following error is given: error: Component path given to Interp->load must be absolute (was given index.html) context: ... 194: if (!ref($request_comp)) { 195: $request_comp =~ s{/+}{/}g; 196: $self->{top_path} = $path = $request_comp; 197: 198: search: { 199: $request_comp = $self->interp->load($path); 200: 201: last search unless $self->use_dhandlers; 202: ... code stack: /usr/local/lib/perl5/site_perl/5.8.5/HTML/Mason/Request.pm:198 /usr/local/lib/perl5/site_perl/5.8.5/HTML/Mason/Request.pm:166 /usr/local/lib/perl5/site_perl/5.8.5/HTML/Mason/ApacheHandler.pm:68 /usr/local/lib/perl5/site_perl/5.8.5/Class/Container.pm:265 /usr/local/lib/perl5/site_perl/5.8.5/Class/Container.pm:343 /usr/local/lib/perl5/site_perl/5.8.5/HTML/Mason/Interp.pm:222 /usr/local/lib/perl5/site_perl/5.8.5/HTML/Mason/ApacheHandler.pm:899 /usr/local/lib/perl5/site_perl/5.8.5/HTML/Mason/ApacheHandler.pm:824 /usr/local/rt3/bin/webmux.pl:111 /dev/null:0 System configuration FreeBSD 5.3 apache+mod_ssl-1.3.33+2.8.22 rt-elixus-20041022 p5-HTML-Mason-1.28 mysql-server-4.1.8a perl-5.8.5 How can I fix this? Thanks. -- Viren Patel Chemistry & Biochemistry University of Texas at Austin From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 21:31:26 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4789216A4CE for ; Fri, 14 Jan 2005 21:31:26 +0000 (GMT) Received: from ritamari.vonostingroup.com (ip193-230.digitalrealm.net [216.144.193.230]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3BE943D53 for ; Fri, 14 Jan 2005 21:31:25 +0000 (GMT) (envelope-from laszlof@tvog.net) Received: from adsl-68-72-248-38.dsl.sfldmi.ameritech.net ([68.72.248.38] helo=tvog.net) by ritamari.vonostingroup.com with esmtpa (Exim 4.43 (FreeBSD)) id 1CpZ26-000Nad-1c; Fri, 14 Jan 2005 16:31:02 -0500 Message-ID: <41E83A20.5020208@tvog.net> Date: Fri, 14 Jan 2005 16:31:12 -0500 From: Frank Laszlo User-Agent: Mozilla Thunderbird 0.5 (Windows/20040207) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Chris Dillon References: <20041213221520.V10154@duey.wolves.k12.mo.us> <20041214043729.GE1435@k7.mavetju> <20041214002313.H10154@duey.wolves.k12.mo.us> <20050114210526.717931dc@olaf.hackerzberg.dyndns.org> <20050114141848.I22743@duey.wolves.k12.mo.us> In-Reply-To: <20050114141848.I22743@duey.wolves.k12.mo.us> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - ritamari.vonostingroup.com X-AntiAbuse: Original Domain - freebsd.org X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [26 6] X-AntiAbuse: Sender Address Domain - tvog.net X-Source: X-Source-Args: X-Source-Dir: cc: Skalla Raabjorn cc: freebsd-ports@freebsd.org Subject: Re: PATCH: Adding config-recursive to bsd.port.mk X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 21:31:26 -0000 Chris Dillon wrote: > On Fri, 14 Jan 2005, Skalla Raabjorn wrote: > >>> New patch is at: >>> >>> ftp://ftp.wolves.k12.mo.us/pub/stuff/config-recursive.patch >>> >>> If this is acceptable I will submit it in a PR for portmgr to >>> consider. >> >> >> I can't download the patch, server down? >> >> Will this get committed? I would really like to have this feature :) > > > Don't know why you wouldn't be able to fetch it, the server is usually > never down and has a reliable internet connection. Anyway, I've just > now submitted a PR for it. > Adding PR Reference: http://www.freebsd.org/cgi/query-pr.cgi?pr=ports/76254 Regards, Frank Laszlo From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 21:33:38 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB80116A4CE for ; Fri, 14 Jan 2005 21:33:38 +0000 (GMT) Received: from pimout3-ext.prodigy.net (pimout3-ext.prodigy.net [207.115.63.102]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F08243D3F for ; Fri, 14 Jan 2005 21:33:38 +0000 (GMT) (envelope-from mark@antsclimbtree.com) Received: from lilbuddy.antsclimbtree.com (adsl-66-122-112-171.dsl.snfc21.pacbell.net [66.122.112.171]) j0ELXKoB413726; Fri, 14 Jan 2005 16:33:20 -0500 Received: from [192.168.1.10] (helo=[192.168.1.10]) by lilbuddy.antsclimbtree.com with esmtpsa (TLSv1:RC4-SHA:128) (Exim 4.43 (FreeBSD)) id 1CpZ4L-0001lt-5U; Fri, 14 Jan 2005 13:33:22 -0800 Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Mark Edwards Date: Fri, 14 Jan 2005 13:33:15 -0800 To: liukang@bjut.edu.cn X-Mailer: Apple Mail (2.619) X-Spam-Score: -2.8 (--) cc: ports@FreeBSD.org Subject: FreeBSD Port: phpbb-2.0.11 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 21:33:38 -0000 After the update to 2.0.11 the "confirmation code" feature in register doesn't work. The image doesn't show up. Does the SQL database need to be updated? Could this be an issue with the port? I'm using FreeBSD 4.10. Thanks! From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 21:34:28 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1638216A4CE for ; Fri, 14 Jan 2005 21:34:28 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id C067C43D31 for ; Fri, 14 Jan 2005 21:34:27 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.43 (FreeBSD)) id 1CpZ53-0002z6-UG; Fri, 14 Jan 2005 22:34:05 +0100 Date: Fri, 14 Jan 2005 22:34:05 +0100 From: Kirill Ponomarew To: Edwin Groothuis Message-ID: <20050114213405.GA10065@voodoo.oberon.net> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <20050114211206.GF1175@k7.mavetju> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050114211206.GF1175@k7.mavetju> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 21:34:28 -0000 On Sat, Jan 15, 2005 at 08:12:06AM +1100, Edwin Groothuis wrote: > Maybe we need two additional @ commands for pkg-plist: > > - @dirrmifempty foo/bar > does do what "@unexec rmdir %D/foo/bar 2>/dev/null || true" does. > > - @rmifdifferent foo/bar foo/baz > does do what "@unexec cmp %D/foo/bar %D/foo/baz && rm %D/foo/bar" does. > > This way we > > - have an easy and consistent syntax for a difficult command > > - have less chance for errors (forgetting %D, && instead of ||) > > Comments? Sounds interesting, but I'd change @rmifdifferent to something like @rmconfig since it's used by config files in most cases. -Kirill From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 21:48:09 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2FB216A4CE for ; Fri, 14 Jan 2005 21:48:09 +0000 (GMT) Received: from mail2out.barnet.com.au (mail2out.barnet.com.au [202.83.176.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B82D43D45 for ; Fri, 14 Jan 2005 21:48:09 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mail2out.barnet.com.au (Postfix, from userid 27) id 4EC6D707446; Sat, 15 Jan 2005 08:48:08 +1100 (EST) X-Viruscan-Id: <41E83E1800001EBE5B5D16@BarNet> Received: from mail2-auth.barnet.com.au (mail2.barnet.com.au [202.83.176.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id 0D2AB707445; Sat, 15 Jan 2005 08:48:08 +1100 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id 73160707444; Sat, 15 Jan 2005 08:48:07 +1100 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 7C7FB6109; Sat, 15 Jan 2005 08:48:06 +1100 (EST) Date: Sat, 15 Jan 2005 08:48:06 +1100 From: Edwin Groothuis To: Kirill Ponomarew Message-ID: <20050114214806.GG1175@k7.mavetju> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <20050114211206.GF1175@k7.mavetju> <20050114213405.GA10065@voodoo.oberon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050114213405.GA10065@voodoo.oberon.net> User-Agent: Mutt/1.5.6i cc: ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 21:48:09 -0000 On Fri, Jan 14, 2005 at 10:34:05PM +0100, Kirill Ponomarew wrote: > On Sat, Jan 15, 2005 at 08:12:06AM +1100, Edwin Groothuis wrote: > > Maybe we need two additional @ commands for pkg-plist: > > > > - @dirrmifempty foo/bar > > does do what "@unexec rmdir %D/foo/bar 2>/dev/null || true" does. > > > > - @rmifdifferent foo/bar foo/baz > > does do what "@unexec cmp %D/foo/bar %D/foo/baz && rm %D/foo/bar" does. > > > > This way we > > > > - have an easy and consistent syntax for a difficult command > > > > - have less chance for errors (forgetting %D, && instead of ||) > > > > Comments? > > Sounds interesting, but I'd change @rmifdifferent to something like > @rmconfig since it's used by config files in most cases. Question of course is, how do we upgrade pkg_delete. Looks like it is part of sysutils/pkg_install. I'm going to think about it this weekend and hopefully more people will give their comments on it. Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 21:55:53 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D07416A4CE for ; Fri, 14 Jan 2005 21:55:53 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DD7343D31 for ; Fri, 14 Jan 2005 21:55:53 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.43 (FreeBSD)) id 1CpZPn-0003A7-KI; Fri, 14 Jan 2005 22:55:31 +0100 Date: Fri, 14 Jan 2005 22:55:31 +0100 From: Kirill Ponomarew To: Kris Kennaway Message-ID: <20050114215531.GD10065@voodoo.oberon.net> References: <20050112210836.GA53854@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050112210836.GA53854@xor.obsecurity.org> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: ports@FreeBSD.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 21:55:53 -0000 On Wed, Jan 12, 2005 at 01:08:36PM -0800, Kris Kennaway wrote: > For the past month I've been sending warnings to maintainers of ports > that have broken pkg-plists (i.e. leave behind files after > deinstallation). Now that we've passed the 4.11-RELEASE freeze, it's > a good time to take this to the next level and begin phasing in strict > enforcement of pkg-plist correctness. p5-*, ruby-* and xemacs-* maintainers should pay more attention to these ports' plists since many of them are b0rked on the cluster at the moment. -Kirill From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 21:56:00 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8021D16A4CE for ; Fri, 14 Jan 2005 21:56:00 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D5FF43D3F for ; Fri, 14 Jan 2005 21:56:00 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 43614513CE; Fri, 14 Jan 2005 13:55:59 -0800 (PST) Date: Fri, 14 Jan 2005 13:55:59 -0800 From: Kris Kennaway To: Edwin Groothuis Message-ID: <20050114215559.GA71927@xor.obsecurity.org> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <20050114211206.GF1175@k7.mavetju> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0F1p//8PRICkK4MW" Content-Disposition: inline In-Reply-To: <20050114211206.GF1175@k7.mavetju> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org cc: Kirill Ponomarew Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 21:56:00 -0000 --0F1p//8PRICkK4MW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jan 15, 2005 at 08:12:06AM +1100, Edwin Groothuis wrote: > On Fri, Jan 14, 2005 at 12:29:18PM +0100, Kirill Ponomarew wrote: > > On Fri, Jan 14, 2005 at 01:04:04PM +0200, Adi Pircalabu wrote: > > > > I'm going to be careful about not allowing the "questionable" packa= ges > > > > to fall foul of the pkg-plist checking, until we decide one way or = the > > > > other whether they should be considered "broken". > > >=20 > > > This is a tricky situation from my point of view. I'm following this > > > thread with a lot of interest since I'll be managing a port which CAN > > > NOT honor pkg-plist strict checking. Here are few details: > > >=20 > > > - The configuration files are created and heavily modified at install > > > time from .dist files, will be modified as needed and should not be > > > deleted at uninstall - the configuration should be kept for a later > > > upgrade. This will definitely break "make install deinstall" on the > > > packages cluster, but the files are required since they must contain > > > information about various modules and plugins of the port, and this > > > information must be written through a daemon started at post-install. > >=20 > > You can try cmp(1) in pkg-plist to compare configurations files. > > Take a look at ports collection, there are enough examples. >=20 > Maybe we need two additional @ commands for pkg-plist: >=20 > - @dirrmifempty foo/bar > does do what "@unexec rmdir %D/foo/bar 2>/dev/null || true" does. >=20 > - @rmifdifferent foo/bar foo/baz > does do what "@unexec cmp %D/foo/bar %D/foo/baz && rm %D/foo/bar" doe= s. >=20 > This way we >=20 > - have an easy and consistent syntax for a difficult command >=20 > - have less chance for errors (forgetting %D, && instead of ||) >=20 > Comments? This keeps getting suggested under various names, but you need to solve the compatibility problem. Kris --0F1p//8PRICkK4MW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB6D/uWry0BWjoQKURAtWEAJ9hj9yy3Y9YI20ZLLFCATI2xgiObACg/g/5 2l6oNQz18d/wbR7Q1vp/UZs= =EDza -----END PGP SIGNATURE----- --0F1p//8PRICkK4MW-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 21:58:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D852F16A4CF for ; Fri, 14 Jan 2005 21:58:03 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C4FB43D48 for ; Fri, 14 Jan 2005 21:58:03 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.43 (FreeBSD)) id 1CpZRt-0003Ba-PC; Fri, 14 Jan 2005 22:57:41 +0100 Date: Fri, 14 Jan 2005 22:57:41 +0100 From: Kirill Ponomarew To: Viren Patel Message-ID: <20050114215741.GE10065@voodoo.oberon.net> References: <33416.146.6.178.5.1105738183.squirrel@146.6.178.5> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <33416.146.6.178.5.1105738183.squirrel@146.6.178.5> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: freebsd-ports@freebsd.org Subject: Re: rt3-elixus problem X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 21:58:04 -0000 On Fri, Jan 14, 2005 at 03:29:43PM -0600, Viren Patel wrote: > Hello. I am not sure this is the correct list for this > sort of question. Please re-direct me if necessary. I > installed rt3-elixus port (along will all other > requirements). When loading index.html the following error > is given: > > error: Component path given to Interp->load must be > absolute (was given index.html) > context: > ... > 194: if (!ref($request_comp)) { > 195: $request_comp =~ s{/+}{/}g; > 196: $self->{top_path} = $path = $request_comp; > 197: > 198: search: { > 199: $request_comp = $self->interp->load($path); > 200: > 201: last search unless $self->use_dhandlers; > 202: > ... > code stack: > /usr/local/lib/perl5/site_perl/5.8.5/HTML/Mason/Request.pm:198 > /usr/local/lib/perl5/site_perl/5.8.5/HTML/Mason/Request.pm:166 > /usr/local/lib/perl5/site_perl/5.8.5/HTML/Mason/ApacheHandler.pm:68 > /usr/local/lib/perl5/site_perl/5.8.5/Class/Container.pm:265 > /usr/local/lib/perl5/site_perl/5.8.5/Class/Container.pm:343 > /usr/local/lib/perl5/site_perl/5.8.5/HTML/Mason/Interp.pm:222 > /usr/local/lib/perl5/site_perl/5.8.5/HTML/Mason/ApacheHandler.pm:899 > /usr/local/lib/perl5/site_perl/5.8.5/HTML/Mason/ApacheHandler.pm:824 > /usr/local/rt3/bin/webmux.pl:111 > /dev/null:0 > > System configuration > > FreeBSD 5.3 > apache+mod_ssl-1.3.33+2.8.22 > rt-elixus-20041022 > p5-HTML-Mason-1.28 > mysql-server-4.1.8a > perl-5.8.5 > > How can I fix this? Thanks. Please contact maintainer to resolve this problem. -Kirill From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 22:03:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B889B16A4CE for ; Fri, 14 Jan 2005 22:03:47 +0000 (GMT) Received: from mail2out.barnet.com.au (mail2out.barnet.com.au [202.83.176.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FBA443D4C for ; Fri, 14 Jan 2005 22:03:47 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mail2out.barnet.com.au (Postfix, from userid 27) id 98E99707446; Sat, 15 Jan 2005 09:03:46 +1100 (EST) X-Viruscan-Id: <41E841C2000046AF064F4D@BarNet> Received: from mail2-auth.barnet.com.au (mail2.barnet.com.au [202.83.176.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id 485E6707445; Sat, 15 Jan 2005 09:03:46 +1100 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id BCF4C707444; Sat, 15 Jan 2005 09:03:45 +1100 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id B36C96109; Sat, 15 Jan 2005 09:03:44 +1100 (EST) Date: Sat, 15 Jan 2005 09:03:44 +1100 From: Edwin Groothuis To: Kris Kennaway Message-ID: <20050114220344.GH1175@k7.mavetju> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <20050114211206.GF1175@k7.mavetju> <20050114215559.GA71927@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050114215559.GA71927@xor.obsecurity.org> User-Agent: Mutt/1.5.6i cc: Kirill Ponomarew cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 22:03:47 -0000 On Fri, Jan 14, 2005 at 01:55:59PM -0800, Kris Kennaway wrote: > This keeps getting suggested under various names, but you need to > solve the compatibility problem. Isn't that resolved by modifying ports/sysutils/pkg_install and noting it in ports/UPDATING? Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 22:05:44 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3459516A4CE for ; Fri, 14 Jan 2005 22:05:44 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id E569D43D46 for ; Fri, 14 Jan 2005 22:05:43 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 4A4AB512C2; Fri, 14 Jan 2005 14:05:43 -0800 (PST) Date: Fri, 14 Jan 2005 14:05:43 -0800 From: Kris Kennaway To: Kirill Ponomarew Message-ID: <20050114220543.GA74151@xor.obsecurity.org> References: <20050112210836.GA53854@xor.obsecurity.org> <20050114215531.GD10065@voodoo.oberon.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2oS5YaxWCcQjTEyO" Content-Disposition: inline In-Reply-To: <20050114215531.GD10065@voodoo.oberon.net> User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org cc: Kris Kennaway Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 22:05:44 -0000 --2oS5YaxWCcQjTEyO Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 14, 2005 at 10:55:31PM +0100, Kirill Ponomarew wrote: > On Wed, Jan 12, 2005 at 01:08:36PM -0800, Kris Kennaway wrote: > > For the past month I've been sending warnings to maintainers of ports > > that have broken pkg-plists (i.e. leave behind files after > > deinstallation). Now that we've passed the 4.11-RELEASE freeze, it's > > a good time to take this to the next level and begin phasing in strict > > enforcement of pkg-plist correctness. >=20 > p5-*, ruby-* and xemacs-* maintainers should pay more attention to > these ports' plists since many of them are b0rked on the cluster at > the moment. Yeah. The "extra files" page still has some false positives and cases where I'm not sure whether to add the shared directories to BSD.foo.dist, though. I have reported to the relevant maintainers all other ports that will soon become broken though, so they have had ample time to avoid that situation. Kris --2oS5YaxWCcQjTEyO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB6EI3Wry0BWjoQKURAn9zAJ41mgFdkcd+Oa0+7gUodjHx+IrRCACghTtG WX7cfyawkJYbvQ4xJ4hm2Kg= =/6Gs -----END PGP SIGNATURE----- --2oS5YaxWCcQjTEyO-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 22:08:39 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71CD616A4CE for ; Fri, 14 Jan 2005 22:08:39 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B5AC43D39 for ; Fri, 14 Jan 2005 22:08:39 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 86F77526B3; Fri, 14 Jan 2005 14:08:37 -0800 (PST) Date: Fri, 14 Jan 2005 14:08:37 -0800 From: Kris Kennaway To: Edwin Groothuis Message-ID: <20050114220835.GC74151@xor.obsecurity.org> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <20050114211206.GF1175@k7.mavetju> <20050114215559.GA71927@xor.obsecurity.org> <20050114220344.GH1175@k7.mavetju> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DIOMP1UsTsWJauNi" Content-Disposition: inline In-Reply-To: <20050114220344.GH1175@k7.mavetju> User-Agent: Mutt/1.4.2.1i cc: Kirill Ponomarew cc: freebsd-ports@freebsd.org cc: Kris Kennaway Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 22:08:39 -0000 --DIOMP1UsTsWJauNi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jan 15, 2005 at 09:03:44AM +1100, Edwin Groothuis wrote: > On Fri, Jan 14, 2005 at 01:55:59PM -0800, Kris Kennaway wrote: > > This keeps getting suggested under various names, but you need to > > solve the compatibility problem. >=20 > Isn't that resolved by modifying ports/sysutils/pkg_install and > noting it in ports/UPDATING? That would be a big cop-out - it's hardly friendly to make every port user update to -stable or take manual steps to avoid a broken package system. There needs to be a better solution than that. Kris --DIOMP1UsTsWJauNi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB6ELjWry0BWjoQKURAsxCAKC/9LykXo5b62N2pApRgMKja7UbVQCePSla 2R4Nos7RWPweBhFgL/j09dI= =lGTz -----END PGP SIGNATURE----- --DIOMP1UsTsWJauNi-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 22:10:20 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6599916A4CE for ; Fri, 14 Jan 2005 22:10:20 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CB5E43D1F for ; Fri, 14 Jan 2005 22:10:20 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 51DE9512C2; Fri, 14 Jan 2005 14:10:19 -0800 (PST) Date: Fri, 14 Jan 2005 14:10:19 -0800 From: Kris Kennaway To: Kris Kennaway Message-ID: <20050114221019.GA80102@xor.obsecurity.org> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <20050114211206.GF1175@k7.mavetju> <20050114215559.GA71927@xor.obsecurity.org> <20050114220344.GH1175@k7.mavetju> <20050114220835.GC74151@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pWyiEgJYm5f9v55/" Content-Disposition: inline In-Reply-To: <20050114220835.GC74151@xor.obsecurity.org> User-Agent: Mutt/1.4.2.1i cc: Edwin Groothuis cc: Kirill Ponomarew cc: freebsd-ports@freebsd.org Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 22:10:20 -0000 --pWyiEgJYm5f9v55/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 14, 2005 at 02:08:37PM -0800, Kris Kennaway wrote: > On Sat, Jan 15, 2005 at 09:03:44AM +1100, Edwin Groothuis wrote: > > On Fri, Jan 14, 2005 at 01:55:59PM -0800, Kris Kennaway wrote: > > > This keeps getting suggested under various names, but you need to > > > solve the compatibility problem. > >=20 > > Isn't that resolved by modifying ports/sysutils/pkg_install and > > noting it in ports/UPDATING? >=20 > That would be a big cop-out - it's hardly friendly to make every port > user update to -stable or take manual steps to avoid a broken package > system. There needs to be a better solution than that. The moral of the story being: "Every time you add manual upgrade steps to /usr/ports/UPDATING, it means the ports collection has failed to do its job". Kris --pWyiEgJYm5f9v55/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB6ENLWry0BWjoQKURAk4XAJ9uktiLcmC7Kf78XTAVJeksoK12mgCfdbn4 NRLMLbmnjFpBZsWoM56d3yg= =Crr6 -----END PGP SIGNATURE----- --pWyiEgJYm5f9v55/-- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 22:12:33 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B0D616A4CE for ; Fri, 14 Jan 2005 22:12:33 +0000 (GMT) Received: from rooster.cisco.com (hen.cisco.com [64.102.19.198]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72BCE43D46 for ; Fri, 14 Jan 2005 22:12:32 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from [64.102.192.53] (dhcp-64-102-192-53.cisco.com [64.102.192.53]) by rooster.cisco.com (8.11.7+Sun/8.8.8) with ESMTP id j0EMC6e25458; Fri, 14 Jan 2005 17:12:12 -0500 (EST) Message-ID: <41E843B7.3060403@FreeBSD.org> Date: Fri, 14 Jan 2005 17:12:07 -0500 From: Joe Marcus Clarke Organization: FreeBSD, Inc. User-Agent: Mozilla Thunderbird 1.0 (Macintosh/20041206) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Edwin Groothuis References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <20050114211206.GF1175@k7.mavetju> <20050114215559.GA71927@xor.obsecurity.org> <20050114220344.GH1175@k7.mavetju> In-Reply-To: <20050114220344.GH1175@k7.mavetju> X-Enigmail-Version: 0.89.5.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: freebsd-ports@FreeBSD.org cc: Kirill Ponomarew cc: Kris Kennaway Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 22:12:33 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Edwin Groothuis wrote: | On Fri, Jan 14, 2005 at 01:55:59PM -0800, Kris Kennaway wrote: | |>This keeps getting suggested under various names, but you need to |>solve the compatibility problem. | | | Isn't that resolved by modifying ports/sysutils/pkg_install and | noting it in ports/UPDATING? Resolved is probably not the correct word as this will trigger a flurry of emails from -RELEASE users. A solution might be to modify bsd.port.mk to detect OSVERSIONs that don't have the fix, then add a dependency on sysutils/pkg_install. The problem then comes to package users who may not have a /usr/ports at all. If they don't know to use the pkg_install tools in LOCALBASE, they'll get package installation problems. I'm not sure what the best solution for them is. Joe | | Edwin | - -- Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (Darwin) Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org iD8DBQFB6EO3b2iPiv4Uz4cRAjqdAKCmqhAjeXecEIjqSc9Cfd3WbmhgwACfY0wE LCNFvBgHv48DIlBM5coIhIY= =Oux/ -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Fri Jan 14 22:43:04 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E680716A4CE; Fri, 14 Jan 2005 22:43:04 +0000 (GMT) Received: from mail2out.barnet.com.au (mail2out.barnet.com.au [202.83.176.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04B9F43D54; Fri, 14 Jan 2005 22:43:04 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mail2out.barnet.com.au (Postfix, from userid 27) id 50328707446; Sat, 15 Jan 2005 09:43:02 +1100 (EST) X-Viruscan-Id: <41E84AF60000B843701A7F@BarNet> Received: from mail2-auth.barnet.com.au (mail2.barnet.com.au [202.83.176.13]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id 084A1707445; Sat, 15 Jan 2005 09:43:02 +1100 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id 67B0D707444; Sat, 15 Jan 2005 09:43:01 +1100 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id 52B116109; Sat, 15 Jan 2005 09:43:00 +1100 (EST) Date: Sat, 15 Jan 2005 09:43:00 +1100 From: Edwin Groothuis To: Joe Marcus Clarke Message-ID: <20050114224300.GW1033@k7.mavetju> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <20050114211206.GF1175@k7.mavetju> <20050114215559.GA71927@xor.obsecurity.org> <20050114220344.GH1175@k7.mavetju> <41E843B7.3060403@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41E843B7.3060403@FreeBSD.org> User-Agent: Mutt/1.5.6i cc: freebsd-ports@FreeBSD.org cc: Kris Kennaway Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Jan 2005 22:43:05 -0000 On Fri, Jan 14, 2005 at 05:12:07PM -0500, Joe Marcus Clarke wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Edwin Groothuis wrote: > | On Fri, Jan 14, 2005 at 01:55:59PM -0800, Kris Kennaway wrote: > | > |>This keeps getting suggested under various names, but you need to > |>solve the compatibility problem. > | > | > | Isn't that resolved by modifying ports/sysutils/pkg_install and > | noting it in ports/UPDATING? > > Resolved is probably not the correct word as this will trigger a flurry > of emails from -RELEASE users. A solution might be to modify > bsd.port.mk to detect OSVERSIONs that don't have the fix, then add a > dependency on sysutils/pkg_install. The problem then comes to package > users who may not have a /usr/ports at all. If they don't know to use > the pkg_install tools in LOCALBASE, they'll get package installation > problems. I'm not sure what the best solution for them is. This OSVERSION solution looks the way to go. For the packages, pkg_delete already gives an warning when it sees an unknown @command: warnx("%s: unknown command '%s' (package tools out of date?)", But it doesn't say what to do (this is version a.b.c, check ftp://ftp.freebsd.org/packages/blaat for newer versions) Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 00:06:42 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C33A16A4CF for ; Sat, 15 Jan 2005 00:06:42 +0000 (GMT) Received: from creme-brulee.marcuscom.com (creme-brulee.marcuscom.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id C26C943D1D for ; Sat, 15 Jan 2005 00:06:41 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from shumai.marcuscom.com (shumai.marcuscom.com [192.168.1.4]) j0F083sC054826; Fri, 14 Jan 2005 19:08:07 -0500 (EST) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: Edwin Groothuis In-Reply-To: <20050114224300.GW1033@k7.mavetju> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <20050114211206.GF1175@k7.mavetju> <20050114215559.GA71927@xor.obsecurity.org> <20050114220344.GH1175@k7.mavetju> <41E843B7.3060403@FreeBSD.org> <20050114224300.GW1033@k7.mavetju> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-GUg39wgPuGYb/UStuyBM" Organization: FreeBSD, Inc. Date: Fri, 14 Jan 2005 19:06:17 -0500 Message-Id: <1105747577.87193.2.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Evolution 2.0.3 FreeBSD GNOME Team Port cc: freebsd-ports@FreeBSD.org cc: Kris Kennaway Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 00:06:42 -0000 --=-GUg39wgPuGYb/UStuyBM Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2005-01-15 at 09:43 +1100, Edwin Groothuis wrote: > On Fri, Jan 14, 2005 at 05:12:07PM -0500, Joe Marcus Clarke wrote: > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA1 > >=20 > > Edwin Groothuis wrote: > > | On Fri, Jan 14, 2005 at 01:55:59PM -0800, Kris Kennaway wrote: > > | > > |>This keeps getting suggested under various names, but you need to > > |>solve the compatibility problem. > > | > > | > > | Isn't that resolved by modifying ports/sysutils/pkg_install and > > | noting it in ports/UPDATING? > >=20 > > Resolved is probably not the correct word as this will trigger a flurry > > of emails from -RELEASE users. A solution might be to modify > > bsd.port.mk to detect OSVERSIONs that don't have the fix, then add a > > dependency on sysutils/pkg_install. The problem then comes to package > > users who may not have a /usr/ports at all. If they don't know to use > > the pkg_install tools in LOCALBASE, they'll get package installation > > problems. I'm not sure what the best solution for them is. >=20 > This OSVERSION solution looks the way to go. >=20 > For the packages, pkg_delete already gives an warning when it sees > an unknown @command: >=20 > warnx("%s: unknown command '%s' (package tools out of date?)", >=20 > But it doesn't say what to do (this is version a.b.c, check > ftp://ftp.freebsd.org/packages/blaat for newer versions) That warning should probably be changed to instruct the user to install pkg_install, then use /usr/local/sbin/pkg_* for all your packaging needs. While it won't help current -RELEASE users, it's something that would help in such situations moving forward. Joe >=20 > Edwin >=20 --=20 Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome --=-GUg39wgPuGYb/UStuyBM Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQBB6F55b2iPiv4Uz4cRAhZlAJ9rBuB2VT8fNz1yLcLTs/AJVC4wmQCglx9X kS048rdNvbAF9w8XyIE+yDI= =ewWc -----END PGP SIGNATURE----- --=-GUg39wgPuGYb/UStuyBM-- From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 00:12:01 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FFC116A4CE; Sat, 15 Jan 2005 00:12:01 +0000 (GMT) Received: from outbound0.sv.meer.net (outbound0.sv.meer.net [205.217.152.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D58443D1F; Sat, 15 Jan 2005 00:12:01 +0000 (GMT) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (mail.meer.net [209.157.152.14]) j0F0C0V1047100; Fri, 14 Jan 2005 16:12:00 -0800 (PST) (envelope-from jrhett@mail.meer.net) Received: from mail.meer.net (localhost [127.0.0.1]) by mail.meer.net (8.12.10/8.12.10/meer) with ESMTP id j0F0BaHo015089; Fri, 14 Jan 2005 16:11:36 -0800 (PST) (envelope-from jrhett@mail.meer.net) Received: (from jrhett@localhost) by mail.meer.net (8.12.1/8.12.10) id j0F0BXbn015078; Fri, 14 Jan 2005 16:11:33 -0800 (PST) (envelope-from jrhett) Date: Fri, 14 Jan 2005 16:11:33 -0800 From: Joe Rhett To: Maxim Sobolev Message-ID: <20050115001132.GA13665@meer.net> References: <41E7AF5A.3020603@portaone.com> <20050114120042.GE1175@k7.mavetju> <41E7B78B.9020709@portaone.com> <41E7CBBA.3040408@FreeBSD.org> <41E7DBA4.3010407@portaone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41E7DBA4.3010407@portaone.com> User-Agent: Mutt/1.4i Organization: Meer.net LLC cc: ports@freebsd.org cc: Alex Dupre Subject: Re: PHP ports/packages framework is seriously flawed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 00:12:01 -0000 On Fri, Jan 14, 2005 at 04:48:04PM +0200, Maxim Sobolev wrote: > Please read my original message. This non-CLI version is seriously > flawed and mostly useless, since almost any practical PHP project will > use one or another "standard" PHP extension, while www/mod_php compiles > with all extensions disabled and doesn't allow one to install any of > them separately. You didn't read UPDATING did you? The extensions are all in separate modules now. So you build mod_php, then you add on each extension as a separate package. It's not flawed, it is actually done The Right Way. It works very well. -- Joe Rhett Senior Geek Meer.net From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 04:23:04 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CF4E16A4CE for ; Sat, 15 Jan 2005 04:23:04 +0000 (GMT) Received: from spatula.dreamhost.com (spatula.dreamhost.com [66.33.205.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4002243D3F for ; Sat, 15 Jan 2005 04:23:04 +0000 (GMT) (envelope-from tim@tntluoma.com) Received: from [192.168.2.2] (adsl-69-211-82-66.dsl.wotnoh.ameritech.net [69.211.82.66]) by spatula.dreamhost.com (Postfix) with ESMTP id 39FBC17D02C; Fri, 14 Jan 2005 20:22:32 -0800 (PST) Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Timothy Luoma Date: Fri, 14 Jan 2005 23:21:12 -0500 To: timur@gnu.org X-Mailer: Apple Mail (2.619) cc: ports@FreeBSD.org Subject: FreeBSD Port: samba3-3.0.10,1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 04:23:04 -0000 Just a small typo found when I was installing samba3 on a FreeBSD 5.3 system: !!! Due to the bug in the deinstall procedure in port versions prior 3.0.9 !!! you may loose your valuable /var/db/samba/windbindd_* files. !!! Please, BACKUP them before you continue the (re)installation. "loose" should be "lose" From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 05:14:01 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF4E816A4CE for ; Sat, 15 Jan 2005 05:14:01 +0000 (GMT) Received: from connectmail.carleton.ca (connectmail.carleton.ca [134.117.2.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A6AF43D1F for ; Sat, 15 Jan 2005 05:14:01 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from [192.168.1.105] ([134.117.145.25]) by connectmail.carleton.ca (iPlanet Messaging Server 5.2 HotFix 2.02 (built Oct 21 2004)) with ESMTPSA id <0IAC0022TEJDAX@connectmail.carleton.ca> for ports@FreeBSD.org; Sat, 15 Jan 2005 00:14:01 -0500 (EST) Date: Sat, 15 Jan 2005 00:16:27 -0500 From: Adam Weinberger In-reply-to: To: Timothy Luoma Message-id: <41E8A72B.6080009@FreeBSD.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla Thunderbird 1.0 (X11/20050105) References: cc: ports@FreeBSD.org cc: timur@gnu.org Subject: Re: FreeBSD Port: samba3-3.0.10,1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 05:14:01 -0000 Timothy Luoma wrote: > > Just a small typo found when I was installing samba3 on a FreeBSD 5.3 > system: > > !!! Due to the bug in the deinstall procedure in port versions prior > 3.0.9 > !!! you may loose your valuable /var/db/samba/windbindd_* files. > !!! Please, BACKUP them before you continue the (re)installation. > > "loose" should be "lose" I've reworded the warning message. Thanks for catching it. # Adam -- Adam Weinberger adamw@magnesium.net || adamw@FreeBSD.org adamw@vectors.cx || adamw@gnome.org http://www.vectors.cx From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 11:16:39 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CAEF16A4CE; Sat, 15 Jan 2005 11:16:39 +0000 (GMT) Received: from niobe.ijs.si (mail.ijs.si [193.2.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2801A43D41; Sat, 15 Jan 2005 11:16:38 +0000 (GMT) (envelope-from dejan.lesjak@ijs.si) Received: from localhost (localhost.ijs.si [127.0.0.1]) by niobe.ijs.si (Postfix) with ESMTP id EC6F61DD461; Sat, 15 Jan 2005 12:16:36 +0100 (CET) Received: from niobe.ijs.si ([127.0.0.1]) by localhost (niobe.ijs.si [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 12884-16; Sat, 15 Jan 2005 12:16:35 +0100 (CET) Received: from metatron.ijs.si (metatron.ijs.si [193.2.4.152]) by niobe.ijs.si (Postfix) with ESMTP id EFC0A1DD46A; Sat, 15 Jan 2005 12:16:34 +0100 (CET) Received: from idefix.ijs.si (idefix.ijs.si [193.2.4.33]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (No client certificate requested) by metatron.ijs.si (Postfix) with ESMTP id 8AC7D1C00738; Sat, 15 Jan 2005 12:16:34 +0100 (CET) From: Dejan Lesjak To: freebsd-x11@freebsd.org Date: Sat, 15 Jan 2005 12:16:33 +0100 User-Agent: KMail/1.7.2 References: <20050104092619.GA787@straylight.m.ringlet.net> <20050104093017.GA1048@straylight.m.ringlet.net> In-Reply-To: <20050104093017.GA1048@straylight.m.ringlet.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200501151216.33792.dejan.lesjak@ijs.si> X-Virus-Scanned: amavisd-new at ijs.si cc: x11@freebsd.org cc: Peter Pentchev cc: freebsd-ports@freebsd.org Subject: Re: [PATCH] X.org/XFree86 DEPENDS_TARGET X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 11:16:39 -0000 On Tuesday 04 of January 2005 10:30, Peter Pentchev wrote: > On Tue, Jan 04, 2005 at 11:26:19AM +0200, Peter Pentchev wrote: > > Hi, > > > > Maybe I should have spoken up earlier, since I've been running with > > this little patch for pretty much a year now, but still, better late > > than never, I guess :) > > Whoops. I certainly meant to CC this to -ports. > > > Currently, both x11/xorg and x11/XFree86-4 redefine the DEPENDS_TARGET > > when a package is requested. What do y'all think about the following > > trivial patch that makes it only override DEPENDS_TARGET if it does not > > already contain a 'package' target? I always build all ports with a > > DEPENDS_TARGET='install package clean', which helps a lot, especially > > with the X.org/XFree86 metaports ;) [snip] > > -.if make(package) > > +.if make(package) && ${DEPENDS_TARGET:Mpackage} == "" This doesn't seem to work if DEPENDS_TARGET is not defined, the following line however does: .if make(package) && empty(${DEPENDS_TARGET:Mpackage}) Does this still work in your case as expected? Dejan From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 11:46:14 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B29B16A4CE for ; Sat, 15 Jan 2005 11:46:14 +0000 (GMT) Received: from buexe.b-5.de (buexe.b-5.de [80.148.32.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0097043D31 for ; Sat, 15 Jan 2005 11:46:13 +0000 (GMT) (envelope-from lupe@lupe-christoph.de) Received: from antalya.lupe-christoph.de (antalya.lupe-christoph.de [172.17.0.9])j0FBkB0L018859 for ; Sat, 15 Jan 2005 12:46:11 +0100 Received: from localhost (localhost [127.0.0.1]) by antalya.lupe-christoph.de (Postfix) with ESMTP id C33CCB886 for ; Sat, 15 Jan 2005 12:46:24 +0100 (CET) Received: from antalya.lupe-christoph.de ([127.0.0.1]) by localhost (antalya [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 32144-04 for ; Sat, 15 Jan 2005 12:46:21 +0100 (CET) Received: by antalya.lupe-christoph.de (Postfix, from userid 1000) id 85AEAB885; Sat, 15 Jan 2005 12:46:21 +0100 (CET) Date: Sat, 15 Jan 2005 12:46:21 +0100 To: freebsd-ports@freebsd.org Message-ID: <20050115114621.GD10123@lupe-christoph.de> References: <20050113062739.GA28658@xor.obsecurity.org> <20050113180504.GA26064@xor.obsecurity.org> <20050114130404.250d6e26@apircalabu.dsd.ro> <20050114112918.GF69532@voodoo.oberon.net> <20050114211206.GF1175@k7.mavetju> <20050114215559.GA71927@xor.obsecurity.org> <20050114220344.GH1175@k7.mavetju> <20050114220835.GC74151@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20050114220835.GC74151@xor.obsecurity.org> User-Agent: Mutt/1.5.6+20040907i From: lupe@lupe-christoph.de (Lupe Christoph) X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at lupe-christoph.de Subject: Re: HEADS UP: pkg-plist strict enforcement starting X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 11:46:14 -0000 On Friday, 2005-01-14 at 14:08:37 -0800, Kris Kennaway wrote: > That would be a big cop-out - it's hardly friendly to make every port > user update to -stable or take manual steps to avoid a broken package > system. There needs to be a better solution than that. How do you make a port depend on a minimum version of another package? A port using a new feature could depend on sysutils/pkg_install, version foo.bar which first supported this feature. LUpe Christoph -- | lupe@lupe-christoph.de | http://www.lupe-christoph.de/ | | Ask not what your computer can do for you | | ask what you can do for your computer. | From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 11:47:06 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB6F716A4CE for ; Sat, 15 Jan 2005 11:47:05 +0000 (GMT) Received: from gandalf.online.bg (gandalf.online.bg [217.75.128.9]) by mx1.FreeBSD.org (Postfix) with SMTP id 4BAD743D1D for ; Sat, 15 Jan 2005 11:47:04 +0000 (GMT) (envelope-from roam@ringlet.net) Received: (qmail 3401 invoked from network); 15 Jan 2005 11:46:59 -0000 Received: from unknown (HELO straylight.ringlet.net) (213.16.36.109) by gandalf.online.bg with SMTP; 15 Jan 2005 11:46:59 -0000 Received: (qmail 4169 invoked by uid 1000); 15 Jan 2005 11:47:01 -0000 Date: Sat, 15 Jan 2005 13:47:00 +0200 From: Peter Pentchev To: Dejan Lesjak Message-ID: <20050115114700.GA784@straylight.m.ringlet.net> Mail-Followup-To: Dejan Lesjak , freebsd-x11@freebsd.org, freebsd-ports@freebsd.org References: <20050104092619.GA787@straylight.m.ringlet.net> <20050104093017.GA1048@straylight.m.ringlet.net> <200501151216.33792.dejan.lesjak@ijs.si> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="5vNYLRcllDrimb99" Content-Disposition: inline In-Reply-To: <200501151216.33792.dejan.lesjak@ijs.si> User-Agent: Mutt/1.5.6i cc: freebsd-x11@freebsd.org cc: freebsd-ports@freebsd.org Subject: Re: [PATCH] X.org/XFree86 DEPENDS_TARGET X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 11:47:06 -0000 --5vNYLRcllDrimb99 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jan 15, 2005 at 12:16:33PM +0100, Dejan Lesjak wrote: > On Tuesday 04 of January 2005 10:30, Peter Pentchev wrote: > > On Tue, Jan 04, 2005 at 11:26:19AM +0200, Peter Pentchev wrote: > > > Hi, > > > > > > Maybe I should have spoken up earlier, since I've been running with > > > this little patch for pretty much a year now, but still, better late > > > than never, I guess :) > > > > Whoops. I certainly meant to CC this to -ports. > > > > > Currently, both x11/xorg and x11/XFree86-4 redefine the DEPENDS_TARGET > > > when a package is requested. What do y'all think about the following > > > trivial patch that makes it only override DEPENDS_TARGET if it does n= ot > > > already contain a 'package' target? I always build all ports with a > > > DEPENDS_TARGET=3D'install package clean', which helps a lot, especial= ly > > > with the X.org/XFree86 metaports ;) > [snip] > > > -.if make(package) > > > +.if make(package) && ${DEPENDS_TARGET:Mpackage} =3D=3D "" >=20 > This doesn't seem to work if DEPENDS_TARGET is not defined, Good catch, thanks! =09 > the following line however does: >=20 > .if make(package) && empty(${DEPENDS_TARGET:Mpackage}) I think you mean empty(DEPENDS_TARGET:Mpackage) here, without the ${}, or it would always test the wrong variable for emptiness. > Does this still work in your case as expected? Yes, the following patch works for me. Thanks a lot! Index: ports/x11/XFree86-4/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/XFree86-4/Makefile,v retrieving revision 1.160 diff -u -r1.160 Makefile --- ports/x11/XFree86-4/Makefile 23 Dec 2004 01:35:41 -0000 1.160 +++ ports/x11/XFree86-4/Makefile 15 Jan 2005 11:43:34 -0000 @@ -48,7 +48,7 @@ @${ECHO_MSG} "upgrade XFree86. If you simply type 'make install' it may = use over 2GB to build" @${ECHO_MSG} "all of the subports. You can install the ports singly if y= ou are low on space." =20 -.if make(package) +.if make(package) && empty(DEPENDS_TARGET:Mpackage) DEPENDS_TARGET=3D"package" .endif .undef NOCLEANDEPENDS Index: ports/x11/xorg/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/xorg/Makefile,v retrieving revision 1.9 diff -u -r1.9 Makefile --- ports/x11/xorg/Makefile 23 Dec 2004 01:35:42 -0000 1.9 +++ ports/x11/xorg/Makefile 15 Jan 2005 11:44:31 -0000 @@ -55,7 +55,7 @@ @${ECHO_MSG} "upgrade X.Org. If you simply type 'make install' it may us= e over 2GB to build" @${ECHO_MSG} "all of the subports. You can install the ports singly if y= ou are low on space." =20 -.if make(package) +.if make(package) && empty(DEPENDS_TARGET:Mpackage) DEPENDS_TARGET=3D"package" .endif =20 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've heard that this sentence is a rumor. --5vNYLRcllDrimb99 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB6QK07Ri2jRYZRVMRAnfqAKC3lry4doEletVW7V7IfF8fWB4dSQCeJq74 n4moXHYNr3T6EbPCajZJaag= =1jhC -----END PGP SIGNATURE----- --5vNYLRcllDrimb99-- From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 11:51:53 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE60E16A4CE; Sat, 15 Jan 2005 11:51:53 +0000 (GMT) Received: from info.tsu.ru (info.tsu.ru [212.192.100.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 278B643D1F; Sat, 15 Jan 2005 11:51:52 +0000 (GMT) (envelope-from alter@isc.tsu.ru) Received: from isc.tsu.ru (isc.tsu.ru [212.192.98.163]) by info.tsu.ru (8.12.8p1/8.12.8/TSU) with ESMTP id j0FAbm2N050419; Sat, 15 Jan 2005 16:37:49 +0600 (TSK) (envelope-from alter@isc.tsu.ru) Received: from isc.tsu.ru (localhost [127.0.0.1]) by isc.tsu.ru (8.13.1/8.13.1) with ESMTP id j0FAlllL014784; Sat, 15 Jan 2005 16:47:47 +0600 (NOVT) (envelope-from alter@isc.tsu.ru) Received: from 212.192.101.53 (SquirrelMail authenticated user altermail) by isc.tsu.ru with HTTP; Sat, 15 Jan 2005 16:47:47 +0600 (NOVT) Message-ID: <46685.212.192.101.53.1105786067.squirrel@isc.tsu.ru> Date: Sat, 15 Jan 2005 16:47:47 +0600 (NOVT) From: "Vladimir" To: lev@freebsd.org User-Agent: SquirrelMail/1.4.3-isc MIME-Version: 1.0 Content-Type: text/plain;charset=utf-8 Content-Transfer-Encoding: 8bit X-Priority: 3 (Normal) Importance: Normal cc: ports@freebsd.org Subject: FreeBSD Port: subversion-1.1.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: alter@isc.tsu.ru List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 11:51:54 -0000 Hello, Lev! Happy New Year! :-) I would like to notice you that vendor's subversion is 1.1.3 Please, update port. -- Vladimir Lapshin From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 12:02:31 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4340316A4CE; Sat, 15 Jan 2005 12:02:31 +0000 (GMT) Received: from av3-2-sn1.fre.skanova.net (av3-2-sn1.fre.skanova.net [81.228.11.110]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6672E43D60; Sat, 15 Jan 2005 12:02:30 +0000 (GMT) (envelope-from david@scis.se) Received: by av3-2-sn1.fre.skanova.net (Postfix, from userid 502) id 7D9AD37EBF; Sat, 15 Jan 2005 13:02:29 +0100 (CET) Received: from smtp2-1-sn2.hy.skanova.net (smtp2-1-sn2.hy.skanova.net [81.228.8.177]) by av3-2-sn1.fre.skanova.net (Postfix) with ESMTP id 6E61837E48; Sat, 15 Jan 2005 13:02:29 +0100 (CET) Received: from scis.se (unknown [83.250.44.114]) by smtp2-1-sn2.hy.skanova.net (Postfix) with ESMTP id 5E02A37E42; Sat, 15 Jan 2005 13:02:29 +0100 (CET) Message-ID: <41E91480.2040305@scis.se> Date: Sat, 15 Jan 2005 14:02:56 +0100 From: David Steen User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.5) Gecko/20040724 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gerald@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: gcc-4.0.0_20050109 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 12:02:31 -0000 Hi, I am experiencing problems to build Scilab with gcc 3.4 (that are included in the FreeBSD 5.3 release). They seem to be related to the fortran compiler, because when installing gcc 3.2 ang using g77-32 for the fortran compilations the build works. I have not tried gcc 3.3. Do You know of any changes in g77 that might have caused this incompatibility? The error symptom is that the build works, but when running Scilab, simple operations such as 1 diveded by 2 hangs (the program seems to get stuck in a loop, since it is using a lot of processor time). I do not have enough insight into Scilab to know what fortran code gets called. I see that a gcc 4.0 have emerged in the FeeBSD ports. Is this a prerelease version (I could not find any info on the gcc website about a 4.0 release)? I noticed that there are one version with the new gfortran compiler. Do You have any idea regarding which of the two fortran compilers will have the best chance of building Scilab? Regards David Steen From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 12:16:59 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D66E16A4CE for ; Sat, 15 Jan 2005 12:16:59 +0000 (GMT) Received: from onyx.hysteria.sk (onyx.hysteria.sk [195.168.3.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AE7343D39 for ; Sat, 15 Jan 2005 12:16:58 +0000 (GMT) (envelope-from skrat@hysteria.sk) Received: (qmail 29411 invoked by uid 0); 15 Jan 2005 12:16:50 -0000 Received: from 228.red-217-217-103.user.auna.net (HELO [192.168.2.64]) ([217.217.103.228]) (envelope-sender ) by c0re.hysteria.sk (qmail-ldap-1.03) with SMTP for ; 15 Jan 2005 12:16:50 -0000 Message-ID: <41E90994.4030201@hysteria.sk> Date: Sat, 15 Jan 2005 13:16:20 +0100 From: "dusan >>" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.5) Gecko/20050108 X-Accept-Language: sk, en-us, en MIME-Version: 1.0 To: dyeske@yahoo.com Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on onyx.hysteria.sk X-Spam-Status: No, hits=-4.9 required=5.0 cc: ports@FreeBSD.org Subject: FreeBSD Port: xmms-sndfile-1.2 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 12:16:59 -0000 hi, I have little problem with your xmms plugin, I am trying to play wav files encoded with gsm-6.10, but xmms don't play them to end, only a part, when I use sndfile-play, it's ok, there is a problem with plugin.. -- -- . dusan . . jabber: skrat@jabber.sk -- icq : 322853999 -- msn : skrat64@hotmail.com -- -- | _ ___ _.--. -- | \`.|\..----...-'` `-._.-'_.-'` -- | / ' ` , __.--' -- | )/' _/ \ `-_, / -- | `-'" `"\_ ,_.-;_.-\_ ', -- | _.-'_./ {_.' ; / -- {_.-``-' {_/ From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 14:19:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5206616A4CE for ; Sat, 15 Jan 2005 14:19:47 +0000 (GMT) Received: from mindfields.energyhq.es.eu.org (73.Red-213-97-200.pooles.rima-tde.net [213.97.200.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09A7B43D55 for ; Sat, 15 Jan 2005 14:19:46 +0000 (GMT) (envelope-from flynn@energyhq.es.eu.org) Received: from scienide.energyhq.es.eu.org (scienide.energyhq.es.eu.org [192.168.100.1]) by mindfields.energyhq.es.eu.org (Postfix) with SMTP id 75880356E0 for ; Sat, 15 Jan 2005 15:19:43 +0100 (CET) Date: Sat, 15 Jan 2005 15:19:25 +0100 From: Miguel Mendez To: ports@freebsd.org Message-Id: <20050115151925.795e9f4f.flynn@energyhq.es.eu.org> X-Mailer: Sylpheed version 0.9.99-gtk2-20041024 (GTK+ 2.4.14; i386-portbld-freebsd5.3) Mime-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg="pgp-sha1"; boundary="Signature=_Sat__15_Jan_2005_15_19_25_+0100_6MmrWa2o.dUjOr1q" Subject: Can somebody close ports/73203? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 14:19:47 -0000 --Signature=_Sat__15_Jan_2005_15_19_25_+0100_6MmrWa2o.dUjOr1q Content-Type: text/plain; charset=US-ASCII Content-Disposition: inline Content-Transfer-Encoding: 7bit I submitted this back in October and it's been sitting there since then. I've seen Jonathan Weiss submitted a better port in ports/76249 so I'd rather see his version comitted. Cheers, -- Miguel Mendez http://www.energyhq.es.eu.org PGP Key: 0xDC8514F1 --Signature=_Sat__15_Jan_2005_15_19_25_+0100_6MmrWa2o.dUjOr1q Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (FreeBSD) iD8DBQFB6SZwnLctrNyFFPERAtE1AJ4yL3FKUdxiWKyDpN/NvXkjcRXNUwCgzDPa PxF8JeLx3ebEjnsgDchm66M= =pqvD -----END PGP SIGNATURE----- --Signature=_Sat__15_Jan_2005_15_19_25_+0100_6MmrWa2o.dUjOr1q-- From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 14:19:57 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAB1016A4E2 for ; Sat, 15 Jan 2005 14:19:57 +0000 (GMT) Received: from sdf.lonestar.org (mx.freeshell.org [192.94.73.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6607843D1D for ; Sat, 15 Jan 2005 14:19:55 +0000 (GMT) (envelope-from nunotex@freeshell.org) Received: from nunotex.local ([213.13.232.68]) (authenticated (0 bits)) by sdf.lonestar.org (8.12.10/8.12.10) with ESMTP id j0FEJVFY012753 for ; Sat, 15 Jan 2005 14:19:32 GMT Received: by nunotex.local (Postfix, from userid 1001) id A044841FD; Sat, 15 Jan 2005 14:19:44 +0000 (WET) Date: Sat, 15 Jan 2005 14:19:44 +0000 From: Nuno Teixeira To: freebsd-ports@freebsd.org Message-ID: <20050115141944.GA79735@nunotex.local> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Operating-System: FreeBSD 5.3-STABLE User-Agent: Mutt/1.5.6i Subject: xorg-clients build failure on 5-STABLE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 14:19:57 -0000 Hello all, I'm trying to update xorg-clients on 5-STABLE but it fails: ======================================== cc -o xdriinfo -O2 -pipe -march=athlon-xp -ansi -pedantic -Wno-system-headers -D asm=__asm -Wall -Wpointer-arith -Wundef -L/usr/ports/x11/xorg-clients/ work/xc/exports/lib xdriinfo.o -lGL -lXext -lX11 -L/usr/X11R6/lib -pthread -Wl,-rpath,/usr/X11R6/lib -Wl,-rpath-link,/usr/ports/x11/xorg-clients/work/xc/ex ports/lib xdriinfo.o(.text+0x5c): In function `main': : undefined reference to `glXGetProcAddress' xdriinfo.o(.text+0x6d): In function `main': : undefined reference to `glXGetProcAddress' *** Error code 1 Stop in /usr/ports/x11/xorg-clients/work/xc/programs/xdriinfo. *** Error code 1 Stop in /usr/ports/x11/xorg-clients/work/xc/programs. *** Error code 1 Stop in /usr/ports/x11/xorg-clients. ======================================== Does anyone have this error? Thanks, Nuno Teixeira -- SDF Public Access UNIX System - http://sdf.lonestar.org From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 14:23:45 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9586516A4CE for ; Sat, 15 Jan 2005 14:23:45 +0000 (GMT) Received: from gandalf.online.bg (gandalf.online.bg [217.75.128.9]) by mx1.FreeBSD.org (Postfix) with SMTP id EB81D43D2D for ; Sat, 15 Jan 2005 14:23:43 +0000 (GMT) (envelope-from roam@ringlet.net) Received: (qmail 3097 invoked from network); 15 Jan 2005 14:23:37 -0000 Received: from unknown (HELO straylight.ringlet.net) (213.16.36.109) by gandalf.online.bg with SMTP; 15 Jan 2005 14:23:37 -0000 Received: (qmail 23941 invoked by uid 1000); 15 Jan 2005 14:23:40 -0000 Date: Sat, 15 Jan 2005 16:23:39 +0200 From: Peter Pentchev To: Joao Carlos Mendes Luis Message-ID: <20050115142339.GA774@straylight.m.ringlet.net> Mail-Followup-To: Joao Carlos Mendes Luis , ports@freebsd.org References: <20050107113259.GB832@straylight.m.ringlet.net> <41DECF3B.70606@jonny.eng.br> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="SUOF0GtieIMvvwua" Content-Disposition: inline In-Reply-To: <41DECF3B.70606@jonny.eng.br> User-Agent: Mutt/1.5.6i cc: ports@freebsd.org Subject: Re: FreeBSD port audio/id3ren update to 1.1b0 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 14:23:45 -0000 --SUOF0GtieIMvvwua Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Jan 07, 2005 at 04:04:43PM -0200, Jo?o Carlos Mendes Lu?s wrote: > I see no trouble in the patches. BTW, I no longer follow id3ren=20 > development, if you want, please take maintainership for it... I just committed the update and took over maintainership of the port. Thanks a lot! 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 jealous of the first word in this sentence. --SUOF0GtieIMvvwua Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB6Sdr7Ri2jRYZRVMRAsvbAJ9Eq6YKVnRigeYOiGiuLVxOIEZcFQCeOxH5 ETNkmfUVzp2YTXnp6JZe4ME= =KOUV -----END PGP SIGNATURE----- --SUOF0GtieIMvvwua-- From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 14:32:18 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46E2C16A4CE; Sat, 15 Jan 2005 14:32:18 +0000 (GMT) Received: from schurli.wu-wien.ac.at (schurli.wu-wien.ac.at [137.208.16.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E68743D41; Sat, 15 Jan 2005 14:32:17 +0000 (GMT) (envelope-from georg.graf@wu-wien.ac.at) Received: from schurli.wu-wien.ac.at (localhost [127.0.0.1]) j0FEWCsV009848; Sat, 15 Jan 2005 15:32:13 +0100 (CET) (envelope-from georg.graf@wu-wien.ac.at) Received: (from graf@localhost) by schurli.wu-wien.ac.at (8.12.11/8.12.11/Submit) id j0FEWBVE009847; Sat, 15 Jan 2005 15:32:11 +0100 (CET) (envelope-from georg.graf@wu-wien.ac.at) Date: Sat, 15 Jan 2005 15:32:11 +0100 From: Georg Graf To: "Jacques A. Vidrine" , "Greg 'groggy' Lehey" , Kris Kennaway , Garrett Wollman , Rasmus Kaj , ports@FreeBSD.org Message-ID: <20050115143211.GA9138@wu-wien.ac.at> References: <20050109054144.GA37692@xor.obsecurity.org> <200501090624.j096OJMn018874@khavrinen.lcs.mit.edu> <20050109054144.GA37692@xor.obsecurity.org> <200501090624.j096OJMn018874@khavrinen.lcs.mit.edu> <20050109054144.GA37692@xor.obsecurity.org> <20050110004629.GI88329@wantadilla.lemis.com> <20050110132915.GC5374@lum.celabo.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bp/iNruPH9dso1Pn" Content-Disposition: inline In-Reply-To: <20050110132915.GC5374@lum.celabo.org> User-Agent: Mutt/1.4.2.1i X-WU-wumi-status: clean v4.4.00/v4419 charon wu 802d22438d58cfb63495c6ad2cd1b597 Subject: Re: Removing net/arla (was: FreeBSD ports scheduled for removal) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 14:32:18 -0000 --bp/iNruPH9dso1Pn Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jan 10, 2005 at 07:29:15AM -0600, Jacques A. Vidrine wrote: > On Mon, Jan 10, 2005 at 11:16:29AM +1030, Greg 'groggy' Lehey wrote: > > On Saturday, 8 January 2005 at 21:41:44 -0800, Kris Kennaway wrote: > > > I'm willing to submit a new version of the Arla port, but I would very > > > much like to see ports/74113, heimdal upgrade from 0.6.1 to 0.6.3, be > > > commited first. > >=20 > > nectar? >=20 > This is one of the things I've been neglecting, but I'll be doing an > update of the Heimdal port (and base system) ``real soon now''. I > intend to split the Heimdal port into libraries and so forth. But, I'll > have a look at ports/74113, and if it seems OK, I'll just commit it in > the meantime. Thanks for the nudge (^_^) I have overhauled the arla port and upgraded it to 0.38 yesterday. I tested only on an i386 5.3 RELEASE machine, the compiling runs very smoothly on 5.3. Please consider to commit ports/76247! The pkg-plist is maybe not optimal, but I am not so experienced. I was not even sure whether to put '@unexec rmdir %D/bin 2>/dev/null || true' but I did not put it in. Thank you very much, George -- Vienna University of Economics and Business Administration Central and Internet Services Section Center for Computer Services UNIX Server Administration PGP/GPG Key ID: 0xa5232ad5 --bp/iNruPH9dso1Pn Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFB6SlrrYhtKaUjKtURAqB+AJ9N8NQeSZz8xitmmivFX8o4Q2xSBwCg0M5e cNoT+kL/N6b0euX11rNNJYI= =MV+0 -----END PGP SIGNATURE----- --bp/iNruPH9dso1Pn-- From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 14:47:22 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8650016A4CE for ; Sat, 15 Jan 2005 14:47:22 +0000 (GMT) Received: from marvin.muc.de (marvin.muc.de [193.149.48.2]) by mx1.FreeBSD.org (Postfix) with SMTP id ABEC043D5E for ; Sat, 15 Jan 2005 14:47:21 +0000 (GMT) (envelope-from mod-submit@uni-berlin.de) Received: (qmail 94911 invoked by alias); 15 Jan 2005 14:47:20 -0000 Delivered-To: mods-muc-lists-freebsd-ports@moderators.muc.de Received: (qmail 94904 invoked from network); 15 Jan 2005 14:47:19 -0000 Received: from mail.fu-berlin.de (130.133.1.2) by marvin.muc.de with SMTP; 15 Jan 2005 14:47:19 -0000 Received: by Mail.FU-Berlin.DE (Exim 4.42) from curry.zedat.fu-berlin.de ([160.45.10.36]) for muc-lists-freebsd-ports@moderators.muc.de with esmtp id <1CppCx-000AgQ-EC>; Sat, 15 Jan 2005 15:47:19 +0100 Received: by Curry.ZEDAT.FU-Berlin.DE (Smail3.2.0.98) from news.uni-berlin.de with bsmtp id ; Sat, 15 Jan 2005 15:47:19 +0100 (MET) To: muc-lists-freebsd-ports@moderators.muc.de Path: individual.net!not-for-mail From: Rudolf Polzer Newsgroups: muc.lists.freebsd.ports Date: 15 Jan 2005 14:47:18 GMT Lines: 37 Message-ID: References: <20050115141944.GA79735@nunotex.local> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Transfer-Encoding: 8bit X-Orig-X-Trace: individual.net JEF/Pjqq6WRj0Grj0FokUglfXTVmEJ2EqaExaOAm5u6RYXVim5 User-Agent: slrn/0.9.8.1 (FreeBSD) X-Mailman-Approved-At: Sat, 15 Jan 2005 15:22:35 +0000 Subject: Re: xorg-clients build failure on 5-STABLE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 14:47:22 -0000 »Nuno Teixeira« wrote: > I'm trying to update xorg-clients on 5-STABLE but it fails: > > ======================================== > cc -o xdriinfo -O2 -pipe -march=athlon-xp -ansi -pedantic -Wno-system-headers -D > asm=__asm -Wall -Wpointer-arith -Wundef -L/usr/ports/x11/xorg-clients/ > work/xc/exports/lib xdriinfo.o -lGL -lXext -lX11 -L/usr/X11R6/lib -pthread > -Wl,-rpath,/usr/X11R6/lib -Wl,-rpath-link,/usr/ports/x11/xorg-clients/work/xc/ex > ports/lib > xdriinfo.o(.text+0x5c): In function `main': > : undefined reference to `glXGetProcAddress' > xdriinfo.o(.text+0x6d): In function `main': > : undefined reference to `glXGetProcAddress' > *** Error code 1 > > Stop in /usr/ports/x11/xorg-clients/work/xc/programs/xdriinfo. > *** Error code 1 > > Stop in /usr/ports/x11/xorg-clients/work/xc/programs. > *** Error code 1 > > Stop in /usr/ports/x11/xorg-clients. > ======================================== > > Does anyone have this error? I had it. I then rebuilt xorg-libraries and xorgs-clients after that. Then it worked. Perhaps this is a nvidia problem? -- / --- Where bots rampage, I'm there to take them down! --- \ / ------ Where trouble arises, I'm there to cause it! ------ \ \ Where an enemy tries to frag me, victory will be mine!!!1! / {{dup[exch{dup exec}fork =}loop}dup exec >> http://www.ccc-offenbach.org << From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 15:28:11 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD95916A4CE for ; Sat, 15 Jan 2005 15:28:11 +0000 (GMT) Received: from sdf.lonestar.org (mx.freeshell.org [192.94.73.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F25F43D1F for ; Sat, 15 Jan 2005 15:28:11 +0000 (GMT) (envelope-from nunotex@freeshell.org) Received: from nunotex.local ([213.13.232.68]) (authenticated (0 bits)) by sdf.lonestar.org (8.12.10/8.12.10) with ESMTP id j0FFRkeC027105; Sat, 15 Jan 2005 15:27:48 GMT Received: by nunotex.local (Postfix, from userid 1001) id CE9484251; Sat, 15 Jan 2005 15:27:59 +0000 (WET) Date: Sat, 15 Jan 2005 15:27:59 +0000 From: Nuno Teixeira To: Rudolf Polzer Message-ID: <20050115152759.GA97420@nunotex.local> References: <20050115141944.GA79735@nunotex.local> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Operating-System: FreeBSD 5.3-STABLE User-Agent: Mutt/1.5.6i cc: freebsd-ports@freebsd.org Subject: Re: xorg-clients build failure on 5-STABLE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 15:28:11 -0000 Hi, Thanks. I will try rebuild libraries first and clients after. I don't think this is a nvidia problem, because it is independent on xorg sources. I will let you know my results. Yours, Nuno Teixeira On Sat, Jan 15, 2005 at 02:47:18PM +0000, Rudolf Polzer wrote: > »Nuno Teixeira« wrote: > > I'm trying to update xorg-clients on 5-STABLE but it fails: > > > > ======================================== > > cc -o xdriinfo -O2 -pipe -march=athlon-xp -ansi -pedantic -Wno-system-headers -D > > asm=__asm -Wall -Wpointer-arith -Wundef -L/usr/ports/x11/xorg-clients/ > > work/xc/exports/lib xdriinfo.o -lGL -lXext -lX11 -L/usr/X11R6/lib -pthread > > -Wl,-rpath,/usr/X11R6/lib -Wl,-rpath-link,/usr/ports/x11/xorg-clients/work/xc/ex > > ports/lib > > xdriinfo.o(.text+0x5c): In function `main': > > : undefined reference to `glXGetProcAddress' > > xdriinfo.o(.text+0x6d): In function `main': > > : undefined reference to `glXGetProcAddress' > > *** Error code 1 > > > > Stop in /usr/ports/x11/xorg-clients/work/xc/programs/xdriinfo. > > *** Error code 1 > > > > Stop in /usr/ports/x11/xorg-clients/work/xc/programs. > > *** Error code 1 > > > > Stop in /usr/ports/x11/xorg-clients. > > ======================================== > > > > Does anyone have this error? > > I had it. I then rebuilt xorg-libraries and xorgs-clients after that. Then it > worked. > > Perhaps this is a nvidia problem? > > > -- > / --- Where bots rampage, I'm there to take them down! --- \ > / ------ Where trouble arises, I'm there to cause it! ------ \ > \ Where an enemy tries to frag me, victory will be mine!!!1! / > {{dup[exch{dup exec}fork =}loop}dup exec >> http://www.ccc-offenbach.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" -- SDF Public Access UNIX System - http://sdf.lonestar.org From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 16:23:02 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E1AD16A4CE for ; Sat, 15 Jan 2005 16:23:02 +0000 (GMT) Received: from web51401.mail.yahoo.com (web51401.mail.yahoo.com [206.190.38.180]) by mx1.FreeBSD.org (Postfix) with SMTP id C586243D3F for ; Sat, 15 Jan 2005 16:23:01 +0000 (GMT) (envelope-from pascal_gaudette@yahoo.ca) Received: (qmail 38569 invoked by uid 60001); 15 Jan 2005 16:23:01 -0000 Message-ID: <20050115162301.38566.qmail@web51401.mail.yahoo.com> Received: from [66.11.174.184] by web51401.mail.yahoo.com via HTTP; Sat, 15 Jan 2005 11:23:01 EST Date: Sat, 15 Jan 2005 11:23:01 -0500 (EST) From: Pascal Gaudette To: ports@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: FreeBSD Port: qwt-0.4.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 16:23:02 -0000 Hi, This project released a new version (4.2.0) on Nov 16th 2004. Would it be possible to upgrade the FreeBSD port to the latest version? The Sourceforge page is here: http://sourceforge.net/projects/qwt I'll maybe have a look at the Porter's Handbook to see how its done, but I've never done anything with ports other than build them... Thanks in advance, ===== Pascal Gaudette ______________________________________________________________________ Post your free ad now! http://personals.yahoo.ca From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 16:31:21 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21B4716A4CE for ; Sat, 15 Jan 2005 16:31:21 +0000 (GMT) Received: from sdf.lonestar.org (mx.freeshell.org [192.94.73.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9005B43D39 for ; Sat, 15 Jan 2005 16:31:20 +0000 (GMT) (envelope-from nunotex@freeshell.org) Received: from nunotex.local ([213.13.232.68]) (authenticated (0 bits)) by sdf.lonestar.org (8.12.10/8.12.10) with ESMTP id j0FGUuYo011705; Sat, 15 Jan 2005 16:30:57 GMT Received: by nunotex.local (Postfix, from userid 1001) id E90C441F2; Sat, 15 Jan 2005 16:31:09 +0000 (WET) Date: Sat, 15 Jan 2005 16:31:09 +0000 From: Nuno Teixeira To: Rudolf Polzer Message-ID: <20050115163109.GA83236@nunotex.local> References: <20050115141944.GA79735@nunotex.local> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: X-Operating-System: FreeBSD 5.3-STABLE User-Agent: Mutt/1.5.6i cc: freebsd-ports@freebsd.org Subject: Re: xorg-clients build failure on 5-STABLE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 16:31:21 -0000 Hi, It worked! Thanks, Nuno On Sat, Jan 15, 2005 at 02:47:18PM +0000, Rudolf Polzer wrote: > »Nuno Teixeira« wrote: > > I'm trying to update xorg-clients on 5-STABLE but it fails: > > > > ======================================== > > cc -o xdriinfo -O2 -pipe -march=athlon-xp -ansi -pedantic -Wno-system-headers -D > > asm=__asm -Wall -Wpointer-arith -Wundef -L/usr/ports/x11/xorg-clients/ > > work/xc/exports/lib xdriinfo.o -lGL -lXext -lX11 -L/usr/X11R6/lib -pthread > > -Wl,-rpath,/usr/X11R6/lib -Wl,-rpath-link,/usr/ports/x11/xorg-clients/work/xc/ex > > ports/lib > > xdriinfo.o(.text+0x5c): In function `main': > > : undefined reference to `glXGetProcAddress' > > xdriinfo.o(.text+0x6d): In function `main': > > : undefined reference to `glXGetProcAddress' > > *** Error code 1 > > > > Stop in /usr/ports/x11/xorg-clients/work/xc/programs/xdriinfo. > > *** Error code 1 > > > > Stop in /usr/ports/x11/xorg-clients/work/xc/programs. > > *** Error code 1 > > > > Stop in /usr/ports/x11/xorg-clients. > > ======================================== > > > > Does anyone have this error? > > I had it. I then rebuilt xorg-libraries and xorgs-clients after that. Then it > worked. > > Perhaps this is a nvidia problem? > > > -- > / --- Where bots rampage, I'm there to take them down! --- \ > / ------ Where trouble arises, I'm there to cause it! ------ \ > \ Where an enemy tries to frag me, victory will be mine!!!1! / > {{dup[exch{dup exec}fork =}loop}dup exec >> http://www.ccc-offenbach.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" -- SDF Public Access UNIX System - http://sdf.lonestar.org From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 16:42:42 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8F1616A4CE; Sat, 15 Jan 2005 16:42:42 +0000 (GMT) Received: from ares.wolfpond.org (ns1.wolfpond.org [62.212.96.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84C4643D1D; Sat, 15 Jan 2005 16:42:37 +0000 (GMT) (envelope-from ftigeot@aoi.wolfpond.org) Received: from aoi.wolfpond.org (aoi.wolfpond.org [IPv6:2001:7a8:24db:1:20c:76ff:feb4:27e1]) by ares.wolfpond.org (8.13.1/8.13.1) with ESMTP id j0FGgZW9007633; Sat, 15 Jan 2005 17:42:36 +0100 (CET) (envelope-from ftigeot@aoi.wolfpond.org) Received: from aoi.wolfpond.org (localhost [127.0.0.1]) by aoi.wolfpond.org (8.13.1/8.13.1) with ESMTP id j0FGgcfw042069; Sat, 15 Jan 2005 17:42:38 +0100 (CET) (envelope-from ftigeot@aoi.wolfpond.org) Received: (from ftigeot@localhost) by aoi.wolfpond.org (8.13.1/8.13.1/Submit) id j0FGgcqB042068; Sat, 15 Jan 2005 17:42:38 +0100 (CET) (envelope-from ftigeot) Date: Sat, 15 Jan 2005 17:42:38 +0100 From: Francois Tigeot To: Michael Nottebrock Message-ID: <20050115164238.GA38678@aoi.wolfpond.org> References: <41CAAA60.2080001@freebsd.org> <20041226171434.GA2658@aoi.wolfpond.org> <41E532C6.20703@freebsd.org> <20050112203810.GA1892@aoi.wolfpond.org> <41E76E5E.1050804@gmx.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <41E76E5E.1050804@gmx.net> User-Agent: Mutt/1.4.2.1i cc: freebsd-ports@freebsd.org cc: Mark Ovens Subject: Re: Digikam broken? Mutex lock failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 16:42:43 -0000 On Fri, Jan 14, 2005 at 08:01:50AM +0100, Michael Nottebrock wrote: > Francois Tigeot wrote: > > > >I rebuilt digikam today, still no change. The gui appears to run fine for > >a moment and crash when I select the camera. > > Look at (or save) the build output of digikam. If you have anything saying > "--as-needed" in there, you didn't cvsup or didn't cvsup the needed parts > of the ports-tree (the change is in Mk/bsd.kde.mk). I have just rebuilt digikam once more. I have no trace of "--as-needed" in the build log file; my bsd.kde.mk is version 1.48. When I launch digikam, the main window appears normally. Howewer, selecting an option in the menus result quite rapidly (2-3 seconds) in a non-responsive window. It isn't just the camera selection as I previously thought; most menu items give the same result. When I kill the application, this messages appear in the terminal window : Mutex destroy failure: Device busy ICE default IO error handler doing an exit(), pid = 42052, errno = 2 The binary is linked to libpthread.so.1: $ ldd /usr/local/bin/digikam | grep pthrea libpthread.so.1 => /usr/lib/libpthread.so.1 (0x804202000) I tried to remap libpthread to libthr with libmap.conf but the symptoms didn't change. -- Francois Tigeot From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 16:53:44 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BB5316A4CE for ; Sat, 15 Jan 2005 16:53:44 +0000 (GMT) Received: from secnap2.secnap.com (secnap2.secnap.net [204.89.241.128]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E9A643D41 for ; Sat, 15 Jan 2005 16:53:43 +0000 (GMT) (envelope-from scheidell@secnap.net) MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Date: Sat, 15 Jan 2005 11:53:41 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Fix for Thread-Index: AcT7IsovRtWi6xGGQcWPSOiHkYBJ+A== From: "Michael Scheidell" To: cc: Nakai@technologist.com Subject: Fix for X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 16:53:44 -0000 Posted in xml, gnome and org. (november 29th) Ports cvsup os of jan 15th still didn't fix this. Patch to fix this below > > libxml2-2.6.16 build errors out on MINGW with MSYS in > > encoding.c: In function `ISO8859xToUTF8':encoding.c:2338:=20 > `xlattable'=20 > > undeclared (first use in this function) >=20 > Open the file in an editor, go to line 2338, and replace=20 > "xlattable" with > "unicodetable". It compiles fine afterward. Apparently this=20 > line of code was > copied from another function in which "xlattable" was the=20 > name of the function > parameter, and the author didn't think to rename the variable=20 > when he copied it. diff -bBru encoding.c.orig encoding.c --- encoding.c.orig Sat Nov 6 07:19:31 2004 +++ encoding.c Sat Jan 15 11:50:07 2005 @@ -2335,7 +2335,7 @@ unsigned int c; if ((out =3D=3D NULL) || (outlen =3D=3D NULL) || (inlen =3D=3D = NULL) || - (in =3D=3D NULL) || (xlattable =3D=3D NULL)) + (in =3D=3D NULL) || (unicodetable =3D=3D NULL)) return(-1); outend =3D out + *outlen; inend =3D in + *inlen; --=20 Michael Scheidell, CTO 561-999-5000, ext 1131 SECNAP Network Security Corporation Keep up to date with latest information on IT security: Real time security alerts: http://www.secnap.com/news =20 From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 16:55:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4439916A4CF for ; Sat, 15 Jan 2005 16:55:03 +0000 (GMT) Received: from secnap2.secnap.com (secnap2.secnap.net [204.89.241.128]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8223043D2D for ; Sat, 15 Jan 2005 16:55:02 +0000 (GMT) (envelope-from scheidell@secnap.net) MIME-Version: 1.0 X-MimeOLE: Produced By Microsoft Exchange V6.0.6603.0 Date: Sat, 15 Jan 2005 11:54:58 -0500 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Libxml2 port maintainer missing? Thread-Index: AcT7IsovRtWi6xGGQcWPSOiHkYBJ+AAAAOVDAAAIOdA= From: "Michael Scheidell" To: Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Libxml2 port maintainer missing? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 16:55:03 -0000 > -----Original Message----- > From: System Administrator =20 > Sent: Saturday, January 15, 2005 11:54 AM > To: Nakai@technologist.com > Subject: Undeliverable:Fix for=20 >=20 > Your message did not reach some or all of the intended recipients. >=20 > Subject: Fix for=20 > Sent: 1/15/2005 11:54 AM >=20 > The following recipient(s) could not be reached: >=20 > Nakai@technologist.com on 1/15/2005 11:54 AM > There was a SMTP communication problem with the > recipient's email server. Please contact your system administrator. > : User unknown> >=20 From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 17:52:47 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAEA316A4CE for ; Sat, 15 Jan 2005 17:52:47 +0000 (GMT) Received: from connectmail.carleton.ca (connectmail.carleton.ca [134.117.2.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9836143D39 for ; Sat, 15 Jan 2005 17:52:47 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from [192.168.1.105] ([134.117.145.25]) by connectmail.carleton.ca (iPlanet Messaging Server 5.2 HotFix 2.02 (built Oct 21 2004)) with ESMTPSA id <0IAD002OCDNZAX@connectmail.carleton.ca> for ports@freebsd.org; Sat, 15 Jan 2005 12:52:47 -0500 (EST) Date: Sat, 15 Jan 2005 12:55:14 -0500 From: Adam Weinberger In-reply-to: To: Michael Scheidell Message-id: <41E95902.3040701@FreeBSD.org> MIME-version: 1.0 Content-type: text/plain; charset=ISO-8859-1; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla Thunderbird 1.0 (X11/20050105) References: cc: ports@freebsd.org Subject: Re: Libxml2 port maintainer missing? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 17:52:47 -0000 Michael Scheidell wrote: > >> -----Original Message----- >>From: System Administrator >>Sent: Saturday, January 15, 2005 11:54 AM >>To: Nakai@technologist.com >>Subject: Undeliverable:Fix for >> >>Your message did not reach some or all of the intended recipients. >> >> Subject: Fix for >> Sent: 1/15/2005 11:54 AM >> >>The following recipient(s) could not be reached: >> >> Nakai@technologist.com on 1/15/2005 11:54 AM >> There was a SMTP communication problem with the >>recipient's email server. Please contact your system administrator. >> >: User unknown> The maintainer of the port would be the email address that follows the word "MAINTAINER", in this case gnome@FreeBSD.org. # Adam -- Adam Weinberger adamw@magnesium.net || adamw@FreeBSD.org adamw@vectors.cx || adamw@gnome.org http://www.vectors.cx From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 18:54:03 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E344416A4CE for ; Sat, 15 Jan 2005 18:54:03 +0000 (GMT) Received: from research.suspicious.org (rso.suspicious.org [69.55.224.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id B43A643D46 for ; Sat, 15 Jan 2005 18:54:03 +0000 (GMT) (envelope-from atom@suspicious.org) Received: (qmail 83066 invoked by uid 1002); 15 Jan 2005 18:54:03 -0000 Message-ID: <20050115185402.83065.qmail@suspicious.org> Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Date: Sat, 15 Jan 2005 13:58:08 -0500 (EST) From: Atom 'Smasher' MIME-Version: 1.0 OpenPGP: id=0xB88D52E4D9F57808; algo=1 (RSA); size=4096; url=http://atom.smasher.org/pgp.txt To: ports@FreeBSD.org X-POM: The Moon is Waxing Crescent (35% of Full) X-Hashcash: 1:20:0501151858:ports@freebsd.org::DmRhGV1fTJW4kfni:000000 00000000000000000000000000000000002Oe/ Subject: FreeBSD Port: openssh-portable-3.9.0.1,1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 18:54:04 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA256 FreeBSD Port: openssh-portable-3.9.0.1,1 not working as expected: --sysconfdir=/etc/ssh this seems to be partially working and partially not working. if specified in the Makefile with "CONFIGURE_ARGS+=" it is partially ignored, causing problems. i got it working after cd'ing into the work dir and reconfiguring and making. then cd'ing back to the port dir and installing. IIRC this worked fine in previous versions. question: why isn't this the default? CONFIGURE_ARGS+=--without-zlib-version-check \ --sysconfdir=/etc/ssh \ --bindir=/usr/bin \ --sbindir=/usr/sbin \ --with-pam the seems to resemble the way things are installed when they leave the factory. - -- ...atom _________________________________________ PGP key - http://atom.smasher.org/pgp.txt 762A 3B98 A3C3 96C9 C6B7 582A B88D 52E4 D9F5 7808 ------------------------------------------------- "The conservation movement is a breeding ground of Communists and other subversives. We intend to clean them out, even if it means rounding up every bird watcher in the country." -- John Mitchell, US Atty. General 1969-1972 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) Comment: What is this gibberish? Comment: http://atom.smasher.org/links/#digital_signatures iQEcBAEBCAAGBQJB6WfFAAoJEAx/d+cTpVciRCYIAJ5uWFmUGJbPtWLYiDq4V/Cs DJcZFlzXT24kcTHsAgktMLPEehmfpPativ/mAQo7WKgvRK+WtEwTH338RTP9G5np FQBFI+1ck16TiMoJDe867+AYO+ZUqxHfq4HwyEO8QcGU7MFnkBI1DBlJIxbUvwJz HkiaKrGyjvFsv9A4JwdLZnRnubB59gcH52/w6b5RHEuVrews6vnfSRodlZTYh4uZ Fa0Y4jav6KBfyVbfJ/ksdO64EZyLwJQQPL0E0Qgff8sfF/YLZOXPJ50nPDsMKB7s yP8YZmb4GhJ7R91EraZUHKPDZHlG5hDqfnRipLd+7nDLd/sHoORNlqpCS5xpyFY= =vYkb -----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 19:14:35 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD6D316A4CE for ; Sat, 15 Jan 2005 19:14:35 +0000 (GMT) Received: from lakermmtao02.cox.net (lakermmtao02.cox.net [68.230.240.37]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E7D643D2F for ; Sat, 15 Jan 2005 19:14:35 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from mezz.mezzweb.com ([68.103.32.140]) by lakermmtao02.cox.net (InterMail vM.6.01.04.00 201-2131-117-20041022) with ESMTP id <20050115191434.OYOO2202.lakermmtao02.cox.net@mezz.mezzweb.com>; Sat, 15 Jan 2005 14:14:34 -0500 Date: Sat, 15 Jan 2005 13:15:14 -0600 To: "Nuno Teixeira" References: <20050115141944.GA79735@nunotex.local> <20050115152759.GA97420@nunotex.local> From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=utf-8 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: In-Reply-To: <20050115152759.GA97420@nunotex.local> User-Agent: Opera M2/7.54u1 (Linux, build 892) cc: Rudolf Polzer cc: freebsd-ports@freebsd.org Subject: Re: xorg-clients build failure on 5-STABLE X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 19:14:36 -0000 On Sat, 15 Jan 2005 15:27:59 +0000, Nuno Teixeira wrote: > Hi, > > Thanks. I will try rebuild libraries first and clients after. > > I don't think this is a nvidia problem, because it is independent on > xorg sources. It is nvidia problem, because nvidia overwrite xorg-libraries's files and other xorg-* doesn't like to build with nvidia's old stuff. Nvidia driver needs to catch up. I had to create a package of xorg-libraries on my own for I can reinstall it at the everytime when other xorg-* need to be update. After that, I reinstall nvidia-driver to allow it overwrites xorg-libraries again. Cheers, Mezz > I will let you know my results. > > Yours, > > Nuno Teixeira > > On Sat, Jan 15, 2005 at 02:47:18PM +0000, Rudolf Polzer wrote: >> »Nuno Teixeira« wrote: >> > I'm trying to update xorg-clients on 5-STABLE but it fails: >> > >> > ======================================== >> > cc -o xdriinfo -O2 -pipe -march=athlon-xp -ansi -pedantic >> -Wno-system-headers -D >> > asm=__asm -Wall -Wpointer-arith -Wundef >> -L/usr/ports/x11/xorg-clients/ >> > work/xc/exports/lib xdriinfo.o -lGL -lXext -lX11 -L/usr/X11R6/lib >> -pthread >> > -Wl,-rpath,/usr/X11R6/lib >> -Wl,-rpath-link,/usr/ports/x11/xorg-clients/work/xc/ex >> > ports/lib >> > xdriinfo.o(.text+0x5c): In function `main': >> > : undefined reference to `glXGetProcAddress' >> > xdriinfo.o(.text+0x6d): In function `main': >> > : undefined reference to `glXGetProcAddress' >> > *** Error code 1 >> > >> > Stop in /usr/ports/x11/xorg-clients/work/xc/programs/xdriinfo. >> > *** Error code 1 >> > >> > Stop in /usr/ports/x11/xorg-clients/work/xc/programs. >> > *** Error code 1 >> > >> > Stop in /usr/ports/x11/xorg-clients. >> > ======================================== >> > >> > Does anyone have this error? >> >> I had it. I then rebuilt xorg-libraries and xorgs-clients after that. >> Then it >> worked. >> >> Perhaps this is a nvidia problem? >> >> >> -- >> / --- Where bots rampage, I'm there to take them down! --- \ >> / ------ Where trouble arises, I'm there to cause it! ------ \ >> \ Where an enemy tries to frag me, victory will be mine!!!1! / >> {{dup[exch{dup exec}fork =}loop}dup exec >> >> http://www.ccc-offenbach.org << -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 19:32:49 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C43216A4CE; Sat, 15 Jan 2005 19:32:49 +0000 (GMT) Received: from blues.jpj.net (blues.jpj.net [208.210.80.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9450D43D5C; Sat, 15 Jan 2005 19:32:48 +0000 (GMT) (envelope-from trevor@jpj.net) Received: from blues.jpj.net (localhost [127.0.0.1]) by blues.jpj.net (8.12.9p2/8.12.9) with ESMTP id j0FJWoff067275; Sat, 15 Jan 2005 14:32:50 -0500 (EST) (envelope-from trevor@jpj.net) Received: from localhost (trevor@localhost)j0FJWomO067270; Sat, 15 Jan 2005 14:32:50 -0500 (EST) X-Authentication-Warning: blues.jpj.net: trevor owned process doing -bs Date: Sat, 15 Jan 2005 14:32:50 -0500 (EST) From: Trevor Johnson To: re@freebsd.org, portmgr@freebsd.org Message-ID: <20050115141112.R51577@blues.jpj.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Scanned-By: MIMEDefang 2.48 on 127.0.0.1 cc: ports@freebsd.org cc: so@freebsd.org Subject: ports security fixes X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 19:32:49 -0000 I've recently updated some ports to fix security bugs. If possible I would like to see these corrections in 4.11. Here is a list of the ports with links to advisories. ports/www/linux-mozilla ports/graphics/linux-tiff ports/emulators/linux_base -- Trevor Johnson From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 21:03:57 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3DEE16A4CE; Sat, 15 Jan 2005 21:03:57 +0000 (GMT) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id E500D43D3F; Sat, 15 Jan 2005 21:03:56 +0000 (GMT) (envelope-from pfeifer@dbai.tuwien.ac.at) Received: from [128.131.111.60] (acrux [128.131.111.60]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id 472DA137A7; Sat, 15 Jan 2005 22:03:55 +0100 (CET) Date: Sat, 15 Jan 2005 22:04:00 +0100 (CET) From: Gerald Pfeifer To: Loren James Rittle In-Reply-To: <200501131613.j0DGDcnm092474@latour.waar.labs.mot.com> Message-ID: References: <200501081657.j08GvnML053109@sakura.ninth-nine.com> <200501131613.j0DGDcnm092474@latour.waar.labs.mot.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@FreeBSD.org cc: nork@FreeBSD.org cc: David O'Brien Subject: Re: Fix -pthread issue on lang/gcc3[34] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 21:03:57 -0000 On Wed, 12 Jan 2005, Loren James Rittle wrote: > David already patched both mainline and 3.4 branch on FSF. > > Thus, I think it is OK to have an equivalent port patch at least > until you start to use an FSF release with the patch. For the FreeBSD ports collection I am using snapshot of the FSF release branches (since these should get increasingly more stable and better and releases do not get specific QA), so whatever is committed to gcc.gnu.org usually ends up in the FreeBSD ports collection within a week. ;-) On Thu, 13 Jan 2005, Loren James Rittle wrote: >> I did not realize GCC 3.3 was still being updated. Loren do I have your >> permission to commit the GCC 3.4 fix into the 3.3 branch? I assume this >> branch is open to bug fixes? > You do indeed. Yes, definitely open to per-port bug fixes. Note: It > is unknown to me (at least) whether another release will ever spin off > that branch. GCC 3.3 is still being updated and I believe the release manager is planning to do another (final?) release at some time in spring... Gerald From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 21:20:36 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 663CC16A4CE for ; Sat, 15 Jan 2005 21:20:36 +0000 (GMT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 4C79043D41 for ; Sat, 15 Jan 2005 21:20:35 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: (qmail invoked by alias); 15 Jan 2005 21:20:33 -0000 Received: from pD95D85C2.dip.t-dialin.net (EHLO lofi.dyndns.org) (217.93.133.194) by mail.gmx.net (mp013) with SMTP; 15 Jan 2005 22:20:33 +0100 X-Authenticated: #443188 Received: from [192.168.8.4] (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id j0FLKK0Z074980 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 15 Jan 2005 22:20:22 +0100 (CET) (envelope-from michaelnottebrock@gmx.net) Message-ID: <41E98914.7000106@gmx.net> Date: Sat, 15 Jan 2005 22:20:20 +0100 From: Michael Nottebrock User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.2) Gecko/20040804 Netscape/7.2 (ax) X-Accept-Language: en-us, en, de-de MIME-Version: 1.0 To: Francois Tigeot References: <41CAAA60.2080001@freebsd.org> <20041226171434.GA2658@aoi.wolfpond.org> <41E532C6.20703@freebsd.org> <20050112203810.GA1892@aoi.wolfpond.org> <41E76E5E.1050804@gmx.net> <20050115164238.GA38678@aoi.wolfpond.org> In-Reply-To: <20050115164238.GA38678@aoi.wolfpond.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new X-Y-GMX-Trusted: 0 cc: freebsd-ports@freebsd.org cc: Mark Ovens Subject: Re: Digikam broken? Mutex lock failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 21:20:36 -0000 Francois Tigeot wrote: > The binary is linked to libpthread.so.1: > > $ ldd /usr/local/bin/digikam | grep pthrea > libpthread.so.1 => /usr/lib/libpthread.so.1 (0x804202000) Okay, that's a different issue than the one Mark was experiencing then (and I have no idea what it could be). -- ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org From owner-freebsd-ports@FreeBSD.ORG Sat Jan 15 21:26:12 2005 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C08FF16A4CE; Sat, 15 Jan 2005 21:26:12 +0000 (GMT) Received: from obsecurity.dyndns.org (CPE0050040655c8-CM00111ae02aac.cpe.net.cable.rogers.com [69.199.47.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8049443D1F; Sat, 15 Jan 2005 21:26:12 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 637D1513CE; Sat, 15 Jan 2005 13:26:11 -0800 (PST) Date: Sat, 15 Jan 2005 13:26:11 -0800 From: Kris Kennaway To: David Steen Message-ID: <20050115212611.GA52812@xor.obsecurity.org> References: <41E91480.2040305@scis.se> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="YZ5djTAD1cGYuMQK" Content-Disposition: inline In-Reply-To: <41E91480.2040305@scis.se> User-Agent: Mutt/1.4.2.1i cc: ports@FreeBSD.org cc: gerald@FreeBSD.org Subject: Re: FreeBSD Port: gcc-4.0.0_20050109 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 15 Jan 2005 21:26:12 -0000 --YZ5djTAD1cGYuMQK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Jan 15, 2005 at 02:02:56PM +0100, David Steen wrote: > Hi, >=20 > I am experiencing problems to build Scilab with gcc 3.4 (that are=20 > included in the FreeBSD 5.3 release). They seem to be related to the=20 > fortran compiler, because when installing gcc 3.2 ang using g77-32 for=20 > the fortran compilations the build works. I have not tried gcc 3.3. Do=20 > You know of any changes in g77 that might have caused this=20 > incompatibility? The error symptom is that the build works, but when=20 > running Scilab, simple operations such as 1 diveded by 2 hangs (the=20 > program seems to get stuck in a loop, since it is using a lot of=20 > processor time). I do not have enough insight into Scilab to know what=20 > fortran code gets called. You should discuss this with the SciLab developers. Kris --YZ5djTAD1cGYuMQK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.0 (FreeBSD) iD8DBQFB6YpyWry0BWjoQKURAikpAKCFsyro4f+TJG9LLABxXP7YJpO6TgCfRj0v PUDrQrWJ3visKzJCe6UxxIY= =TyrU -----END PGP SIGNATURE----- --YZ5djTAD1cGYuMQK--