From owner-freebsd-ports@FreeBSD.ORG Sun May 25 04:12:32 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64F6237B401 for ; Sun, 25 May 2003 04:12:31 -0700 (PDT) Received: from server.alexdupre.com (212-41-211-209.adsl.galactica.it [212.41.211.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1BE843F3F for ; Sun, 25 May 2003 04:12:29 -0700 (PDT) (envelope-from sysadmin@alexdupre.com) Received: from thunder.alexdupre.com (thunder.alexdupre.com [192.168.0.101]) by server.alexdupre.com (8.12.9/8.12.9) with ESMTP id h4PBCQW1040763; Sun, 25 May 2003 13:12:27 +0200 (CEST) (envelope-from sysadmin@alexdupre.com) Date: Sun, 25 May 2003 13:12:26 +0200 From: Alex Dupre X-Mailer: The Bat! (v1.60q) X-Priority: 3 (Normal) Message-ID: <22244580918.20030525131226@alexdupre.com> To: ports@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: Kris Kennaway Subject: Wrong BUILD_DEPENDS behaviour X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alex Dupre List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 11:12:33 -0000 The bsd.port.mk file says: # BUILD_DEPENDS - A list of "path:dir[:target]" tuples of other ports this # package depends to build (between the "extract" and # "build" stages, inclusive). For me this means extract, patch, configure and build stages. But later in the makefile we find: _EXTRACT_SEQ= extract-message checksum extract-depends pre-extract \ pre-extract-script do-extract \ post-extract post-extract-script [no build-depends] _PATCH_SEQ= patch-message patch-depends pre-patch pre-patch-script \ do-patch post-patch post-patch-script [no build-depends] _CONFIGURE_SEQ= build-depends lib-depends misc-depends configure-message \ patch-libtool pre-configure pre-configure-script \ do-configure post-configure post-configure-script [build-depends appears in configure stage] _BUILD_SEQ= build-message pre-build pre-build-script do-build \ post-build post-build-script [no build-depends] There is clearly something wrong IMHO...and this issue is exploited for example with the USE_REINPLACE knob. if defined(USE_REINPLACE) REINPLACE_ARGS?= -i.bak .if ${OSVERSION} < 460101 || ( ${OSVERSION} >= 500000 && ${OSVERSION} < 500036 ) BUILD_DEPENDS+= ${LOCALBASE}/bin/sed_inplace:${PORTSDIR}/textproc/sed_inplace REINPLACE_CMD?= ${LOCALBASE}/bin/sed_inplace ${REINPLACE_ARGS} .else REINPLACE_CMD?= ${SED} ${REINPLACE_ARGS} .endif .endif Consider a fresh FreeBSD installation that requires the sed_inplace port and a port who define USE_REINPLACE to sed something in the post-patch stage. The sed_inplace port will not be installed before the configure stage and the build will fail in patch stage. -- Alex Dupre sysadmin@alexdupre.com http://www.alexdupre.com/ alex@sm.FreeBSD.org Today's excuse: Standing room only on the bus. From owner-freebsd-ports@FreeBSD.ORG Sun May 25 04:17:19 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76E8B37B401 for ; Sun, 25 May 2003 04:17:19 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-104-32.dsl.lsan03.pacbell.net [64.169.104.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE1A343F85 for ; Sun, 25 May 2003 04:17:18 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 74B6366BE5; Sun, 25 May 2003 04:17:18 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 3C1EB648; Sun, 25 May 2003 04:17:18 -0700 (PDT) Date: Sun, 25 May 2003 04:17:17 -0700 From: Kris Kennaway To: Alex Dupre Message-ID: <20030525111717.GA90985@rot13.obsecurity.org> References: <22244580918.20030525131226@alexdupre.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TB36FDmn/VVEgNH/" Content-Disposition: inline In-Reply-To: <22244580918.20030525131226@alexdupre.com> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org cc: Kris Kennaway Subject: Re: Wrong BUILD_DEPENDS behaviour X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 25 May 2003 11:17:20 -0000 --TB36FDmn/VVEgNH/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, May 25, 2003 at 01:12:26PM +0200, Alex Dupre wrote: > The bsd.port.mk file says: >=20 > # BUILD_DEPENDS - A list of "path:dir[:target]" tuples of other ports this > # package depends to build (between the "extract" and > # "build" stages, inclusive). >=20 > For me this means extract, patch, configure and build stages. This comment is out of date. It now only refers to the build stage only. > Consider a fresh FreeBSD installation that requires the sed_inplace port > and a port who define USE_REINPLACE to sed something in the post-patch > stage. The sed_inplace port will not be installed before the configure > stage and the build will fail in patch stage. You're right - in fact imp already submitted the patch to fix this (change BUILD_DEPENDS to PATCH_DEPENDS) and was given approval to commit it, but he didn't do it in time for the freeze. Kris --TB36FDmn/VVEgNH/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+0KY9Wry0BWjoQKURAugWAJ0dj9Oow9t/IoG27Eb6ONq6EmuUpQCgkdyT o7vluKkRf0EwNFljzFkUEpE= =vXAO -----END PGP SIGNATURE----- --TB36FDmn/VVEgNH/-- From owner-freebsd-ports@FreeBSD.ORG Sun May 25 04:36:22 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC7F737B408 for ; Sun, 25 May 2003 04:36:11 -0700 (PDT) Received: from cirb503493.alcatel.com.au (c18609.belrs1.nsw.optusnet.com.au [210.49.80.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09EA643F93 for ; Sun, 25 May 2003 04:36:10 -0700 (PDT) (envelope-from peterjeremy@optushome.com.au) Received: from cirb503493.alcatel.com.au (localhost.alcatel.com.au [127.0.0.1])h4PBa8p9041753 for ; Sun, 25 May 2003 21:36:08 +1000 (EST) (envelope-from jeremyp@cirb503493.alcatel.com.au) Received: (from jeremyp@localhost) by cirb503493.alcatel.com.au (8.12.8/8.12.8/Submit) id h4PBa6tn041752 for freebsd-ports@freebsd.org; Sun, 25 May 2003 21:36:06 +1000 (EST) Date: Sun, 25 May 2003 21:36:05 +1000 From: Peter Jeremy To: freebsd-ports@freebsd.org Message-ID: <20030525113605.GA41726@cirb503493.alcatel.com.au> References: <20030525045021.GA41260@cirb503493.alcatel.com.au> <1053840795.731.212.camel@leguin> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030525045430.GA25151@rot13.obsecurity.org> User-Agent: Mutt/1.4.1i Subject: Re: Debugging X11 Server X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 25 May 2003 11:36:22 -0000 Getting profiling to work with Xfree86 server: On Sat, May 24, 2003 at 09:54:30PM -0700, Kris Kennaway wrote: >You can try adding the missing symbols to xf86syms.c - XFree86 uses >its own runtime linker for modules. Thanks for that. I think I've bumped into xf86sym.c previously when tracking down a problem. Unfortunately, it's not immediately obvious (to me) how to include a reference to '.mcount' in C code. I could have studied the gcc documentation but Eric came up with an alternative: On Sat, May 24, 2003 at 10:33:15PM -0700, Eric Anholt wrote: >You could compile all the modules into the server by adding "#define >DoLoadableServer NO" to your host.conf when you compile XFree86-4-Server >(see scripts/configure for other defines that are added). This almost worked. It resulted in an unresolved 'ELO2300' which I fixed by removing elo2300 from XInputDrivers (I don't need it and this was quicker than working out why the reference was generated). Thanks to both of you - profiling now works. I've located the cause of the poor performance, all that's left is working out how to fix it. Peter From owner-freebsd-ports@FreeBSD.ORG Sun May 25 04:53:15 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38CB437B401 for ; Sun, 25 May 2003 04:53:11 -0700 (PDT) Received: from probsd.org (rrcs-midsouth-24-172-108-90.biz.rr.com [24.172.108.90]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9122243F85 for ; Sun, 25 May 2003 04:53:10 -0700 (PDT) (envelope-from ms@probsd.org) Received: from probsd.org (probsd.org [192.168.1.4]) by probsd.org (Postfix) with SMTP id 0FDFC46606 for ; Sun, 25 May 2003 07:53:13 -0400 (EDT) Received: from 192.168.1.4 (SquirrelMail authenticated user ms) by probsd.org with HTTP; Sun, 25 May 2003 07:53:13 -0400 (EDT) Message-ID: <4220.192.168.1.4.1053863593.squirrel@probsd.org> Date: Sun, 25 May 2003 07:53:13 -0400 (EDT) From: "Michael Sharp" To: freebsd-ports@FreeBSD.ORG User-Agent: SquirrelMail/1.4.0 MIME-Version: 1.0 Content-Type: text/plain;charset=iso-8859-1 X-Priority: 3 Importance: Normal Subject: mod_php ( new ) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 25 May 2003 11:53:15 -0000 I just ran cvsup and updated my ports tree as usual from cvsup16*. I noticed that mod_php4 was backported to 4.3.1 from 4.3.2.r4 ? portupgrade mod_php4 ---> Upgrading 'mod_php4-4.3.2.r4' to 'mod_php4-4.3.1,1' (www/mod_php4) Michael From owner-freebsd-ports@FreeBSD.ORG Sun May 25 04:56:30 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B73B537B401; Sun, 25 May 2003 04:56:30 -0700 (PDT) Received: from kiri.slis.tsukuba.ac.jp (kiri.slis.tsukuba.ac.jp [133.51.14.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E27843F3F; Sun, 25 May 2003 04:56:29 -0700 (PDT) (envelope-from kiri@kiri.slis.tsukuba.ac.jp) Received: from kiri.pis (localhost [127.0.0.1])h4PC1AUA012543; Sun, 25 May 2003 21:01:16 +0900 (JST) (envelope-from kiri@kiri.slis.tsukuba.ac.jp) Message-Id: <200305251201.h4PC1AUA012543@kiri.slis.tsukuba.ac.jp> Date: Sun, 25 May 2003 21:01:10 +0900 From: KIRIYAMA Kazuhiko To: Martin Klaffenboeck In-Reply-To: <20030524110324.GC19641@martin.kleinerdrache.org> References: <20030524110324.GC19641@martin.kleinerdrache.org> User-Agent: Wanderlust/2.4.0 (Rio) SEMI/1.13.7 (Awazu) FLIM/1.13.2 (Kasanui) MULE XEmacs/21.4 (patch 12) (Portable Code) (i386--freebsd) MIME-Version: 1.0 (generated by SEMI 1.13.7 - "Awazu") Content-Type: text/plain; charset=US-ASCII cc: ports freebsd group cc: kiri@FreeBSD.org Subject: Re: editors/xemacs-devel-mule failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 11:56:31 -0000 At Sat, 24 May 2003 13:03:24 +0200, Martin Klaffenboeck wrote: > > ./configure: Usage error: > Unrecognized argument: yes > Use `./configure --help' to show usage. > ===> Script "configure" failed unexpectedly. > Please report the problem to kiri@FreeBSD.org [maintainer] and > attach > the > "/var/tmp/usr/ports/editors/xemacs-devel-mule/work/xemacs- > 21.5.13/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/editors/xemacs-devel-mule. > *** Error code 1 > Stop in /usr/ports/editors/xemacs-devel-mule. Sorry I don't test in STABLE/CURRENT because of my package building machine collasped ;) Nothing time rested, editors/xemacs-devel-mule has been tested only in {4.8,5.0}-RELEASE. But configure step is same condition in all cases. I just re-tested in {4.8,5.0}-RELEASE both to seems no problems: http://www.openedu.org/~kiri/troubles/xemacs-devel-mule_4.8R_configure.log http://www.openedu.org/~kiri/troubles/xemacs-devel-mule_5.0R_configure.log From owner-freebsd-ports@FreeBSD.ORG Sun May 25 04:58:39 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD89A37B401 for ; Sun, 25 May 2003 04:58:39 -0700 (PDT) Received: from mx3.absolight.com (mx3.absolight.net [212.43.217.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id B33E743F75 for ; Sun, 25 May 2003 04:58:38 -0700 (PDT) (envelope-from mat@mat.cc) Received: by mx3.absolight.com (Postfix, from userid 1007) id 805152A36; Sun, 25 May 2003 13:58:37 +0200 (CEST) X-Original-To: freebsd-ports@FreeBSD.ORG Received: from cmantatzi.in.t-online.fr (cmantatzi.in.t-online.fr [213.44.126.228]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (Client did not present a certificate) by mx3.absolight.com (Postfix) with ESMTP id 5E00A2A31; Sun, 25 May 2003 13:58:37 +0200 (CEST) Date: Sun, 25 May 2003 13:58:32 +0200 From: Mathieu Arnold To: Michael Sharp , freebsd-ports@FreeBSD.ORG Message-ID: <71646554.1053871112@cmantatzi.in.t-online.fr> In-Reply-To: <4220.192.168.1.4.1053863593.squirrel@probsd.org> References: <4220.192.168.1.4.1053863593.squirrel@probsd.org> X-Mailer: Mulberry/3.0.3 (Win32) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Subject: Re: mod_php ( new ) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 25 May 2003 11:58:40 -0000 +-le 25/05/03 07:53 -0400, Michael Sharp =E9crivait : | I just ran cvsup and updated my ports tree as usual from cvsup16*. |=20 | I noticed that mod_php4 was backported to 4.3.1 from 4.3.2.r4 ? |=20 | portupgrade mod_php4 |=20 | ---> Upgrading 'mod_php4-4.3.2.r4' to 'mod_php4-4.3.1,1' (www/mod_php4) Accordings to the cvs commits : | kris 2003/05/24 02:55:39 PDT |=20 | FreeBSD ports repository |=20 | Modified files: | [..] | Log: | With my portmgr hat on, back out the previous update to mod_php4, which | was incomplete and broke all the dependent ports. |=20 and : | kris 2003/05/24 02:57:00 PDT |=20 | FreeBSD ports repository |=20 | Modified files: | www/mod_php4 Makefile=20 | Log: | Bump PORTEPOCH to force downgrade to working 4.3.1 port. --=20 Mathieu Arnold From owner-freebsd-ports@FreeBSD.ORG Sun May 25 05:03:54 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D39C737B405 for ; Sun, 25 May 2003 05:03:54 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id B155543F3F for ; Sun, 25 May 2003 05:03:53 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 63833 invoked from network); 25 May 2003 12:03:50 -0000 Received: from stingray.liwing.de (HELO liwing.de) ([213.70.188.164]) (envelope-sender ) by mail.liwing.de (qmail-ldap-1.03) with SMTP for ; 25 May 2003 12:03:50 -0000 Message-ID: <3ED0B126.2060206@liwing.de> Date: Sun, 25 May 2003 14:03:50 +0200 From: Jens Rehsack Organization: LiWing IT-Services User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.2) Gecko/20030208 Netscape/7.02 (Compact - Build 2) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Mathieu Arnold References: <4220.192.168.1.4.1053863593.squirrel@probsd.org> <71646554.1053871112@cmantatzi.in.t-online.fr> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit cc: Michael Sharp cc: freebsd-ports@FreeBSD.ORG Subject: Re: mod_php ( new ) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 25 May 2003 12:03:55 -0000 On 5/25/2003 1:58 PM, Mathieu Arnold wrote: > > +-le 25/05/03 07:53 -0400, Michael Sharp écrivait : > | I just ran cvsup and updated my ports tree as usual from cvsup16*. > | > | I noticed that mod_php4 was backported to 4.3.1 from 4.3.2.r4 ? > | > | portupgrade mod_php4 > | > | ---> Upgrading 'mod_php4-4.3.2.r4' to 'mod_php4-4.3.1,1' (www/mod_php4) > > Accordings to the cvs commits : > > | kris 2003/05/24 02:55:39 PDT > | > | FreeBSD ports repository > | > | Modified files: > | [..] > | Log: > | With my portmgr hat on, back out the previous update to mod_php4, which > | was incomplete and broke all the dependent ports. > | > > and : > > | kris 2003/05/24 02:57:00 PDT > | > | FreeBSD ports repository > | > | Modified files: > | www/mod_php4 Makefile > | Log: > | Bump PORTEPOCH to force downgrade to working 4.3.1 port. > And for all people who require mod_php4-4.3.2rc4 I submitted a path in PR 52669 (http://www.freebsd.org/cgi/query-pr.cgi?pr=52669), because I don't know anything about the errors Kris detected but know the requirement of 4.3.2rc4 for some users. I hope, Alex can fix the problems so that my pr can closed without getting committed, but (as I said) I don't know and it may be a chance to use 4.3.2 til it's fixed. Regards, Jens From owner-freebsd-ports@FreeBSD.ORG Sun May 25 05:56:45 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02FA137B401 for ; Sun, 25 May 2003 05:56:45 -0700 (PDT) Received: from httpd1.terions.de (static62-99-146-055.adsl.inode.at [62.99.146.55]) by mx1.FreeBSD.org (Postfix) with SMTP id 16B7943FBD for ; Sun, 25 May 2003 05:56:43 -0700 (PDT) (envelope-from martin.klaffenboeck@gmx.at) Received: (qmail 3055 invoked from network); 25 May 2003 12:49:59 -0000 Received: from unknown (HELO martin.kleinerdrache.org) (127.0.0.1) by loopback with SMTP; 25 May 2003 12:49:59 -0000 Date: Sun, 25 May 2003 14:49:57 +0200 From: Martin Klaffenboeck To: KIRIYAMA Kazuhiko Message-ID: <20030525124957.GA3030@martin.kleinerdrache.org> References: <20030524110324.GC19641@martin.kleinerdrache.org> <200305251201.h4PC1AUA012543@kiri.slis.tsukuba.ac.jp> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200305251201.h4PC1AUA012543@kiri.slis.tsukuba.ac.jp>; from kiri@kiri.slis.tsukuba.ac.jp on So, Mai 25, 2003 at 14:01:10 +0200 X-Mailer: Balsa 2.0.11 Lines: 48 cc: ports freebsd group cc: kiri@FreeBSD.org Subject: Re: editors/xemacs-devel-mule failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 12:56:45 -0000 Am 2003.05.25 14:01 schrieb(en) KIRIYAMA Kazuhiko: > At Sat, 24 May 2003 13:03:24 +0200, > Martin Klaffenboeck wrote: > > > > ./configure: Usage error: > > Unrecognized argument: yes > > Use `./configure --help' to show usage. > > ===> Script "configure" failed unexpectedly. > > Please report the problem to kiri@FreeBSD.org [maintainer] > and > > attach > > the > > "/var/tmp/usr/ports/editors/xemacs-devel-mule/work/xemacs- > > 21.5.13/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/editors/xemacs-devel-mule. > > *** Error code 1 > > Stop in /usr/ports/editors/xemacs-devel-mule. > > Sorry I don't test in STABLE/CURRENT because of my package building > machine collasped ;) Nothing time rested, editors/xemacs-devel-mule > has been tested only in {4.8,5.0}-RELEASE. But configure step is same > condition in all cases. I just re-tested in {4.8,5.0}-RELEASE both to > seems no problems: > http://www.openedu.org/~kiri/troubles/xemacs-devel-mule_4.8R_configure.log > http://www.openedu.org/~kiri/troubles/xemacs-devel-mule_5.0R_configure.log Then something else must be wrong on my computer, I've got: martin% uname -a FreeBSD martin.kleinerdrache.org 4.8-STABLE FreeBSD 4.8-STABLE #2: Tue Apr 29 23:55:02 CEST 2003 martin@martin.kleinerdrache.org:/usr/obj/ usr/src/sys/MYKERNEL i386 -- If you've got an idea and need help, ICQ: 72997139 or just need general encouragement, MSN: kleinerdrache@gmx.at write me a message. ;-) Yahoo-Messenger: walking2martin AIM: littlewizzard From owner-freebsd-ports@FreeBSD.ORG Sun May 25 09:41:03 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C53E37B401 for ; Sun, 25 May 2003 09:41:03 -0700 (PDT) Received: from arminho.ip.pt (arminho.ip.pt [195.23.132.10]) by mx1.FreeBSD.org (Postfix) with SMTP id 9C8CD43F93 for ; Sun, 25 May 2003 09:41:01 -0700 (PDT) (envelope-from nunotex@pt-quorum.com) Received: (qmail 10136 invoked from network); 25 May 2003 16:40:59 -0000 Received: from unknown (HELO sargo.ip.pt) (195.23.132.1) by arminho.ip.pt with SMTP; 25 May 2003 16:40:59 -0000 Received: (qmail 12896 invoked from network); 25 May 2003 16:40:58 -0000 Received: from unknown (HELO gw.tex.bogus) ([195.23.213.41]) (envelope-sender ) by sargo.ip.pt (qmail-ldap-1.03) with SMTP for ; 25 May 2003 16:40:58 -0000 Received: by gw.tex.bogus (Postfix, from userid 1001) id AC4F544F3; Sun, 25 May 2003 17:39:57 +0000 (GMT) Date: Sun, 25 May 2003 17:39:57 +0000 From: Nuno Teixeira To: brian@freebsd.org Message-ID: <20030525173957.GA3212@gw.tex.bogus> References: <20030524180315.GA25741@gw.tex.bogus> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030524180315.GA25741@gw.tex.bogus> X-Operating-System: FreeBSD 5.1-BETA User-Agent: Mutt/1.5.4i cc: freebsd-ports@freebsd.org Subject: Re: net/pppoa port driver 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: Sun, 25 May 2003 16:41:03 -0000 Hi again, I found the link to download speedmgmt.tar.gz file: http://download.ethomson.com/download/speedmgmt.tar.gz Bye, Nuno Teixeira On Sat, May 24, 2003 at 06:03:15PM +0000, Nuno Teixeira wrote: > > Hello Brian, > > I'm trying to install net/pppoa port and I noticed that are some > problems: > > 1. pkg-descr says to download binary driver 1.3.3 from > http://www.speedtouchdsl.com/dvrreg_lx.htm, but this version was updated > by 2.0.4 (see http://www.speedtouchdsl.com/dvrdownload_lx.htm). > > 2. the new driver is KQD6_R204.zip > > Can you update pppoa port to accept this new driver? > > Thanks very much, > > Nuno Teixeira > > > -- > > /* > PGP fingerprint: > C6D1 06ED EB54 A99C 6B14 6732 0A5D 810D 727D F6C6 > */ > _______________________________________________ > 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" -- /* PGP fingerprint: C6D1 06ED EB54 A99C 6B14 6732 0A5D 810D 727D F6C6 */ From owner-freebsd-ports@FreeBSD.ORG Sun May 25 09:50:09 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 189B137B401 for ; Sun, 25 May 2003 09:50:09 -0700 (PDT) Received: from mwinf0302.wanadoo.fr (smtp6.wanadoo.fr [193.252.22.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CA9143F85 for ; Sun, 25 May 2003 09:50:08 -0700 (PDT) (envelope-from agautier5@wanadoo.fr) Received: from cupidon (unknown [217.128.254.29]) by mwinf0302.wanadoo.fr (SMTP Server) with SMTP id 6B7B8C00025E; Sun, 25 May 2003 18:50:06 +0200 (CEST) From: "Antoine GAUTIER" To: Date: Sun, 25 May 2003 18:51:34 +0200 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4920.2300 cc: ports@FreeBSD.org Subject: FreeBSD Port: abcde-2.0.3_4 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: agautier5@wanadoo.fr List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 16:50:09 -0000 Hello of Paris, Here is the real MD5 for abcde_2.1.4.orig.tar.gz found on the original site. This file is not yet available on ftp.freebsd.org MD5 (abcde_2.1.4.orig.tar.gz) = bfc554c403d6cff332ffd4e9ce965404 Thanks for your beautifull work, amongst other things for the support of Flac. Antoine GAUTIER. From owner-freebsd-ports@FreeBSD.ORG Sun May 25 10:10:10 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4E6937B401 for ; Sun, 25 May 2003 10:10:10 -0700 (PDT) Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB2DA43F75 for ; Sun, 25 May 2003 10:10:06 -0700 (PDT) (envelope-from olive@oban.frmug.org) Received: (from uucp@localhost)h4PHA3D63721; Sun, 25 May 2003 19:10:03 +0200 (CEST) (envelope-from olive@oban.frmug.org) Received: by weirdos.oban.frmug.org (Postfix, from userid 1002) id 956E58C13; Sun, 25 May 2003 19:09:30 +0200 (CEST) Date: Sun, 25 May 2003 19:09:30 +0200 From: Olivier Tharan To: Antoine GAUTIER Message-ID: <20030525170930.GF273@weirdos.oban.frmug.org> Mail-Followup-To: Antoine GAUTIER , mchopra@engmail.uwaterloo.ca, ports@freebsd.org References: Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: X-Attribution: Olive cc: ports@freebsd.org cc: mchopra@engmail.uwaterloo.ca Subject: Re: FreeBSD Port: abcde-2.0.3_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, 25 May 2003 17:10:11 -0000 * Antoine GAUTIER (20030525 18:51): > Here is the real MD5 for abcde_2.1.4.orig.tar.gz found on the original site. > This file is not yet available on ftp.freebsd.org > > MD5 (abcde_2.1.4.orig.tar.gz) = bfc554c403d6cff332ffd4e9ce965404 Please see also http://www.freebsd.org/cgi/query-pr.cgi?pr=52624 -- olive From owner-freebsd-ports@FreeBSD.ORG Sun May 25 10:28:55 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 075E237B401 for ; Sun, 25 May 2003 10:28:55 -0700 (PDT) Received: from opiate.soulwax.net (CPE0030ab0ef2bb-CM000039ae486b.cpe.net.cable.rogers.com [63.138.84.149]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4626743F75 for ; Sun, 25 May 2003 10:28:54 -0700 (PDT) (envelope-from munish@opiate.soulwax.net) Received: by opiate.soulwax.net (Postfix, from userid 1001) id 62FA65B; Sun, 25 May 2003 13:28:53 -0400 (EDT) Date: Sun, 25 May 2003 13:28:53 -0400 From: Munish Chopra To: Antoine GAUTIER , ports@freebsd.org Message-ID: <20030525172853.GA40930@opiate.soulwax.net> References: <20030525170930.GF273@weirdos.oban.frmug.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="liOOAslEiF7prFVr" Content-Disposition: inline In-Reply-To: <20030525170930.GF273@weirdos.oban.frmug.org> Subject: Re: FreeBSD Port: abcde-2.0.3_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, 25 May 2003 17:28:55 -0000 --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On 2003-05-25 19:09 +0000, Olivier Tharan wrote: > * Antoine GAUTIER (20030525 18:51): > > Here is the real MD5 for abcde_2.1.4.orig.tar.gz found on the original site. > > This file is not yet available on ftp.freebsd.org > > > > MD5 (abcde_2.1.4.orig.tar.gz) = bfc554c403d6cff332ffd4e9ce965404 > > Please see also http://www.freebsd.org/cgi/query-pr.cgi?pr=52624 > > -- > olive Thanks for letting me know (please feel free to cc me on future PR's, so that I can address the problem immediately). This patch addresses the md5sum, updates the comment to reflect recent developments, and removes an extraneous blank line to make portlint happy. Ports committers, please close ports/52624. Thanks. -- Munish Chopra --liOOAslEiF7prFVr Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="abcde.diff" diff -ruN /usr/ports/audio/abcde/Makefile abcde/Makefile --- /usr/ports/audio/abcde/Makefile Sun May 18 06:15:56 2003 +++ abcde/Makefile Sun May 25 13:21:27 2003 @@ -12,7 +12,7 @@ DISTNAME= abcde_${PORTVERSION}.orig MAINTAINER= mchopra@engmail.uwaterloo.ca -COMMENT= Front-end sh script to encode CDs in ogg or mp3 format +COMMENT= Front-end sh script to encode CDs in ogg, mp3 or flac format RUN_DEPENDS= cd-discid:${PORTSDIR}/audio/cd-discid \ cdparanoia:${PORTSDIR}/audio/cdparanoia \ @@ -73,7 +73,6 @@ ${INSTALL_DATA} ${WRKSRC}/abcde.conf ${PREFIX}/etc ${INSTALL_MAN} ${WRKSRC}/abcde.1 ${PREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/cddb-tool.1 ${PREFIX}/man/man1 - post-install: @${ECHO_MSG} "" diff -ruN /usr/ports/audio/abcde/distinfo abcde/distinfo --- /usr/ports/audio/abcde/distinfo Sun May 18 06:15:56 2003 +++ abcde/distinfo Sun May 25 13:23:30 2003 @@ -1 +1 @@ -MD5 (abcde_2.1.4.orig.tar.gz) = aef4170cb8e8e41d0434bdd30b61e502 +MD5 (abcde_2.1.4.orig.tar.gz) = bfc554c403d6cff332ffd4e9ce965404 --liOOAslEiF7prFVr-- From owner-freebsd-ports@FreeBSD.ORG Sun May 25 10:30:45 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E979B37B401 for ; Sun, 25 May 2003 10:30:44 -0700 (PDT) Received: from mail.inka.de (quechua.inka.de [193.197.184.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id B567943F93 for ; Sun, 25 May 2003 10:30:43 -0700 (PDT) (envelope-from mailnull@mips.inka.de) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with gbsmtp id 19JzKU-0004k1-06; Sun, 25 May 2003 19:30:42 +0200 Received: from kemoauc.mips.inka.de (localhost [127.0.0.1]) by kemoauc.mips.inka.de (8.12.9/8.12.6) with ESMTP id h4PGbIrH064471 for ; Sun, 25 May 2003 18:37:18 +0200 (CEST) (envelope-from mailnull@localhost.mips.inka.de) Received: (from mailnull@localhost) by kemoauc.mips.inka.de (8.12.9/8.12.9/Submit) id h4PGbIIk064470 for freebsd-ports@freebsd.org; Sun, 25 May 2003 18:37:18 +0200 (CEST) From: naddy@mips.inka.de (Christian Weisgerber) Date: Sun, 25 May 2003 16:37:17 +0000 (UTC) Message-ID: Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-ports@freebsd.org Subject: License issues (e.g. mod_throttle, mod_watch) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 25 May 2003 17:30:45 -0000 It is my impression that the FreeBSD porters as a collective handle license issues in ports more lax than, say, their OpenBSD counterparts. I'm not sure whether this is intentional or due to negligence. What is our policy here? Do we want to strictly follow the authors' licenses or is everything that is downloadable fair game? This is not a rhetoric question. Since I know some of you will demand specifics, here are the latest two examples that made me think about the issue. www/mod_throttle. This comes with a license so short I can quote it in full: This source distribution is made freely available and there is no charge for its use, provided you retain this notice, disclaimers, author's copyright, and credits. Note that there is no mention of redistribution. That means redistribution in any form is prohibited. Accordingly, this port should be marked RESTRICTED. www/mod_watch, by the same author. This has a more specific license, see http://www.snert.com/Software/mod_watch/ Non-commercial redistribution of binaries is not permitted without prior written consent. That means NO_PACKAGE. If the FreeBSD project happens to have such permission and we don't care about transitivity (do we?), then the limits on commercial redistribution should still imply NO_CDROM. I suspect a full-fledged license audit of the ports tree would turn up a sizable number of problematic cases. Now, before I go out and prod maintainers about individual cases I run into, I would like to have some sort of consensus opinion or portmgr statement that clarifies our stance on this. -- Christian "naddy" Weisgerber naddy@mips.inka.de From owner-freebsd-ports@FreeBSD.ORG Sun May 25 16:06:19 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22AAF37B401 for ; Sun, 25 May 2003 16:06:19 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-104-32.dsl.lsan03.pacbell.net [64.169.104.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76C3E43F93 for ; Sun, 25 May 2003 16:06:18 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 1B44A66E3D; Sun, 25 May 2003 16:06:18 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id E7E42AE7; Sun, 25 May 2003 16:06:17 -0700 (PDT) Date: Sun, 25 May 2003 16:06:17 -0700 From: Kris Kennaway To: Christian Weisgerber Message-ID: <20030525230617.GA24132@rot13.obsecurity.org> References: Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vtzGhvizbBRQ85DL" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.1i cc: freebsd-ports@freebsd.org Subject: Re: License issues (e.g. mod_throttle, mod_watch) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 25 May 2003 23:06:19 -0000 --vtzGhvizbBRQ85DL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, May 25, 2003 at 04:37:17PM +0000, Christian Weisgerber wrote: > What is our policy here? Do we want to strictly follow the authors' > licenses or is everything that is downloadable fair game? This is > not a rhetoric question. We should follow the authors' licenses carefully. You're correct that we don't collectively pay enough attention to this. > www/mod_throttle. This comes with a license so short I can quote it > in full: >=20 > This source distribution is made freely available and there is > no charge for its use, provided you retain this notice, disclaimers, > author's copyright, and credits. >=20 > Note that there is no mention of redistribution. That means > redistribution in any form is prohibited. Accordingly, this port > should be marked RESTRICTED. >=20 > www/mod_watch, by the same author. This has a more specific license, > see >=20 > http://www.snert.com/Software/mod_watch/ >=20 > Non-commercial redistribution of binaries is not permitted without > prior written consent. That means NO_PACKAGE. If the FreeBSD > project happens to have such permission and we don't care about > transitivity (do we?), then the limits on commercial redistribution > should still imply NO_CDROM. >=20 > I suspect a full-fledged license audit of the ports tree would turn > up a sizable number of problematic cases. Now, before I go out and > prod maintainers about individual cases I run into, I would like > to have some sort of consensus opinion or portmgr statement that > clarifies our stance on this. I would personally love it if you did some work on this. Kris --vtzGhvizbBRQ85DL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+0UxpWry0BWjoQKURAqVDAKC4OXzLhNXXR2c9Z/d8VDK3Pw6MagCfRRX7 iqnFWH8GWdEfkAE6UdtPTKE= =4mgE -----END PGP SIGNATURE----- --vtzGhvizbBRQ85DL-- From owner-freebsd-ports@FreeBSD.ORG Sun May 25 16:34:34 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C927037B401 for ; Sun, 25 May 2003 16:34:34 -0700 (PDT) Received: from protov.plain.co.nz (protov.plain.co.nz [202.36.174.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BEF643F3F for ; Sun, 25 May 2003 16:34:33 -0700 (PDT) (envelope-from zombie@i4free.co.nz) Received: from i4free.co.nz (ppp65164.cyberxpress.co.nz [202.49.65.164]) by protov.plain.co.nz (Postfix) with ESMTP id A08FB3D20F for ; Mon, 26 May 2003 11:34:26 +1200 (NZST) Message-ID: <3ED152AF.1000404@i4free.co.nz> Date: Mon, 26 May 2003 11:33:03 +1200 From: Andrew Turner User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4b) Gecko/20030507 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: License issues (e.g. mod_throttle, mod_watch) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 25 May 2003 23:34:35 -0000 Hello, Would adding LICENSE= to port Makefiles help? If I wanted to find the license of a port without downloading the tarball it would be easy. This could be extended by having a check, if I don't accept the license then it won't install the port. Andrew Turner -- There are 10 types of people in this world. Those who understand binary and those who dont. AlanH From owner-freebsd-ports@FreeBSD.ORG Sun May 25 16:37:26 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8CA137B401 for ; Sun, 25 May 2003 16:37:26 -0700 (PDT) Received: from freebsd.org.ru (sweet.etrust.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D0A743F3F for ; Sun, 25 May 2003 16:37:23 -0700 (PDT) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 8637DE5; Mon, 26 May 2003 03:37:21 +0400 (MSD) Date: Mon, 26 May 2003 03:37:21 +0400 From: "Sergey A. Osokin" To: Andrew Turner Message-ID: <20030525233721.GI1120@freebsd.org.ru> References: <3ED152AF.1000404@i4free.co.nz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3ED152AF.1000404@i4free.co.nz> User-Agent: Mutt/1.5.4i cc: freebsd-ports@freebsd.org Subject: Re: License issues (e.g. mod_throttle, mod_watch) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: osa@FreeBSD.org.ru List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 25 May 2003 23:37:27 -0000 On Mon, May 26, 2003 at 11:33:03AM +1200, Andrew Turner wrote: > Would adding LICENSE= to port Makefiles help? > > If I wanted to find the license of a port without downloading the > tarball it would be easy. > > This could be extended by having a check, if I don't accept the license > then it won't install the port. So, do you have a patch? Please submit it via send-pr interface. Thanks. -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ From owner-freebsd-ports@FreeBSD.ORG Sun May 25 19:26:00 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5546637B401; Sun, 25 May 2003 19:26:00 -0700 (PDT) Received: from bbnest.dyndns.org (n237099.ap.plala.or.jp [219.165.237.99]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E0FA43FAF; Sun, 25 May 2003 19:25:59 -0700 (PDT) (envelope-from bland@mail.ru) Received: from bbnest.dyndns.org (smmsp@localhost [127.0.0.1]) by bbnest.dyndns.org (8.12.9/8.12.9) with ESMTP id h4Q2PvZj088261; Mon, 26 May 2003 11:25:57 +0900 (JST) (envelope-from bland@mail.ru) Received: (from root@localhost) by bbnest.dyndns.org (8.12.9/8.12.9/Submit) id h4Q2Put9088260; Mon, 26 May 2003 11:25:56 +0900 (JST) (envelope-from bland) Date: Mon, 26 May 2003 11:25:56 +0900 (JST) Message-Id: <200305260225.h4Q2Put9088260@bbnest.dyndns.org> To: FreeBSD-gnats-submit@freebsd.org From: Alexander Nedotsukov X-send-pr-version: 3.113 X-GNATS-Notify: cc: freebsd-ports@freebsd.org Subject: graphics/swfdec port broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alexander Nedotsukov List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 02:26:00 -0000 >Submitter-Id: current-users >Originator: Alexander Nedotsukov >Organization: >Confidential: no >Synopsis: graphics/swfdec port broken >Severity: serious >Priority: high >Category: ports >Class: change-request >Release: FreeBSD 5.1-BETA i386 >Environment: System: FreeBSD bbnest.dyndns.org 5.1-BETA FreeBSD 5.1-BETA #5: Sat May 10 21:37:53 JST 2003 bland@bbnest.dyndns.org:/usr/obj/usr/src/sys/SU i386 >Description: CONFIGURE_ENV= expression grabled. This results in "configure" and therefore whole port build failure. >How-To-Repeat: cd /usr/ports/grpaphics; make configure >Fix: Apply the patch attached --- Makefile.diff begins here --- --- Makefile.orig Mon May 26 11:01:41 2003 +++ Makefile Mon May 26 11:09:32 2003 @@ -28,7 +28,7 @@ USE_GETOPT_LONG= yes USE_REINPLACE= yes GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} LDFLAGS="{LDFLAGS} +CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}" INSTALLS_SHLIB= yes CPPFLAGS= -I${LOCALBASE}/include --- Makefile.diff ends here --- From owner-freebsd-ports@FreeBSD.ORG Mon May 26 05:43:46 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04D5037B401 for ; Mon, 26 May 2003 05:43:46 -0700 (PDT) Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0878F43F3F for ; Mon, 26 May 2003 05:43:45 -0700 (PDT) (envelope-from stijn@pcwin002.win.tue.nl) Received: from pcwin002.win.tue.nl (localhost [127.0.0.1]) by pcwin002.win.tue.nl (8.12.9/8.12.9) with ESMTP id h4QCkHKX022557 for ; Mon, 26 May 2003 14:46:17 +0200 (CEST) (envelope-from stijn@pcwin002.win.tue.nl) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.12.9/8.12.9/Submit) id h4QCkGWA022556 for freebsd-ports@freebsd.org; Mon, 26 May 2003 14:46:17 +0200 (CEST) Date: Mon, 26 May 2003 14:46:16 +0200 From: Stijn Hoop To: freebsd-ports@freebsd.org Message-ID: <20030526124616.GD10197@pcwin002.win.tue.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Mutt/1.4.1i X-Bright-Idea: Let's abolish HTML mail! Subject: close PR ports/28332 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 26 May 2003 12:43:46 -0000 Hi, Just came across this: ports/28332 is still open but invalid -- the GIMP us= er manual ports are already at the second edition. The PR can be closed. --Stijn --=20 Man had always assumed that he was more intelligent than dolphins because he had achieved so much... the wheel, New York, wars, and so on, whilst all the dolphins had ever done was muck about in the water having a good time. But conversely the dolphins believed themselves to be more intelligent than man for precisely the same reasons. -- Douglas Adams, "The Hitchhikers Guide To The Galaxy" From owner-freebsd-ports@FreeBSD.ORG Mon May 26 05:56:18 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E1B637B401 for ; Mon, 26 May 2003 05:56:18 -0700 (PDT) Received: from shrike.submonkey.net (pc1-cdif2-5-cust38.cdif.cable.ntl.com [81.101.150.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB5B243FDD for ; Mon, 26 May 2003 05:56:17 -0700 (PDT) (envelope-from setantae@submonkey.net) Received: from setantae by shrike.submonkey.net with local (Exim 4.20) id 19KHWI-000Ky1-Hi; Mon, 26 May 2003 13:56:06 +0100 Date: Mon, 26 May 2003 13:56:06 +0100 From: Ceri Davies To: Andrew Turner Message-ID: <20030526125606.GA80541@submonkey.net> Mail-Followup-To: Ceri Davies , Andrew Turner , freebsd-ports@freebsd.org References: <3ED152AF.1000404@i4free.co.nz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3ED152AF.1000404@i4free.co.nz> User-Agent: Mutt/1.5.4i Sender: Ceri Davies cc: freebsd-ports@freebsd.org Subject: Re: License issues (e.g. mod_throttle, mod_watch) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 26 May 2003 12:56:18 -0000 On Mon, May 26, 2003 at 11:33:03AM +1200, Andrew Turner wrote: > Hello, > > Would adding LICENSE= to port Makefiles help? > > If I wanted to find the license of a port without downloading the > tarball it would be easy. > > This could be extended by having a check, if I don't accept the license > then it won't install the port. Concept patch, adapted from NetBSD: Index: bsd.port.mk =================================================================== RCS file: /home/ncvs/ports/Mk/bsd.port.mk,v retrieving revision 1.450 diff -u -r1.450 bsd.port.mk --- bsd.port.mk 23 May 2003 04:14:18 -0000 1.450 +++ bsd.port.mk 26 May 2003 12:55:06 -0000 @@ -2360,6 +2360,21 @@ IGNORE= "is forbidden: ${FORBIDDEN}" .endif +.if defined(LICENSE) +.ifdef ACCEPTABLE_LICENSES +.for _lic in ${ACCEPTABLE_LICENSES} +.if ${LICENSE} == "${_lic}" +_ACCEPTABLE= yes +.endif # LICENSE == _lic +.endfor # _lic +.endif # ACCEPTABLE_LICENSES +.ifndef _ACCEPTABLE +IGNORE+= "has an unacceptable license: ${LICENSE}." \ + " To build this package, add this line to /etc/make.conf:" \ + " ACCEPTABLE_LICENSES+=${LICENSE}" +.endif # _ACCEPTABLE +.endif # LICENSE + .if (defined(MANUAL_PACKAGE_BUILD) && defined(PACKAGE_BUILDING) && !defined(PARALLEL_PACKAGE_BUILD)) IGNORE= "has to be built manually: ${MANUAL_PACKAGE_BUILD}" clean: Ceri -- User: DO YOU ACCEPT JESUS CHRIST AS YOUR PERSONAL LORD AND SAVIOR? Iniaes: Sure, I can accept all forms of payment. -- www.chatterboxchallenge.com From owner-freebsd-ports@FreeBSD.ORG Mon May 26 06:00:41 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8DE4237B401 for ; Mon, 26 May 2003 06:00:39 -0700 (PDT) Received: from quicksilver.ukc.ac.uk (quicksilver.ukc.ac.uk [129.12.21.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37F2543FBF for ; Mon, 26 May 2003 06:00:36 -0700 (PDT) (envelope-from mnd2@kent.ac.uk) Received: from stue9f4.ukc.ac.uk ([129.12.233.244] helo=kent.ac.uk) by quicksilver.ukc.ac.uk with esmtp (Exim 3.22 #4) id 19KHaS-0004CU-00 for ports@freebsd.org; Mon, 26 May 2003 14:00:24 +0100 Message-ID: <3ED20FEB.5040005@kent.ac.uk> Date: Mon, 26 May 2003 14:00:27 +0100 From: Mark Dixon User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3.1) Gecko/20030510 X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-UKC-Mail-System: No virus detected Subject: Tomcat 4.1 Installation 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: Mon, 26 May 2003 13:00:41 -0000 I'm trying to install Tomcat 4.1 on 5.1 beta, and I have the following installation failure. Does anyone have any ideas as to the cause? TIA, Mark ===> Patching for jakarta-tomcat-4.1.24 Installation settings: Destination directory: /usr/local/jakarta-tomcat4.1 Control program location: /usr/local/bin/tomcat41ctl Startup script location: /usr/local/etc/rc.d/020.jakarta-tomcat41.sh Location of JDK: /usr/local/jdk1.4.1 Location of Java port: java/jdk14 Running as (user/group): www/www HTTP port: 8180 Shutdown listener port: 8005 WARP port: 8008 AJP 1.3 connector port: 8009 Logfile stdout: /usr/local/jakarta-tomcat4.1/logs/stdout.log Logfile stderr: /usr/local/jakarta-tomcat4.1/logs/stderr.log Starting after install: NO Stop time-out: 5 sec. ===> Applying FreeBSD patches for jakarta-tomcat-4.1.24 >> Removing unneeded files... [ DONE ] >> Customizing daemonctl.c... [ DONE ] >> Customizing daemonctl.1... [ DONE ] >> Customizing startup.sh... [ DONE ] >> Customizing server.xml... [ DONE ] ===> jakarta-tomcat-4.1.24 depends on file: /usr/local/jdk1.4.1/bin/java - fou nd ===> Configuring for jakarta-tomcat-4.1.24 ===> Installing for jakarta-tomcat-4.1.24 ===> jakarta-tomcat-4.1.24 depends on file: /usr/local/jdk1.4.1/bin/java - fou nd >> Creating destination directory... [ DONE ] >> Copying files to destination directory... [ DONE ] >> Compiling and installing control program... [ DONE ] >> Installing startup script... [ DONE ] >> Installing man pages... [ DONE ] >> Creating log files... [ DONE ] >> Creating symlink to tools.jar... [ DONE ] >> Fixing ownership settings... [ DONE ] >> Fixing permissions.../bin/chmod: Argument list too long *** Error code 2 Stop in /usr/ports/www/jakarta-tomcat41. From owner-freebsd-ports@FreeBSD.ORG Mon May 26 06:12:03 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF4AD37B401 for ; Mon, 26 May 2003 06:12:03 -0700 (PDT) Received: from smtpzilla1.xs4all.nl (smtpzilla1.xs4all.nl [194.109.127.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6026743FBF for ; Mon, 26 May 2003 06:12:02 -0700 (PDT) (envelope-from Dennis@pinetree.nl) Received: from list1.xs4all.nl (list1.xs4all.nl [194.109.6.52]) by smtpzilla1.xs4all.nl (8.12.9/8.12.9) with ESMTP id h4QDBxjG009595 for ; Mon, 26 May 2003 15:12:00 +0200 (CEST) Received: from list1.xs4all.nl (localhost.xs4all.nl [127.0.0.1]) by list1.xs4all.nl (8.12.9/8.12.9) with ESMTP id h4QDBxPP027296 for ; Mon, 26 May 2003 15:11:59 +0200 (CEST) Received: (from root@localhost) by list1.xs4all.nl (8.12.9/8.12.9/Submit) id h4QDBxP1027293; Mon, 26 May 2003 15:11:59 +0200 (CEST) From: "Dennis Ortsen" To: freebsd-ports@freebsd.org X-Via: news2mail at list1.xs4all.nl Date: Mon, 26 May 2003 15:12:32 +0200 Message-ID: <3ed2129d$0$49105$e4fe514c@news.xs4all.nl> Subject: pam-mysql and freebad 4.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: Mon, 26 May 2003 13:12:04 -0000 Hi everyone, I'm using freebsd 4.7 and want to authenticate some services using the pam-mysql module. I can authenticate successfully when I use the normal out-of-the-box methods, but when I try to use the pam-mysql module, I get nothing... I've got postfix running, and postfix is succesfully using mysql thanks to it's great usability. But when I want to use Courier IMAP/POP to work with pam-mysql (in /etc/pam.conf), it doesn't appear to work at all... Normally, when you cd yourself into a ported application (/usr/ports/security/pam-mysql) and type make, followed by make install and when needed, follow any other instructions on the screen, it'll work. I turned on loggin in mysql, so I can see any connection made and any select statement made, but the attempts used with pam-mysql are not logged at all. Which simply means that pam-mysql can't even connect to the mysql server. I've been searching with my friend Google, but can't find anyhting that might help me... It's very likely that I overlooked a few things, but I'm kinda wandering in a maze right now... I'm stuck... What I did was install a plain FreeBSD 4.7 from the CD's. I selected the maximum security (which means no service is started by default). Next, I installed a plain mysql. I installed a plain postfix with mysql support. I installed a plain Courier-IMAP/POP3. When I use the default pam authentication methods, no problem, everything works fine. But as soon as I want to use pam-mysql for POP3 and IMAP, no connection is made to mysql... What am I missing here??? Any help much appreciated.. Thanks, Dennis Ortsen Dennis@pinetree.nl From owner-freebsd-ports@FreeBSD.ORG Mon May 26 06:16:07 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E53C37B40D for ; Mon, 26 May 2003 06:16:07 -0700 (PDT) Received: from smtp-out.comcast.net (smtp-out.comcast.net [24.153.64.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF72543FDF for ; Mon, 26 May 2003 06:16:06 -0700 (PDT) (envelope-from sjr@comcast.net) Received: from pcp325887pcs.catonv01.md.comcast.net (pcp01207798pcs.nrockv01.md.comcast.net [68.48.15.65]) by mtaout04.icomcast.net (iPlanet Messaging Server 5.2 HotFix 1.14 (built Mar 18 2003)) with ESMTP id <0HFH007T2WU4SY@mtaout04.icomcast.net> for ports@freebsd.org; Mon, 26 May 2003 09:15:40 -0400 (EDT) Received: from istari.comcast.net (localhost [127.0.0.1]) by pcp325887pcs.catonv01.md.comcast.net (8.12.9/8.12.9) with ESMTP id h4QDFaqe029239 for ; Mon, 26 May 2003 09:15:39 -0400 Date: Mon, 26 May 2003 09:15:36 -0400 (EDT) From: "Stephen J. Roznowski" To: ports@freebsd.org Message-id: <200305261315.h4QDFaqe029239@pcp325887pcs.catonv01.md.comcast.net> MIME-version: 1.0 Content-type: TEXT/plain; charset=us-ascii Content-transfer-encoding: 7BIT Subject: Creating port dependancies in portupgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 26 May 2003 13:16:07 -0000 I've looked at pkgtools.conf, but don't see an example for this. Is it possible to have portupgrade install another port if a different port is updated? For example, if "ImageMagick" is updated, I'd like to reinstall "display". [There is a conflicting program name between these two ports...] Got an example for pkgtools.conf? Thanks, -- Stephen J. Roznowski (sjr@comcast.net) From owner-freebsd-ports@FreeBSD.ORG Mon May 26 10:03:16 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5079137B404; Mon, 26 May 2003 10:03:16 -0700 (PDT) Received: from hunkular.glarp.com (home-dhcp6-127.Colorado.EDU [198.11.22.127]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9433443F3F; Mon, 26 May 2003 10:03:15 -0700 (PDT) (envelope-from huntting@hunkular.glarp.com) Received: from hunkular.glarp.com (localhost [127.0.0.1]) by hunkular.glarp.com (8.12.6/8.12.6) with ESMTP id h4QH3lHb027708; Mon, 26 May 2003 11:03:47 -0600 (MDT) (envelope-from huntting@hunkular.glarp.com) From: Brad Huntting Message-Id: <200305261703.h4QH3lHb027708@hunkular.glarp.com> To: FreeBSD-gnats-submit@freebsd.org X-send-pr-version: 3.113 X-GNATS-Notify: Date: Mon, 26 May 2003 11:03:47 -0600 Sender: huntting@glarp.com cc: ports@freebsd.org cc: huntting@glarp.com Subject: hpijs duplex bug (fixed in rev 1.4) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: huntting@glarp.com List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 May 2003 17:03:16 -0000 >Submitter-Id: current-users >Originator: Brad Huntting >Organization: University of Colorado >Confidential: no >Synopsis: hpijs duplex bug (fixed in rev 1.4) >Severity: non-critical >Priority: medium >Category: ports >Class: sw-bug >Release: FreeBSD 5.0-RELEASE i386 >Environment: System: FreeBSD hunkular.glarp.com 5.0-RELEASE FreeBSD 5.0-RELEASE #3: Sat May 10 19:52:36 MDT 2003 root@hunkular.glarp.com:/usr/src/sys/i386/compile/HUNKULAR i386 The hardware is a generic PC using an HP5550 ink jet printer (attached via USB) with the (optional) two-sided printing attachment. I'm using ghostscript version 7.05 and 'apsfilter'. >Description: Most (all?) documents with an odd number of pages hang up the printer; leaving the last page in the duplexer. The workaround has been to power off the printer which causes it to spit out the last page. I noticed on an hpijs discussion lists that someone else had experienced this problem using RedHat 7.something. >How-To-Repeat: You can probably repeat this by getting an HP inkjet printer with duplexer, then using hpijs 1.3 and ghostscript 7, print a one page document. The printer should hang with the paper logged in the duplexer. >Fix: Upgrading to hpijs version 1.4 appears to have fixed this problem for me. (Without changing anything else on my system, jobs which consistantly hung the printer before now work perfectly.) No new patches are required for the port, but the current "malloc.h -> stdlib.h" patch (which is embeded in the Makefile) is still needed. Hence, the 'patch' for this problem/upgrade is simply: diff -ur /usr/ports/print/hpijs/Makefile /home/huntting/src/hpijs/Makefile --- /usr/ports/print/hpijs/Makefile.orig Thu Feb 20 11:55:45 2003 +++ /usr/ports/print/hpijs/Makefile Mon May 26 10:38:40 2003 @@ -6,7 +6,7 @@ # PORTNAME= hpijs -PORTVERSION= 1.3.1 +PORTVERSION= 1.4 CATEGORIES= print MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= hpinkjet Thanx much, brad P.S. Sorry for being so long winded. From owner-freebsd-ports@FreeBSD.ORG Mon May 26 11:00:42 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D7C737B401 for ; Mon, 26 May 2003 11:00:42 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5569243F93 for ; Mon, 26 May 2003 11:00:36 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (peter@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h4QI0aUp007004 for ; Mon, 26 May 2003 11:00:36 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h4QI0YvF006971 for freebsd-ports@freebsd.org; Mon, 26 May 2003 11:00:34 -0700 (PDT) Date: Mon, 26 May 2003 11:00:34 -0700 (PDT) Message-Id: <200305261800.h4QI0YvF006971@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, 26 May 2003 18:00:42 -0000 Current FreeBSD problem reports The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. Bugs can be in one of several states: o - open A problem report has been submitted, no sanity checking performed. a - analyzed The problem is understood and a solution is being sought. f - feedback Further work requires additional information from the originator or the community - possibly confirmation of the effectiveness of a proposed solution. p - patched A patch has been committed, but some issues (MFC and / or confirmation from originator) are still open. s - suspended The problem is not being worked on, due to lack of information or resources. This is a prime candidate for somebody who is looking for a project to do. If the problem cannot be solved at all, it will be closed, rather than suspended. c - closed A problem report is closed when any changes have been integrated, documented, and tested -- or when fixing the problem is abandoned. Critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2003/02/25] ports/48669 ports-bugs [patch] upgrade port/www/mod_webapp-apach a [2003/04/10] ports/50798 ports-bugs audio/faad does not build o [2003/04/15] ports/50999 ports-bugs SSL with (mail/)dovecot simply doesn't wo o [2003/04/16] ports/51080 ports-bugs Fixes for Kerberos support in Postgresql o [2003/05/13] ports/52187 ports-bugs The two ghostscript ports do not work wit o [2003/05/14] ports/52257 ports-bugs mod_mp3 0.39 requires this patch for a ru o [2003/05/18] ports/52395 ports-bugs databases/firebird* vulnerabilities o [2003/05/18] ports/52417 ports-bugs Compilation of devel/php-dbg fails early o [2003/05/19] ports/52434 ports-bugs cvsd overwrites etc/cvsd/cvsd.conf withou o [2003/05/23] ports/52632 ports-bugs vmware3 port is missing /usr/lib/vmware/v 10 problems total. Serious problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/04/23] ports/26797 ports-bugs arla-0.34.6 causes kernel panic/page faul o [2001/06/12] ports/28102 ports-bugs Recent changes to 4.3-STABLE break arla-0 o [2001/06/24] ports/28398 ports-bugs ja-dvips cannot find tex.pro o [2001/09/25] ports/30823 ports-bugs New port: KinterbasDB, Python module to a o [2001/09/30] ports/30947 ports-bugs mail/mahogany fails to build, conflicts w o [2001/10/10] ports/31191 ports-bugs netsaint - plugins sometimes not found o [2002/01/15] ports/33927 ports-bugs ja-dvipdfm port requires texmf/dvips/base o [2002/04/07] ports/36846 ports-bugs fxtv 1.03 freezes the system when $LANG=d o [2002/04/19] ports/37262 ports-bugs gphoto2 fails to find supported USB digit o [2002/04/22] ports/37361 ports-bugs installing gcc30 port breaks devel/gettex o [2002/04/25] ports/37468 ports-bugs mpeg_play compiled on current/DP1 does no o [2002/05/23] ports/38460 ports-bugs core dumps with ghostscript o [2002/05/27] ports/38602 ports-bugs x11-wm/tvtwm is confused about PREFIX o [2002/09/09] ports/42612 ports-bugs gphoto2 2.1 core dumps on DC290 f [2002/09/10] ports/42647 ports-bugs port pybliographger does not configure o [2002/10/07] ports/43796 ports-bugs x11-toolkits/xview does not build on 5.0 o [2002/10/08] ports/43847 ports-bugs new ports: babytrans,gsfv,mmail,tetradraw o [2002/10/19] ports/44295 ports-bugs New port: MLton, an optimizing Standard M o [2002/10/30] ports/44759 ports-bugs ghostscript-gnu-7.05_3 produces incorrect o [2002/11/11] ports/45210 ports-bugs Broken Linux ABI Emulation in FreeBSD 4.7 o [2002/11/12] ports/45234 ports-bugs timidity++ portupgrade problem, removes s o [2002/11/19] ports/45490 ports-bugs tightvnc leaks connections o [2002/11/20] ports/45531 ports-bugs Upgrade port hyperlatex-2.5 to 2.6 o [2002/11/27] ports/45805 ports-bugs security/sfs does not build on Alpha o [2002/12/03] ports/45976 ports-bugs librdiff is old version with serious memo o [2002/12/06] ports/46039 ports-bugs adzapper install fails out of the box o [2002/12/10] ports/46167 ports-bugs New port: sysutils/gkleds o [2002/12/11] ports/46180 ports-bugs lang/squeak3 creates $PREFIX/bin/squeak s o [2002/12/17] ports/46338 ports-bugs cyrus-sasl-1.5.27_7 mysql_verify_password o [2002/12/20] ports/46399 ports-bugs libdvxencore permissions o [2002/12/21] ports/46443 ports-bugs lang/jgnat compilation failure o [2002/12/25] ports/46530 ports-bugs GtkAda2 links against unexistent libgthre o [2003/01/03] ports/46741 ports-bugs PVM-POV fails trying to locate file/folde o [2003/01/10] ports/46964 ports-bugs Failure when running "make install" on ex o [2003/01/14] ports/47061 ports-bugs Conflicting system headers by build of gr o [2003/01/14] ports/47089 ports-bugs multimedia/xmms - core dump (sig 10) whil o [2003/01/17] ports/47177 ports-bugs Have biology/molden build and install the o [2003/01/21] ports/47298 ports-bugs pkg_update removes installed package even o [2003/01/23] ports/47402 ports-bugs New Port: net/sysmon f [2003/01/23] ports/47405 ports-bugs scribus could not save russian letters an o [2003/01/30] ports/47700 ports-bugs New port: XawPlus, a 3D replacement for X o [2003/01/31] ports/47734 ports-bugs [NON-MAINTAINER] devel/doc++: update from o [2003/01/31] ports/47768 ports-bugs print/ghostscript-afpl gv (3.5.8_1) can't o [2003/02/02] ports/47809 ports-bugs New port: Ukrainian accounting system. o [2003/02/02] ports/47829 ports-bugs New port: python bindings for gtkextra o [2003/02/07] ports/48073 ports-bugs ports version of linux-eagle missing libs o [2003/02/08] ports/48091 ports-bugs port install fails on minimum system o [2003/02/16] ports/48343 ports-bugs Several issues with the www/zope port o [2003/02/24] ports/48637 ports-bugs Update for port devel/cppunit o [2003/02/24] ports/48652 ports-bugs <[ports] devel/libol update> o [2003/03/02] ports/48841 ports-bugs tls on postfix does not work (smtp and sm o [2003/03/09] ports/49051 ports-bugs port for x11-toolkits/flvw won't build o [2003/03/18] ports/50104 ports-bugs Zope package does not set sticky bit on v o [2003/03/25] ports/50305 ports-bugs multimedia/xmms-avi fails to build on CUR o [2003/04/10] ports/50795 ports-bugs misc/solfege does not function o [2003/04/11] ports/50844 ports-bugs MPlayer fails to build on Alpha o [2003/04/18] ports/51128 ports-bugs It is not possible to build security/drwe o [2003/04/18] ports/51139 ports-bugs [patch] ports/palm/coldsync dumps core o [2003/04/19] ports/51159 ports-bugs linux-flashplugin-5.0r51 does not work wi o [2003/04/22] ports/51288 ports-bugs Update port: multimedia/avifile (can't co o [2003/04/23] ports/51316 ports-bugs games/bsdtris: fails to run after install o [2003/04/23] ports/51334 ports-bugs [New Port] Zend Optimizer 2.1.0a o [2003/04/25] ports/51423 ports-bugs palm/ports/pose fails to build o [2003/04/25] ports/51426 ports-bugs linux_base port does not install c++ shar o [2003/04/27] ports/51464 ports-bugs [Patch Port] devel/viewcvs (unforbidden) o [2003/04/27] ports/51470 ports-bugs linux-opera7 repeatedly crashes when usin o [2003/05/02] ports/51688 ports-bugs UPDATE textproc/p5-Text-Reform o [2003/05/02] ports/51711 ports-bugs /usr/ports/emulators/linux_base will not o [2003/05/02] ports/51714 ports-bugs emulators/linux_base port fails to instal o [2003/05/05] ports/51789 ports-bugs high security hole in old dcgui/dclib por o [2003/05/05] ports/51807 ports-bugs g++295 can't parse header file f [2003/05/05] ports/51813 ports-bugs wrong mod_perl dependencies o [2003/05/06] ports/51913 ports-bugs [math/gnuplot+] cannot build on alpha o [2003/05/07] ports/51941 ports-bugs Compiling error in /usr/ports/japanese/gn o [2003/05/08] ports/51953 ports-bugs NEW PORT: games/zoom o [2003/05/09] ports/51997 ports-bugs (update) www/p5-FastCGI to 0.67 o [2003/05/11] ports/52064 ports-bugs ns2 (ports/net/ns) was broken o [2003/05/11] ports/52065 ports-bugs port of ns2(ports/net/ns) was broken o [2003/05/11] ports/52079 ports-bugs vmware3 hangs when nmdm(4) is used as COM f [2003/05/12] ports/52094 ports-bugs mail/pflogstats thinks it needs perl 5.6 o [2003/05/12] ports/52121 ports-bugs pf4freebsd port OpenBSD's pf ported o [2003/05/12] ports/52123 ports-bugs pf4freebsd authpf authentification shell o [2003/05/14] ports/52251 ports-bugs New Port: hgrep - grep highlighting o [2003/05/15] ports/52265 ports-bugs New Port: http_get o [2003/05/15] ports/52270 ports-bugs New Port: aget o [2003/05/15] ports/52295 ports-bugs [New Port] www/caudium12 caudium 1.2.26 o [2003/05/16] ports/52318 ports-bugs ports/net/jabber-msn don't builds o [2003/05/16] ports/52352 ports-bugs Postfix Configuration Summary Reporter o [2003/05/17] ports/52379 ports-bugs java/jdk14: does not install browser plug o [2003/05/17] ports/52387 ports-bugs XDMCP doesn't work [PATCH] o [2003/05/18] ports/52406 ports-bugs New port: audio/portaudio o [2003/05/18] ports/52413 ports-bugs [Unbreak Port] net/mydns (fix LIB_DEPENDS o [2003/05/19] ports/52435 ports-bugs [Maintainer Update] Port: www/turck-mmcac o [2003/05/19] ports/52441 ports-bugs databases/mysql-jdbc-mm port does not com o [2003/05/19] ports/52442 ports-bugs java/java-checkstyle port does not compil o [2003/05/20] ports/52461 ports-bugs [Maintainer Update] Port: irc/ircservices o [2003/05/20] ports/52498 ports-bugs Maintainer update of biology/tinker port o [2003/05/23] ports/52602 ports-bugs security/ident2 port segfaults when retur o [2003/05/23] ports/52624 ports-bugs audio/abcde has wrong checksum o [2003/05/26] ports/52692 ports-bugs While installing cyrus-sasl2 from ports, 100 problems total. Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2001/01/12] ports/24299 ports-bugs Configure the synaptics touchpad. o [2001/03/28] ports/26192 ports-bugs apel appeared both in xemacs/site-package o [2001/08/21] ports/29929 ports-bugs wginstall.pl script chokes on calculated o [2001/09/27] ports/30870 ports-bugs httpd in free(): warning: recursive call o [2001/12/04] ports/32508 ports-bugs www/flashplugin-mozilla has malloc bug o [2002/01/14] ports/33906 ports-bugs [PATCH] tic program as a port for easier o [2002/01/29] ports/34404 ports-bugs NEW PORT: devel/mingw-expat2 o [2002/01/30] ports/34442 ports-bugs xt, xalan-j, saxon should have the same C o [2002/02/02] ports/34550 ports-bugs ghostscript-gnu-nox11 portversion 6.51 fa o [2002/02/02] ports/34565 ports-bugs graphics/blender port is broke o [2002/02/09] ports/34759 ports-bugs Phantasia does not accept [enter] key o [2002/02/27] ports/35372 ports-bugs pgp6 ports fails to compile on alpha plat s [2002/03/01] ports/35459 ports-bugs portupgrade doesn't clean up dependencies o [2002/03/05] ports/35580 ports-bugs Startup script in /usr/local/etc/rc.d is o [2002/03/13] ports/35882 ports-bugs Perl Expect module send_slow hangs on EOF o [2002/03/14] ports/35897 ports-bugs upgrading the linux_base port runs into t o [2002/03/17] java/36024 ports port update: OpenJIT 1.1.16 for JDK 1.3.1 o [2002/03/29] ports/36503 ports-bugs several files conflict in ports/databases o [2002/04/07] ports/36841 ports-bugs use of .MAKEFLAGS target in Makefile.loca o [2002/04/17] ports/37186 ports-bugs Dbview contains an error, because of whic o [2002/04/19] ports/37244 ports-bugs c2lib port includes vector.h which appare o [2002/04/22] ports/37362 ports-bugs The Ted port is incompatible with FreeBSD o [2002/04/30] ports/37597 ports-bugs aureal-kmod-1.5_3 fails to build o [2002/05/08] ports/37855 ports-bugs wrong font name in jre/lib/font.propertie o [2002/05/10] ports/37927 ports-bugs port to install linux Lahey Fortran 95 v6 o [2002/05/13] ports/38034 ports-bugs compaq-cc (under linux-emu) installes man o [2002/05/15] ports/38125 ports-bugs ApacheCylical Link error/bug in Virtualse o [2002/06/01] ports/38800 ports-bugs update www/roxen to Roxen WebServer 2.2.2 o [2002/06/03] ports/38861 ports-bugs www/auth_ldap compiles-installs but fails o [2002/06/07] ports/38989 ports-bugs Fix to BROKEN arla port (arla-0.35.6) o [2002/06/11] ports/39182 ports-bugs netsaint-plugins util.c functions don't q o [2002/06/18] ports/39476 ports-bugs profxp will run but when you fxp a file i a [2002/06/19] ports/39544 ports-bugs mayavi port disfunctional a [2002/06/20] ports/39608 ports-bugs upgrade games/cgoban to 1.9.13 o [2002/06/21] ports/39619 ports-bugs flashplugin-mozilla crashes and doesnt pl o [2002/06/21] ports/39620 ports-bugs flashplugin-mozilla crashes when viewing f [2002/06/21] ports/39621 ports-bugs isc-dhcpd server can't get all network in o [2002/06/28] ports/39946 ports-bugs Shift-Tab navigation doesn't work in tk-8 f [2002/07/09] ports/40396 ports-bugs New port: Logging daemon for Linksys BEFS o [2002/07/12] ports/40514 ports-bugs New port: graphics/linux-ac3d easy to use o [2002/07/13] ports/40525 ports-bugs [new port] mail/mew2-xemacs-devel-mule o [2002/07/17] ports/40705 ports-bugs Upgrade of gnome-commander to 0.9.8 o [2002/07/18] ports/40756 ports-bugs insecure default options o [2002/07/19] ports/40789 ports-bugs New port: graphics/gocr OCR (Optical Char o [2002/07/21] ports/40866 ports-bugs sml-nj port CM autoloading compilation pr o [2002/07/21] ports/40870 ports-bugs New port: graphics/animabob Interactive 3 a [2002/07/22] ports/40904 ports-bugs new port: www/tclcurl o [2002/07/23] ports/40925 ports-bugs [new port] www/ljdeps - metaport for Live o [2002/07/30] ports/41167 ports-bugs adventure.6 man-page, add section AUTHORS o [2002/08/02] ports/41259 ports-bugs Info directory change for various GNU Ema a [2002/08/03] ports/41282 ports-bugs New_Ports japanese/stevie-* o [2002/08/04] ports/41320 ports-bugs New port : security/libprelude (part of P o [2002/08/04] ports/41321 ports-bugs New port : security/prelude-manager (part o [2002/08/04] ports/41324 ports-bugs New port : security/prelude-lml (part of o [2002/08/04] ports/41325 ports-bugs New port : security/prelude-nids (part of o [2002/08/07] ports/41434 ports-bugs New port: www/light: another Mozilla-base o [2002/08/08] ports/41461 ports-bugs New port: graphics/irit Solid modelling s o [2002/08/09] ports/41464 ports-bugs New port Cybercalendar 1.8.2: web based c o [2002/08/09] ports/41510 ports-bugs New port: graphics/i3d 3D modeling progra f [2002/08/12] ports/41579 ports-bugs New port: Small LDAP-to-KAB (KDE Address o [2002/08/12] ports/41601 ports-bugs New port: graphics/gltt TrueType fonts re o [2002/08/19] ports/41773 ports-bugs new port: x11-servers/Mozdev-PrintServer o [2002/08/19] ports/41784 ports-bugs vmware2 causes panic on recent -current o [2002/08/20] ports/41829 ports-bugs New port: mail/squirrelmail-devel o [2002/08/20] ports/41836 ports-bugs new port - virus filtering tool for qmail o [2002/08/22] ports/41916 ports-bugs New Port: mail/dsbl-testers o [2002/08/24] ports/41971 ports-bugs New Port: sysutils/ipfw-manager o [2002/08/25] ports/42018 ports-bugs pkg_info with PKG_PATH searches through t o [2002/08/27] ports/42072 ports-bugs New port: mail/wmymail: Report new mail i o [2002/08/27] ports/42073 ports-bugs New port: x11/wmxss o [2002/08/28] ports/42113 ports-bugs New port: lgeneral-data, data files requi o [2002/08/28] ports/42134 ports-bugs linux-gtk PORTREVISION contaminates other o [2002/08/30] ports/42218 ports-bugs [PATCH] Cleanup mail/ezmlm-web and bump P o [2002/08/31] ports/42280 ports-bugs New port: florist (Ada-POSIX bindings) o [2002/09/01] ports/42281 ports-bugs lang/rexx-imc - addition of UPPER patch o [2002/09/01] ports/42296 ports-bugs New port: mod_webkit (adapter between Web o [2002/09/03] ports/42360 ports-bugs NEW PORT: mail/aileron, WINGs mail client o [2002/09/03] ports/42371 ports-bugs libncurses.so.4 missing from ports/emulat o [2002/09/03] ports/42378 ports-bugs New port: science/at Acoustic ToolBox o [2002/09/07] ports/42509 ports-bugs Update port: security/saint to 3.5.6 o [2002/09/12] ports/42696 ports-bugs New port: security/libsectok_pcsc: Smartc o [2002/09/14] ports/42790 ports-bugs New Port - www/suphp : A pretty PHP wrapp o [2002/09/20] ports/42986 ports-bugs New Port: libwhisker HTTP testing library o [2002/09/20] ports/43142 ports-bugs New port: AlsaPlayer is an audio player w a [2002/09/21] ports/43171 ports-bugs Port misc/upclient setgid kmem o [2002/09/23] ports/43313 ports-bugs New Port: nikto web and CGI vulnerability o [2002/09/26] ports/43394 ports-bugs New port yptransitd, an nss_ldap replacem o [2002/09/29] ports/43484 ports-bugs Update port net/arla to 0.35.9 o [2002/10/04] ports/43670 ports-bugs RC_NG script for net/openldap12 o [2002/10/04] ports/43671 ports-bugs RC_NG script for net/openldap20 o [2002/10/05] ports/43718 ports-bugs New port: x11-wm/icebgset (set IceWM back o [2002/10/07] ports/43764 ports-bugs New port: audio/wavemagic - An audio play o [2002/10/07] ports/43771 ports-bugs LaTeX ports mixed between print and textp o [2002/10/07] ports/43804 ports-bugs new port: sysutils/getopt (Frodo Looijaar o [2002/10/09] ports/43880 ports-bugs Names of Emacs ports are misleading o [2002/10/10] ports/43892 ports-bugs Enable use of keynote with security/isakm o [2002/10/11] ports/43942 ports-bugs New port submission: security/hydra a [2002/10/11] ports/43956 ports-bugs New port: x11-wm/ion-devel o [2002/10/13] ports/43997 ports-bugs New port: www/apache13-modsnmp: apache-1. o [2002/10/13] ports/44028 ports-bugs courier "make install" fails o [2002/10/19] ports/44270 ports-bugs New port: net/bind9-sdb-ldap o [2002/10/20] ports/44305 ports-bugs New port: java/xdoclet (an extended Javad o [2002/10/20] ports/44319 ports-bugs update port of mail/minimalist to the lat o [2002/10/24] ports/44430 ports-bugs New port: xalan-c v. 1.4 (XSLT engine and a [2002/10/25] ports/44464 ports-bugs Ports addition o [2002/10/28] ports/44565 ports-bugs NEW PORT: devel/libds (Useful data struct o [2002/11/01] ports/44816 ports-bugs new port ngircd o [2002/11/02] ports/44836 ports-bugs New port: hunch - Scan httpd log files, f o [2002/11/03] ports/44854 ports-bugs [PATCH] add xaw3d build option to games/x o [2002/11/05] ports/44932 ports-bugs New port: xtr o [2002/11/05] ports/44949 ports-bugs New port Squid Access Report Generator o [2002/11/05] ports/44953 ports-bugs make install of apsfilter-7.2.3 fails wit o [2002/11/09] ports/45166 ports-bugs New port: emulator/fceu o [2002/11/09] ports/45180 ports-bugs New port (split out from old port): net/s o [2002/11/11] ports/45227 ports-bugs problems building/installing db3 and open o [2002/11/12] ports/45247 ports-bugs New port: www/scoop collaborative media o [2002/11/13] ports/45275 ports-bugs New port for "Simplicity for Java" a Java o [2002/11/15] ports/45316 ports-bugs new-port: game, train control simulation o [2002/11/15] ports/45329 ports-bugs New port: xnodecor (x11 utility on Overri o [2002/11/18] ports/45462 ports-bugs Latest version of XML::Twig. o [2002/11/19] ports/45491 ports-bugs New Port: apache-soap (Apache SOAP Toolki o [2002/11/19] ports/45496 ports-bugs [New Port] www/mod_layout2 : mod_layout A o [2002/11/19] ports/45502 ports-bugs [New Port] www/mod_accounting : An Apache o [2002/11/20] ports/45522 ports-bugs new port database/WWWdb-0.8.2 o [2002/11/24] ports/45693 ports-bugs New port: net/gkrellmmultiping2 o [2002/11/25] ports/45714 ports-bugs New Port: KMyIRC o [2002/11/26] ports/45771 ports-bugs OffiX printer doesn't find printer o [2002/11/26] ports/45782 ports-bugs [patch] fix fetch and update version for o [2002/11/27] ports/45812 ports-bugs New port for print/mup o [2002/11/30] ports/45886 ports-bugs New ports: japanese/trr* o [2002/12/01] ports/45909 ports-bugs New port: Python DBI Sybase module o [2002/12/02] ports/45911 ports-bugs GEOM-related problem sysutils/diskcheckd o [2002/12/05] ports/46005 ports-bugs New port: ginsu - a client for the gale s o [2002/12/06] ports/46024 ports-bugs palm/plucker-1.2 doesn't work with python o [2002/12/06] ports/46034 ports-bugs new ports: mantis o [2002/12/06] ports/46040 ports-bugs request to repo copy www/dansguardian to o [2002/12/06] ports/46041 ports-bugs port update: www/dansguardian to version o [2002/12/06] ports/46042 ports-bugs port update: www/dansguardian-devel to v o [2002/12/07] ports/46063 ports-bugs New port: USB FM Radio Control utility o [2002/12/07] ports/46065 ports-bugs [patch] fix fetch for devel/libvanessa_* o [2002/12/07] ports/46070 ports-bugs [patch] fix fetch and update version for o [2002/12/07] ports/46077 ports-bugs [patch] fix fetch for devel/gsnes9x o [2002/12/07] ports/46089 ports-bugs multimedia/xmms Vorbis plugin built incor o [2002/12/10] ports/46172 ports-bugs linux_base-7.1_2 install problem w/linpro o [2002/12/11] ports/46202 ports-bugs hackedbox make install failure (nle/et_EE o [2002/12/17] ports/46325 ports-bugs new port: net/luasocket - IP library for o [2002/12/17] ports/46327 ports-bugs obsolete version of the Computer Modern f o [2002/12/20] ports/46394 ports-bugs New port: special purpose database applic o [2002/12/20] ports/46410 ports-bugs New port: SGL - incomplete STL implementa o [2002/12/21] ports/46442 ports-bugs New port: Ada thin binding to SDL and Ope o [2002/12/21] ports/46448 ports-bugs New port: adabooch is a Booch implementat o [2002/12/21] ports/46457 ports-bugs Update x11/temperature.app to 1.4 and use o [2002/12/23] ports/46487 ports-bugs New port: cbind - Translator for "thin" A o [2002/12/23] ports/46505 ports-bugs New port: adabindx - an Ada-binding to th o [2002/12/23] ports/46510 ports-bugs sshd does not correctly store the remote o [2002/12/24] ports/46520 ports-bugs stability issues re - mplayer and audio o o [2002/12/25] ports/46527 ports-bugs bento-fix: sysutils/bubblemon o [2002/12/26] ports/46552 ports-bugs new port: smtpmap-0.8 o [2002/12/28] ports/46602 ports-bugs new port devel/tkinspect o [2002/12/28] ports/46608 ports-bugs [NEW PORT] latest development track of ep o [2002/12/30] ports/46630 ports-bugs update of ports/net/lam o [2002/12/31] ports/46656 ports-bugs Fix comm/hylafax pkg-plist o [2003/01/02] ports/46688 ports-bugs mail/tkrat2 Updated to 2.1.1 o [2003/01/02] ports/46706 ports-bugs New Port: irc/dancer o [2003/01/02] ports/46707 ports-bugs [NEW PORT} audio/asmix mixer for afterste o [2003/01/02] ports/46708 ports-bugs [NEW PORT} audio/asmixer Another mixer fo o [2003/01/03] ports/46728 ports-bugs [UPDATE] textproc/xml2rfc o [2003/01/03] ports/46731 ports-bugs New port: SGI's Open Inventor o [2003/01/04] ports/46754 ports-bugs [PATCH] pdftohtml add Plain-Text output o [2003/01/04] ports/46756 ports-bugs new port: net/fpl o [2003/01/04] ports/46766 ports-bugs New port: kix-kmod : Syscons screen saver o [2003/01/04] ports/46774 ports-bugs New port: comms/lirc: Linux Infared Remot o [2003/01/05] ports/46783 ports-bugs ports/audio DAP update o [2003/01/06] ports/46811 ports-bugs palm/pose fails to build o [2003/01/07] ports/46847 ports-bugs new port: multimedia/nxtvepg (electronic o [2003/01/07] ports/46853 ports-bugs pure-ftp uses /etc for config f [2003/01/08] ports/46868 ports-bugs [New Port] security/privman : cool lib fo o [2003/01/08] ports/46874 ports-bugs make of gnotepad+ fails with missing conf o [2003/01/09] ports/46893 ports-bugs make error in /usr/ports/print/xpp o [2003/01/09] ports/46904 ports-bugs new port: mail/vqregister o [2003/01/13] ports/47017 ports-bugs update games/zangband to 2.7.2 o [2003/01/13] ports/47026 ports-bugs New port: a small assembly to HTML conver o [2003/01/14] ports/47039 ports-bugs [BENTO FIX] devel/cxref o [2003/01/14] ports/47042 ports-bugs Some dependencies of port are built befor o [2003/01/15] ports/47098 ports-bugs New port: Senken, a city simulation game o [2003/01/15] ports/47112 ports-bugs web2ldap compile abends with `LDAP_FILT_M o [2003/01/15] ports/47128 ports-bugs New port: hybserv (irc services for ircd- o [2003/01/16] ports/47138 ports-bugs ports/latex cannot be installed o [2003/01/16] ports/47156 ports-bugs new port: ftp/tftp-hpa: Advanced TFTP ser o [2003/01/17] ports/47161 ports-bugs New Port: audio/xmms-kj Add K-JoefolSkinS o [2003/01/17] ports/47166 ports-bugs Tktable port o [2003/01/17] ports/47183 ports-bugs fetchyahoo porte problem (one line)> o [2003/01/18] ports/47189 ports-bugs New port: x11/chameleon o [2003/01/18] ports/47197 ports-bugs multimedia/xmms cdaudio plugin issues ill o [2003/01/18] ports/47207 ports-bugs maintainer-update: print/pfaedit to 20030 o [2003/01/19] ports/47216 ports-bugs daily_clean_hoststat_enable causes errors o [2003/01/19] ports/47218 ports-bugs PostgreSQL client has problems when libbi o [2003/01/19] ports/47220 ports-bugs New port: games/gnmm (GNOME Nine mens' mo o [2003/01/19] ports/47240 ports-bugs [patch] avifile WITH_AC3PASSTHROUGH=yes b o [2003/01/20] ports/47250 ports-bugs Update of audio/cd2mp3 from ver 0.81 to 0 o [2003/01/20] ports/47257 ports-bugs [update port] irc/ezbounce o [2003/01/20] ports/47275 ports-bugs devel/sdcc v2.3.0 fails to configure/buil o [2003/01/21] ports/47296 ports-bugs [New Port] irc/eggdrop f [2003/01/21] ports/47310 ports-bugs Old e-mail o [2003/01/22] ports/47379 ports-bugs patch for elm port o [2003/01/22] ports/47380 ports-bugs xcircuit port has old version o [2003/01/22] ports/47381 ports-bugs ownership wrong if build as one user, ins o [2003/01/23] ports/47403 ports-bugs kavmilter port patch to new version o [2003/01/23] ports/47406 ports-bugs [Patch] Remove {PERL} from ports@'s ports o [2003/01/23] ports/47420 ports-bugs cad/xcircuit: ownership is of user who bu o [2003/01/24] ports/47446 ports-bugs nslookup crash in SetDefaultServer (patch o [2003/01/25] ports/47472 ports-bugs new port: games/xcheckers (checkers game) o [2003/01/25] ports/47473 ports-bugs Exitstatus passing in vgetty for external o [2003/01/26] ports/47520 ports-bugs New port: net/roadrunner - a BEEP library o [2003/01/27] ports/47542 ports-bugs [PATCH] Keynote2 support configuration op o [2003/01/27] ports/47545 ports-bugs New port: jpegoptim is an command-line jp o [2003/01/27] ports/47548 ports-bugs mldonkey does not install o [2003/01/27] ports/47571 ports-bugs new port: gnotime tracker o [2003/01/27] ports/47573 ports-bugs [PATCH] linux_base-7.1_2 port does not in o [2003/01/28] ports/47590 ports-bugs port update: dclib 0.1.11 -> 0.2.3 o [2003/01/28] ports/47591 ports-bugs port update: dcgui 0.1.11 -> 0.2.3 o [2003/01/28] ports/47622 ports-bugs New Port: misc/gkrellshoot2 o [2003/01/29] ports/47649 ports-bugs New port: audio/eTktab - guitar tabulatur o [2003/01/29] ports/47651 ports-bugs unPERLify ports/audio o [2003/01/29] ports/47652 ports-bugs unPERLify ports/astro o [2003/01/29] ports/47653 ports-bugs unPERLify ports/cad o [2003/01/29] ports/47654 ports-bugs unPERLify ports/biology o [2003/01/29] ports/47656 ports-bugs unPERLify ports/comms o [2003/01/30] ports/47686 ports-bugs New Port: kwin-flatcurve o [2003/02/03] ports/47856 ports-bugs new port: sysutils/gkrellmgas2 f [2003/02/03] ports/47862 ports-bugs Maintainer update: databases/mysql-gui (b o [2003/02/04] ports/47904 ports-bugs drweb - cron example don't work o [2003/02/04] ports/47917 ports-bugs New port: audio/gkrellmss2 o [2003/02/05] ports/47990 ports-bugs Patch so loadpath.UNIX is correct o [2003/02/06] ports/47995 ports-bugs New port: Showing moving blobs o [2003/02/06] ports/48021 ports-bugs New Port: www/photo_gallery o [2003/02/08] ports/48097 ports-bugs Manual for camediaplay(1) falsely describ o [2003/02/09] ports/48115 ports-bugs Update port: math/abs o [2003/02/09] ports/48127 ports-bugs New port: security/hostsentry, Login anom o [2003/02/12] ports/48217 ports-bugs New Port: www/mod_frontpage13 and www/mod o [2003/02/13] ports/48235 ports-bugs New Port: anomy mail sanitizer - removing o [2003/02/13] ports/48246 ports-bugs unPERLify ports/databases o [2003/02/13] ports/48247 ports-bugs unPERLify ports/deskutils o [2003/02/13] ports/48248 ports-bugs unPERLify ports/editors o [2003/02/13] ports/48253 ports-bugs unPERLify ports/devel f [2003/02/13] ports/48257 ports-bugs New Port: portdowngrade: a tool to set a o [2003/02/14] ports/48273 ports-bugs FlightGear can only be run once between b o [2003/02/14] ports/48292 ports-bugs new port: print/epsonepl "Printer filter o [2003/02/16] ports/48350 ports-bugs [gimp-print] build error o [2003/02/17] ports/48362 ports-bugs New port: lft-2.0 LFT Alternative tracero o [2003/02/17] ports/48382 ports-bugs /usr/ports/net/cflowd compile errors, wil o [2003/02/17] ports/48388 ports-bugs ftp/lukemftpd: Maintainer does not exist o [2003/02/17] ports/48404 ports-bugs gnuchess doesn't install the gnuchessx al o [2003/02/17] ports/48411 ports-bugs New port: databases/p5-SQL-Abstract o [2003/02/18] ports/48418 ports-bugs mail/teapop: 2 problems o [2003/02/18] ports/48422 ports-bugs New POrt: webstats o [2003/02/18] ports/48448 ports-bugs New port: orca text data grapher (uses rr o [2003/02/19] ports/48459 ports-bugs upgrade www/plone to 1.0.1 o [2003/02/20] ports/48505 ports-bugs [bento fix]: ftp/ftptool patch o [2003/02/21] ports/48552 ports-bugs new port: sysutils/ganglia-webfrontend: G o [2003/02/22] ports/48564 ports-bugs [new port] net/zonemaster : a tool for zo o [2003/02/22] ports/48581 ports-bugs Update russian/xxkb o [2003/02/24] ports/48636 ports-bugs Build options in Makefile.local are ignor o [2003/02/25] ports/48657 ports-bugs New port: drweb-qmail o [2003/02/25] ports/48658 ports-bugs Update java-commapi-freebsd port to versi o [2003/02/25] ports/48685 ports-bugs ports tree missing from ftp site o [2003/02/25] ports/48694 ports-bugs New port: Plan9 compatibility libraries o [2003/02/26] ports/48697 ports-bugs New port: sysutils/sec Simple event corr o [2003/02/27] ports/48764 ports-bugs new port for mpexpr o [2003/02/28] ports/48771 ports-bugs Bug in audio/shout when using with SHOUTc o [2003/03/01] ports/48812 ports-bugs New port: print/foomatic-db-engine o [2003/03/01] ports/48813 ports-bugs New port: print/foomatic-db-engine o [2003/03/01] ports/48824 ports-bugs add WITHOUT_NLS support to devel/bison o [2003/03/02] ports/48832 ports-bugs New port: print/foomatic-db-hpijs o [2003/03/03] ports/48873 ports-bugs courier update to 0.41 o [2003/03/03] ports/48882 ports-bugs new port x11-toolkits/SoXt (SUPERCEEDS po f [2003/03/03] ports/48884 ports-bugs Update misc/mango to 0.25 o [2003/03/03] ports/48890 ports-bugs New port: audio/streamtuner-python 0.0.1 o [2003/03/04] ports/48912 ports-bugs New port: Maintain DNS zones using an LDA o [2003/03/04] ports/48913 ports-bugs vtk does not compile with nvidia-drivers o [2003/03/04] ports/48929 ports-bugs New port: JRTPLIB - RTP library in C++ o [2003/03/04] ports/48934 ports-bugs new port: games/eif (empire text client) o [2003/03/05] ports/48957 ports-bugs upgrade math/grace to 5.1.12; please clos o [2003/03/05] ports/48959 ports-bugs new port: graphics/gqview-devel o [2003/03/06] ports/48994 ports-bugs port for ncp o [2003/03/07] ports/49002 ports-bugs fix duplicated categories on a 34 slave p o [2003/03/07] ports/49003 ports-bugs New port: A virtual note-pad system for y o [2003/03/10] ports/49061 ports-bugs Update port: net/mmucl o [2003/03/10] ports/49072 ports-bugs New port x11-toolkits/SoQt (1.0.2) o [2003/03/10] ports/49080 ports-bugs New port: emacs-chess, a chessboard for e o [2003/03/10] ports/49093 ports-bugs update ports/biology/act to latest releas o [2003/03/11] ports/49118 ports-bugs Update port: update graphics/showimg to 0 o [2003/03/11] ports/49944 ports-bugs New Port: mail/pop-before-smtp - smtp aut o [2003/03/11] ports/49948 ports-bugs Port submission o [2003/03/12] ports/49961 ports-bugs [PATCH] Mega tree sweep for SITE_PERL usa o [2003/03/12] ports/49971 ports-bugs fix overlong comment for mail/qmail port o [2003/03/13] ports/49986 ports-bugs new port: myphpmoney o [2003/03/14] ports/49999 ports-bugs lrz in lrzsz-0.12.20(comms/lrzsz) sets in o [2003/03/14] ports/50005 ports-bugs net/flow-extract: new port o [2003/03/15] ports/50026 ports-bugs New port: security/osiris o [2003/03/15] ports/50029 ports-bugs fix for "user stats" function in tkseti o [2003/03/15] ports/50038 ports-bugs New port: wmBinClock o [2003/03/16] ports/50046 ports-bugs New Port: kallers o [2003/03/16] ports/50047 ports-bugs update www/zope-cmf from 1.3 to 1.3.1 o [2003/03/16] ports/50048 ports-bugs Update of www/plone from 1.0.r1 to 1.0.1 o [2003/03/16] ports/50056 ports-bugs New port: net/packit: a network auditing o [2003/03/17] ports/50065 ports-bugs Update port: net/flow-tools version 0.64 o [2003/03/17] ports/50068 ports-bugs New port: sybase_ase (Sybase ASE RDBMS) o [2003/03/17] ports/50071 ports-bugs Update of math/ntl o [2003/03/17] ports/50072 ports-bugs New port: net/gkrellmwireless2 o [2003/03/18] ports/50096 ports-bugs tiff-3.5.7 fax2tiff dumps core o [2003/03/19] ports/50135 ports-bugs conflicting types for mkdir() and rename( o [2003/03/20] ports/50140 ports-bugs [patch] fix plist devl/linux_devtools (al o [2003/03/20] ports/50142 ports-bugs misc/compat4x broken o [2003/03/20] ports/50146 ports-bugs mount.app new port submission o [2003/03/21] ports/50158 ports-bugs New port: /usr/port/mail/mailscanner www. o [2003/03/21] ports/50170 ports-bugs New version of bcwipe port o [2003/03/21] ports/50172 ports-bugs New port: 9box "pack" windows inside itse o [2003/03/22] ports/50195 ports-bugs [PATCH] Import of OpenBSD fdisk o [2003/03/23] ports/50207 ports-bugs [NEW PORT]: converters/p5-Unicode-Lite: E f [2003/03/23] ports/50222 ports-bugs port upgrade of databases/py-PySQLite to o [2003/03/23] ports/50230 ports-bugs grail don't work with Python 2.x. o [2003/03/24] ports/50256 ports-bugs new port version: sysutils/stmpclean o [2003/03/25] ports/50272 ports-bugs [NEW PORT] devel/p5-enum: defines a set o o [2003/03/25] ports/50291 ports-bugs FreeBSD Port Submission for "Destroy" o [2003/03/25] ports/50303 ports-bugs [NEW PORT] detachtty: Run interactive pro a [2003/03/26] ports/50313 ports-bugs Upgrade emulators/linux_base's glibc o [2003/03/26] ports/50318 ports-bugs New port: Python shared library. o [2003/03/26] ports/50324 ports-bugs net/ns fails to build o [2003/03/28] ports/50397 ports-bugs [PATCH] databases/postgresql[-odbc|7|72] o [2003/03/28] ports/50405 ports-bugs New port: x11-wm/fluxspace o [2003/03/28] ports/50411 ports-bugs Revised [UPDATE] sysutils/fastresolve fro o [2003/03/28] ports/50415 ports-bugs New port: irc/onis o [2003/03/29] ports/50419 ports-bugs NEW PORT! misc/ekg o [2003/03/29] ports/50423 ports-bugs New port: www/phpftp o [2003/03/29] ports/50443 ports-bugs New port for libirman 0.4.2 o [2003/03/30] ports/50454 ports-bugs cricket port update to 1.4.0.p2 o [2003/03/30] ports/50455 ports-bugs apache13-modssl/Makefile new options and o [2003/03/31] ports/50470 ports-bugs SNMP_Session.pm conflict in net/mrtg net/ o [2003/03/31] ports/50473 ports-bugs amavis-perl is no longer supported (super o [2003/03/31] ports/50475 ports-bugs Port of rubber. f [2003/03/31] ports/50476 ports-bugs New port: math/libmath++ o [2003/03/31] ports/50478 ports-bugs New port: games/monopd o [2003/03/31] ports/50481 ports-bugs [patch] update java/bluej -> 1.2.2 o [2003/03/31] ports/50484 ports-bugs Lots of warnings when compiling hping o [2003/03/31] ports/50514 ports-bugs TCH] Added tractorgen(6) manpage and othe o [2003/04/02] ports/50548 ports-bugs print/ghostscript-gnu missing "standard" o [2003/04/02] ports/50553 ports-bugs [update] games/hlserver-psychostats to 1. o [2003/04/03] ports/50578 ports-bugs pktrace has been renamed to mftrace by th o [2003/04/03] ports/50586 ports-bugs JDEE port needs updates o [2003/04/04] ports/50607 ports-bugs New port: puff (text editor) (very easy o [2003/04/04] ports/50608 ports-bugs Update port: www/p5-Apache-AuthCookie o [2003/04/04] ports/50609 ports-bugs New port: russian/muttprint (pretty print o [2003/04/04] ports/50616 ports-bugs UPDATE-PORT: devel/linux-sdl12 update to o [2003/04/05] ports/50628 ports-bugs [PATCH] waimea port has missing run-depen o [2003/04/06] ports/50645 ports-bugs New port: benchmarks/scimark2 - a Java b o [2003/04/06] ports/50646 ports-bugs New port: benchmarks/scimark2c - an ANSI o [2003/04/07] ports/50672 ports-bugs New port submission o [2003/04/07] ports/50692 ports-bugs Update port of ScrollZ to 1.9 o [2003/04/08] ports/50710 ports-bugs New port: misc/pxclient o [2003/04/08] ports/50714 ports-bugs Checksum mismatch for ghostscript/hpdj-2. o [2003/04/08] ports/50723 ports-bugs astro/setiathome request: use linux versi o [2003/04/08] ports/50724 ports-bugs [PATCH] pkg_fetch saves full filename o [2003/04/08] ports/50725 ports-bugs new port: russian/koi2koi o [2003/04/09] ports/50754 ports-bugs New port: security/hmap - web server fing o [2003/04/09] ports/50763 ports-bugs New-port: games/linux_nwnclient games/li o [2003/04/09] ports/50767 ports-bugs New port: ldap2dns - maintain DNS zones i o [2003/04/10] ports/50775 ports-bugs axel port failes to build o [2003/04/10] ports/50777 ports-bugs New port: lxsplit-0.1.1 o [2003/04/10] ports/50782 ports-bugs python port installs files not in pkg-pli o [2003/04/10] ports/50788 ports-bugs gnump3d - install problem - adamw asked m o [2003/04/10] ports/50794 ports-bugs New port graphics/pho (version 0.9.1) o [2003/04/10] ports/50799 ports-bugs Lisp Packages install directory should no o [2003/04/11] ports/50810 ports-bugs Update port: lang/cmucl (docs installed a f [2003/04/11] ports/50822 ports-bugs [PATCH] graphics/netpbm doesn't install i o [2003/04/11] ports/50828 ports-bugs New port: mod_jk for apache2 o [2003/04/11] ports/50840 ports-bugs mail/squirrelmail - Port Docs in wrong lo o [2003/04/12] ports/50850 ports-bugs -march=pca56 blows up nethack34-nox11 o [2003/04/12] ports/50858 ports-bugs compile of ecasound-2.2.2 fails with unde o [2003/04/12] ports/50880 ports-bugs Request for (optional) addition of tcplim o [2003/04/12] ports/50881 ports-bugs New port: mail/scmail - mail filter in sc o [2003/04/12] ports/50888 ports-bugs Updated fetchyahoo port, like fetchmail f o [2003/04/13] ports/50898 ports-bugs abcde netbsd patch merge and cddb proto a o [2003/04/13] ports/50901 ports-bugs New port: gqradio - a GTK based FM tuner o [2003/04/13] ports/50914 ports-bugs Port update: editors/fte o [2003/04/14] ports/50944 ports-bugs Update port www/mod_fastcgi : version has o [2003/04/14] ports/50957 ports-bugs [PATCH]: unbreak port converters/dumpasn1 o [2003/04/14] ports/50965 ports-bugs www/linux-flashplugin update to 6.0r79 o [2003/04/14] ports/50967 ports-bugs [patch] ftp/ftptool patch the file lex.c o [2003/04/15] ports/50972 ports-bugs Update devel/liboop: fix distinfo - bento o [2003/04/15] ports/50989 ports-bugs Update cad/slffea: fix distinfo - bento e o [2003/04/15] ports/50992 ports-bugs ports-bug: devel/kprof o [2003/04/15] ports/50997 ports-bugs [patch] x11-toolkits/slingshot o [2003/04/15] ports/51002 ports-bugs new feature for net/trafshow o [2003/04/15] ports/51005 ports-bugs New port of native window decoration for o [2003/04/15] ports/51008 ports-bugs making sysutils/eject understand cdrom ar o [2003/04/15] ports/51011 ports-bugs port update o [2003/04/15] ports/51013 ports-bugs New Port: avidemux2 o [2003/04/16] ports/51017 ports-bugs New Port: xvmixer an Open Look-based audi o [2003/04/16] ports/51024 ports-bugs fix-bento/update port: french/spip o [2003/04/16] ports/51036 ports-bugs New port: sysutils/clockspeed-conf - Supe o [2003/04/16] ports/51071 ports-bugs New port: net/pear-Net_URL - Easy parsing o [2003/04/16] ports/51076 ports-bugs [patch] x11-toolkits/xview-clients now bu o [2003/04/16] ports/51077 ports-bugs update net/ntop to 2.2 o [2003/04/17] ports/51087 ports-bugs spamass-milter can not be built with send o [2003/04/17] ports/51098 ports-bugs New port: Perl5 module to read and write o [2003/04/17] ports/51117 ports-bugs New port: Freecraft RTS game o [2003/04/17] ports/51118 ports-bugs New Port: graphics/xvgr Open Look-based d o [2003/04/17] ports/51122 ports-bugs New port: textproc/xhtml-1.1 o [2003/04/18] ports/51130 ports-bugs databases/freetds overwrites config file o [2003/04/18] ports/51147 ports-bugs Update of graphics/jhead port to 2.0 o [2003/04/19] ports/51158 ports-bugs New port: sysutils/reoback o [2003/04/19] ports/51161 ports-bugs upgrade math/R to 1.7.0 o [2003/04/19] ports/51162 ports-bugs new port: misc/gkrellm-helium, Prague the o [2003/04/20] ports/51188 ports-bugs Update audio/snack: Fix md5 and make pack o [2003/04/20] ports/51190 ports-bugs New port: emulators/extract-xiso o [2003/04/20] ports/51197 ports-bugs New Port: rendezvous (Apple's ZeroConf im o [2003/04/21] ports/51214 ports-bugs New port: www/zope-localizer o [2003/04/21] ports/51215 ports-bugs New port: www/zope-translationservice o [2003/04/21] ports/51264 ports-bugs new port: mail/mls o [2003/04/22] ports/51272 ports-bugs Update net/ifstat: 0.5 -> 1.0 o [2003/04/22] ports/51275 ports-bugs textproc/latex2html PLIST is missing some o [2003/04/23] ports/51306 ports-bugs Update port: net/dictd-database o [2003/04/23] ports/51313 ports-bugs new port x11-toolkits/SoXt (SUPERCEEDS po o [2003/04/23] ports/51320 ports-bugs NEW PORT: sysutils/adtool o [2003/04/23] ports/51321 ports-bugs Patch to update port dclib 0.1.11 -> 0.2. o [2003/04/23] ports/51323 ports-bugs Patch to update port dcgui 0.1.11 -> 0.2. o [2003/04/24] ports/51337 ports-bugs Update converters/konwert: Fix make packa f [2003/04/24] ports/51349 ports-bugs New port: sysutils/xps o [2003/04/24] ports/51351 ports-bugs new port x11-toolkits/SoXt 1.1.0 (SUPERCE o [2003/04/24] ports/51393 ports-bugs update request: lang/sml-mode.el to 3.9.5 o [2003/04/24] ports/51395 ports-bugs [PATCH] Update xdiskusage to 1.45 f [2003/04/24] ports/51400 ports-bugs new port:biology/lsysexp o [2003/04/24] ports/51402 ports-bugs New port for LDAP Directory Administrator o [2003/04/24] ports/51404 ports-bugs [patch] fix WWW for www/css-mode.el o [2003/04/25] ports/51406 ports-bugs Add linprocfs mount check to emulators/li o [2003/04/25] ports/51424 ports-bugs www/httrack should be updated to lastest o [2003/04/25] ports/51427 ports-bugs Update port: devel/rlwrap to 0.15 o [2003/04/26] ports/51447 ports-bugs x11/nvidia-driver: adding support for 5.0 o [2003/04/26] ports/51449 ports-bugs Update sysutils/durep: 0.8 -> 0.8.1 o [2003/04/27] ports/51456 ports-bugs adding new port: opencm o [2003/04/27] ports/51468 ports-bugs [patch][non-maintainer update] canonical o [2003/04/27] ports/51469 ports-bugs New port: net/packit: a network auditing o [2003/04/27] ports/51475 ports-bugs japanese/kappa20: does not handle italic o [2003/04/27] ports/51482 ports-bugs IMCom port upgrade (supersedes ports/5077 o [2003/04/27] ports/51484 ports-bugs undefined reference in libobjc.so o [2003/04/28] ports/51489 ports-bugs Update net/gnunet: 0.5.1a -> 0.5.3 o [2003/04/28] ports/51520 ports-bugs Update security/nmap to 3.27 o [2003/04/28] ports/51536 ports-bugs rmagic 2.21/FreeBSD 4.8-STABLE failing to o [2003/04/28] ports/51540 ports-bugs [update orphaned port] : audio/darkice o [2003/04/28] ports/51543 ports-bugs New port: py-sybase 0.36 (Sybase DB modul o [2003/04/28] ports/51545 ports-bugs [update orphaned port]: audio/mixer.app o [2003/04/29] ports/51554 ports-bugs p5-File-Spec is too picky o [2003/04/29] ports/51560 ports-bugs UPDATE converters/p5-Convert-BER o [2003/04/29] ports/51610 ports-bugs rmagic.sample (config file) & sample.dat f [2003/04/30] ports/51618 ports-bugs Maintainer update: hungarian/ispell to ve o [2003/04/30] ports/51624 ports-bugs NEW port: pixilate o [2003/04/30] ports/51630 ports-bugs [new port]: net/haproxy (HTTP load balanc o [2003/04/30] ports/51631 ports-bugs New port: hungarian/complexjogtar - Hunga o [2003/04/30] ports/51634 ports-bugs Updated mod_webapp version o [2003/04/30] ports/51635 ports-bugs [update orphaned port]: devel/trio 1.9 - o [2003/04/30] ports/51640 ports-bugs [PATCH] update of port net/openldap20 to o [2003/04/30] ports/51647 ports-bugs NEW PORT: pglod - inserts web logs into a o [2003/05/01] ports/51659 ports-bugs make www/rt3 be compatible with www/p5-Fa o [2003/05/02] ports/51692 ports-bugs Patch to enable USB scanner autodetection o [2003/05/02] ports/51693 ports-bugs [PATCH] Unbreak w11-fm/fvwm2-devel o [2003/05/02] ports/51694 ports-bugs net/lft update to 2.1 o [2003/05/03] ports/51722 ports-bugs New port: libukcprog - generally useful l o [2003/05/03] ports/51723 ports-bugs New port: libstatgrab - a useful interfac o [2003/05/03] ports/51734 ports-bugs Update devel/elf: 0.5.2 -> 0.5.3 o [2003/05/04] ports/51757 ports-bugs Maintainer update: isc-dhcp3 splitted to a [2003/05/04] ports/51759 ports-bugs Maintainer update: astro/setiathome (manu o [2003/05/04] ports/51760 ports-bugs Change-request: mail/tmda (ACTION_AUTO_RE o [2003/05/04] ports/51768 ports-bugs [new port]: net/libnss_mysql (NSS module o [2003/05/05] ports/51781 ports-bugs NEW PORTS devel/p5-DateTime-LeapSecond o [2003/05/05] ports/51782 ports-bugs NEW PORT devel/p5-DateTime-TimeZone o [2003/05/05] ports/51783 ports-bugs NEW PORTS devel/p5-DateTime o [2003/05/05] ports/51787 ports-bugs (update) databases/p5-DBIx-Tree o [2003/05/05] ports/51791 ports-bugs Change-request: shell/pdksh (pdksh-5.2.14 o [2003/05/05] ports/51796 ports-bugs (update) databases/p5-GraphViz-DBI o [2003/05/05] ports/51799 ports-bugs (update) devel/p5-AppConfig o [2003/05/05] ports/51803 ports-bugs (update) devel/p5-Class-Container o [2003/05/05] ports/51804 ports-bugs (update) devel/p5-Class-Date o [2003/05/05] ports/51819 ports-bugs New port: Provides a static mod_perl with o [2003/05/05] ports/51829 ports-bugs New version of autocd port o [2003/05/06] ports/51834 ports-bugs (update) devel/p5-Class-MethodMaker o [2003/05/06] ports/51835 ports-bugs (update) devel/p5-Class-ObjectTemplate o [2003/05/06] ports/51836 ports-bugs (update) devel/p5-Class-ObjectTemplate-DB o [2003/05/06] ports/51838 ports-bugs (update) devel/p5-Config-General o [2003/05/06] ports/51839 ports-bugs (update) devel/p5-Config-IniFiles o [2003/05/06] ports/51840 ports-bugs (update) devel/p5-Data-Flow o [2003/05/06] ports/51851 ports-bugs (update) ports/devel/p5-Date-ICal o [2003/05/06] ports/51877 ports-bugs (update) devel/p5-Devel-ptkdb o [2003/05/06] ports/51880 ports-bugs (update) devel/p5-Filter o [2003/05/06] ports/51881 ports-bugs (update) devel/p5-Getopt-ArgvFile o [2003/05/07] ports/51915 ports-bugs update for ports dcgui/dclib o [2003/05/07] ports/51918 ports-bugs isc-dhcp3 port package creates dhcp.lease a [2003/05/07] ports/51923 ports-bugs Update port: math/oleo o [2003/05/07] ports/51944 ports-bugs Update misc/vifm: 0.1 -> 0.2 o [2003/05/08] ports/51975 ports-bugs New port: devel/cvstrac o [2003/05/08] ports/51987 ports-bugs new port: archivers/linux-unace2 o [2003/05/09] ports/51995 ports-bugs New port: mod_jk2 for apache2 and tomcat4 o [2003/05/09] ports/52005 ports-bugs new port: VideoLAN server o [2003/05/09] ports/52006 ports-bugs rsync fails with protocol problems o [2003/05/09] ports/52016 ports-bugs New port: lang/harbour - A Clipper-compat o [2003/05/09] ports/52017 ports-bugs update to print/gsfonts o [2003/05/10] ports/52027 ports-bugs Update port: misc/bibletime from 1.2.1 to o [2003/05/10] ports/52028 ports-bugs Update port: misc/bibletime-doc from 1.2. o [2003/05/10] ports/52030 ports-bugs New port: misc/libutf UTF-8 character set o [2003/05/10] ports/52031 ports-bugs New port: misc/utftools UTF-aware wc, fmt o [2003/05/10] ports/52037 ports-bugs port multimedia/avifile fails to build (I o [2003/05/10] ports/52039 ports-bugs transcode port fails when importing files o [2003/05/10] ports/52042 ports-bugs Update: audio/p5-MP3-Info 1.01 -> 1.02 o [2003/05/10] ports/52054 ports-bugs Update biology/p5-AcePerl 1.82 -> 1.83 o [2003/05/10] ports/52058 ports-bugs Update: databases/p5-BerkeleyDB .19 -> .2 o [2003/05/11] ports/52078 ports-bugs mail/gmime: upgrading to 1.0.7. o [2003/05/11] ports/52082 ports-bugs bacon port has no its homepage o [2003/05/12] ports/52106 ports-bugs New port: java/javaws: Java Web Start 1.2 o [2003/05/12] ports/52116 ports-bugs [patch] print/cpp2latex s/getopt/unistd/ o [2003/05/12] ports/52124 ports-bugs [patch] net/tcpview: Chase AF_{NS/NETBIOS o [2003/05/12] ports/52125 ports-bugs New port: The devel branch of the ion win o [2003/05/12] ports/52127 ports-bugs Update port: emulators/dosbox - 0.55 > 0. o [2003/05/12] ports/52130 ports-bugs New Port: sysutils/klineakconfig configur f [2003/05/12] ports/52131 ports-bugs New port: databases/qt-mysql-plugin mysql o [2003/05/12] ports/52132 ports-bugs New port: audio/prokyon3 Really nice mp3- o [2003/05/12] ports/52148 ports-bugs NEW PORT: graphics/gocr (aka jocr) - Opti o [2003/05/13] ports/52151 ports-bugs New port: elfsh 0.43b - an attractive ELF f [2003/05/13] ports/52155 ports-bugs MAINTAINER UPDATE: net/nc6 to 0.5 o [2003/05/13] ports/52158 ports-bugs Update to pr:ports/52129 sysutils/lineakd o [2003/05/13] ports/52159 ports-bugs updates to pr:ports/52130 and pr:ports/52 o [2003/05/13] ports/52161 ports-bugs (update) devel/p5-IPC-ShareLite to 0.09 o [2003/05/13] ports/52165 ports-bugs (update) devel/p5-Log-Agent to 0.304 o [2003/05/13] ports/52167 ports-bugs (update) devel/p5-Log-Log4perl to 0.31 o [2003/05/13] ports/52176 ports-bugs new port: comms/gscmxx 0.4.1 - gtk-fronte o [2003/05/13] ports/52184 ports-bugs (update) devel/p5-Params-Validate to 0.58 o [2003/05/13] ports/52186 ports-bugs (update) devel/p5-Proc-ProcessTable to 0. o [2003/05/13] ports/52197 ports-bugs editors/kile: changing MASTER_SITES & upg o [2003/05/13] ports/52200 ports-bugs [maintainer update] fix fetch and Perl lo o [2003/05/13] ports/52201 ports-bugs NEW port CAD/gmsh o [2003/05/14] ports/52204 ports-bugs (update) devel/p5-Proc-Reliable to 1.13 o [2003/05/14] ports/52212 ports-bugs (update) devel/p5-String-Approx to 3.20 o [2003/05/14] ports/52214 ports-bugs (update) devel/p5-Term-ANSIColor to 1.07 o [2003/05/14] ports/52215 ports-bugs [maintainer] Update www/eldav.el to 0.7.0 o [2003/05/14] ports/52216 ports-bugs (update) devel/p5-Test-Harness to 2.28 o [2003/05/14] ports/52218 ports-bugs New port: Set of scripts for counting tra o [2003/05/14] ports/52231 ports-bugs (update) graphics/p5-GD-Graph to 1.39 o [2003/05/14] ports/52232 ports-bugs (update) graphics/p5-GD-TextUtil to 0.85 o [2003/05/14] ports/52235 ports-bugs (update) graphics/gd2 to 2.0.12 o [2003/05/14] ports/52238 ports-bugs (update) graphics/p5-GD2 to 2.07 o [2003/05/14] ports/52239 ports-bugs (update) graphics/p5-Image-Info to 1.12 o [2003/05/14] ports/52240 ports-bugs (update) graphics/p5-chart to 2.2 o [2003/05/14] ports/52241 ports-bugs (update) irc/p5-IRC to 0.74 o [2003/05/14] ports/52242 ports-bugs (update) irc/p5-POE-Component-IRC to 2.7 o [2003/05/15] ports/52263 ports-bugs (update) mail/p5-MIME-Lite to 3.01 o [2003/05/15] ports/52268 ports-bugs devel/picasm update to 1.12b o [2003/05/15] ports/52282 ports-bugs getmail patch- there is a getmail_mbox o [2003/05/15] ports/52285 ports-bugs (update) mail/p5-Mail-Sendmail to 0.79 o [2003/05/15] ports/52286 ports-bugs (update) math/p5-Date-Handler to 1.1 o [2003/05/15] ports/52291 ports-bugs (update) math/p5-Math-Currency to 0.39 o [2003/05/15] ports/52292 ports-bugs (update) math/p5-Math-GMP to 2.03 o [2003/05/15] ports/52294 ports-bugs Update net/wmnd: 0.4.5 -> 0.4.6 o [2003/05/15] ports/52297 ports-bugs setiathome out of date o [2003/05/15] ports/52298 ports-bugs TerminatorX: gcc 3.X compatibility for po o [2003/05/15] ports/52299 ports-bugs New port: lightweight window manager weew o [2003/05/15] ports/52305 ports-bugs Update port: textproc/cocoon (distfiles s o [2003/05/15] ports/52306 ports-bugs NEW port: vda2fbd converter f [2003/05/15] ports/52307 ports-bugs Update deskutils/logjam2: upgrade and fix o [2003/05/16] ports/52315 ports-bugs New port: devel/p5-Date-Simple - a simple o [2003/05/16] ports/52316 ports-bugs New port: devel/p5-Date-Simple - a simple o [2003/05/16] ports/52322 ports-bugs (update) math/p5-MatrixReal to 1.9 o [2003/05/16] ports/52327 ports-bugs (update) misc/p5-File-CounterFile to 1.00 o [2003/05/16] ports/52329 ports-bugs (update) net/p5-DNS-Config to work with a o [2003/05/16] ports/52330 ports-bugs (update) net/p5-DNS-Zone to work with all o [2003/05/16] ports/52333 ports-bugs (update) net/p5-EasyTCP to 0.22 f [2003/05/16] ports/52339 ports-bugs New port: games/ksirk o [2003/05/16] ports/52351 ports-bugs multimedia/transcode does not auto detect o [2003/05/17] ports/52357 ports-bugs New Port: ASDF, a Common Lisp library man o [2003/05/17] ports/52358 ports-bugs New Port: ASDF, a Common Lisp library man o [2003/05/17] ports/52359 ports-bugs New Port: ASDF, a Common Lisp library man o [2003/05/17] ports/52360 ports-bugs New Port: ASDF, a Common Lisp library man o [2003/05/17] ports/52361 ports-bugs New Port: Common Lisp Parser Generator o [2003/05/17] ports/52362 ports-bugs New Port: Common Lisp Parser Generator (S o [2003/05/17] ports/52363 ports-bugs New Port: Parser Generator for Common Lis o [2003/05/17] ports/52364 ports-bugs New Port: Common Lisp Parser Generator (C o [2003/05/17] ports/52365 ports-bugs New Port: Common Lisp portability package o [2003/05/17] ports/52366 ports-bugs New Port: Common Lisp portability package o [2003/05/17] ports/52367 ports-bugs New Port: Common Lisp portability package o [2003/05/17] ports/52368 ports-bugs New Port: Common Lisp portability package o [2003/05/17] ports/52369 ports-bugs New Port: Portable Perl-Compatible Regexp o [2003/05/17] ports/52370 ports-bugs New Port: Portable Perl-Compatible Regexp o [2003/05/17] ports/52371 ports-bugs New Port: Portable Perl-Compatible Regexp o [2003/05/17] ports/52372 ports-bugs New Port: Portable Perl-Compatible Regexp o [2003/05/17] ports/52373 ports-bugs New Port: Splitting Common Lisp sequences o [2003/05/17] ports/52374 ports-bugs New Port: Splitting Common Lisp Sequences o [2003/05/17] ports/52375 ports-bugs New Port: Splitting Common Lisp Sequences o [2003/05/17] ports/52376 ports-bugs New Port: Splitting Common Lisp sequences o [2003/05/17] ports/52377 ports-bugs [PATCH] for upgrading net/ipfm to 0.11.5 o [2003/05/17] ports/52380 ports-bugs Configure problem in libggi f [2003/05/17] ports/52381 ports-bugs New port: games/luola o [2003/05/17] ports/52390 ports-bugs emulators/twin attempts to build on unsup o [2003/05/18] ports/52391 ports-bugs Update devel/libmba: 0.6.0 -> 0.6.1 o [2003/05/18] ports/52393 ports-bugs New port: py-sourceview is a Python wrapp o [2003/05/18] ports/52396 ports-bugs New port: gurlchecker o [2003/05/18] ports/52397 ports-bugs New port: math/algae - Programming Langua o [2003/05/18] ports/52402 ports-bugs New port: www/webcpp (converts code to hi o [2003/05/18] ports/52403 ports-bugs New port: mail/p5-Mail-RFC822-Address: Va o [2003/05/18] ports/52405 ports-bugs new port:graphics/yafray o [2003/05/18] ports/52411 ports-bugs graphics/giram: upgrading to 0.3.5 and un o [2003/05/19] ports/52423 ports-bugs New port: a bridge card game (version 0.4 o [2003/05/19] ports/52430 ports-bugs port lang/ocaml fails to build o [2003/05/19] ports/52437 ports-bugs Unbroke port: x11-toolkits/xview f [2003/05/19] ports/52439 ports-bugs Request: SMTP AUTH for qmail o [2003/05/19] ports/52443 ports-bugs New port: textproc/libwpd o [2003/05/19] ports/52444 ports-bugs Fix to ports/lang/ici build problem on 5- o [2003/05/19] ports/52446 ports-bugs New port: devhelp o [2003/05/19] ports/52447 ports-bugs [PATCH] for gtk20-apireference .devhelp f o [2003/05/19] ports/52452 ports-bugs [PATCH] sysutils/afio mangles FIFOs o [2003/05/19] ports/52455 ports-bugs audio/faad calls ${ACLOCAL} before it is o [2003/05/20] ports/52456 ports-bugs new port:audio/xmms-flac o [2003/05/20] ports/52462 ports-bugs New Port: lml, a Common Lisp HTML generat o [2003/05/20] ports/52463 ports-bugs New Port: lml, a Common Lisp HTML generat o [2003/05/20] ports/52464 ports-bugs New Port: lml, a Common Lisp HTML generat o [2003/05/20] ports/52465 ports-bugs New Port: lml, a Common Lisp HTML generat o [2003/05/20] ports/52472 ports-bugs Vorbis comments in unicode do not work wi o [2003/05/20] ports/52476 ports-bugs Update port: audio/mhwaveedit to 1.2.1 o [2003/05/20] ports/52477 ports-bugs Update port: editors/zile to 1.6.2 o [2003/05/20] ports/52478 ports-bugs Update port: graphics/white_dune to 0.23. o [2003/05/20] ports/52479 ports-bugs Update port: print/ghostscript-afpl o [2003/05/20] ports/52480 ports-bugs Update port: print/ghostscript-gnu to 7.0 o [2003/05/20] ports/52481 ports-bugs Update port: print/panda to 0.5.2 o [2003/05/20] ports/52482 ports-bugs Update port: print/scribus to 0.9.10 o [2003/05/20] ports/52483 ports-bugs Update port: textproc/libxml++ to 0.23.0 o [2003/05/20] ports/52484 ports-bugs Update port: x11/xnee to 1.07 o [2003/05/20] ports/52488 ports-bugs Updated port for sysutils/muse o [2003/05/20] ports/52491 ports-bugs Update port: misc/xrmap to 2.29 o [2003/05/20] ports/52493 ports-bugs Update net/tcpreplay: 1.4.0 -> 1.4.1 o [2003/05/20] ports/52495 ports-bugs New port: sysutils/disktool o [2003/05/20] ports/52505 ports-bugs o [2003/05/20] ports/52507 ports-bugs [PATCH] Update of port www/p5-HTML-Mason o [2003/05/20] ports/52508 ports-bugs Update port: www/squid (use MANn variable o [2003/05/20] ports/52511 ports-bugs update of postfix-current port o [2003/05/21] ports/52531 ports-bugs www/mod_webapp_apache2: Distfile unavaila o [2003/05/21] ports/52532 ports-bugs Maintainer update: Fix checksum of textpr o [2003/05/21] ports/52533 ports-bugs Maintainer update: Checksum error textpro o [2003/05/21] ports/52534 ports-bugs [PATCH] Release maintainership of my port o [2003/05/21] ports/52538 ports-bugs [patch] Increased granularity for ImageMa o [2003/05/21] ports/52539 ports-bugs [MAINTAINER UPDATE] Update www/sidplug to o [2003/05/21] ports/52541 ports-bugs Fix unfetchable distfile for www/apache13 o [2003/05/21] ports/52544 ports-bugs news/newsx: upgrading to 1.6. o [2003/05/21] ports/52553 ports-bugs [repost] maintainer-update: print/pfaedit o [2003/05/21] ports/52558 ports-bugs New port: parser generator using BNF gram o [2003/05/21] ports/52559 ports-bugs NEW PORT: mail/nohtml o [2003/05/22] ports/52562 ports-bugs Update mail/gmime2: 2.0.6 -> 2.0.7 o [2003/05/22] ports/52564 ports-bugs Update port print/hyperlatex from 2.5 to o [2003/05/22] ports/52570 ports-bugs Jigdo maintainer update, port did not bui o [2003/05/22] ports/52571 ports-bugs Update port: audio/rebler o [2003/05/22] ports/52573 ports-bugs Update port: devel/yacl o [2003/05/22] ports/52574 ports-bugs Update port: japanese/anthy to 3900 o [2003/05/22] ports/52575 ports-bugs Update port: japanese/jmode to 0.6.5 o [2003/05/22] ports/52576 ports-bugs Update port: math/yacas to 1.0.55 o [2003/05/22] ports/52577 ports-bugs Update port: net/libyahoo2 to 0.7.0 o [2003/05/22] ports/52578 ports-bugs Update port: textproc/dictfmt o [2003/05/22] ports/52579 ports-bugs Update port: www/aria to 1.0.0 o [2003/05/22] ports/52582 ports-bugs new port: net/weedns_sc o [2003/05/22] ports/52583 ports-bugs [PATCH] deskutils/logjam2: fix building o o [2003/05/22] ports/52584 ports-bugs [MAINTAINER FIX] net/sendip o [2003/05/22] ports/52590 ports-bugs [non-maintainer update] update logic for o [2003/05/23] ports/52604 ports-bugs multiple problems with port net/openldap2 o [2003/05/23] ports/52607 ports-bugs New port request o [2003/05/23] ports/52608 ports-bugs [maintainer update] Update port: net/neta o [2003/05/23] ports/52614 ports-bugs Port does not exist o [2003/05/23] ports/52616 ports-bugs NEW PORT: hotkeys allows use of extra key o [2003/05/23] ports/52618 ports-bugs [MAINTAINER UPDATE] security/p5-File-Scan o [2003/05/23] ports/52619 ports-bugs Update port: lang/TenDRA (and unbreak it o [2003/05/23] ports/52620 ports-bugs maintainer update of postfix o [2003/05/23] ports/52622 ports-bugs Update nast (maintainer): 0.1.7d -> 0.1.7 o [2003/05/23] ports/52627 ports-bugs Update databases/clip: 0.9 -> 1.0.6 o [2003/05/23] ports/52628 ports-bugs Update port java/jmp 0.29 -> 0.30. o [2003/05/23] ports/52631 ports-bugs bochs port does not offer PCI device opti o [2003/05/24] ports/52633 ports-bugs [maintainer] graphics/hpoj: Fix build on o [2003/05/24] ports/52635 ports-bugs maintainer-update of security/nessus-* o [2003/05/24] ports/52636 ports-bugs maintainer-update of security/nessus-*-de o [2003/05/24] ports/52637 ports-bugs New port: nicmond - Wait for a carrier si o [2003/05/24] ports/52639 ports-bugs New port: astro/mymoon o [2003/05/24] ports/52640 ports-bugs New port: xmlcatmgr and patches to use th o [2003/05/24] ports/52643 ports-bugs Update math/ploticus: 2.10 -> 2.11 o [2003/05/24] ports/52644 ports-bugs port upgrade: print/pcal from 4.7 to 4.7. o [2003/05/24] ports/52645 ports-bugs port upgrade: mail/lbdb from 0.26 to 0.27 o [2003/05/24] ports/52646 ports-bugs port upgrade: www/roundup from 0.5.6 to 0 o [2003/05/24] ports/52647 ports-bugs [Maintainer Update] audio/openal 200301 o [2003/05/24] ports/52649 ports-bugs New port: net/iftop o [2003/05/24] ports/52650 ports-bugs maintainer update port (bugfix): mail/bog o [2003/05/24] ports/52651 ports-bugs New port: tentakel, sh script for executi o [2003/05/24] ports/52653 ports-bugs ports/net/gnu-radius no longer compatible o [2003/05/24] ports/52654 ports-bugs Update ports: /usr/ports/net/freevrrpd fr o [2003/05/24] ports/52658 ports-bugs New port: mdnsd - Advertise a service via o [2003/05/24] ports/52659 ports-bugs New port: news/xvnews Open Look-based new o [2003/05/24] ports/52660 ports-bugs Update port: audio/Maaate to 0.3.1 o [2003/05/24] ports/52661 ports-bugs Update port: audio/extace to 1.7.8 o [2003/05/24] ports/52662 ports-bugs Update port: cad/xcircuit to 3.1.15 o [2003/05/24] ports/52664 ports-bugs Update port: games/nethack34 to 3.4.1 o [2003/05/24] ports/52665 ports-bugs Update port: graphics/swfdec to 0.2.2 o [2003/05/24] ports/52667 ports-bugs Update port: net/cvsync 0.21.1 o [2003/05/25] ports/52676 ports-bugs New poer: binary diff/patch tool o [2003/05/25] ports/52677 ports-bugs graphics/xsane update 0.90 -> 0.91 o [2003/05/25] ports/52681 ports-bugs New port: freedt - An experimental reimpl o [2003/05/25] ports/52682 ports-bugs Update MASTER_SITE_PACKETSTORM o [2003/05/26] ports/52688 ports-bugs Update net/gnunet: 0.5.1a -> 0.5.4 o [2003/05/26] ports/52689 ports-bugs Update port: devel/regexxer Use pcre 4.3 o [2003/05/26] ports/52693 ports-bugs Update irc/konversation (maintainer): 0.1 o [2003/05/26] ports/52694 ports-bugs Update sysutils/kdirstat: 2.2.0 -> 2.3.7 o [2003/05/26] ports/52695 ports-bugs Update port: games/vamos to 0.3.2 o [2003/05/26] ports/52696 ports-bugs Update port: graphics/divxcalc to 0.5 o [2003/05/26] ports/52697 ports-bugs Update port: graphics/tulip to 1.2.4 o [2003/05/26] ports/52698 ports-bugs Update port: math/plplot o [2003/05/26] ports/52699 ports-bugs Update port: print/hpijs to 1.4 o [2003/05/26] ports/52701 ports-bugs New port: Java program to graphically dis o [2003/05/26] ports/52702 ports-bugs Updated port: (very trivial) patch to fix o [2003/05/26] ports/52703 ports-bugs hpijs duplex bug (fixed in rev 1.4) 719 problems total. From owner-freebsd-ports@FreeBSD.ORG Mon May 26 11:10:50 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D22D437B401 for ; Mon, 26 May 2003 11:10:50 -0700 (PDT) Received: from mail.tcoip.com.br (erato.tco.net.br [200.220.254.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94AA143F3F for ; Mon, 26 May 2003 11:10:48 -0700 (PDT) (envelope-from dcs@tcoip.com.br) Received: from tcoip.com.br ([10.0.2.6]) by mail.tcoip.com.br (8.11.6/8.11.6) with ESMTP id h4QIAll09989 for ; Mon, 26 May 2003 15:10:47 -0300 Message-ID: <3ED258A6.2000502@tcoip.com.br> Date: Mon, 26 May 2003 15:10:46 -0300 From: "Daniel C. Sobral" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4a) Gecko/20030416 X-Accept-Language: en-us, en, pt-br, ja MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: xearth -- ftp X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 26 May 2003 18:10:51 -0000 I see xearth has developed an ftp site icbm location database too. Could someone copy the data from dcs/lioux to ftp4.br.freebsd.org there? -- Daniel C. Sobral (8-DCS) Gerencia de Operacoes Divisao de Comunicacao de Dados Coordenacao de Seguranca VIVO Centro Oeste Norte Fones: 55-61-313-7654/Cel: 55-61-9618-0904 E-mail: Daniel.Capo@tco.net.br Daniel.Sobral@tcoip.com.br dcs@tcoip.com.br Outros: dcs@newsguy.com dcs@freebsd.org capo@notorious.bsdconspiracy.net Eisenhower was very nice, Nixon was his only vice. -- C. Degen From owner-freebsd-ports@FreeBSD.ORG Mon May 26 15:32:17 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCCF737B401 for ; Mon, 26 May 2003 15:32:17 -0700 (PDT) Received: from mail.inka.de (quechua.inka.de [193.197.184.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA97E43F3F for ; Mon, 26 May 2003 15:32:16 -0700 (PDT) (envelope-from mailnull@mips.inka.de) Received: from kemoauc.mips.inka.de (uucp@) by mail.inka.de with gbsmtp id 19KQVr-0007Ws-00; Tue, 27 May 2003 00:32:15 +0200 Received: from kemoauc.mips.inka.de (localhost [127.0.0.1]) by kemoauc.mips.inka.de (8.12.9/8.12.6) with ESMTP id h4QLtdrH012893 for ; Mon, 26 May 2003 23:55:39 +0200 (CEST) (envelope-from mailnull@localhost.mips.inka.de) Received: (from mailnull@localhost) by kemoauc.mips.inka.de (8.12.9/8.12.9/Submit) id h4QLtdR4012892 for freebsd-ports@freebsd.org; Mon, 26 May 2003 23:55:39 +0200 (CEST) From: naddy@mips.inka.de (Christian Weisgerber) Date: Mon, 26 May 2003 21:55:38 +0000 (UTC) Message-ID: References: <3ED152AF.1000404@i4free.co.nz> Originator: naddy@mips.inka.de (Christian Weisgerber) To: freebsd-ports@freebsd.org Subject: Re: License issues (e.g. mod_throttle, mod_watch) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 26 May 2003 22:32:18 -0000 Andrew Turner wrote: > Would adding LICENSE= to port Makefiles help? Speaking from OpenBSD experience, no. They originally tried this, but when you look at thousands of ports, you will find numerous cases of homegrown licenses that cannot be neatly summerized in one line. OpenBSD introduced variables PERMIT_{DISTFILES,PACKAGE}_{CDROM,FTP}, that are roughly equivalent to (if a bit more fine-grained than) our NO_PACKAGE/NO_CDROM/RESTRICTED. Porters need to scrutinize the included licenses and set the respective variables. One particularly annoying case that is probably as common as explicitly restrictive licensing is the complete lack of any license. Alas, this means that basic copyright law forbids any redistribution, use, etc, even if this was not in the author's intent. -- Christian "naddy" Weisgerber naddy@mips.inka.de From owner-freebsd-ports@FreeBSD.ORG Mon May 26 18:25:16 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8341337B401 for ; Mon, 26 May 2003 18:25:16 -0700 (PDT) Received: from mail.generalresources.com (adsl-211-78-137-219.NH.sparqnet.net [211.78.137.219]) by mx1.FreeBSD.org (Postfix) with ESMTP id A22E943FB1 for ; Mon, 26 May 2003 18:25:14 -0700 (PDT) (envelope-from freebsd@generalresources.com) Received: from mail.generalresources.com (localhost [127.0.0.1]) h4R1PYet010765 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Tue, 27 May 2003 09:25:34 +0800 (CST) (envelope-from freebsd@generalresources.com) Received: (from root@localhost) by mail.generalresources.com (8.12.9/8.12.6/Submit) id h4R1PXmk010759 for ports@freebsd.org.procmail; Tue, 27 May 2003 09:25:33 +0800 (CST) (envelope-from freebsd@generalresources.com) Received: from server.tucheng.generalresources.com (client-253.lan.generalresources.com [192.168.1.253])h4R1PXet010753 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 27 May 2003 09:25:33 +0800 (CST) (envelope-from freebsd@generalresources.com) Received: from x4.tucheng.generalresources.com (x4.tucheng.generalresources.com [192.168.2.4])h4R1OhV7053694; Tue, 27 May 2003 09:24:43 +0800 (CST) (envelope-from freebsd@generalresources.com) Received: from x4.tucheng.generalresources.com (localhost [127.0.0.1]) h4R1Ojms080370; Tue, 27 May 2003 09:24:45 +0800 (CST) (envelope-from freebsd@generalresources.com) Message-Id: <200305270124.h4R1Ojms080370@x4.tucheng.generalresources.com> To: Martin Klaffenboeck From: Christopher Hall In-Reply-To: Message from Martin Klaffenboeck <20030526104914.GA2797@martin.kleinerdrache.org> Content-transfer-encoding: 8bit Content-type: text/plain; charset=big5 X-Operating-System: FreeBSD X-Mailer: Exmh Date: Tue, 27 May 2003 09:24:45 +0800 cc: FreeBSD Ports cc: xemacs-devel-mule maintainer Subject: Re: editors/xemacs-devel-mule failed X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Christopher Hall List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 01:25:16 -0000 I looked at your make.conf and the only match with the editors/xemacs-devel-mule/Makefile was part of the the CONFIGURE_ARGS there is a ${WITH_GTK} with your make.conf. Your make.conf has "WITH_GTK=yes". This will cause the xemacs configureto have a "yes" parameterand lead to the error you are seeing. I cannot remember where to find out the proper WITH_GTK setting grep WITH_GTK /usr/share/mk/* grep WITH_GTK /usr/ports/Mk/* grep WITH_GTK /usr/ports/x11-toolkits/gtk*/Makefile gave no examples of the usage only "WITH_GTK2=yes" editors/xemacs-devel-mule/Makefile has lots of WITH_xxx settings and none of them can be set to "yes" they all must be set to "--with-X=Y". It could be that the Makefile is wrong and it should convert the "yes" to "--with-gtk" rather than just including it in CONFIGURE_ARGS, or maybe WITH_GTK is specific to xemacs in which case you could just change your make.conf. The xemacs-devel-mule maintaner will have to answer this. However, you should be able to build if you try the make as: make clean make WITH_GTK=--with-gtk make install I used your make.conf on my system and it does compile with the extra make arggument, but I did not try to install. Hope this helps. In message <20030526104914.GA2797@martin.kleinerdrache.org>, Martin Klaffenboeck writes: > >--fdj2RfSjLxBAspz7 >Content-Type: text/plain; format=flowed; charset=ISO-8859-1 >Content-Disposition: inline >Content-Transfer-Encoding: 8bit > > >Am 2003.05.26 02:40 schrieb(en) Christopher Hall: >> > >> This is similar to the error I get from chinese/xemacs21 >> http://www.freebsd.org/cgi/query-pr.cgi?pr=52154 >> >> is it possible you have WITH_XIM=yes (or some other WITH_XXX=yes) >> set in make.conf or on the command line >> >> It should be WITH_XIM=--with-xim=xlib >> > >I have an overloaded make.conf. I didn't know how else I could set up >this stuff. > >The make.conf is attached, maybe you can have a look at it? > >Thanks, >Martin > >-- >If you've got an idea and need help, ICQ: 72997139 >or just need general encouragement, MSN: kleinerdrache@gmx.at >write me a message. ;-) Yahoo-Messenger: walking2martin > AIM: littlewizzard >--fdj2RfSjLxBAspz7 >Content-Type: text/plain; charset=us-ascii >Content-Disposition: attachment; filename="make.conf" > >#STRIP= >#CFLAGS= -O -pipe -g > >CPUTYPE=i686 >CFLAGS?= -O -pipe >INSTALL=install -C > >NO_LPR= true # do not build lpr and related programs >NO_SENDMAIL= true # do not build sendmail and related programs >NOGAMES= true # do not build games (games/ subdir) >COMPAT3X= yes >PRINTERDEVICE= ps >BOOTWAIT=4000 > >XFREE86_VERSION=4 > >MASTER_SITE_BACKUP = \ > ftp://ftp.de.freebsd.org/pub/FreeBSD/ports/distfiles/${DIST_SUBDIR}/ >MASTER_SITE_XCONTRIB= ftp://ftp.x.org/contrib/%SUBDIR%/ >MASTER_SITE_XFREE= ftp://ftp.freesoftware.com/pub/XFree86/%SUBDIR%/source/ >MASTER_SITE_GNU= ftp://ftp.gnu.org/gnu/%SUBDIR%/ >MASTER_SITE_PERL_CPAN= ftp://ftp.digital.com/pub/plan/perl/CPAN/modules/by-mod >ule/%SUBDIR%/ >MASTER_SITE_TEX_CTAN= ftp://ftp.tex.ac.uk/tex-archive/%SUBDIR%/ >MASTER_SITE_KDE= ftp://download.at.kde.org/pub/kde/%SUBDIR%/ >MASTER_SITE_GNOME= ftp://ftp.gnome.org/pub/GNOME/sources/%SUBDIR%/ >MASTER_SITE_MOZILLA= ftp://ftp.yggdrasil.com/mirrors/site/ftp.mozilla.org/pu >b/%SUBDIR%/ >MASTER_SITE_XEMACS= ftp://ftp.sunsite.utk.edu/pub/xemacs/%SUBDIR%/ >MASTER_SITE_TCLTK= ftp://ftp.uu.net/languages/tcl/%SUBDIR%/ >MASTER_SITE_RUBY= ftp://ftp.fu-berlin.de/unix/languages/ruby/%SUBDIR%/ > >SUP_UPDATE= yes >SUP= /usr/local/bin/cvsup >SUPFLAGS= -g -L 1 >SUPHOST= cvsup.at.FreeBSD.org >PORTSSUPFILE= /usr/share/examples/cvsup/ports-supfile >DOC_LANG= de_AT.ISO_8859-1 > >PERL_VER=5.8.0 >PERL_VERSION=5.8.0 >PERL_ARCH=mach >NOPERL=yo >NO_PERL=yo >NO_PERL_WRAPPER=yo > >WRKDIRPREFIX=/var/tmp > > >COMPAT4X= true >WITH_GTK2= yes >MAKE_IDEA= YES >XFREE86_VERSION= 4 >WITH_GTK= yes >WITH_GNOME= yes >WITH_GNOME_DESKTOP=2 >WITH_OPTIMIZED_CFLAGS= yes >KERNCONF= MYKERNEL >NO_BIND= true >WITHOUT_RUNTIME_CPUDETECTION=yes >NO_IPFILTER= true >ASPELL_EN= yes >ASPELL_DE= yes >WITH_ASPELL= yes >WITHOUT_IJS= yes >WITHOUT_MAILNEWS= yes >WITHOUT_LDAP= yes >WITHOUT_CHATZILLA= yes >WITHOUT_COMPOSER= yes >WITH_MOZILLA=mozilla-devel-gtk2 > >WITH_HERMES= yes >WITH_MYSQL= yes >WITH_PYTHON= yes >WITH_GUI= yes > >BUILD_OPTIMIZED= yes >SKIP_INSTALL_DB= yes > >WITH_NATIVE_THREADS=yes >NODEBUG=yes >NATIVE_BOOTSTRAP=yes >WITH_GIMP= yes >WITH_GUCHARMAP=yes > >WITH_DVD=yes >WITH_LIBDVDNAV=yes >WITH_LIBDV=yes >WITH_MAD=yes >WITH_VORBIS=yes >WITH_XVID=yes >WITH_LIBDVDREAD=yes > >WANT_GTK=yes >WITH_GPG=yes > >A4=yes > >WITH_LZW=yes > >WITH_OGI=yes > >WITH_XOSD=yes > >--fdj2RfSjLxBAspz7-- > --- Christopher Hall Fax: +886-2-2795-3030 Christopher Hall Phone: +886-2-2795-5799 From owner-freebsd-ports@FreeBSD.ORG Mon May 26 19:04:53 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51C3337B401 for ; Mon, 26 May 2003 19:04:53 -0700 (PDT) Received: from hueymiccailhuitl.mtu.ru (hueytecuilhuitl.mtu.ru [195.34.32.123]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B99A43F85 for ; Mon, 26 May 2003 19:04:52 -0700 (PDT) (envelope-from sem@ciam.ru) Received: from ciam.ru (ppp149-237.dialup.mtu-net.ru [62.118.149.237]) by hueymiccailhuitl.mtu.ru (Postfix) with ESMTP id C955FFA766; Tue, 27 May 2003 06:00:30 +0400 (MSD) (envelope-from sem@ciam.ru) Message-ID: <3ED2C7C3.4090103@ciam.ru> Date: Tue, 27 May 2003 06:04:51 +0400 From: Sergey Matveychuk User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; ru-RU; rv:1.3) Gecko/20030309 X-Accept-Language: ru-ru, ru MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: kris@obsecurity.org Subject: Wrong perl dependency X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 02:04:53 -0000 Just FUI: we still have a wrong perl dependency if we use perl5.8 port. Look at ports/48465. I think it's a serious problem. The patch is quite trivial. And may be it can be commited before 5.1-release as exception? ---- Sem. From owner-freebsd-ports@FreeBSD.ORG Mon May 26 21:04:40 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 758AC37B401 for ; Mon, 26 May 2003 21:04:40 -0700 (PDT) Received: from ms-smtp-03.nyroc.rr.com (ms-smtp-03.nyroc.rr.com [24.92.226.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 868E443FBD for ; Mon, 26 May 2003 21:04:39 -0700 (PDT) (envelope-from tparquet@twcny.rr.com) Received: from twcny.rr.com (syr-66-24-56-65.twcny.rr.com [66.24.56.65]) h4R44cik008162 for ; Tue, 27 May 2003 00:04:38 -0400 (EDT) Message-ID: <3ED2E3D6.9030007@twcny.rr.com> Date: Tue, 27 May 2003 00:04:38 -0400 From: Tom Parquette User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3.1) Gecko/20030518 X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@FreeBSD.ORG Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Setiathome 3.08 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 04:04:40 -0000 Hi, Please CC me. I don't subscribe to ports. TIA. I've been watching the astro/setiathome port since the buffer overflow exploit was found and the port marked forbidden. Setiathome 3.08 states it fixes the exploit and it appears to be available on the Setiathome web site. I don't know how long it has been available. The FBSD port, as of my last cvsup 5 minutes ago, still shows Version 3.03. Any idea when the port might be upgraded? Cheers... From owner-freebsd-ports@FreeBSD.ORG Tue May 27 01:31:50 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1676437B401 for ; Tue, 27 May 2003 01:31:50 -0700 (PDT) Received: from freebsd.org.ru (www.freebsd.org.ru [194.84.67.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EB8143F93 for ; Tue, 27 May 2003 01:31:49 -0700 (PDT) (envelope-from osa@freebsd.org.ru) Received: by freebsd.org.ru (Postfix, from userid 1000) id 9052B15F; Tue, 27 May 2003 12:31:46 +0400 (MSD) Date: Tue, 27 May 2003 12:31:46 +0400 From: "Sergey A. Osokin" To: Tom Parquette Message-ID: <20030527083146.GW1120@freebsd.org.ru> References: <3ED2E3D6.9030007@twcny.rr.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3ED2E3D6.9030007@twcny.rr.com> User-Agent: Mutt/1.5.4i cc: ports@FreeBSD.ORG Subject: Re: Setiathome 3.08 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: osa@FreeBSD.org.ru List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 08:31:50 -0000 On Tue, May 27, 2003 at 12:04:38AM -0400, Tom Parquette wrote: > Hi, Please CC me. I don't subscribe to ports. TIA. > I've been watching the astro/setiathome port since the buffer overflow > exploit was found and the port marked forbidden. > Setiathome 3.08 states it fixes the exploit and it appears to be > available on the Setiathome web site. I don't know how long it has been > available. > The FBSD port, as of my last cvsup 5 minutes ago, still shows Version 3.03. > Any idea when the port might be upgraded? > Cheers... Ports are freezed at this time. BTW ports/astro/Makefile already containes a string .if ${PORTVERSION} == "3.03" FORBIDDEN= 'Exploitable buffer overflow. http://spoor12.edup.tudelft.nl/' .endif -- Rgdz, /"\ ASCII RIBBON CAMPAIGN Sergey Osokin aka oZZ, \ / AGAINST HTML MAIL http://ozz.pp.ru/ X AND NEWS / \ From owner-freebsd-ports@FreeBSD.ORG Tue May 27 02:23:38 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B89D437B401 for ; Tue, 27 May 2003 02:23:38 -0700 (PDT) Received: from orion.ifmo.ru (kot.spb.ru [194.85.164.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9554843F75 for ; Tue, 27 May 2003 02:23:37 -0700 (PDT) (envelope-from dima@KOT.SPb.Ru) Received: from orion.ifmo.ru (dima@localhost [127.0.0.1]) by orion.ifmo.ru (8.12.9/8.12.8) with ESMTP id h4R9NWgk068083 for ; Tue, 27 May 2003 13:23:36 +0400 (MSD) (envelope-from dima@KOT.SPb.Ru) Received: from localhost (dima@localhost) by orion.ifmo.ru (8.12.9/8.12.8/Submit) with ESMTP id h4R9NWiH068080 for ; Tue, 27 May 2003 13:23:32 +0400 (MSD) X-Authentication-Warning: orion.ifmo.ru: dima owned process doing -bs Date: Tue, 27 May 2003 13:23:32 +0400 (MSD) From: Dmitry Afanasiev X-X-Sender: dima@orion.ifmo.ru To: ports@FreeBSD.org Message-ID: <20030527131948.B421@orion.ifmo.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Please close my PR 51829 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 09:23:39 -0000 Please close my PR 51829 because it's too old. See PR 52712... Thanks. MATPOCKuH From owner-freebsd-ports@FreeBSD.ORG Tue May 27 02:24:24 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 390E937B401 for ; Tue, 27 May 2003 02:24:24 -0700 (PDT) Received: from uni-kl.de (mail.uni-kl.de [131.246.137.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B9CB43F3F for ; Tue, 27 May 2003 02:24:22 -0700 (PDT) (envelope-from tulm@physik.uni-kl.de) Received: from mailgate1.uni-kl.de (mailgate1.uni-kl.de [131.246.120.5]) by uni-kl.de (8.12.8/8.12.8) with ESMTP id h4R9OKN1028253 for ; Tue, 27 May 2003 11:24:20 +0200 (MET DST) Received: from cartman.physik.uni-kl.de (cartman.physik.uni-kl.de [131.246.236.200]) by mailgate1.uni-kl.de (8.12.7/8.12.7) with ESMTP id h4R9OKwD031767 for ; Tue, 27 May 2003 11:24:20 +0200 Received: from physik.uni-kl.de (kenny1.physik.uni-kl.de [131.246.236.189]) by cartman.physik.uni-kl.de (8.11.6/8.11.6) with ESMTP id h4R9OK403044 for ; Tue, 27 May 2003 11:24:20 +0200 Sender: tulm@cartman.physik.uni-kl.de Message-ID: <3ED32EC3.FEDEF9FF@physik.uni-kl.de> Date: Tue, 27 May 2003 11:24:20 +0200 From: Thorsten Ulm X-Mailer: Mozilla 4.77 [de] (X11; U; Linux 2.4.20-13.7 i686) X-Accept-Language: de, en MIME-Version: 1.0 To: ports@freebsd.org Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Creating Packages with Linux? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 09:24:24 -0000 Hello, i have internet access only via a linux network but not with my own PC witch runs FreeBSD. Is it possible to create tgz-packages with linux? Thanks for your help Thorsten Ulm From owner-freebsd-ports@FreeBSD.ORG Tue May 27 03:22:46 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73E3737B401 for ; Tue, 27 May 2003 03:22:46 -0700 (PDT) Received: from server.alexdupre.com (212-41-211-209.adsl.galactica.it [212.41.211.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6240943F75 for ; Tue, 27 May 2003 03:22:44 -0700 (PDT) (envelope-from sysadmin@alexdupre.com) Received: from thunder.alexdupre.com (thunder.alexdupre.com [192.168.0.101]) by server.alexdupre.com (8.12.9/8.12.9) with ESMTP id h4RAMRW1045899; Tue, 27 May 2003 12:22:32 +0200 (CEST) (envelope-from sysadmin@alexdupre.com) Date: Tue, 27 May 2003 12:22:27 +0200 From: Alex Dupre X-Mailer: The Bat! (v1.60q) X-Priority: 3 (Normal) Message-ID: <85414385074.20030527122227@alexdupre.com> To: JensRehsack In-Reply-To: References: <4220.192.168.1.4.1053863593.squirrel@probsd.org> <71646554.1053871112@cmantatzi.in.t-online.fr> <3ED0B126.2060206@liwing.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-ports@FreeBSD.ORG cc: MichaelSharp Subject: Re: mod_php ( new ) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alex Dupre List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 10:22:46 -0000 Sunday, May 25, 2003, 2:03:50 PM, you wrote: Jl> I hope, Alex can fix the problems so that my pr can closed without Jl> getting committed, but (as I said) I don't know and it may be a chance Jl> to use 4.3.2 til it's fixed. The problem is not in my ports, but in others depending on mod_php4, which should be fixed. Now if a port requires pear, or apache mod, or php cli, it depends *always* on mod_php4. Wrong! After the re-commit of 4.3.2 (hopefully the release and not rc4) every port should depend on the correct php port (lang/php4-cli, lang/php4, www/mod_php4, www/php4-cgi, devel/pear). Since this may be a tedious task and some ports work with different php sapi, I create an include makefile to simplify it (PR 52674). -- Alex Dupre sysadmin@alexdupre.com http://www.alexdupre.com/ alex@sm.FreeBSD.org Today's excuse: Operators killed when huge stack of backup tapes fell over. From owner-freebsd-ports@FreeBSD.ORG Tue May 27 05:29:20 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 979E437B401 for ; Tue, 27 May 2003 05:29:20 -0700 (PDT) Received: from server.alexdupre.com (212-41-211-209.adsl.galactica.it [212.41.211.209]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4594743F75 for ; Tue, 27 May 2003 05:29:19 -0700 (PDT) (envelope-from sysadmin@alexdupre.com) Received: from thunder.alexdupre.com (thunder.alexdupre.com [192.168.0.101]) by server.alexdupre.com (8.12.9/8.12.9) with ESMTP id h4RCTFW1046117; Tue, 27 May 2003 14:29:15 +0200 (CEST) (envelope-from sysadmin@alexdupre.com) Date: Tue, 27 May 2003 14:29:15 +0200 From: Alex Dupre X-Mailer: The Bat! (v1.60q) X-Priority: 3 (Normal) Message-ID: <166421993724.20030527142915@alexdupre.com> To: Jens Rehsack In-Reply-To: <3ED34D64.2030907@liwing.de> References: <4220.192.168.1.4.1053863593.squirrel@probsd.org> <71646554.1053871112@cmantatzi.in.t-online.fr> <3ED0B126.2060206@liwing.de> <85414385074.20030527122227@alexdupre.com> <3ED34D64.2030907@liwing.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-ports@FreeBSD.ORG cc: MichaelSharp Subject: Re: mod_php ( new ) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Alex Dupre List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 12:29:20 -0000 Tuesday, May 27, 2003, 1:35:00 PM, you wrote: >> The problem is not in my ports, but in others depending on mod_php4, JR> That's not completely true. That's the same reason as it is for 16 bit JR> real-mode on Pentium4 processors :-) =) If something is not optimal, I prefer to make it optimal and fix what depends on it :-) JR> I maintain devel/php-dbg, but I need a working php port to fix the JR> problem devel/php-dbg has with new php4 port. I already have a patch for your port (since it's quite a copy of one of my php extension Makefile ;-)). BTW the php4 port is working, you may already fix the dependency (or wait untill the re-commit and the commit of the include makefile). Simply add USE_PHPIZE=yes and remove a lot of lines :-) JR> I've recognized it. Looks to be great work. Thanks :) JR> Than each port which depends on JR> mod_php4 could be checked separately without requiring a huge commit for JR> all ports. Some days ago I did a search for all ports depending incorrectly on mod_php4 (incorrectly for the new php/pear ports system, of course) and excepts ports maintained by Thierry Thomas and me (which are many, but we projected this change) there are very few others (about 4 or 5), so that's not a huge commit. Later, without hurry, we can adjust ports that correctly depends on mod_php4 to use the include Makefile. -- Alex Dupre sysadmin@alexdupre.com http://www.alexdupre.com/ alex@sm.FreeBSD.org Today's excuse: internet is needed to catch the etherbunny From owner-freebsd-ports@FreeBSD.ORG Tue May 27 05:32:33 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1183837B407 for ; Tue, 27 May 2003 05:32:33 -0700 (PDT) Received: from mail.speakeasy.net (mail11.speakeasy.net [216.254.0.211]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D55443F85 for ; Tue, 27 May 2003 05:32:31 -0700 (PDT) (envelope-from jdarnold@buddydog.org) Received: (qmail 14280 invoked from network); 27 May 2003 12:32:30 -0000 Received: from unknown (HELO buddydog.org) ([66.92.76.225]) (envelope-sender ) by mail11.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 27 May 2003 12:32:30 -0000 Message-ID: <3ED35ADE.6040400@buddydog.org> Date: Tue, 27 May 2003 08:32:30 -0400 From: Jonathan Arnold User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.3) Gecko/20030312 X-Accept-Language: en-us, en, ja MIME-Version: 1.0 To: mharo@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org Subject: FreeBSD Port: analog-5.24,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, 27 May 2003 12:32:33 -0000 Is an upgrade to Analog 5.32 going to be done any time soon? -- Jonathan Arnold (mailto:jdarnold@buddydog.org) Amazing Developments http://www.buddydog.org It ain't what you don't know that gets you into trouble. It's what you know for sure that just ain't so. Mark Twain From owner-freebsd-ports@FreeBSD.ORG Tue May 27 05:50:37 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99B0C37B401 for ; Tue, 27 May 2003 05:50:37 -0700 (PDT) Received: from amsfep13-int.chello.nl (amsfep13-int.chello.nl [213.46.243.24]) by mx1.FreeBSD.org (Postfix) with ESMTP id 399A443F75 for ; Tue, 27 May 2003 05:50:36 -0700 (PDT) (envelope-from girgen@pingpong.net) Received: from pingpong.net ([213.89.137.241]) by amsfep13-int.chello.nl (InterMail vM.5.01.05.17 201-253-122-126-117-20021021) with ESMTP id <20030527125034.EBBK16676.amsfep13-int.chello.nl@pingpong.net>; Tue, 27 May 2003 14:50:34 +0200 Date: Tue, 27 May 2003 14:50:33 +0200 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Mime-Version: 1.0 (Apple Message framework v552) To: Mark Dixon From: Palle Girgensohn In-Reply-To: <3ED20FEB.5040005@kent.ac.uk> Message-Id: Content-Transfer-Encoding: quoted-printable X-Mailer: Apple Mail (2.552) cc: ports@freebsd.org Subject: Re: Tomcat 4.1 Installation Failure X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 12:50:37 -0000 Yeah, without looking at the source it looks like the port does a chmod=20= -R `find ...` where it really has to to a find ... -exec chmod {} ;\ the argument list for chmod becomes too long.... BTW, I seem to remember that the tomcat port installs *all* its files=20 as the web server user. Is this really clever from a security=20 perspective? All tomcat needs to write to is work, webapps and perhaps=20= conf if you want autocreated configurations, right? But this was beside=20= the point, I guess... Try modifying the Makefile as describved above,=20 it should work. /Palle m=E5ndagen den 26 maj 2003 kl 15.00 skrev Mark Dixon: > I'm trying to install Tomcat 4.1 on 5.1 beta, and I have the following=20= > installation failure. Does anyone have any ideas as to the cause? > > TIA, > > Mark > > > =3D=3D=3D> Patching for jakarta-tomcat-4.1.24 > Installation settings: > Destination directory: /usr/local/jakarta-tomcat4.1 > Control program location: /usr/local/bin/tomcat41ctl > Startup script location: =20 > /usr/local/etc/rc.d/020.jakarta-tomcat41.sh > Location of JDK: /usr/local/jdk1.4.1 > Location of Java port: java/jdk14 > Running as (user/group): www/www > HTTP port: 8180 > Shutdown listener port: 8005 > WARP port: 8008 > AJP 1.3 connector port: 8009 > Logfile stdout: =20 > /usr/local/jakarta-tomcat4.1/logs/stdout.log > Logfile stderr: =20 > /usr/local/jakarta-tomcat4.1/logs/stderr.log > Starting after install: NO > Stop time-out: 5 sec. > =3D=3D=3D> Applying FreeBSD patches for jakarta-tomcat-4.1.24 > >> Removing unneeded files... [ DONE ] > >> Customizing daemonctl.c... [ DONE ] > >> Customizing daemonctl.1... [ DONE ] > >> Customizing startup.sh... [ DONE ] > >> Customizing server.xml... [ DONE ] > =3D=3D=3D> jakarta-tomcat-4.1.24 depends on file:=20 > /usr/local/jdk1.4.1/bin/java - fou nd > =3D=3D=3D> Configuring for jakarta-tomcat-4.1.24 > =3D=3D=3D> Installing for jakarta-tomcat-4.1.24 > =3D=3D=3D> jakarta-tomcat-4.1.24 depends on file:=20 > /usr/local/jdk1.4.1/bin/java - fou nd > >> Creating destination directory... [ DONE ] > >> Copying files to destination directory... [ DONE ] > >> Compiling and installing control program... [ DONE ] > >> Installing startup script... [ DONE ] > >> Installing man pages... [ DONE ] > >> Creating log files... [ DONE ] > >> Creating symlink to tools.jar... [ DONE ] > >> Fixing ownership settings... [ DONE ] > >> Fixing permissions.../bin/chmod: Argument list too long > *** Error code 2 > > Stop in /usr/ports/www/jakarta-tomcat41. > > > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to=20 > "freebsd-ports-unsubscribe@freebsd.org" From owner-freebsd-ports@FreeBSD.ORG Tue May 27 05:59:47 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 971AE37B401 for ; Tue, 27 May 2003 05:59:47 -0700 (PDT) Received: from mail.gascom.ru (mail.gascom.ru [217.17.160.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 25EAF43F75 for ; Tue, 27 May 2003 05:59:46 -0700 (PDT) (envelope-from asa@gascom.ru) Received: (qmail 20237 invoked from network); 27 May 2003 12:48:26 -0000 Received: from asa.gascom.net.ru (HELO ?GD?U??W8??????j) (192.168.100.29) by mail.gascom.ru with SMTP; 27 May 2003 12:48:26 -0000 From: Sergey Akifyev To: ports@freebsd.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-h9yr50MUGDYdWztRt8pP" Organization: JSC Gascom Message-Id: <1054040384.328.10.camel@asa.gascom.net.ru> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.3 (Preview Release) Date: 27 May 2003 12:59:44 +0000 Subject: [PATCH] net/poptop installation and packaging broken X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 12:59:47 -0000 --=-h9yr50MUGDYdWztRt8pP Content-Type: multipart/mixed; boundary="=-FkcdJA3uw34N+WAunKnD" --=-FkcdJA3uw34N+WAunKnD Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hello! Subj happens :) Somebody patched Makefile.in strange way, so CFLAGS variable became self-referring. Correct version of files/patch-ac is attached. --=20 regards, Sergey Akifyev JSC Gascom PGP key available from: ftp://ftp.gascom.ru/pub/PGP-keys/asa.txt --=-FkcdJA3uw34N+WAunKnD Content-Description: Correct version Content-Type: application/octet-stream Content-Disposition: inline; filename=patch-ac Content-Transfer-Encoding: base64 LS0tIE1ha2VmaWxlLmFtLm9yaWcJU2F0IE1heSAgMyAxNzo1NTo1NSAyMDAzCisrKyBNYWtlZmls ZS5hbQlTYXQgTWF5ICAzIDE3OjU2OjIyIDIwMDMKQEAgLTExLDcgKzExLDcgQEAKICMjICB3YXJu aW5nIHdpdGggLVdtaXNzaW5nLXByb3RvdHlwZXMpLgogIyMgLVdtaXNzaW5nLXByb3RvdHlwZXMg cmVtb3ZlZCAoZWcsIExpbnV4IDIuMi42IGhlYWRlcnMKICMjICBhcmVuJ3QgdXAgdG8gaXQpLgot Q0ZMQUdTID0gLU8yIC1mbm8tYnVpbHRpbiAtV2FsbCAtRFNCSU5ESVI9JyIkKHNiaW5kaXIpIicK K0NGTEFHUyA9IC1EU0JJTkRJUj0nIiQoc2JpbmRpcikiJyAtREVUQ0RJUj0nIiQoc3lzY29uZmRp cikiJwogI0NGTEFHUyA9IC1PMiAtZm5vLWJ1aWx0aW4gLVdhbGwgLWFuc2kgLURTQklORElSPSci JChzYmluZGlyKSInCiAjQ0ZMQUdTID0gLU8yIC1mbm8tYnVpbHRpbiAtV2FsbCAtYW5zaSAtcGVk YW50aWMgLVdtaXNzaW5nLXByb3RvdHlwZXMgLVdlcnJvciAtRFNCSU5ESVI9JyIkKHNiaW5kaXIp IicKIAo= --=-FkcdJA3uw34N+WAunKnD-- --=-h9yr50MUGDYdWztRt8pP Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA+02E/bu06QwmNwNsRAjn4AJ9rHhe5vulZY3luo1lWLW/6gHBXogCfRg0v SNK1U0yCRFRhDHuyc69zniM= =HZQw -----END PGP SIGNATURE----- --=-h9yr50MUGDYdWztRt8pP-- From owner-freebsd-ports@FreeBSD.ORG Tue May 27 06:24:03 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22AF237B405 for ; Tue, 27 May 2003 06:24:03 -0700 (PDT) Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37E8843F85 for ; Tue, 27 May 2003 06:24:02 -0700 (PDT) (envelope-from stijn@pcwin002.win.tue.nl) Received: from pcwin002.win.tue.nl (localhost [127.0.0.1]) by pcwin002.win.tue.nl (8.12.9/8.12.9) with ESMTP id h4RDQaKX048753 for ; Tue, 27 May 2003 15:26:36 +0200 (CEST) (envelope-from stijn@pcwin002.win.tue.nl) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.12.9/8.12.9/Submit) id h4RDQaOZ048752 for freebsd-ports@freebsd.org; Tue, 27 May 2003 15:26:36 +0200 (CEST) Date: Tue, 27 May 2003 15:26:36 +0200 From: Stijn Hoop To: freebsd-ports@freebsd.org Message-ID: <20030527132636.GA43731@pcwin002.win.tue.nl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OXfL5xGRrasGEqWY" Content-Disposition: inline User-Agent: Mutt/1.4.1i X-Bright-Idea: Let's abolish HTML mail! Subject: installing just Luxi from x11-fonts/XFree86-4-fontScalable X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 13:24:03 -0000 --OXfL5xGRrasGEqWY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, I wanted to install only the luxi.ttf font from the XFree86 font distribution. Looking at the Makefile I thought that doing something like=20 # sudo make BuildSpeedoFonts=3DNO BuildType1Fonts=3DNO BuildCIDFonts=3DNO \ BuildTTFonts=3DYES install would do what I want. However, the other (_UGLY_) fonts still get installed. How can I prevent this? --Stijn --=20 I have great faith in fools -- self confidence my friends call it. -- Edgar Allan Poe --OXfL5xGRrasGEqWY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+02eMY3r/tLQmfWcRAsyHAJ9d/Zo4OyITaEYaicYeL+hl5BMC3gCeOl1t nhnuiTt5+JDyssI/n5j1z5k= =a/fO -----END PGP SIGNATURE----- --OXfL5xGRrasGEqWY-- From owner-freebsd-ports@FreeBSD.ORG Tue May 27 06:25:44 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4667337B401 for ; Tue, 27 May 2003 06:25:44 -0700 (PDT) Received: from qescan2.qgraph.com (QESCAN2.qgraph.com [206.158.124.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 762A443F93 for ; Tue, 27 May 2003 06:25:43 -0700 (PDT) (envelope-from Aaron.Schroeder@qg.com) Received: by sxsmtp2.qgraph.com with Internet Mail Service (5.5.2656.59) id ; Tue, 27 May 2003 08:25:41 -0500 Message-ID: <025596A38A894B45AFE62346A6BF474603CEA659@waexch1.qgraph.com> From: "Schroeder, Aaron" To: "'ports@freebsd.org'" Date: Tue, 27 May 2003 08:25:38 -0500 MIME-Version: 1.0 X-Mailer: Internet Mail Service (5.5.2656.59) Content-Type: text/plain; charset="iso-8859-1" Subject: closed stream message when attempting portupgrade X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 13:25:44 -0000 Hello, This is probably a trivial fix on my end, but I have never run into this before. When I am trying to do a portupgrade -ra, or a pkgdb -F, I get a "closed stream" message and then the portupgrade kicks me back to the command prompt. Here is my system info: FreeBSD diabloii.qg.com 5.0-RELEASE FreeBSD 5.0-RELEASE #1: Mon May 15 13:55:57 CDT 2023 root@diabloii.qg.com:/usr/obj/usr/src/sys/DIABLOII alpha Here is the output of the portupgrade/pkgdb commands: [root@diabloii root]# portupgrade -ra closed stream [root@diabloii root]# pkgdb -F closed stream [root@diabloii root]# I have recently cvsup-ed (last couple days), but this has been a problem for me for a few weeks now. If anyone has any insight on this issue, help would be much appreciated. Thanks, AJ Schroeder From owner-freebsd-ports@FreeBSD.ORG Tue May 27 07:00:47 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33C9437B401 for ; Tue, 27 May 2003 07:00:47 -0700 (PDT) Received: from mta02-svc.ntlworld.com (mta02-svc.ntlworld.com [62.253.162.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAFC643FA3 for ; Tue, 27 May 2003 07:00:43 -0700 (PDT) (envelope-from jon@witchspace.com) Received: from witchspace.com ([80.3.251.242]) by mta02-svc.ntlworld.com (InterMail vM.4.01.03.37 201-229-121-137-20020806) with SMTP id <20030527140042.SHAJ9882.mta02-svc.ntlworld.com@witchspace.com> for ; Tue, 27 May 2003 15:00:42 +0100 Received: (qmail 20431 invoked from network); 27 May 2003 14:00:41 -0000 Received: from unknown (HELO witchspace.com) (192.168.0.1) by dookie.witchspace.com with SMTP; 27 May 2003 14:00:41 -0000 Message-ID: <3ED36F89.5080106@witchspace.com> Date: Tue, 27 May 2003 15:00:41 +0100 From: Jonathan Belson User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3.1) Gecko/20030509 X-Accept-Language: en-us, en MIME-Version: 1.0 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Missing libstdc++-libc6.1-2.so.3 in linux emulation X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 14:00:47 -0000 Hiya [Oringinally sent to -emulation, although in retrospect this might be a better mailing list] I'm working on updating a port for a linux binary-only application. The application in question links against libstdc++-libc6.1-2.so.3, which doesn't exist in /compat/linux/usr/lib. I created a soft link to libstdc++-2-libc6.1-1-2.9.0.so and everything worked fine. The question is, how can I do this or the equivalent in a port? Cheers, --Jon http://www.witchspace.com From owner-freebsd-ports@FreeBSD.ORG Tue May 27 07:06:42 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D503437B401 for ; Tue, 27 May 2003 07:06:42 -0700 (PDT) Received: from orion.ifmo.ru (kot.spb.ru [194.85.164.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id B664043F3F for ; Tue, 27 May 2003 07:06:41 -0700 (PDT) (envelope-from dima@MATPOCKuH.Ru) Received: from orion.ifmo.ru (dima@localhost [127.0.0.1]) by orion.ifmo.ru (8.12.9/8.12.8) with ESMTP id h4RE6UB3075968 for ; Tue, 27 May 2003 18:06:40 +0400 (MSD) (envelope-from dima@KOT.SPb.Ru) Received: from localhost (dima@localhost) by orion.ifmo.ru (8.12.9/8.12.8/Submit) with ESMTP id h4RE6UJX075965 for ; Tue, 27 May 2003 18:06:30 +0400 (MSD) X-Authentication-Warning: orion.ifmo.ru: dima owned process doing -bs Date: Tue, 27 May 2003 18:06:30 +0400 (MSD) From: Dmitry Afanasiev X-X-Sender: dima@orion.ifmo.ru To: ports@FreeBSD.org In-Reply-To: <20030527131948.B421@orion.ifmo.ru> Message-ID: <20030527180254.J421@orion.ifmo.ru> References: <20030527131948.B421@orion.ifmo.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Please close my PR ports/52712 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 14:06:43 -0000 Please close my PR ports/52712. See PR ports/52721... Thanks. MATPOCKuH From owner-freebsd-ports@FreeBSD.ORG Tue May 27 08:49:07 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1834F37B401 for ; Tue, 27 May 2003 08:49:07 -0700 (PDT) Received: from anchor-post-35.mail.demon.net (anchor-post-35.mail.demon.net [194.217.242.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62A4B43F3F for ; Tue, 27 May 2003 08:49:06 -0700 (PDT) (envelope-from kevin@caomhin.demon.co.uk) Received: from caomhin.demon.co.uk ([62.49.21.186]) by anchor-post-35.mail.demon.net with esmtp (Exim 3.36 #2) id 19KghE-0000JO-0Z; Tue, 27 May 2003 16:49:04 +0100 Message-ID: Date: Tue, 27 May 2003 16:49:00 +0100 To: Jonathan Arnold From: Kevin Golding References: <3ED35ADE.6040400@buddydog.org> In-Reply-To: <3ED35ADE.6040400@buddydog.org> MIME-Version: 1.0 X-Mailer: Turnpike Integrated Version 5.01 U cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: analog-5.24,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, 27 May 2003 15:49:07 -0000 In article <3ED35ADE.6040400@buddydog.org>, Jonathan Arnold writes >Is an upgrade to Analog 5.32 going to be done any time soon? There have been a couple of PRs submitted to handle it: That said nothing's going to happen until after the 5.1 process has settled down. If you want the update right now then just download and apply the patch locally; if it works okay then submit a follow-up saying someone else has tested without problems. Kevin From owner-freebsd-ports@FreeBSD.ORG Tue May 27 08:57:39 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DD5337B401 for ; Tue, 27 May 2003 08:57:39 -0700 (PDT) Received: from sbk-gw.sibnet.ru (sbk-gw.sibnet.ru [217.70.96.146]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7EAD43F75 for ; Tue, 27 May 2003 08:57:37 -0700 (PDT) (envelope-from stranger@sberbank.sibnet.ru) Received: from sbk-gw.sibnet.ru (localhost [127.0.0.1]) by sbk-gw.sibnet.ru (8.12.9/8.12.9) with ESMTP id h4RFvjfm047593 for ; Tue, 27 May 2003 22:57:45 +0700 (NOVST) (envelope-from stranger@sberbank.sibnet.ru) Received: from localhost (stranger@localhost)h4RFvj0E047590 for ; Tue, 27 May 2003 22:57:45 +0700 (NOVST) X-Authentication-Warning: sbk-gw.sibnet.ru: stranger owned process doing -bs Date: Tue, 27 May 2003 22:57:45 +0700 (NOVST) From: "Maxim M. Kazachek" X-X-Sender: stranger@sbk-gw.sibnet.ru To: freebsd-ports@freebsd.org Message-ID: <20030527225207.R47580@sbk-gw.sibnet.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: net/licq X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 15:57:39 -0000 net/licq fails to build on 51.-NETA with -DWITH_SOCKS. Looks like we need to remove #define HAVE_GETOPT in config.h, add #define INCLUDE_PROTOTYPES 1 in config.h and make some changes in installation of net/socks5 I've included little bit patched socks5p.h and created /usr/local/include/socks5 directory with following files from net/socks5: config.h defs.h includes.h protos.h socks5api.h system.h I wonder whether these files all needed for succesful compilation, but those changes allowed me to build licq-base-socks-1.2.6 Sincerely, Maxim M. Kazachek mailto:stranger@sberbank.sibnet.ru mailto:stranger@fpm.ami.nstu.ru From owner-freebsd-ports@FreeBSD.ORG Tue May 27 10:15:48 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6A52D37B401; Tue, 27 May 2003 10:15:48 -0700 (PDT) Received: from blues.jpj.net (blues.jpj.net [208.210.80.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CED143F75; Tue, 27 May 2003 10:15:47 -0700 (PDT) (envelope-from trevor@jpj.net) Received: from blues.jpj.net (localhost.jpj.net [127.0.0.1]) by blues.jpj.net (8.12.9/8.12.3) with ESMTP id h4RHFkFg018782; Tue, 27 May 2003 13:15:46 -0400 (EDT) (envelope-from trevor@jpj.net) Received: from localhost (trevor@localhost)h4RHFig4018757; Tue, 27 May 2003 13:15:45 -0400 (EDT) X-Authentication-Warning: blues.jpj.net: trevor owned process doing -bs Date: Tue, 27 May 2003 13:15:44 -0400 (EDT) From: Trevor Johnson To: Stijn Hoop In-Reply-To: <20030523130744.GC62917@pcwin002.win.tue.nl> Message-ID: <20030527131419.T18722@blues.jpj.net> References: <20030522153131.GE57542@pcwin002.win.tue.nl> <1053619960.314.7.camel@gyros> <20030523130744.GC62917@pcwin002.win.tue.nl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: gnome@freebsd.org cc: Alan Eldridge cc: freebsd-ports@freebsd.org Subject: Re: phoenix / firebird port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 17:15:48 -0000 Stijn Hoop wrote: > alane@ set the maintainer of phoenix to gnome@FreeBSD.org recently (r1.44 of > phoenix/Makefile), which is why I sent this diff to gnome@ instead of sending > it to phoenix@. I hadn't known this. I'm sorry, Joe. -- Trevor Johnson From owner-freebsd-ports@FreeBSD.ORG Tue May 27 10:59:11 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FA4737B401 for ; Tue, 27 May 2003 10:59:11 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B64F43F75 for ; Tue, 27 May 2003 10:59:10 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 38527 invoked from network); 27 May 2003 17:59:07 -0000 Received: from stingray.liwing.de (HELO liwing.de) ([213.70.188.164]) (envelope-sender ) by mail.liwing.de (qmail-ldap-1.03) with SMTP for ; 27 May 2003 17:59:07 -0000 Message-ID: <3ED3A76B.70009@liwing.de> Date: Tue, 27 May 2003 19:59:07 +0200 From: Jens Rehsack Organization: LiWing IT-Services User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.2) Gecko/20030208 Netscape/7.02 (Compact - Build 2) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alex Dupre References: <4220.192.168.1.4.1053863593.squirrel@probsd.org> < 71646554.1053871112@cmantatzi.in.t-online.fr> < 3ED0B126.2060206@liwing.de><3ED34D64.2030907@liwing.de> <166421993724.20030527142915@alexdupre.com> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: freebsd-ports@FreeBSD.ORG cc: MichaelSharp Subject: Re: mod_php ( new ) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 17:59:12 -0000 On 5/27/2003 2:29 PM, Alex Dupre wrote: > Tuesday, May 27, 2003, 1:35:00 PM, you wrote: > >>> The problem is not in my ports, but in others depending on mod_php4, > > JR> That's not completely true. That's the same reason as it is for 16 bit > JR> real-mode on Pentium4 processors :-) > > =) If something is not optimal, I prefer to make it optimal and fix > what depends on it :-) That's why wrote "... I hope, Alex can fix the problems so that my pr can closed without getting committed". I've seen your port and it worked on my test system. But my php-environment is a little bit more complicated, so I didn't run all build I had to test before kris took the change back. > JR> I maintain devel/php-dbg, but I need a working php port to fix the > JR> problem devel/php-dbg has with new php4 port. > > I already have a patch for your port (since it's quite a copy of one > of my php extension Makefile ;-)). BTW the php4 port is working, It's not enough. Because of php-dbg supports client/server debugging, I need the module and apache support. That's why I can start with modifying when I have the new port. You may sent a diff to me and I apply it on a test system and review the patch you made to the php debugger. The devel/php-dbg port is like it is, because of there's only one php4 in ports: www/mod_php4. Before 4.3.0 (I started with the port at 4.2) I wrote a Makefile similar to your bsd.php.mk (smaller), but with same detection for shell, module (apache13, apache2), cgi. But than 4.3.0 came out and a lot of the work was deprecated. So it might be best if I rewrote the port the way I like it or you send me your patches and I review it and make the changes I want. If you take a look into the patch in devel/php-dbg, what do you think about the way to patch it in php installation with lang/php4? > you may already fix the dependency (or wait untill the re-commit and > the commit of the include makefile). Simply add USE_PHPIZE=yes and > remove a lot of lines :-) I don't hope so. The new port gives me some things back I missed and I'll check the options I have. But I think you're right. > JR> I've recognized it. Looks to be great work. > > Thanks :) > > JR> Than each port which depends on > JR> mod_php4 could be checked separately without requiring a huge commit for > JR> all ports. > > Some days ago I did a search for all ports depending incorrectly on > mod_php4 (incorrectly for the new php/pear ports system, of course) > and excepts ports maintained by Thierry Thomas and me (which are many, > but we projected this change) there are very few others (about 4 or > 5), so that's not a huge commit. Later, without hurry, we can adjust > ports that correctly depends on mod_php4 to use the include Makefile. Just a thought ... From owner-freebsd-ports@FreeBSD.ORG Tue May 27 11:04:25 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35D8037B401; Tue, 27 May 2003 11:04:25 -0700 (PDT) Received: from shumai.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECDFC43F75; Tue, 27 May 2003 11:04:23 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from shumai.marcuscom.com (localhost.marcuscom.com [127.0.0.1]) by shumai.marcuscom.com (8.12.9/8.12.9) with ESMTP id h4RI4GRo006893; Tue, 27 May 2003 14:04:16 -0400 (EDT) (envelope-from marcus@marcuscom.com) Received: from localhost (marcus@localhost)h4RI4GDm006890; Tue, 27 May 2003 14:04:16 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Tue, 27 May 2003 14:04:16 -0400 (EDT) From: Joe Marcus Clarke To: Trevor Johnson In-Reply-To: <20030527131419.T18722@blues.jpj.net> Message-ID: <20030527140336.U6884@shumai.marcuscom.com> References: <20030522153131.GE57542@pcwin002.win.tue.nl> <1053619960.314.7.camel@gyros> <20030523130744.GC62917@pcwin002.win.tue.nl> <20030527131419.T18722@blues.jpj.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: gnome@freebsd.org cc: Alan Eldridge cc: freebsd-ports@freebsd.org Subject: Re: phoenix / firebird port X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 May 2003 18:04:25 -0000 On Tue, 27 May 2003, Trevor Johnson wrote: > Stijn Hoop wrote: > > > alane@ set the maintainer of phoenix to gnome@FreeBSD.org recently (r1.44 of > > phoenix/Makefile), which is why I sent this diff to gnome@ instead of sending > > it to phoenix@. > > I hadn't known this. I'm sorry, Joe. No problem. Did you still want to stay involved with Mozilla Firebird? Joe > -- > Trevor Johnson > > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-ports@FreeBSD.ORG Tue May 27 13:46:16 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B36D37B401 for ; Tue, 27 May 2003 13:46:16 -0700 (PDT) Received: from mail.gmx.net (imap.gmx.net [213.165.65.60]) by mx1.FreeBSD.org (Postfix) with SMTP id EAD9543F75 for ; Tue, 27 May 2003 13:46:14 -0700 (PDT) (envelope-from blueeskimo@gmx.net) Received: (qmail 1546 invoked by uid 65534); 27 May 2003 20:46:13 -0000 Received: from i216-58-29-174.gta.igs.net (EHLO [216.58.29.174]) (216.58.29.174) by mail.gmx.net (mp005) with SMTP; 27 May 2003 22:46:13 +0200 From: Adam To: freebsd-ports@freebsd.org Content-Type: text/plain Organization: Message-Id: <1054068371.192.18.camel@jake> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.4 Date: 27 May 2003 16:46:12 -0400 Content-Transfer-Encoding: 7bit Subject: Problem installing jdk13 on FreeBSD 4.8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 20:46:16 -0000 In file included from ../../oji-plugin/src/motif/common/stubs.c:29: /usr/X11R6/include/npapi.h:1: #error "/home/espenr/tmp/qt-3.1-espenr-14496/qt/extensions/nsplugin/src/npapi.h must be provided by Netscape" /usr/X11R6/include/npapi.h:2: #error "This file is just a placeholder. Please see the documentation" /usr/X11R6/include/npapi.h:3: #error "to learn how to obtain the real file" In file included from ../../oji-plugin/src/motif/common/stubs.c:30: /usr/X11R6/include/npupp.h:1: #error "/home/espenr/tmp/qt-3.1-espenr-14496/qt/extensions/nsplugin/src/npupp.h must be provided by Netscape" /usr/X11R6/include/npupp.h:2: #error "This file is just a placeholder. Please see the documentation" /usr/X11R6/include/npupp.h:3: #error "to learn how to obtain the real file" gmake[1]: *** [../../tmp/bsd/i386/stubs.o] Error 1 gmake[1]: Leaving directory `/usr/ports/java/jdk13/work/j2sdk1.3.1/ext/plugin/build/solaris' gmake: *** [plugin-all] Error 1 *** Error code 2 Stop in /usr/ports/java/jdk13. I've installed jdk plenty of times on both FreeBSD 4.x and 5.x, and I've NEVER seen this error before. Can someone explain what this error is telling me? 'Please see the documentation' isn't very helpful. It doesn't even tell you where in the documentation to look. Thanks, -- Adam From owner-freebsd-ports@FreeBSD.ORG Tue May 27 15:50:26 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 425DA37B401; Tue, 27 May 2003 15:50:26 -0700 (PDT) Received: from pcnetwork.at (mail.pcnetwork.at [195.3.104.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id E143343F3F; Tue, 27 May 2003 15:50:23 -0700 (PDT) (envelope-from grillen@abendstille.at) Received: from [10.0.0.5] ([62.47.248.49]) by pcnetwork.at ([195.3.104.218]) with SMTP (MDaemon.PRO.v6.7.9.R); Wed, 28 May 2003 00:51:47 +0200 User-Agent: Microsoft-Entourage/10.1.1.2418 Date: Wed, 28 May 2003 00:50:15 +0200 From: heilo To: Message-ID: Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit X-MDRemoteIP: 62.47.248.49 X-Return-Path: grillen@abendstille.at cc: ports@FreeBSD.org Subject: FreeBSD Port: linux-sun-jdk-1.3.1.08 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 22:50:26 -0000 Hi! i found this email-address on the freebsd.org-site. atm i try to install the jdk-1.3.1p8_2 port on my i386 FreeBSD 5 - system - i have to say that i'm quite new to this os (however i have some experience in using UNIX-like oses from OsX and Linux). i downloaded and installed all the packages for this port. i also need linux-sun-jdk-1.3.1.08 for this port. so i downloaded the source and installed the required packages. then i tried to run make. i unfortunately got the following errors: ===> linux-sun-jdk-1.2.1.08 depends on file: /compat/linux/lib/libc.so.6 - found Linux mode is not enabled. Loading Linux kernel module.... linux: not found The Linux kernel module could not be loaded. Please manually load the module and retry. See "man linux" for details. *** Error code 1 I read through the manpage but it made things only more complicated... Maybe this error occours because of another error which occours in the last bits of the boot-sequence (after starting sshd and sendmail): Additional ABI support: linuxELF binary type "3" not known. /compat/linux/sbin/ldconfig: 1: Syntax error: "(" unexpected . if you know any solution or somebody who could help me i would be very happy! Thx, .ma From owner-freebsd-ports@FreeBSD.ORG Tue May 27 15:58:39 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAAAB37B401; Tue, 27 May 2003 15:58:39 -0700 (PDT) Received: from tophnet.net (tophnet.net [64.81.97.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 016E143FA3; Tue, 27 May 2003 15:58:39 -0700 (PDT) (envelope-from chris@tophnet.net) Received: from tophnet.net (chris@tophnet.net [64.81.97.41]) by tophnet.net (8.12.9/8.12.6) with ESMTP id h4RMwZCG030366; Tue, 27 May 2003 16:58:35 -0600 (MDT) (envelope-from chris@tophnet.net) From: Christopher Rosado To: heilo , Date: Tue, 27 May 2003 16:58:21 -0600 User-Agent: KMail/1.5.9 References: In-Reply-To: MIME-Version: 1.0 Content-Description: clearsigned data Content-Disposition: inline Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Message-Id: <200305271658.33436.chris@tophnet.net> cc: ports@freebsd.org Subject: Re: FreeBSD Port: linux-sun-jdk-1.3.1.08 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 22:58:40 -0000 =2D----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Tuesday 27 May 2003 04:50 pm, heilo wrote: > =3D=3D=3D> linux-sun-jdk-1.2.1.08 depends on file: /compat/linux/lib/libc= =2Eso.6 - > found > Linux mode is not enabled. Loading Linux kernel module.... > linux: not found > The Linux kernel module could not be loaded. Please manually load the > module and retry. See "man linux" for details. > *** Error code 1 > if you know any solution or somebody who could help me i would be very > happy! You need to install the linuxulator. cd /usr/ports/emulators/linux_base && make install=20 =2D --=20 Christopher Rosado "Liberalism leads to loss of liberty." - Me http://groups.yahoo.com/group/logcabinyouth/ =2D----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+0+2Vk41LrboeC7gRAumCAJ0SK5af4Up+U5oRM1mVuoxBG6EBGgCeJQxS Ub9ugzcWJVi8UD/17saVyec=3D =3DafFB =2D----END PGP SIGNATURE----- From owner-freebsd-ports@FreeBSD.ORG Tue May 27 16:37:38 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 90DC037B401 for ; Tue, 27 May 2003 16:37:38 -0700 (PDT) Received: from email04.aon.at (WARSL402PIP5.highway.telekom.at [195.3.96.90]) by mx1.FreeBSD.org (Postfix) with SMTP id 7D4FF43F85 for ; Tue, 27 May 2003 16:37:37 -0700 (PDT) (envelope-from heilo@aon.at) Received: (qmail 256916 invoked from network); 27 May 2003 23:37:35 -0000 Received: from m706p017.adsl.highway.telekom.at (HELO ?10.0.0.5?) ([62.47.248.49]) (envelope-sender ) by qmail4rs.highway.telekom.at (qmail-ldap-1.03) with SMTP for ; 27 May 2003 23:37:35 -0000 User-Agent: Microsoft-Entourage/10.1.1.2418 Date: Wed, 28 May 2003 01:37:33 +0200 From: heilo To: Message-ID: In-Reply-To: <200305271658.33436.chris@tophnet.net> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Subject: Re: FreeBSD Port: linux-sun-jdk-1.3.1.08 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 23:37:38 -0000 hi again! if i try to do so i get the following: ===> Installing for linux_base-7.1_2 Linux mode is not enabled. Loading linux kernel module now... kldload: can't load linux: Operation not permitted The linux kernel module could not be loaded. Please enable linux mode manually and retry. *** Error code 1 Stop in /usr/ports/emulators/linux_base. Christopher Rosado wrote@28.05.2003 0:58 Uhr: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Tuesday 27 May 2003 04:50 pm, heilo wrote: > > >> ===> linux-sun-jdk-1.2.1.08 depends on file: /compat/linux/lib/libc.so.6 - >> found >> Linux mode is not enabled. Loading Linux kernel module.... >> linux: not found >> The Linux kernel module could not be loaded. Please manually load the >> module and retry. See "man linux" for details. >> *** Error code 1 > >> if you know any solution or somebody who could help me i would be very >> happy! > > You need to install the linuxulator. > > cd /usr/ports/emulators/linux_base && make install > > - -- > Christopher Rosado > "Liberalism leads to loss of liberty." - Me > http://groups.yahoo.com/group/logcabinyouth/ > > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.2.1 (FreeBSD) > > iD8DBQE+0+2Vk41LrboeC7gRAumCAJ0SK5af4Up+U5oRM1mVuoxBG6EBGgCeJQxS > Ub9ugzcWJVi8UD/17saVyec= > =afFB > -----END PGP SIGNATURE----- > From owner-freebsd-ports@FreeBSD.ORG Tue May 27 16:43:16 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 315CF37B401 for ; Tue, 27 May 2003 16:43:14 -0700 (PDT) Received: from email01.aon.at (WARSL402PIP8.highway.telekom.at [195.3.96.97]) by mx1.FreeBSD.org (Postfix) with SMTP id 650C543F75 for ; Tue, 27 May 2003 16:43:13 -0700 (PDT) (envelope-from heilo@aon.at) Received: (qmail 347372 invoked from network); 27 May 2003 23:43:12 -0000 Received: from m706p017.adsl.highway.telekom.at (HELO ?10.0.0.5?) ([62.47.248.49]) (envelope-sender ) by qmail1rs.highway.telekom.at (qmail-ldap-1.03) with SMTP for ; 27 May 2003 23:43:12 -0000 User-Agent: Microsoft-Entourage/10.1.1.2418 Date: Wed, 28 May 2003 01:43:09 +0200 From: heilo To: Message-ID: In-Reply-To: <200305271658.33436.chris@tophnet.net> Mime-version: 1.0 Content-type: text/plain; charset="US-ASCII" Content-transfer-encoding: 7bit Subject: Re: FreeBSD Port: linux-sun-jdk-1.3.1.08 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 27 May 2003 23:43:16 -0000 sorry, i pressed "send" too early.. :) after i rebooted i did't got this error anymore, but the linux-sun-jdk13 port still returns the same error on make... what do i do wrong?? .ma From owner-freebsd-ports@FreeBSD.ORG Wed May 28 01:59:49 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BD6137B404 for ; Wed, 28 May 2003 01:59:49 -0700 (PDT) Received: from mail.gmx.net (pop.gmx.de [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 3222443FA3 for ; Wed, 28 May 2003 01:59:48 -0700 (PDT) (envelope-from blueeskimo@gmx.net) Received: (qmail 23364 invoked by uid 65534); 28 May 2003 08:59:46 -0000 Received: from i216-58-29-174.gta.igs.net (EHLO [216.58.29.174]) (216.58.29.174) by mail.gmx.net (mp022) with SMTP; 28 May 2003 10:59:46 +0200 From: Adam To: freebsd-ports@freebsd.org In-Reply-To: <1054068371.192.18.camel@jake> References: <1054068371.192.18.camel@jake> Content-Type: text/plain Organization: Message-Id: <1054112385.192.27.camel@jake> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.4 Date: 28 May 2003 04:59:45 -0400 Content-Transfer-Encoding: 7bit Subject: Re: Problem installing jdk13 on FreeBSD 4.8 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 May 2003 08:59:49 -0000 On Tue, 2003-05-27 at 16:46, Adam wrote: > I've installed jdk plenty of times on both FreeBSD 4.x and 5.x, and I've > NEVER seen this error before. Can someone explain what this error is > telling me? 'Please see the documentation' isn't very helpful. It > doesn't even tell you where in the documentation to look. Got a private reply .. Thought I'd add it to the thread: *** From: Jeff Gardner To: Adam Subject: Re: Problem installing jdk13 on FreeBSD 4.8 Date: Wed, 28 May 2003 01:49:31 -0400 I am not subscribed to -ports but have found what is causing the problem with jdk. Doing: galaxy# cd /var/db/pkg galaxy# grep npapi.h */+CONTENTS results in: qt-3.1.2/+CONTENTS:include/npapi.h Also, doing: galaxy# locate npapi.h results in: /root/kdebase-3.1.1/nsplugins/sdk/npapi.h /usr/X11R6/include/npapi.h /usr/ports/java/jdk13/work/j2sdk1.3.1/ext/plugin/oji-plugin/src/motif/badapter/npapi.h Then I looked more closely at +CONTENTS from qt and noticed it had several more .h files which will break jdk build. My quick fix was copying the versions found bundled with jdk to /usr/X11R6/include (not the best way I know). However, I did get a result of: ===> Registering installation for jdk-1.3.1p8_2 and galaxy# javavm -version java version "1.3.1-p8" Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-p8-root-030528-00:06) Classic VM (build 1.3.1-p8-root-030528-00:06, green threads, nojit) This was on a 4.8-STABLE box... At anyrate either jdk13 is broken or qt is... I think qt is because the jdk13 had correct code in the .h files and the qt provided .h files were stubs... Jeff *** -- Adam From owner-freebsd-ports@FreeBSD.ORG Wed May 28 06:08:37 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A64A237B401 for ; Wed, 28 May 2003 06:08:37 -0700 (PDT) Received: from mail.mdacc.tmc.edu (mail.mdanderson.org [143.111.251.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10A1A43FB1 for ; Wed, 28 May 2003 06:08:35 -0700 (PDT) (envelope-from syjef@mail.mdanderson.org) Received: from ([143.111.64.231]) by mail.mdacc.tmc.edu (InterScan E-Mail VirusWall Unix); Wed, 28 May 2003 08:08:34 -0500 (CDT) Date: Wed, 28 May 2003 08:08:32 -0500 To: freebsd-ports@freebsd.org Content-Type: text/plain; charset=iso-8859-15; format=flowed From: Jonathan Fosburgh MIME-Version: 1.0 Message-ID: User-Agent: Opera7.11/Linux M2 build 406 Subject: Wine, networking, and XFree86 4.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: Wed, 28 May 2003 13:08:37 -0000 Is anyone able to use any wine applications that communicate over the network *and* are doing so with XFree86 4.3.0? I am running 5.1-BETA, updated from CVS late last week. Prior to that I was on 5.0-R and XFree86 4.2.1. At that time, I was able to use windows applications that communicated over the network, such as Lotus Notes. After upgrading to 5.1, I had some other breakage in wine, and over the course of trying to make wine work again, I upgraded to 4.3.0. Wine seems to be working up to the point where it tries to do any networking, but then the application either goes away or just hangs. For instance, in the case of Lotus Notes, I run the program and get the splash screen, and then it simply exits, leaving me with just the following on my console: fixme:console:SetConsoleCtrlHandler (0x0,0) - no error checking or testing yet fixme:console:SetConsoleCtrlHandler (0xecd6d0,1) - no error checking or testing yet I have seen others having problems with 4.3.0, but I have not discovered a solution. Should I just try to downgrade back to 4.2.1 and see if that helps any? -- Jonathan Fosburgh Software Systems Specialist IV AIX/SAN Administrator University of Texas MD Anderson Cancer Center Houston, TX From owner-freebsd-ports@FreeBSD.ORG Wed May 28 10:00:26 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DD7937B401 for ; Wed, 28 May 2003 10:00:26 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B107643F85 for ; Wed, 28 May 2003 10:00:25 -0700 (PDT) (envelope-from fenner@FreeBSD.org) Received: from freefall.freebsd.org (fenner@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h4SH0PUp001322 for ; Wed, 28 May 2003 10:00:25 -0700 (PDT) (envelope-from fenner@freefall.freebsd.org) Received: (from fenner@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h4SH0P9B001321 for ports@freebsd.org; Wed, 28 May 2003 10:00:25 -0700 (PDT) Date: Wed, 28 May 2003 10:00:25 -0700 (PDT) From: Bill Fenner Message-Id: <200305281700.h4SH0P9B001321@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: Wed, 28 May 2003 17:00:26 -0000 Dear porters, This is just a reminder to please periodically check the list of unbuildable ports at http://bento.freebsd.org/errorlogs/ . A list by MAINTAINER is http://people.freebsd.org/~fenner/errorlogs/ so you can easily check the status of ports that you maintain. In addition, the list of ports with no MAINTAINER with build problems is http://people.freebsd.org/~fenner/errorlogs/ports@freebsd.org.html Since no one is responsible for these ports, the problem won't get fixed unless someone on this list takes the initiative. Thanks for your help! Bill "annoying port email" Fenner From owner-freebsd-ports@FreeBSD.ORG Wed May 28 13:46:29 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09E4237B401 for ; Wed, 28 May 2003 13:46:29 -0700 (PDT) Received: from bach.ccinet.ab.ca (bach.ccinet.ab.ca [198.161.96.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5206943F3F for ; Wed, 28 May 2003 13:46:28 -0700 (PDT) (envelope-from guy@incentre.net) Received: from incentre.net (squid.incentre.net [206.75.213.195]) by bach.ccinet.ab.ca (8.12.6/8.12.6) with ESMTP id h4SKmqMt075992 for ; Wed, 28 May 2003 14:48:53 -0600 (MDT) (envelope-from guy@incentre.net) Message-ID: <3ED5200D.2010908@incentre.net> Date: Wed, 28 May 2003 14:46:05 -0600 From: Guy Fraser User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.1) Gecko/20021003 X-Accept-Language: en MIME-Version: 1.0 To: ports@FreeBSD.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: how do I modify pkg-plist for opional modules X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 May 2003 20:46:29 -0000 Hi The FreeRadius port is marked as broken due to a "bad" pkg-plist. If MySQL and X99-Token software are both installed the list is correct. The Makefile installs modules if the required software is installed before "make". The pkg-plist can never be correct unless all files for all optional modules are included but not required to be available for install or removal. Alternatively a wild card could be used since the optional modules are all in the "lib" subdirectory and start with "rlm_", so "lib/rlm_*" could match. Let me know how to do this and I will try to fix the problem. Guy From owner-freebsd-ports@FreeBSD.ORG Wed May 28 15:15:30 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D2A437B401 for ; Wed, 28 May 2003 15:15:30 -0700 (PDT) Received: from mail.westbend.net (ns1.westbend.net [216.47.253.3]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56EBD43F85 for ; Wed, 28 May 2003 15:15:29 -0700 (PDT) (envelope-from hetzels@westbend.net) Received: from Admin02 (admin02.westbend.net [216.47.253.19]) by mail.westbend.net (8.12.9/8.12.9) with SMTP id h4SMFSV4047449; Wed, 28 May 2003 17:15:28 -0500 (CDT) (envelope-from hetzels@westbend.net) Message-ID: <06d501c32566$a62d89c0$13fd2fd8@Admin02> From: "Scot W. Hetzel" To: "Guy Fraser" , References: <3ED5200D.2010908@incentre.net> Date: Wed, 28 May 2003 17:15:29 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 X-Virus-Scanned: by amavisd-milter (http://amavis.org/) Subject: Re: how do I modify pkg-plist for opional modules X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 28 May 2003 22:15:30 -0000 From: "Guy Fraser" > The FreeRadius port is marked as broken due to a "bad" pkg-plist. > > If MySQL and X99-Token software are both installed the list is > correct. The Makefile installs modules if the required software is > installed before "make". > > The pkg-plist can never be correct unless all files for all optional > modules are included but not required to be available for install or > removal. Alternatively a wild card could be used since the optional > modules are all in the "lib" subdirectory and start with "rlm_", so > "lib/rlm_*" could match. > > Let me know how to do this and I will try to fix the problem. > You need to change PLIST_SUB so that it contains a variable that is either set to " or "@comment depending on whether the module is installed or not installed. You'll need to add something like the following to the Makefile: .if defined(WITH_MYSQL) .if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.10) LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client .else .if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.14) LIB_DEPENDS+= mysqlclient.14:${PORTSDIR}/databases/mysql41-client .else LIB_DEPENDS+= mysqlclient.12:${PORTSDIR}/databases/mysql40-client .endif .endif CONFIGURE_ARGS+=--with-mysql=${LOCALBASE} PLIST_SUB+= MYSQL="" .else CONFIGURE_ARGS+= --without-mysql PLIST_SUB+= MYSQL="@comment " .endif Then in pkg-plist change lib/rlm_sql_mysql.* to %%MYSQL%%lib/rlm_sql_mysql.* Take a look at net/openldap2, or security/cyrus-sasl2 (Makefile and pkg-plist) for an example. Scot From owner-freebsd-ports@FreeBSD.ORG Wed May 28 17:51:35 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73A7037B404 for ; Wed, 28 May 2003 17:51:35 -0700 (PDT) Received: from zircon.seattle.wa.us (dsl231-043-165.sea1.dsl.speakeasy.net [216.231.43.165]) by mx1.FreeBSD.org (Postfix) with SMTP id 4BB1743FA3 for ; Wed, 28 May 2003 17:51:34 -0700 (PDT) (envelope-from joe@zircon.seattle.wa.us) Received: (qmail 59826 invoked from network); 29 May 2003 00:51:33 -0000 Received: from localhost (HELO ?127.0.0.1?) (127.0.0.1) by localhost with SMTP; 29 May 2003 00:51:33 -0000 From: Joe Kelsey To: stable@freebsd.org In-Reply-To: <20030527100237.68b361c3.bruno.van.den.bossche@pandora.be> References: <1053998248.14371.79.camel@zircon> <20030527100237.68b361c3.bruno.van.den.bossche@pandora.be> Content-Type: text/plain Organization: Message-Id: <1054169492.968.35.camel@zircon> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.4 Date: 28 May 2003 17:51:33 -0700 Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: portupgrade issue X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 May 2003 00:51:35 -0000 On Tue, 2003-05-27 at 01:02, Bruno Van Den Bossche wrote: > On 26 May 2003 18:17:29 -0700 > Joe Kelsey wrote: > > > I am running 4.8-STABLE. > > I recently did a cvsup (repeatedly, most recently today). Ever since, > > portupgrade dies with the following messages: It turns out that the culprit is my /usr/sup/refuse file. I was following the suggestion in the Handbook to have my refuse file include the unnecessary languages. However, this has the undesirable interaction with portupgrade to cause the dreaded 'deorigin' error. I removed my refuse file, reluctantly did a cvsup to download *all* of the languages, even though I have no way to use or understand any of them, and then I was able to resume using portupgrade. Either someone should change the Handbook to make it clear that if you follow the suggestion and actually *use* the suggested refuse file you will then be unable to follow the other suggestion and ever use portupgrade, or else fix portupgrade so that it does not dump it guts out if a language dependency is missing. Very frustrating and totally unnecessary. Especially since I now have to waste disk space on language ports. /Joe From owner-freebsd-ports@FreeBSD.ORG Wed May 28 18:04:33 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF05737B401; Wed, 28 May 2003 18:04:33 -0700 (PDT) Received: from bobo.thehutt.org (pcp710658pcs.alxndr01.va.comcast.net [68.49.245.189]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4EBC43F75; Wed, 28 May 2003 18:04:32 -0700 (PDT) (envelope-from jerry@thehutt.org) Received: from bebop.thehutt.org (bebop.thehutt.org [10.0.1.49]) h4T14Tl7011521; Wed, 28 May 2003 21:04:29 -0400 Received: from bebop.thehutt.org (localhost [127.0.0.1]) h4T14SDB026931; Wed, 28 May 2003 21:04:28 -0400 Received: (from jerry@localhost) by bebop.thehutt.org (8.12.7/8.12.7/Submit) id h4T14SPG026930; Wed, 28 May 2003 21:04:28 -0400 Date: Wed, 28 May 2003 21:04:28 -0400 From: Jerry A! To: freebsd-stable@freebsd.org Message-ID: <20030529010428.GA26817@bebop.thehutt.org> References: <1053998248.14371.79.camel@zircon> <20030527100237.68b361c3.bruno.van.den.bossche@pandora.be> <1054169492.968.35.camel@zircon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1054169492.968.35.camel@zircon> User-Agent: Mutt/1.4i Organization: Broken Toys Unlimited cc: ports@freebsd.org Subject: Re: portupgrade issue X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 May 2003 01:04:34 -0000 On Wed, May 28, 2003 at 05:51:33PM -0700, Joe Kelsey wrote: : follow the suggestion and actually *use* the suggested refuse file you : will then be unable to follow the other suggestion and ever use : portupgrade, or else fix portupgrade so that it does not dump it guts : out if a language dependency is missing. : : Very frustrating and totally unnecessary. Especially since I now have : to waste disk space on language ports. Can't you specify the languages in the "IGNORE_CATEGORIES" portion of pkgtools.conf? Then you should be able to safely skip it. --Jerry -- Open-Source software isn't a matter of life or death... ...It's much more important than that! From owner-freebsd-ports@FreeBSD.ORG Wed May 28 19:00:09 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B06D37B404 for ; Wed, 28 May 2003 19:00:09 -0700 (PDT) Received: from quenix.dyndns.org (modemcable246.166-130-66.que.mc.videotron.ca [66.130.166.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 912BA43F75 for ; Wed, 28 May 2003 19:00:08 -0700 (PDT) (envelope-from gagnon__s@videotron.ca) Received: from localhost ([127.0.0.1]) by quenix.dyndns.org with smtp (Exim 4.14) id 19LD6F-000Eag-EJ for ports@freebsd.org; Wed, 28 May 2003 22:25:03 -0400 From: Serge Gagnon To: ports@freebsd.org Content-Type: text/plain Message-Id: <1054175102.53055.8.camel@quenix.dyndns.org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.3 (Preview Release) Date: 28 May 2003 22:25:02 -0400 Content-Transfer-Encoding: 7bit Subject: misc/xrmap supposed to do not build X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 02:00:09 -0000 Is someone here who can explain to me why this port is not supposed to build? http://people.freebsd.org/~fenner/errorlogs/gagnon__s@videotron.ca.html I cannot see any "error this" or "error that" in the log. Thanks -- Serge Gagnon From owner-freebsd-ports@FreeBSD.ORG Wed May 28 20:31:56 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6605D37B401 for ; Wed, 28 May 2003 20:31:56 -0700 (PDT) Received: from mallard.mail.pas.earthlink.net (mallard.mail.pas.earthlink.net [207.217.120.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id D090943F85 for ; Wed, 28 May 2003 20:31:55 -0700 (PDT) (envelope-from parv_fm@mailsent.net) Received: from sdn-ap-035dcwashp0103.dialsprint.net ([65.179.104.103] helo=moo.holy.cow) by mallard.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 19LE8w-00045k-00; Wed, 28 May 2003 20:31:55 -0700 Received: by moo.holy.cow (Postfix, from userid 1001) id EBE72AC71; Wed, 28 May 2003 23:34:59 -0400 (EDT) Date: Wed, 28 May 2003 23:34:59 -0400 From: parv To: Joe Kelsey Message-ID: <20030529033459.GA33659@moo.holy.cow> Mail-Followup-To: Joe Kelsey , ports@freebsd.org References: <1053998248.14371.79.camel@zircon> <20030527100237.68b361c3.bruno.van.den.bossche@pandora.be> <1054169492.968.35.camel@zircon> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1054169492.968.35.camel@zircon> cc: ports@freebsd.org Subject: Re: portupgrade issue X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 May 2003 03:31:56 -0000 -stable list is removed as i think this belongs to either -questions and/or -ports. in message <1054169492.968.35.camel@zircon>, wrote Joe Kelsey thusly... > > It turns out that the culprit is my /usr/sup/refuse file. I was > following the suggestion in the Handbook to have my refuse file > include the unnecessary languages. However, this has the > undesirable interaction with portupgrade to cause the dreaded > 'deorigin' error. I have used only "pkgdb -F", and thus "portupgrade -[U]u", from the portupgrade tools. That may be why i haven't experienced your problem w/ my ~490 lines strong refuse file... http://www103.pair.com/parv/comp/unix/cf/freebsd/refuse.ports ...While making index, it helps immensely that ports that are being refused do not have corresponding directores in existence. Otherwise, one would get "no entry" error; "non-existent -- dependency list incomplete" error can be safely ignored, IMO. I did try once to build/install port(s) via portupgrade, but the end result was more work than otherwise. I haven't bothered w/ or trusted portupgrade to maintain anything other than install ports database ever since. > I removed my refuse file, reluctantly did a cvsup to download > *all* of the languages, even though I have no way to use or > understand any of them ... Very frustrating and totally > unnecessary. Oh crap! I am truly sorry to hear that! :( - Parv -- A programmer, budding Unix system administrator, and amateur photographer ISO employment. Details... http://www103.pair.com/parv/work/ From owner-freebsd-ports@FreeBSD.ORG Wed May 28 23:49:21 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8556337B401; Wed, 28 May 2003 23:49:21 -0700 (PDT) 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 3DFA843F3F; Wed, 28 May 2003 23:49:19 -0700 (PDT) (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 D41762C1E5; Thu, 29 May 2003 08:49:09 +0200 (CEST) Date: Thu, 29 May 2003 08:48:53 +0200 From: Miguel Mendez To: ports@freebsd.org Message-Id: <20030529084853.35ac9c06.flynn@energyhq.es.eu.org> X-Mailer: Sylpheed version 0.8.11claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) X-Face: 1j}k*2E>Y\+C~E|/wehi[:dCM,{N7/uE3o# P,{t7gA/qnovFDDuyQV.1hdT7&#d)q"xY33}{_GS>kk'S{O]nE$A`T|\4&p\&mQyexOLb8}FO List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 06:49:21 -0000 --=.:JI2rs)MR.jJLi Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hello, I know we're in a ports freeze, but the apache people have released 2.0.46, which fixes a serious bug present in all releases from 2.0.37 to 2.0.45. It's a problem with mod_dav that can be exploited to cause a DoS. Any chance we can get this updated before 5.1 gets out? http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2003-0245 Cheers, -- Miguel Mendez - flynn@energyhq.es.eu.org EnergyHQ :: http://www.energyhq.tk Tired of Spam? -> http://www.trustic.com --=.:JI2rs)MR.jJLi Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+1a1YnLctrNyFFPERAoAfAKC3bXsPQ4YeXZ3+KwQb1NZKhxY9DQCeIGsj tKTQJPkVW9wZN6CZhOI58vM= =TFvc -----END PGP SIGNATURE----- --=.:JI2rs)MR.jJLi-- From owner-freebsd-ports@FreeBSD.ORG Thu May 29 00:36:15 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AF7C37B401 for ; Thu, 29 May 2003 00:36:15 -0700 (PDT) Received: from sccrmhc03.attbi.com (sccrmhc03.attbi.com [204.127.202.63]) by mx1.FreeBSD.org (Postfix) with ESMTP id E31A643F85 for ; Thu, 29 May 2003 00:36:14 -0700 (PDT) (envelope-from clint@0lsen.net) Received: from 0lsen.net (12-203-21-192.client.attbi.com[12.203.21.192]) by attbi.com (sccrmhc03) with ESMTP id <20030529073614003005fbsle>; Thu, 29 May 2003 07:36:14 +0000 Received: by 0lsen.net (Postfix, from userid 1001) id 8D09F94C; Thu, 29 May 2003 00:36:13 -0700 (PDT) To: ports@freebsd.org Message-Id: Posted-To: comp.protocols.smb Date: Thu, 29 May 2003 00:36:13 -0700 From: clint@0lsen.net (Clint Olsen) Subject: Upgrade to 2.2.8a from older 2.2.X breaks printing with XP X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 May 2003 07:36:15 -0000 [This message has also been posted.] Hi: Due to some intermittent issues with file-sharing performance from FreeBSD to XP, I decided to upgrade to the latest port in the FreeBSD collection. The result is that my printing is completely busted, and I cannot get any logging to tell me what is happening. I've tried increasing the log level in the smb.conf file to no avail. Symptom: Trying to reinstall a printer from scratch, the connection comes back on Windows as a failure. I noticed that a spawned smbd is running and apparently hanging: root 3988 0.0 3.3 4060 3112 ?? Is 12:22AM 0:00.01 /usr/local/sbin/smbd -D clint 4032 0.0 3.4 4460 3236 ?? T 12:27AM 0:00.04 /usr/local/sbin/smbd -D The process spawns every time I try to connect to a printer from windows. I've searched through the docs on the Samba.org website. Any additional suggestions would be much appreciated. Thanks, -Clint From owner-freebsd-ports@FreeBSD.ORG Thu May 29 06:17:28 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCB2437B401 for ; Thu, 29 May 2003 06:17:28 -0700 (PDT) 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 A999E43F3F for ; Thu, 29 May 2003 06:17:19 -0700 (PDT) (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 46C242C3B2; Thu, 29 May 2003 15:16:58 +0200 (CEST) Date: Thu, 29 May 2003 15:16:43 +0200 From: Miguel Mendez To: =?ISO-8859-1?Q? "=C0=EE=F6=CE?= Xin LI" Message-Id: <20030529151643.38ccd4b7.flynn@energyhq.es.eu.org> In-Reply-To: References: <20030529084853.35ac9c06.flynn@energyhq.es.eu.org> X-Mailer: Sylpheed version 0.8.11claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) X-Face: 1j}k*2E>Y\+C~E|/wehi[:dCM,{N7/uE3o# P,{t7gA/qnovFDDuyQV.1hdT7&#d)q"xY33}{_GS>kk'S{O]nE$A`T|\4&p\&mQyexOLb8}FO List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 13:17:29 -0000 --=.YAS9x:KMZ6dp9l Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable On Thu, 29 May 2003 18:04:11 +0800 "=C0=EE=F6=CE Xin LI" wrote: > Please allow a reasonable time for maintainers and portmgr@ to > determine whether the port will be upgraded. During a port freeze, it > usually takes more time to have a port upgraded, even when the update Hmm, either you didn't understand what I meant or I wasn't clear enough. I wasn't, by any means, demanding that this package is updated immediately. It was simply an honest question: Whether it can be updated before 5.1 gets out. I'm very aware of the fact that, during a ports freeze, portmgr@ are the ones to decide if a commit goes in or not. Even if the port is not updated, I think a message should be added, something like: *************************************************** Warning: enabling mod_dav may pose a security risk. *************************************************** And let the admin decide whether she is willing to use it. Marking the port as FORBIDDEN is not a solution at all, IMHO. > I have submitted a patch PR as ports/52768, you may want to access it > through the web: > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D52768 Thanks, I'll have a look at it. > Please trust portmgr@ and maintainer of the port, because they are > more familiar to the port, and all of them consider security as an > important issue. They always do the Good Thing(TM) :P Yes, I do trust them :) Cheers, --=20 Miguel Mendez - flynn@energyhq.es.eu.org EnergyHQ :: http://www.energyhq.tk Tired of Spam? -> http://www.trustic.com --=.YAS9x:KMZ6dp9l Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+1gg+nLctrNyFFPERAraNAJ4mDcLKM+VN5PPGWJPfeix4CwzDWwCgqYNd knVyecML8p4Hx31siBZcUmo= =jEaz -----END PGP SIGNATURE----- --=.YAS9x:KMZ6dp9l-- From owner-freebsd-ports@FreeBSD.ORG Thu May 29 10:26:50 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 373DB37B401 for ; Thu, 29 May 2003 10:26:50 -0700 (PDT) Received: from bach.ccinet.ab.ca (bach.ccinet.ab.ca [198.161.96.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87DA443FAF for ; Thu, 29 May 2003 10:26:49 -0700 (PDT) (envelope-from guy@incentre.net) Received: from incentre.net (squid.incentre.net [206.75.213.195]) by bach.ccinet.ab.ca (8.12.6/8.12.6) with ESMTP id h4THTGMt001850; Thu, 29 May 2003 11:29:17 -0600 (MDT) (envelope-from guy@incentre.net) Message-ID: <3ED642C0.50600@incentre.net> Date: Thu, 29 May 2003 11:26:24 -0600 From: Guy Fraser User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.0.1) Gecko/20021003 X-Accept-Language: en MIME-Version: 1.0 To: "Scot W. Hetzel" References: <3ED5200D.2010908@incentre.net> <06d501c32566$a62d89c0$13fd2fd8@Admin02> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: ports@freebsd.org Subject: Re: how do I modify pkg-plist for opional modules X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 May 2003 17:26:50 -0000 Thank you I will look into this and try to fix the problem(s). Guy Scot W. Hetzel wrote: >From: "Guy Fraser" > > >>The FreeRadius port is marked as broken due to a "bad" pkg-plist. >> >>If MySQL and X99-Token software are both installed the list is >>correct. The Makefile installs modules if the required software is >>installed before "make". >> >>The pkg-plist can never be correct unless all files for all optional >>modules are included but not required to be available for install or >>removal. Alternatively a wild card could be used since the optional >>modules are all in the "lib" subdirectory and start with "rlm_", so >>"lib/rlm_*" could match. >> >>Let me know how to do this and I will try to fix the problem. >> >> >> >You need to change PLIST_SUB so that it contains a variable that is either >set to " or "@comment depending on whether the module is installed or not >installed. > >You'll need to add something like the following to the Makefile: > >.if defined(WITH_MYSQL) >.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.10) >LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client >.else >.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.14) >LIB_DEPENDS+= mysqlclient.14:${PORTSDIR}/databases/mysql41-client >.else >LIB_DEPENDS+= mysqlclient.12:${PORTSDIR}/databases/mysql40-client >.endif >.endif >CONFIGURE_ARGS+=--with-mysql=${LOCALBASE} > >PLIST_SUB+= MYSQL="" >.else >CONFIGURE_ARGS+= --without-mysql >PLIST_SUB+= MYSQL="@comment " >.endif > >Then in pkg-plist change > >lib/rlm_sql_mysql.* > >to > >%%MYSQL%%lib/rlm_sql_mysql.* > >Take a look at net/openldap2, or security/cyrus-sasl2 (Makefile and >pkg-plist) for an example. > >Scot > > > > From owner-freebsd-ports@FreeBSD.ORG Thu May 29 13:46:12 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E41AA37B401; Thu, 29 May 2003 13:46:12 -0700 (PDT) Received: from smtp01.mrf.mail.rcn.net (smtp01.mrf.mail.rcn.net [207.172.4.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32E9643FAF; Thu, 29 May 2003 13:46:12 -0700 (PDT) (envelope-from nat@pendletonpress.com) Received: from 207-172-36-248.c3-0.129-ubr1.lnh-129.md.cable.rcn.com ([207.172.36.248] helo=TBG133) by smtp01.mrf.mail.rcn.net with smtp (Exim 3.35 #4) id 19LUHr-0002e8-00; Thu, 29 May 2003 16:46:11 -0400 Message-ID: <03a201c32623$da46f4e0$0349a8c0@nat2.cable.rcn.com> From: "Nathaniel Pendleton" To: Date: Thu, 29 May 2003 16:49:51 -0400 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 5.50.4920.2300 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4920.2300 cc: ports@FreeBSD.org Subject: FreeBSD Port: liboe-0.92 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 May 2003 20:46:13 -0000 I have written a perl script to fix the broken message deviding "from" lines. oe2mbx/liboe puts a false from line that says >From liboe@linux and a false date. My script puts the real from and (correctly formated) real date in the message deviders place. Do you know what happened to the www.gpl.no site? Is there a way to get these ideas incorporated into the liboe C code? -Nathaniel From owner-freebsd-ports@FreeBSD.ORG Thu May 29 16:25:04 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F121437B401; Thu, 29 May 2003 16:25:03 -0700 (PDT) Received: from hanirc.kr.psi.net (hanirc.higlobe.net [203.255.112.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACE7F43FA3; Thu, 29 May 2003 16:25:01 -0700 (PDT) (envelope-from perky@hanirc.kr.psi.net) Received: from hanirc.kr.psi.net (wendy@localhost [127.0.0.1]) by hanirc.kr.psi.net (8.12.9/8.12.5) with ESMTP id h4TNOsdA044772; Fri, 30 May 2003 08:24:54 +0900 (KST) (envelope-from perky@hanirc.kr.psi.net) Received: (from perky@localhost) by hanirc.kr.psi.net (8.12.9/8.12.6/Submit) id h4TNOlCg044756; Fri, 30 May 2003 08:24:47 +0900 (KST) Date: Fri, 30 May 2003 08:24:47 +0900 From: Hye-Shik Chang To: Miguel Mendez Message-ID: <20030529232447.GA44118@fallin.lv> References: <20030529084853.35ac9c06.flynn@energyhq.es.eu.org> <20030529151643.38ccd4b7.flynn@energyhq.es.eu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Q68bSM7Ycu6FN28Q" Content-Disposition: inline In-Reply-To: <20030529151643.38ccd4b7.flynn@energyhq.es.eu.org> User-Agent: Mutt/1.4i Organization: Yonsei University X-PGP: finger perky@freebsd.org cc: =?us-ascii?B?PT9JU08tODg1OS0xP1E/?= =C0=EE=F6=CE?= Xin LI cc: ports@freebsd.org cc: portmgr@freebsd.org Subject: Re: Apache 2.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, 29 May 2003 23:25:04 -0000 --Q68bSM7Ycu6FN28Q Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 29, 2003 at 03:16:43PM +0200, Miguel Mendez wrote: > On Thu, 29 May 2003 18:04:11 +0800 > "???? Xin LI" wrote: >=20 > > Please allow a reasonable time for maintainers and portmgr@ to > > determine whether the port will be upgraded. During a port freeze, it > > usually takes more time to have a port upgraded, even when the update >=20 > Hmm, either you didn't understand what I meant or I wasn't clear enough. > I wasn't, by any means, demanding that this package is updated > immediately. It was simply an honest question: Whether it can be updated > before 5.1 gets out. I'm very aware of the fact that, during a ports > freeze, portmgr@ are the ones to decide if a commit goes in or not. Even > if the port is not updated, I think a message should be added, something > like: >=20 > *************************************************** > Warning: enabling mod_dav may pose a security risk. > *************************************************** Apache 2.0.46 fixed 2 more security bugs; CAN-2003-0134 and CAN-2003-0189. Because apache 2.0.* is a bugfix-only branch nowadays and 2.0.46 has no brand new features than 2.0.45. I see that updating to 2.0.46 before 5.1-RELEASE would be okay. >=20 > And let the admin decide whether she is willing to use it. Marking the > port as FORBIDDEN is not a solution at all, IMHO. >=20 > > I have submitted a patch PR as ports/52768, you may want to access it > > through the web: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=3D52768 >=20 > Thanks, I'll have a look at it. The patch on ports/52768 looks fine except that is malformed and missing diff for pkg-plist. Thank you anyway! :) A fixed patch is available at http://people.freebsd.org/~perky/apache-2.0.4= 6.diff Regards, Hye-Shik =3D) --Q68bSM7Ycu6FN28Q Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (FreeBSD) iD8DBQE+1pa/DWUsWc/bS6QRAuQyAKDSImVhwmi2SaErrR7WYpRx0fe+VwCg2Ho9 URxgj/e1e5suWkGDmRDCb78= =lC+/ -----END PGP SIGNATURE----- --Q68bSM7Ycu6FN28Q-- From owner-freebsd-ports@FreeBSD.ORG Thu May 29 16:33:38 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E83AA37B401 for ; Thu, 29 May 2003 16:33:38 -0700 (PDT) Received: from stjohn.stjohn.ac.th (stjohn.stjohn.ac.th [202.21.144.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAF5C43F3F for ; Thu, 29 May 2003 16:33:36 -0700 (PDT) (envelope-from mcrogerm@stjohn.ac.th) Received: from tulip.stjohn.ac.th ([203.151.134.104]) by stjohn.stjohn.ac.th (8.9.3+Sun/8.9.3) with ESMTP id GAA20569; Fri, 30 May 2003 06:31:15 +0700 (ICT) Message-Id: <5.2.0.9.0.20030529094817.00a33a50@127.0.0.1> X-Sender: stjohn.stjohn.ac.th:mcrogerm@127.0.0.1 X-Mailer: QUALCOMM Windows Eudora Version 5.2.0.9 Date: Thu, 29 May 2003 09:48:25 +0700 To: Jerry A! From: Roger Merritt Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed cc: freebsd-ports@FreeBSD.ORG Subject: Re: portupgrade issue X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 May 2003 23:33:39 -0000 At 08:04 AM 5/29/03, you wrote: >On Wed, May 28, 2003 at 05:51:33PM -0700, Joe Kelsey wrote: >: follow the suggestion and actually *use* the suggested refuse file you >: will then be unable to follow the other suggestion and ever use >: portupgrade, or else fix portupgrade so that it does not dump it guts >: out if a language dependency is missing. >: >: Very frustrating and totally unnecessary. Especially since I now have >: to waste disk space on language ports. > >Can't you specify the languages in the "IGNORE_CATEGORIES" portion of >pkgtools.conf? Then you should be able to safely skip it. Doesn't work. I tried it. It doesn't prevent 'portsdb -U' from complaining about the missing dependencies. I don't know what it "does* do, but I, too, had to discard my refuse file to cut down on the number of error messages. Roger From owner-freebsd-ports@FreeBSD.ORG Thu May 29 16:47:40 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FD7637B401 for ; Thu, 29 May 2003 16:47:40 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-104-32.dsl.lsan03.pacbell.net [64.169.104.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED82943F75 for ; Thu, 29 May 2003 16:47:39 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 87E9A66B9B; Thu, 29 May 2003 16:47:39 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 738A4AFE; Thu, 29 May 2003 16:47:39 -0700 (PDT) Date: Thu, 29 May 2003 16:47:39 -0700 From: Kris Kennaway To: Roger Merritt Message-ID: <20030529234739.GA1513@rot13.obsecurity.org> References: <5.2.0.9.0.20030529094817.00a33a50@127.0.0.1> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ibTvN161/egqYuK8" Content-Disposition: inline In-Reply-To: <5.2.0.9.0.20030529094817.00a33a50@127.0.0.1> User-Agent: Mutt/1.4.1i cc: Jerry A! cc: freebsd-ports@FreeBSD.ORG Subject: Re: portupgrade issue X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 29 May 2003 23:47:40 -0000 --ibTvN161/egqYuK8 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 29, 2003 at 09:48:25AM +0700, Roger Merritt wrote: > At 08:04 AM 5/29/03, you wrote: > >On Wed, May 28, 2003 at 05:51:33PM -0700, Joe Kelsey wrote: > >: follow the suggestion and actually *use* the suggested refuse file you > >: will then be unable to follow the other suggestion and ever use > >: portupgrade, or else fix portupgrade so that it does not dump it guts > >: out if a language dependency is missing. > >: > >: Very frustrating and totally unnecessary. Especially since I now have > >: to waste disk space on language ports. > > > >Can't you specify the languages in the "IGNORE_CATEGORIES" portion of > >pkgtools.conf? Then you should be able to safely skip it. >=20 > Doesn't work. I tried it. It doesn't prevent 'portsdb -U' from complainin= g=20 > about the missing dependencies. I don't know what it "does* do, but I, to= o,=20 > had to discard my refuse file to cut down on the number of error messages. The problem is that if you choose not to install certain categories then there is no way to generate a consistent INDEX, because some ports that you have installed depend on ports that you have chosen not to install. This is not a portupgrade problem, it's that you're trying to do something impossible and unsupported with your ports collection. Kris --ibTvN161/egqYuK8 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+1pwbWry0BWjoQKURAlvdAJwLvTLFc5pMQCLEsdCQ8E5KN740OgCg5Kn+ Kyty9qTv3zLnZa9z2p3/ObQ= =9pGM -----END PGP SIGNATURE----- --ibTvN161/egqYuK8-- From owner-freebsd-ports@FreeBSD.ORG Thu May 29 16:49:33 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A21837B401 for ; Thu, 29 May 2003 16:49:33 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-104-32.dsl.lsan03.pacbell.net [64.169.104.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id B507743F75 for ; Thu, 29 May 2003 16:49:32 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 87F3366CFA; Thu, 29 May 2003 16:49:32 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 7FA5BAFA; Thu, 29 May 2003 16:49:32 -0700 (PDT) Date: Thu, 29 May 2003 16:49:32 -0700 From: Kris Kennaway To: Serge Gagnon Message-ID: <20030529234932.GB1513@rot13.obsecurity.org> References: <1054175102.53055.8.camel@quenix.dyndns.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Y7xTucakfITjPcLV" Content-Disposition: inline In-Reply-To: <1054175102.53055.8.camel@quenix.dyndns.org> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: misc/xrmap supposed to do not build X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 29 May 2003 23:49:33 -0000 --Y7xTucakfITjPcLV Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, May 28, 2003 at 10:25:02PM -0400, Serge Gagnon wrote: > Is someone here who can explain to me why this port is not supposed to > build? > http://people.freebsd.org/~fenner/errorlogs/gagnon__s@videotron.ca.html >=20 > I cannot see any "error this" or "error that" in the log. The build was manually aborted, there is no port error in that log. This kind of transient error is pretty much unavoidable, sorry. Kris --Y7xTucakfITjPcLV Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+1pyLWry0BWjoQKURAm9BAKC6sh6ellyYiFoFl31R3yIPuPYbTQCgg4Jl 9oa82OUKZyj32a2JeT5c1tM= =/Ur8 -----END PGP SIGNATURE----- --Y7xTucakfITjPcLV-- From owner-freebsd-ports@FreeBSD.ORG Thu May 29 21:10:52 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5235337B401 for ; Thu, 29 May 2003 21:10:52 -0700 (PDT) Received: from backmaster.cdsnet.net (backmaster.cdsnet.net [63.163.68.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 816B743FB1 for ; Thu, 29 May 2003 21:10:51 -0700 (PDT) (envelope-from mrcpu@backmaster.cdsnet.net) Received: (qmail 14244 invoked by uid 29999); 30 May 2003 04:10:50 -0000 Date: Thu, 29 May 2003 21:10:50 -0700 From: Jaye Mathisen To: ports@freebsd.org Message-ID: <20030530041050.GP51760@backmaster.cdsnet.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i Subject: XFree86 upgrade 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, 30 May 2003 04:10:52 -0000 portupgrade is failing with this... cc -O -pipe -mcpu=pentiumpro -ansi -Dasm=__asm -Wall -Wpointer-arith -Wundef -I/usr/ports/x11/XFree86-4-clients/work/xc/include/fonts -I/usr/ports/x11/XFree86-4-clients/work/xc/lib/font/include -I/usr/ports/x11/XFree86-4-clients/work/xc/lib/font/bitmap -I/usr/ports/x11/XFree86-4-clients/work/xc -I/usr/ports/x11/XFree86-4-clients/work/xc/exports/include -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c bdftopcf.c rm -f bdftopcf cc -o bdftopcf -O -pipe -mcpu=pentiumpro -ansi -Dasm=__asm -Wall -Wpointer-arith -Wundef -L/usr/ports/x11/XFree86-4-clients/work/xc/exports/lib bdftopcf.o -lXfont -lfntstubs -L/usr/X11R6/lib -lz -lm -Wl,-rpath,/usr/X11R6/lib /usr/bin/ld: cannot find -lXfont *** Error code 1 Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs/bdftopcf. *** Error code 1 Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs. *** Error code 1 From owner-freebsd-ports@FreeBSD.ORG Thu May 29 21:13:17 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C15AC37B401 for ; Thu, 29 May 2003 21:13:17 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-104-32.dsl.lsan03.pacbell.net [64.169.104.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 411A043F93 for ; Thu, 29 May 2003 21:13:17 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 027B366B9B; Thu, 29 May 2003 21:13:17 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id D5549B16; Thu, 29 May 2003 21:13:16 -0700 (PDT) Date: Thu, 29 May 2003 21:13:16 -0700 From: Kris Kennaway To: Jaye Mathisen Message-ID: <20030530041316.GA3482@rot13.obsecurity.org> References: <20030530041050.GP51760@backmaster.cdsnet.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="VS++wcV0S1rZb1Fb" Content-Disposition: inline In-Reply-To: <20030530041050.GP51760@backmaster.cdsnet.net> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: XFree86 upgrade 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, 30 May 2003 04:13:18 -0000 --VS++wcV0S1rZb1Fb Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 29, 2003 at 09:10:50PM -0700, Jaye Mathisen wrote: >=20 > portupgrade is failing with this... Deinstall -Server first then rebuild -libraries..this is a FAQ. Kris --VS++wcV0S1rZb1Fb Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+1tpcWry0BWjoQKURAlKiAKCtEgnq6nWXjHwST0NwJE99Ft+3uACdFHVE jZtWbJiLsOL4fY6bYVCcrrI= =u7Mm -----END PGP SIGNATURE----- --VS++wcV0S1rZb1Fb-- From owner-freebsd-ports@FreeBSD.ORG Thu May 29 21:15:28 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B25B437B401 for ; Thu, 29 May 2003 21:15:28 -0700 (PDT) Received: from rutger.owt.com (rutger.owt.com [204.118.6.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECC6543F75 for ; Thu, 29 May 2003 21:15:27 -0700 (PDT) (envelope-from kstewart@owt.com) Received: from topaz-out (owt-207-41-94-233.owt.com [207.41.94.233]) by rutger.owt.com (8.11.6p2/8.9.3) with ESMTP id h4U4FMV04808; Thu, 29 May 2003 21:15:23 -0700 From: Kent Stewart To: Jaye Mathisen , ports@freebsd.org Date: Thu, 29 May 2003 21:15:21 -0700 User-Agent: KMail/1.5.2 References: <20030530041050.GP51760@backmaster.cdsnet.net> In-Reply-To: <20030530041050.GP51760@backmaster.cdsnet.net> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200305292115.22034.kstewart@owt.com> Subject: Re: XFree86 upgrade 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, 30 May 2003 04:15:29 -0000 On Thursday 29 May 2003 09:10 pm, Jaye Mathisen wrote: > portupgrade is failing with this... > > cc -O -pipe -mcpu=pentiumpro -ansi -Dasm=__asm -Wall -Wpointer-arith > -Wundef -I/usr/ports/x11/XFree86-4-clients/work/xc/include/fonts > -I/usr/ports/x11/XFree86-4-clients/work/xc/lib/font/include > -I/usr/ports/x11/XFree86-4-clients/work/xc/lib/font/bitmap > -I/usr/ports/x11/XFree86-4-clients/work/xc > -I/usr/ports/x11/XFree86-4-clients/work/xc/exports/include > -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c > bdftopcf.c rm -f bdftopcf > cc -o bdftopcf -O -pipe -mcpu=pentiumpro -ansi -Dasm=__asm -Wall > -Wpointer-arith -Wundef > -L/usr/ports/x11/XFree86-4-clients/work/xc/exports/lib bdftopcf.o -lXfont > -lfntstubs -L/usr/X11R6/lib -lz -lm -Wl,-rpath,/usr/X11R6/lib > /usr/bin/ld: cannot find -lXfont You need to reload XFree86-libraries. Kent > *** Error code 1 > > Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs/bdftopcf. > *** Error code 1 > > Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs. > *** Error code 1 > > > _______________________________________________ > freebsd-ports@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" -- Kent Stewart Richland, WA http://users.owt.com/kstewart/index.html From owner-freebsd-ports@FreeBSD.ORG Thu May 29 22:46:50 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BA1037B40D for ; Thu, 29 May 2003 22:46:49 -0700 (PDT) Received: from backmaster.cdsnet.net (backmaster.cdsnet.net [63.163.68.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 0A16E43F93 for ; Thu, 29 May 2003 22:46:49 -0700 (PDT) (envelope-from mrcpu@backmaster.cdsnet.net) Received: (qmail 56120 invoked by uid 29999); 30 May 2003 05:46:48 -0000 Date: Thu, 29 May 2003 22:46:48 -0700 From: Jaye Mathisen To: Kent Stewart , ports@freebsd.org Message-ID: <20030530054648.GQ51760@backmaster.cdsnet.net> References: <20030530041050.GP51760@backmaster.cdsnet.net> <200305292115.22034.kstewart@owt.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200305292115.22034.kstewart@owt.com> User-Agent: Mutt/1.5.4i Subject: Re: XFree86 upgrade 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, 30 May 2003 05:46:50 -0000 Hmph, I thought this was part of the kind of stuff that portupgrade was supposed to address. Oh well. Thanks for the help guys. On Thu, May 29, 2003 at 09:15:21PM -0700, Kent Stewart wrote: > On Thursday 29 May 2003 09:10 pm, Jaye Mathisen wrote: > > portupgrade is failing with this... > > > > cc -O -pipe -mcpu=pentiumpro -ansi -Dasm=__asm -Wall -Wpointer-arith > > -Wundef -I/usr/ports/x11/XFree86-4-clients/work/xc/include/fonts > > -I/usr/ports/x11/XFree86-4-clients/work/xc/lib/font/include > > -I/usr/ports/x11/XFree86-4-clients/work/xc/lib/font/bitmap > > -I/usr/ports/x11/XFree86-4-clients/work/xc > > -I/usr/ports/x11/XFree86-4-clients/work/xc/exports/include > > -I/usr/X11R6/include -DCSRG_BASED -DFUNCPROTO=15 -DNARROWPROTO -c > > bdftopcf.c rm -f bdftopcf > > cc -o bdftopcf -O -pipe -mcpu=pentiumpro -ansi -Dasm=__asm -Wall > > -Wpointer-arith -Wundef > > -L/usr/ports/x11/XFree86-4-clients/work/xc/exports/lib bdftopcf.o -lXfont > > -lfntstubs -L/usr/X11R6/lib -lz -lm -Wl,-rpath,/usr/X11R6/lib > > /usr/bin/ld: cannot find -lXfont > > You need to reload XFree86-libraries. > > Kent > > > *** Error code 1 > > > > Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs/bdftopcf. > > *** Error code 1 > > > > Stop in /usr/ports/x11/XFree86-4-clients/work/xc/programs. > > *** Error code 1 > > > > > > _______________________________________________ > > freebsd-ports@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-ports > > To unsubscribe, send any mail to "freebsd-ports-unsubscribe@freebsd.org" > > -- > Kent Stewart > Richland, WA > > http://users.owt.com/kstewart/index.html > From owner-freebsd-ports@FreeBSD.ORG Thu May 29 22:59:54 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0028637B401 for ; Thu, 29 May 2003 22:59:53 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-104-32.dsl.lsan03.pacbell.net [64.169.104.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65BBD43F85 for ; Thu, 29 May 2003 22:59:53 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 3B65066B9B; Thu, 29 May 2003 22:59:53 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 2C046AFF; Thu, 29 May 2003 22:59:53 -0700 (PDT) Date: Thu, 29 May 2003 22:59:53 -0700 From: Kris Kennaway To: Jaye Mathisen Message-ID: <20030530055953.GA4092@rot13.obsecurity.org> References: <20030530041050.GP51760@backmaster.cdsnet.net> <200305292115.22034.kstewart@owt.com> <20030530054648.GQ51760@backmaster.cdsnet.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="huq684BweRXVnRxX" Content-Disposition: inline In-Reply-To: <20030530054648.GQ51760@backmaster.cdsnet.net> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org Subject: Re: XFree86 upgrade 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, 30 May 2003 05:59:54 -0000 --huq684BweRXVnRxX Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, May 29, 2003 at 10:46:48PM -0700, Jaye Mathisen wrote: > Hmph, I thought this was part of the kind of stuff that > portupgrade was supposed to address. >=20 > Oh well. portupgrade can't fix everything..this was a broken pkg-plist in XFree86-Server that would delete the files already installed by XFree86-library, thereby causing subsequent XFree86 builds to fail. Kris --huq684BweRXVnRxX Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+1vNYWry0BWjoQKURAhkwAJ9n45xyN7GvhyjNsxckUc2qMK+XfACeMjk5 /yYgMss8SKfXN2MLEtqBFj8= =ZI9U -----END PGP SIGNATURE----- --huq684BweRXVnRxX-- From owner-freebsd-ports@FreeBSD.ORG Thu May 29 23:40:23 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18BB337B401; Thu, 29 May 2003 23:40:23 -0700 (PDT) Received: from transport.cksoft.de (transport.cksoft.de [62.111.66.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCA0543FAF; Thu, 29 May 2003 23:40:21 -0700 (PDT) (envelope-from ck@cksoft.de) Received: from localhost (localhost [127.0.0.1]) by transport.cksoft.de (Postfix) with ESMTP id 2A96C1FFBCA; Fri, 30 May 2003 08:40:20 +0200 (CEST) Received: from majakka.cksoft.de (p508A851E.dip0.t-ipconnect.de [80.138.133.30]) (using TLSv1 with cipher EDH-RSA-DES-CBC3-SHA (168/168 bits)) (No client certificate requested) by transport.cksoft.de (Postfix) with ESMTP id 706461FF915; Fri, 30 May 2003 08:40:15 +0200 (CEST) Received: from majakka.cksoft.de (localhost [127.0.0.1]) by majakka.cksoft.de (Postfix) with ESMTP id 6927644B1A; Fri, 30 May 2003 08:40:14 +0200 (CEST) Received: by majakka.cksoft.de (Postfix, from userid 1000) id AFD7D44AD1; Fri, 30 May 2003 08:40:13 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by majakka.cksoft.de (Postfix) with ESMTP id AE48344AB2; Fri, 30 May 2003 08:40:13 +0200 (CEST) Date: Fri, 30 May 2003 08:40:13 +0200 (CEST) From: Christian Kratzer To: Mikhail Teterin In-Reply-To: <200305292329.31117@aldan> Message-ID: <20030530083600.Q63847@majakka.cksoft.de> References: <200305291512.08284.mi+mx@aldan.algebra.com> <20030529213407.X46562@majakka.cksoft.de> <200305292329.31117@aldan> X-Spammer-Kill-Ratio: 75% MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Scanned: by AMaViS snapshot-20020300-cksoft-02bz on majakka.cksoft.de X-Virus-Scanned: by AMaViS snapshot-20020300 cc: ports@freebsd.org cc: kde@FreeBSD.org cc: ume@FreeBSD.org cc: Hajimu UMEMOTO Subject: Re: openldap port(s) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 May 2003 06:40:23 -0000 Hi, On Thu, 29 May 2003, Mikhail Teterin wrote: > On Thursday 29 May 2003 10:38 pm, Hajimu UMEMOTO wrote: > = >>>>> On Thu, 29 May 2003 21:36:45 +0200 (CEST) Christian Kratzer > = >>>>> said: > = > = > There is another peculiarity. SASL will offer openldap as an option. > = > It is not auto-selected, but is tempting :-) Selecting it will > = > result in an unhandled circular dependency. Is building LDAP-aware > = > SASL and SASL-aware LDAP only possible by building one of them > = > twice? Thanks! > > = ck> I know. I have discussed this with a couple of people and we think > = ck> the best way to address this would be by splitting the sasl port > = ck> into a base sasl port and a saslauthd port. > > = Though I didn't see any discussion about this issue, I made it already > = locally. Since now is in ports freeze state, I cannot commit it. So, > = I'm waiting the ports freeze is over. > > I'd say, openldap also needs splitting into -client and -server. That > way KDE-base can easily depend on just the client and have the LDAP > support built-in (unless I totally miss something out, of course). And > I'll have the kaddressbook, that can talk to the company's Exchange > server.. the openldap21 port already has the hooks to do this. In case we want this for freebsd we should create a slave port for openldap21-client and openldap21-server. This should propably be discussed more broadly so that we have consensus that we want it that way. The bulk added by openldap server is not noticable and would not justify splitting the port. What we really would gain from such a split is reduction of dependencies when server is not needed. We will have an ldap capable nswitch in the future. Being able to add the ldap client without too much other dependencies could be a real gain here. I have cc'd ports@freebsd.org and left all of the quoted messages in the mail so that others can comment on this too. Greetings Christian -- CK Software GmbH Christian Kratzer, Schwarzwaldstr. 31, 71131 Jettingen Email: ck@cksoft.de Phone: +49 7452 889-135 Open Software Solutions, Network Security Fax: +49 7452 889-136 FreeBSD spoken here! From owner-freebsd-ports@FreeBSD.ORG Fri May 30 02:49:34 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A981A37B401 for ; Fri, 30 May 2003 02:49:34 -0700 (PDT) Received: from mail.gmx.net (pop.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 53FB843F3F for ; Fri, 30 May 2003 02:49:33 -0700 (PDT) (envelope-from michaelnottebrock@gmx.net) Received: (qmail 14925 invoked by uid 65534); 30 May 2003 09:49:31 -0000 Received: from pD900333A.dip.t-dialin.net (EHLO lofi.dyndns.org) (217.0.51.58) by mail.gmx.net (mp020) with SMTP; 30 May 2003 11:49:31 +0200 Received: from kiste.my.domain (kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.9/8.12.9) with ESMTP id h4U9nIqS007822 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 30 May 2003 11:49:19 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Christian Kratzer , Mikhail Teterin Date: Fri, 30 May 2003 11:49:10 +0200 User-Agent: KMail/1.5.2 References: <200305291512.08284.mi+mx@aldan.algebra.com> <200305292329.31117@aldan> <20030530083600.Q63847@majakka.cksoft.de> In-Reply-To: <20030530083600.Q63847@majakka.cksoft.de> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_eky1+V3mnaqndqi"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200305301149.18163.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: ports@freebsd.org cc: kde-freebsd@lists.csociety.org Subject: Re: openldap port(s) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 May 2003 09:49:34 -0000 --Boundary-02=_eky1+V3mnaqndqi Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Description: signed data Content-Disposition: inline On Friday 30 May 2003 08:40, Christian Kratzer wrote: > the openldap21 port already has the hooks to do this. In case we want th= is > for freebsd we should create a slave port for openldap21-client and > openldap21-server. > > This should propably be discussed more broadly so that we have consensus > that we want it that way. "Yes please" from all of the KDE-FreeBSD team. =2D-=20 | Michael Nottebrock | KDE on FreeBSD | ,ww | | michaelnottebrock@gmx.net | --- | ,wWWCybaWW_) | | --- | http://freebsd.kde.org | free `WSheepW' | | http://tigress.com/lofi | --- | node II II | --Boundary-02=_eky1+V3mnaqndqi Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA+1ykeXhc68WspdLARAkiFAKCgF7t5BcnRIPBc1I6a14ysI4IDbACfSaQG cKrJjZIouHWrf9G3XobtrLw= =ESP1 -----END PGP SIGNATURE----- --Boundary-02=_eky1+V3mnaqndqi-- From owner-freebsd-ports@FreeBSD.ORG Fri May 30 05:51:28 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05DA037B401 for ; Fri, 30 May 2003 05:51:28 -0700 (PDT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B3A443F3F for ; Fri, 30 May 2003 05:51:27 -0700 (PDT) (envelope-from dan@langille.org) Received: from wocker (wocker.unixathome.org [192.168.0.99]) by bast.unixathome.org (Postfix) with ESMTP id 665343D29 for ; Fri, 30 May 2003 08:51:26 -0400 (EDT) From: "Dan Langille" To: ports@FreeBSD.org Date: Fri, 30 May 2003 08:51:26 -0400 MIME-Version: 1.0 Message-ID: <3ED71B8E.17289.B89F9ED0@localhost> Priority: normal X-mailer: Pegasus Mail for Windows (v4.02a) Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Content-description: Mail message body Subject: how do I not strip the binaries? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 May 2003 12:51:28 -0000 According to /usr/ports/Mk/bsd.port.mk: # INSTALL_PROGRAM - A command to install binary executables. (By # default, also strips them, unless ${STRIP} is # overridden to be the empty string). For debugging purposes, I don't want the binaries stripped. I've tried defining STRIP in various places (command line, /etc/make.conf) but can't stop the stripping: /usr/bin/install -c -o root -g wheel -s -m 754 bacula-sd /usr/local/sbin/bacula-sd Clues please? (please cc any replies to me) -- Dan Langille : http://www.langille.org/ From owner-freebsd-ports@FreeBSD.ORG Fri May 30 07:24:35 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D62A37B401 for ; Fri, 30 May 2003 07:24:35 -0700 (PDT) Received: from peedub.jennejohn.org (p213.54.242.33.tisdip.tiscali.de [213.54.242.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6928243FB1 for ; Fri, 30 May 2003 07:24:34 -0700 (PDT) (envelope-from garyj@jennejohn.org) Received: from peedub.jennejohn.org (localhost [127.0.0.1]) by peedub.jennejohn.org (8.12.9/8.11.6) with ESMTP id h4UEOU0W063574; Fri, 30 May 2003 16:24:31 +0200 (CEST) (envelope-from garyj@peedub.jennejohn.org) Message-Id: <200305301424.h4UEOU0W063574@peedub.jennejohn.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: "Dan Langille" In-Reply-To: Message from "Dan Langille" of "Fri, 30 May 2003 08:51:26 EDT." <3ED71B8E.17289.B89F9ED0@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 30 May 2003 16:24:30 +0200 From: Gary Jennejohn cc: ports@FreeBSD.org Subject: Re: how do I not strip the binaries? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 May 2003 14:24:35 -0000 "Dan Langille" writes: > According to /usr/ports/Mk/bsd.port.mk: > > # INSTALL_PROGRAM - A command to install binary executables. (By > # default, also strips them, unless ${STRIP} is > # overridden to be the empty string). > > For debugging purposes, I don't want the binaries stripped. I've > tried defining STRIP in various places (command line, /etc/make.conf) > but can't stop the stripping: > > /usr/bin/install -c -o root -g wheel -s -m 754 bacula-sd > /usr/local/sbin/bacula-sd > > Clues please? (please cc any replies to me) > Looks like te port uses its own definitons for INSTALL_PROGRAM. --- Gary Jennejohn / garyj@jennejohn.org gj@freebsd.org gj@denx.de From owner-freebsd-ports@FreeBSD.ORG Fri May 30 07:42:08 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6441437B401 for ; Fri, 30 May 2003 07:42:08 -0700 (PDT) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id D81E443FB1 for ; Fri, 30 May 2003 07:42:06 -0700 (PDT) (envelope-from udo.schweigert@siemens.com) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by david.siemens.de (8.11.7/8.11.7) with ESMTP id h4UEfsM05048; Fri, 30 May 2003 16:41:55 +0200 (MEST) Received: from mars.cert.siemens.de (ust.mchp.siemens.de [139.23.201.17]) by mail1.siemens.de (8.11.7/8.11.7) with ESMTP id h4UEfsB11830; Fri, 30 May 2003 16:41:54 +0200 (MEST) Received: from alaska.cert.siemens.de (alaska.cert.siemens.de [139.23.202.134]) 1.46 2003/05/28 09:28:32 ust Exp $) with ESMTP id h4UEfsGE059807; Fri, 30 May 2003 16:41:54 +0200 (CEST) Received: from alaska.cert.siemens.de (alaska.cert.siemens.de [127.0.0.1]) hosts/alaska/mail/config.mc,v 1.15 2002/12/31 15:32:17 ust Exp $) with ESMTP id h4UEfsTa072494; Fri, 30 May 2003 16:41:54 +0200 (CEST) (envelope-from ust@alaska.cert.siemens.de) Received: (from ust@localhost) hosts/alaska/mail/submit.mc,v 1.4 2002/12/31 15:32:17 ust Exp $) id h4UEfsdC049058; Fri, 30 May 2003 16:41:54 +0200 (CEST) (envelope-from ust) Date: Fri, 30 May 2003 16:41:54 +0200 From: Udo Schweigert To: Dan Langille Message-ID: <20030530144154.GA63441@alaska.cert.siemens.de> References: <3ED71B8E.17289.B89F9ED0@localhost> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <3ED71B8E.17289.B89F9ED0@localhost> X-Operating-System: FreeBSD 4.8-STABLE User-Agent: Mutt/1.5.4i cc: ports@freebsd.org Subject: Re: how do I not strip the binaries? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 May 2003 14:42:08 -0000 On Fri, May 30, 2003 at 08:51:26 -0400, Dan Langille wrote: > According to /usr/ports/Mk/bsd.port.mk: > ## INSTALL_PROGRAM - A command to install binary executables. (By ## default, also strips them, unless ${STRIP} is ## overridden to be the empty string). > > For debugging purposes, I don't want the binaries stripped. I've > tried defining STRIP in various places (command line, /etc/make.conf) > but can't stop the stripping: > > /usr/bin/install -c -o root -g wheel -s -m 754 bacula-sd > /usr/local/sbin/bacula-sd > The STRIP variable only applies if the BSD-make AND ${INSTALL_PROGRAM} is used and wasn't replaced by another definition. Many ported software uses it's own definition of INSTALL_PROGRAM. I guess that you were talking about sysutils/bacula, which has (after the configure-step) the following definition in it's top-level-Makefile: INSTALL_PROGRAM = /usr/bin/install -c -o root -g wheel -s -m 754 The only way to change that, is to patch the Makefile(s). Best regards Udo Schweigert -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 CT IC CERT, Siemens CERT | Fax : +49 89 636 41166 D-81730 München / Germany | email : Udo.Schweigert@siemens.com From owner-freebsd-ports@FreeBSD.ORG Fri May 30 08:48:17 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E90DD37B401; Fri, 30 May 2003 08:48:17 -0700 (PDT) Received: from harik.murex.com (mail.murex.com [194.98.239.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 089A143F93; Fri, 30 May 2003 08:48:17 -0700 (PDT) (envelope-from Mikhail.Teterin@murex.com) Received: from havane.murex.fr (havane.murex.fr [172.21.16.1]) by harik.murex.com with ESMTP id h4UFTVtt003543; Fri, 30 May 2003 17:29:31 +0200 (CEST) Received: from mteterin.us.murex.com (unknown [172.21.130.61]) by havane.murex.fr (Postfix) with ESMTP id 6DD932DB74; Fri, 30 May 2003 17:47:45 +0200 (MEST) From: Mikhail Teterin Organization: Virtual Estates, Inc. To: Christian Kratzer Date: Fri, 30 May 2003 11:47:56 -0400 User-Agent: KMail/1.5.1 References: <200305291512.08284.mi+mx@aldan.algebra.com> <200305292329.31117@aldan> <20030530083600.Q63847@majakka.cksoft.de> In-Reply-To: <20030530083600.Q63847@majakka.cksoft.de> MIME-Version: 1.0 Content-Type: text/plain; charset="koi8-u" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200305301147.56982.Mikhail.Teterin@murex.com> cc: ports@FreeBSD.org cc: kde@FreeBSD.org cc: ume@FreeBSD.org cc: Hajimu UMEMOTO Subject: Re: openldap port(s) X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 May 2003 15:48:18 -0000 On Friday 30 May 2003 02:40 am, Christian Kratzer wrote: = On Thu, 29 May 2003, Mikhail Teterin wrote: = > I'd say, openldap also needs splitting into -client and -server. = > That way KDE-base can easily depend on just the client and have = > the LDAP support built-in (unless I totally miss something out, = > of course). And I'll have the kaddressbook, that can talk to the = > company's Exchange server.. = the openldap21 port already has the hooks to do this. In case we want = this for freebsd we should create a slave port for openldap21-client = and openldap21-server. Yes, this is what I meant. -mi From owner-freebsd-ports@FreeBSD.ORG Fri May 30 14:09:25 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D91B37B401 for ; Fri, 30 May 2003 14:09:25 -0700 (PDT) Received: from ridiculum.woohaw.com (ridiculum.woohaw.com [206.107.23.194]) by mx1.FreeBSD.org (Postfix) with SMTP id AB04C43F3F for ; Fri, 30 May 2003 14:09:24 -0700 (PDT) (envelope-from glitch@ridiculum.woohaw.com) Received: (qmail 28121 invoked by uid 1000); 30 May 2003 21:09:23 -0000 Date: Fri, 30 May 2003 14:09:23 -0700 From: Kevin Glick To: freebsd-ports@freebsd.org Message-ID: <20030530210923.GA7142@ridiculum.woohaw.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i Subject: No updates? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 May 2003 21:09:25 -0000 Just wondering if anybody else is seeing this problem. For the last week, I haven't gotten any new updates to my ports tree. The last update was to www/mod_php4 on 5/23/03, nothing since. I'm using the same ports-supfile as always. I've tried using multiple mirrors (cvsup1.freebsd.org, etc.) and nothing changes. I thought that it may have been a change to the supfile itself, but the most current version (16.1h) didn't change it. I'm using "*default release=cvs tag=." like I always have been. Did that change? Any ideas? Kevin Glick glitch@ridiculum.woohaw.com From owner-freebsd-ports@FreeBSD.ORG Fri May 30 14:15:13 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F52C37B401 for ; Fri, 30 May 2003 14:15:13 -0700 (PDT) Received: from frmug.org (frmug-gw.frmug.org [193.56.58.252]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B65043F93 for ; Fri, 30 May 2003 14:15:07 -0700 (PDT) (envelope-from olive@oban.frmug.org) Received: (from uucp@localhost)h4ULF6F66497 for freebsd-ports@freebsd.org; Fri, 30 May 2003 23:15:06 +0200 (CEST) (envelope-from olive@oban.frmug.org) Received: by weirdos.oban.frmug.org (Postfix, from userid 1002) id 821928C24; Fri, 30 May 2003 23:13:58 +0200 (CEST) Date: Fri, 30 May 2003 23:13:58 +0200 From: Olivier Tharan To: freebsd-ports@freebsd.org Message-ID: <20030530211358.GD37571@weirdos.oban.frmug.org> Mail-Followup-To: freebsd-ports@freebsd.org References: <20030530210923.GA7142@ridiculum.woohaw.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <20030530210923.GA7142@ridiculum.woohaw.com> X-Attribution: Olive Subject: Re: No updates? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 May 2003 21:15:13 -0000 * Kevin Glick (20030530 14:09): > Just wondering if anybody else is seeing this problem. For the last > week, I haven't gotten any new updates to my ports tree. The last The ports tree is frozen to prepare the 5.1 RELEASE. This means no update other than critical. -- olive From owner-freebsd-ports@FreeBSD.ORG Fri May 30 15:41:00 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5471A37B401 for ; Fri, 30 May 2003 15:41:00 -0700 (PDT) Received: from perrin.int.nxad.com (internal.ext.nxad.com [69.1.70.251]) by mx1.FreeBSD.org (Postfix) with ESMTP id DADCC43F3F for ; Fri, 30 May 2003 15:40:59 -0700 (PDT) (envelope-from sean@nxad.com) Received: by perrin.int.nxad.com (Postfix, from userid 1001) id D938621066; Fri, 30 May 2003 15:40:58 -0700 (PDT) Date: Fri, 30 May 2003 15:40:58 -0700 From: Sean Chittenden To: freebsd-ports@freebsd.org Message-ID: <20030530224058.GS62688@perrin.int.nxad.com> References: <20030530210923.GA7142@ridiculum.woohaw.com> <20030530211358.GD37571@weirdos.oban.frmug.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030530211358.GD37571@weirdos.oban.frmug.org> X-PGP-Key: finger seanc@FreeBSD.org X-PGP-Fingerprint: 3849 3760 1AFE 7B17 11A0 83A6 DD99 E31F BC84 B341 X-Web-Homepage: http://sean.chittenden.org/ User-Agent: Mutt/1.5.4i Subject: Re: No updates? X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 May 2003 22:41:00 -0000 > > Just wondering if anybody else is seeing this problem. For the > > last week, I haven't gotten any new updates to my ports tree. The > > last > > The ports tree is frozen to prepare the 5.1 RELEASE. This means no > update other than critical. And what updates have been performed, could have just as easily been performed on HEAD and a RELENG_5_1 branch so that users of FreeBSD != -CURRENT would be getting updates. With bull horn in hand and aimed squarely at portmgr@, *HINT HINT*. :-P -sc -- Sean Chittenden From owner-freebsd-ports@FreeBSD.ORG Fri May 30 16:58:59 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 212A337B401; Fri, 30 May 2003 16:58:59 -0700 (PDT) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AA5643F3F; Fri, 30 May 2003 16:58:58 -0700 (PDT) (envelope-from eischen@pcnet.com) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mail.pcnet.com (8.12.8/8.12.1) with ESMTP id h4UNwvNc012328; Fri, 30 May 2003 19:58:57 -0400 (EDT) Date: Fri, 30 May 2003 19:58:57 -0400 (EDT) From: Daniel Eischen To: ports@freebsd.org Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: threads@freebsd.org Subject: Transition plans: libkse->libpthread X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 30 May 2003 23:58:59 -0000 Sometime shortly after 5.1 release, we'll (hopefully) be installing libpthread as "libpthread" instead of "libkse" by default. There are some things that need to be fixed (signal handling) before this can happen, but we're working on it now. Locally, I install the library as libpthread, but this breaks lots of ports that use autoconf and/or libtool. I still have PTHREAD_LIBS unchanged (set to libc_r), but that doesn't seem to matter. What happens is that some things end up getting linked to both libpthread and libc_r, and compiler wackiness ensues also. To see what happens, try: # cp /usr/lib/libkse.so.1 /usr/lib/libpthread.so.1 # ln -s /usr/lib/libpthread.so.1 /usr/lib/libpthread.so and then rebuilding XFree86-4 and kde3.1. I suspect that we want PTHREAD_LIBS to always be obeyed, so that one could link to libc_r, libthr, or libpthread. Sure, one could use libmap, but applications that are linked to different threading libraries should be able to coexist. Anyway, this is just to give you guys some advance notice of future breakage. -- Dan Eischen From owner-freebsd-ports@FreeBSD.ORG Fri May 30 17:07:43 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04EA937B401; Fri, 30 May 2003 17:07:43 -0700 (PDT) Received: from shumai.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3715343F93; Fri, 30 May 2003 17:07:42 -0700 (PDT) (envelope-from marcus@freebsd.org) Received: from shumai.marcuscom.com (localhost.marcuscom.com [127.0.0.1]) by shumai.marcuscom.com (8.12.9/8.12.9) with ESMTP id h4V07eM3035529; Fri, 30 May 2003 20:07:40 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h4V07d0d035526; Fri, 30 May 2003 20:07:39 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Fri, 30 May 2003 20:07:39 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: Daniel Eischen In-Reply-To: Message-ID: <20030530200515.Y25371@shumai.marcuscom.com> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@freebsd.org cc: threads@freebsd.org Subject: Re: Transition plans: libkse->libpthread X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 31 May 2003 00:07:43 -0000 On Fri, 30 May 2003, Daniel Eischen wrote: > Sometime shortly after 5.1 release, we'll (hopefully) be > installing libpthread as "libpthread" instead of "libkse" > by default. There are some things that need to be fixed > (signal handling) before this can happen, but we're working > on it now. > > Locally, I install the library as libpthread, but this > breaks lots of ports that use autoconf and/or libtool. I > still have PTHREAD_LIBS unchanged (set to libc_r), but > that doesn't seem to matter. What the GNOME people have done is use this little post-patch regex substitution. This has been pretty successful. It may still miss some obscure -lpthread references, though. If you find a problem in a port that uses this, please let me know. @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure Joe -- PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-ports@FreeBSD.ORG Fri May 30 18:15:49 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A65C37B401 for ; Fri, 30 May 2003 18:15:49 -0700 (PDT) Received: from smtp-out.comcast.net (smtp-out.comcast.net [24.153.64.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7C9343F93 for ; Fri, 30 May 2003 18:15:48 -0700 (PDT) (envelope-from apeiron@comcast.net) Received: from [192.168.1.101] (pcp01441258pcs.levtwn01.pa.comcast.net [68.81.231.137]) by mtaout02.icomcast.net (iPlanet Messaging Server 5.2 HotFix 1.16 (built May 14 2003)) with ESMTP id <0HFQ0023L8RYOS@mtaout02.icomcast.net> for ports@freebsd.org; Fri, 30 May 2003 21:14:23 -0400 (EDT) Date: Fri, 30 May 2003 21:15:16 -0400 From: Christopher Nehren To: ports@freebsd.org Message-id: <1054343715.61915.52.camel@prophecy.dyndns.org> Organization: MIME-version: 1.0 X-Mailer: Ximian Evolution 1.2.4 Content-type: multipart/signed; boundary="=-+QKOTHEAhoWCnWhs3UDh"; protocol="application/pgp-signature"; micalg=pgp-sha1 Subject: Mozilla Firebird with GTK+ 2.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: Sat, 31 May 2003 01:15:49 -0000 --=-+QKOTHEAhoWCnWhs3UDh Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I've seen a lot of people asking for this on #firebird on moznet, and I also wanted it for myself, so I went ahead and patched Stijn Hoop's Firebird port to use GTK+ 2.0 as its default toolkit. I can send the tarball to anyone who wants it, or if you already have the port, a couple of patches which will bring you up to the GTK+ 2.0 version. --=-+QKOTHEAhoWCnWhs3UDh Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA+2AIjUdqurN0fljsRAqIXAJ9W5bK+Ah8RiuqrOzFTZM6LvPt3CwCeJulj PYYvMv6U+3tSE9QVOUB9vnA= =w6lL -----END PGP SIGNATURE----- --=-+QKOTHEAhoWCnWhs3UDh-- From owner-freebsd-ports@FreeBSD.ORG Fri May 30 18:55:18 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 257B637B401 for ; Fri, 30 May 2003 18:55:18 -0700 (PDT) Received: from ms-smtp-02.southeast.rr.com (ms-smtp-02.southeast.rr.com [24.93.67.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F26543F93 for ; Fri, 30 May 2003 18:55:17 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h4V1qgZh018458; Fri, 30 May 2003 21:52:43 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h4V1r1V8083055; Fri, 30 May 2003 21:53:02 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Christopher Nehren In-Reply-To: <1054343715.61915.52.camel@prophecy.dyndns.org> References: <1054343715.61915.52.camel@prophecy.dyndns.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-jhQNdkCGdcGYfvdmQbDT" Organization: MarcusCom, Inc. Message-Id: <1054346111.1230.0.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 30 May 2003 21:55:12 -0400 X-Spam-Status: No, hits=-8.7 required=5.0 tests=BAYES_00,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: ports@freebsd.org Subject: Re: Mozilla Firebird with GTK+ 2.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: Sat, 31 May 2003 01:55:18 -0000 --=-jhQNdkCGdcGYfvdmQbDT Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2003-05-30 at 21:15, Christopher Nehren wrote: > I've seen a lot of people asking for this on #firebird on moznet, and I > also wanted it for myself, so I went ahead and patched Stijn Hoop's > Firebird port to use GTK+ 2.0 as its default toolkit. I can send the > tarball to anyone who wants it, or if you already have the port, a > couple of patches which will bring you up to the GTK+ 2.0 version. Please send it to me. Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-jhQNdkCGdcGYfvdmQbDT Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA+2At/b2iPiv4Uz4cRAj8oAKCWoMznG/OAyIOPTXQmEvmtPIwmZQCeJ6KK 4f5kJYRy+FxQtJQDYMOs2FU= =4O/u -----END PGP SIGNATURE----- --=-jhQNdkCGdcGYfvdmQbDT-- From owner-freebsd-ports@FreeBSD.ORG Sat May 31 00:27:45 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4C9D37B401 for ; Sat, 31 May 2003 00:27:45 -0700 (PDT) Received: from ms-smtp-01.southeast.rr.com (ms-smtp-01.southeast.rr.com [24.93.67.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB8DF43F85 for ; Sat, 31 May 2003 00:27:44 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h4V7MPd2003010 for ; Sat, 31 May 2003 03:22:25 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h4V7PTV8094777 for ; Sat, 31 May 2003 03:25:29 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: ports@FreeBSD.org Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-1isjYYtGvoWhVXg5wxk8" Organization: FreeBSD, Inc. Message-Id: <1054366060.65940.5.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 31 May 2003 03:27:41 -0400 X-Spam-Status: No, hits=-7.4 required=5.0 tests=BAYES_00,PGP_SIGNATURE_2 autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) Subject: mozilla-firebird port ready for testing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 07:27:46 -0000 --=-1isjYYtGvoWhVXg5wxk8 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I've just added the mozilla-firebird port to my CVS repo. Those wanting to test it should checkout the ``ports-stable'' module per the instructions at http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi. The commit message is as follows. The port will be committed to the main FreeBSD tree when the freeze lifts and the phoenix --> mozilla-firebird repo copy is done. Joe Add mozilla-firebird, the browser reborn from the ashes of the Phoenix. =20 * Update to 0.6 [1] * Add optional GTK+-2 support [2] * Add [untested] Sparc64 support [3] * Add [untested] Alpha support [4] * Do not compile with -O2 by default. Instead specify -DWITH_OPTIMIZED_CFLAGS to get extra optimizations * Link the Java Plug-in again Submitted by: Stijn Hoop [1] Christopher Nehren [2] (based on) tmm and kris [3] Bernd Walter [4] --=20 Joe Marcus Clarke FreeBSD GNOME Team :: marcus@FreeBSD.org http://www.FreeBSD.org/gnome --=-1isjYYtGvoWhVXg5wxk8 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA+2Flsb2iPiv4Uz4cRArBlAJ471+UMq8sQivmFdN0syZVG4We+iwCggxUI SUZ4O2P1n3JMBe1AM0QvFs8= =R++w -----END PGP SIGNATURE----- --=-1isjYYtGvoWhVXg5wxk8-- From owner-freebsd-ports@FreeBSD.ORG Sat May 31 02:38:32 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EC4337B401; Sat, 31 May 2003 02:38:32 -0700 (PDT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.183]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0463043FB1; Sat, 31 May 2003 02:38:31 -0700 (PDT) (envelope-from lizard@unsane.de) Received: from [212.227.126.162] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 19M2oo-0002Jl-00; Sat, 31 May 2003 11:38:30 +0200 Received: from [217.80.246.119] (helo=unsane.de) by mrelayng.kundenserver.de with asmtp (Exim 3.35 #1) id 19M2on-000091-00; Sat, 31 May 2003 11:38:29 +0200 Received: from localhost (localhost.unsane.de [127.0.0.1]) by unsane.de (Postfix) with ESMTP id 604AD913; Sat, 31 May 2003 11:38:28 +0200 (CEST) Received: by unsane.de (Postfix, from userid 1001) id 0E6ED359; Sat, 31 May 2003 11:38:22 +0200 (CEST) Date: Sat, 31 May 2003 11:38:22 +0200 From: Oliver Braun To: Joe Marcus Clarke Message-ID: <20030531093822.GA1565@unsane.de> Mail-Followup-To: Oliver Braun , Joe Marcus Clarke , ports@FreeBSD.org References: <1054366060.65940.5.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="z6Eq5LdranGa6ru8" Content-Disposition: inline In-Reply-To: <1054366060.65940.5.camel@shumai.marcuscom.com> X-PGP-Key: http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0xEF25B1BA X-PGP-Key-Alternative: finger obraun@FreeBSD.org X-PGP-Fingerprint: 6A3B 042A 732E 17E4 B6E7 3EAF C0B1 6B7D EF25 B1BA X-URL: http://ist.unibw-muenchen.de/People/obraun X-Accept-Language: de en X-Editor: Vim-601 http://www.vim.org/ User-Agent: Mutt/1.5.4i X-Virus-Scanned: by AMaViS snapshot-20020531 cc: ports@FreeBSD.org Subject: Re: mozilla-firebird port ready for testing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 09:38:32 -0000 --z6Eq5LdranGa6ru8 Content-Type: multipart/mixed; boundary="9amGYk9869ThD9tj" Content-Disposition: inline --9amGYk9869ThD9tj Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * Joe Marcus Clarke [2003-05-31 03:27 -0400]: > I've just added the mozilla-firebird port to my CVS repo. # make >> MozillaFirebird-0.6-source.tar.bz2 doesn't seem to exist in /usr/ports/d= istfiles/. >> Attempting to fetch from http://komodo.mozilla.org/pub/firebird/releases= /0.6/. Receiving MozillaFirebird-0.6-source.tar.bz2 (31992582 bytes): 100% (ETA 00= :00) =20 31992582 bytes transferred in 353.3 seconds (88.43 kBps) =3D=3D=3D> Extracting for mozilla-firebird-gtk2-0.6 >> Checksum OK for MozillaFirebird-0.6-source.tar.bz2. Extracting source (this takes a while) ... =3D=3D=3D> Patching for mozilla-firebird-gtk2-0.6 =3D=3D=3D> Applying FreeBSD patches for mozilla-firebird-gtk2-0.6 1 out of 5 hunks failed--saving rejects to gfx/src/gtk/nsFontMetricsXft.cpp= =2Erej >> Patch patch-gfx_src_gtk_nsFontMetricsXft.cpp failed to apply cleanly. >> Patch(es) patch-Double.cpp patch-alpha applied cleanly. *** Error code 1 Fix is attached. Regards, Olli --=20 Oliver Braun :: obraun@unsane.org :: Work =3D> obraun@informatik.unibw-muenchen.de :: FreeBSD =3D> obraun@FreeBSD.org -> http://people.freebsd.org/~obraun/ :: Haskell =3D> obraun@haskell.org -> http://haskell.org/freebsd/ --9amGYk9869ThD9tj Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="mozilla-firebird.diff" Content-Transfer-Encoding: quoted-printable Index: files/patch-gfx_src_gtk_nsFontMetricsXft.cpp =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /space/cvs/marcuscom-cvs/ports-stable/www/mozilla-firebird/files/= patch-gfx_src_gtk_nsFontMetricsXft.cpp,v retrieving revision 1.1 diff -u -r1.1 patch-gfx_src_gtk_nsFontMetricsXft.cpp --- files/patch-gfx_src_gtk_nsFontMetricsXft.cpp 31 May 2003 07:22:19 -0000= 1.1 +++ files/patch-gfx_src_gtk_nsFontMetricsXft.cpp 31 May 2003 09:34:46 -0000 @@ -1,5 +1,5 @@ ---- gfx/src/gtk/nsFontMetricsXft.cpp.orig Tue Mar 25 16:13:01 2003 -+++ gfx/src/gtk/nsFontMetricsXft.cpp Mon Apr 14 10:21:18 2003 +--- gfx/src/gtk/nsFontMetricsXft.cpp.orig Mon May 12 06:03:28 2003 ++++ gfx/src/gtk/nsFontMetricsXft.cpp Sat May 31 11:32:14 2003 @@ -90,6 +90,7 @@ FcPattern *mPattern; FcPattern *mFontName; @@ -34,7 +34,7 @@ =20 // set up our charset mCharset =3D nsnull; -@@ -1529,14 +1531,16 @@ +@@ -1529,7 +1531,7 @@ XftFont * nsFontXft::GetXftFont(void) { @@ -43,13 +43,15 @@ FcPattern *pat =3D FcFontRenderPrepare(0, mPattern, mFontName); if (!pat) return nsnull; +@@ -1548,8 +1550,10 @@ + FcPatternDel(pat, FC_SPACING); =20 mXftFont =3D XftFontOpenPattern(GDK_DISPLAY(), pat); - if (!mXftFont) -+ if (!mXftFont) {=20 ++ if (!mXftFont) { FcPatternDestroy(pat); -+ mNotXft =3D 1; -+ } ++ mNotXft =3D 1; ++ } } =20 return mXftFont; --9amGYk9869ThD9tj-- --z6Eq5LdranGa6ru8 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+2HgOwLFrfe8lsboRAkyfAJ9mSB2tDfEqxjWkCQbP7nrwFEOjwACfV7DN wIC1Jj1y9gOr55/+ONlqyoA= =C4WZ -----END PGP SIGNATURE----- --z6Eq5LdranGa6ru8-- From owner-freebsd-ports@FreeBSD.ORG Sat May 31 07:06:27 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEB8837B401; Sat, 31 May 2003 07:06:27 -0700 (PDT) Received: from smtp01.mrf.mail.rcn.net (smtp01.mrf.mail.rcn.net [207.172.4.60]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2525C43FAF; Sat, 31 May 2003 07:06:27 -0700 (PDT) (envelope-from david@davidsaccess.com) Received: from 209-6-24-41.c3-0.sbo-ubr2.sbo-ubr.ma.cable.rcn.com ([209.6.24.41] helo=dpser) by smtp01.mrf.mail.rcn.net with esmtp (Exim 3.35 #4) id 19M706-0003zF-00; Sat, 31 May 2003 10:06:26 -0400 From: "David Clark" To: Date: Sat, 31 May 2003 09:58:49 -0400 Message-ID: <004901c3277c$c2a902b0$3301a8c0@dpser> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.3416 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Importance: Normal cc: ports@FreeBSD.org Subject: FreeBSD Port: mod_php4-4.3.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 14:06:28 -0000 Dirk, First, let me say that I only know enough *nix to be dangerous, so I apologize if this is a stupid newbie question. I have a virtual account with su access. It has php 4.0.6 installed, and I'm trying to upgrade since they claim it is outside their realm of responsibility. When doing make, I get ===> Extracting for mod_php4-4.3.1,1 >> Checksum OK for php-4.3.1.tar.bz2. ===> mod_php4-4.3.1,1 depends on file: /usr/local/sbin/apxs - found ===> mod_php4-4.3.1,1 depends on shared library: gd.2 - found ===> mod_php4-4.3.1,1 depends on shared library: freetype.9 - not found ===> Verifying install for freetype.9 in /usr/ports/print/freetype2 ==> Skipping freetype2-2.0.5 which is already installed. ===> Returning to build of mod_php4-4.3.1,1 Error: shared library "freetype.9" does not exist *** Error code 1 Stop in /usr/home/usr111074219/mod_php4. *** Error code 1 Stop in /usr/home/usr111074219/mod_php4. *** Error code 1 Stop in /usr/home/usr111074219/mod_php4. *** Error code 1 Stop in /usr/home/usr111074219/mod_php4. *** Error code 1 Stop in /usr/home/usr111074219/mod_php4. *** Error code 1 Stop in /usr/home/usr111074219/mod_php4. Any ideas? dc From owner-freebsd-ports@FreeBSD.ORG Sat May 31 09:05:30 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2979837B401 for ; Sat, 31 May 2003 09:05:30 -0700 (PDT) Received: from mailout11.sul.t-online.com (mailout11.sul.t-online.com [194.25.134.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84EE243FA3 for ; Sat, 31 May 2003 09:05:29 -0700 (PDT) (envelope-from fvdelius@t-online.de) Received: from fwd08.sul.t-online.de by mailout11.sul.t-online.com with smtp id 19M8rI-00067n-00; Sat, 31 May 2003 18:05:28 +0200 Received: from helix.felix.lan (520080346208-0001@[217.81.211.60]) by fwd08.sul.t-online.com with esmtp id 19M8r5-1CGr0CC; Sat, 31 May 2003 18:05:15 +0200 Received: from shuttle.felix.lan ([192.168.1.12] helo=shuttle) by helix.felix.lan with esmtp (Exim 3.35 #1 (Debian)) id 19M8r4-0000He-00 for ; Sat, 31 May 2003 18:05:14 +0200 From: fvdelius@t-online.de (Felix von Delius) To: Date: Sat, 31 May 2003 18:05:50 +0200 User-Agent: KMail/1.5.2 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200305311805.50849.fvdelius@t-online.de> X-Sender: 520080346208-0001@t-dialin.net Subject: Is /usr/ports the same on 4.8-STABLE and 5.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: Sat, 31 May 2003 16:05:30 -0000 Is /usr/ports the same on 4.8-STABLE and 5.0-CURRENT (after using cvsup ports-supfile)? (I'm just running 4.8 here and am curious if there are more or more-current ports for 5.0, so maybe I should install 5.0 on another harddisk) Thanks in advance! -Felix -- public class main Hello { public static void main(String args[]) { System.out.println("Java is for people that like to type a lot."); } } From owner-freebsd-ports@FreeBSD.ORG Sat May 31 09:14:39 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3327C37B401 for ; Sat, 31 May 2003 09:14:39 -0700 (PDT) Received: from thuis.piwebs.com (t-indiv5-84.athome.tue.nl [131.155.241.84]) by mx1.FreeBSD.org (Postfix) with SMTP id 2C5CC43F3F for ; Sat, 31 May 2003 09:14:37 -0700 (PDT) (envelope-from avleeuwen@piwebs.com) Received: (qmail 57225 invoked by uid 85); 31 May 2003 16:16:52 -0000 Received: from avleeuwen@piwebs.com by thuis.piwebs.com by uid 82 with qmail-scanner-1.15 (uvscan: v4.1.60/v4210. spamassassin: 2.x. Clear:SA:0(-4.7/5.0):. Processed in 10.957638 secs); 31 May 2003 16:16:52 -0000 X-Spam-Status: No, hits=-4.7 required=5.0 Received: from unknown (HELO 192.168.0.109) (192.168.0.109) by 0 with SMTP; 31 May 2003 16:16:41 -0000 From: Arjan van Leeuwen To: fvdelius@t-online.de (Felix von Delius), Date: Sat, 31 May 2003 18:14:24 +0200 User-Agent: KMail/1.5.2 References: <200305311805.50849.fvdelius@t-online.de> In-Reply-To: <200305311805.50849.fvdelius@t-online.de> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200305311814.24092.avleeuwen@piwebs.com> Subject: Re: Is /usr/ports the same on 4.8-STABLE and 5.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: Sat, 31 May 2003 16:14:39 -0000 Yes, it's the same. Arjan On Saturday 31 May 2003 18:05, Felix von Delius wrote: > Is /usr/ports the same on 4.8-STABLE and 5.0-CURRENT (after using cvsup > ports-supfile)? > > (I'm just running 4.8 here and am curious if there are more or more-current > ports for 5.0, so maybe I should install 5.0 on another harddisk) > > Thanks in advance! > > -Felix From owner-freebsd-ports@FreeBSD.ORG Sat May 31 09:51:57 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BD8237B401; Sat, 31 May 2003 09:51:57 -0700 (PDT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60D9F43F3F; Sat, 31 May 2003 09:51:56 -0700 (PDT) (envelope-from lizard@unsane.de) Received: from [212.227.126.205] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 19M9aF-0006Rh-00; Sat, 31 May 2003 18:51:55 +0200 Received: from [217.80.246.119] (helo=unsane.de) by mrelayng.kundenserver.de with asmtp (Exim 3.35 #1) id 19M9aF-0003pR-00; Sat, 31 May 2003 18:51:55 +0200 Received: from localhost (localhost.unsane.de [127.0.0.1]) by unsane.de (Postfix) with ESMTP id BD440A0A; Sat, 31 May 2003 18:51:54 +0200 (CEST) Received: by unsane.de (Postfix, from userid 1001) id 8D9D396D; Sat, 31 May 2003 18:51:52 +0200 (CEST) Date: Sat, 31 May 2003 18:51:52 +0200 From: Oliver Braun To: Joe Marcus Clarke Message-ID: <20030531165152.GA54624@unsane.de> Mail-Followup-To: Oliver Braun , Joe Marcus Clarke , ports@FreeBSD.org References: <1054366060.65940.5.camel@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="i9LlY+UWpKt15+FH" Content-Disposition: inline In-Reply-To: <1054366060.65940.5.camel@shumai.marcuscom.com> X-PGP-Key: http://pgpkeys.mit.edu:11371/pks/lookup?op=get&search=0xEF25B1BA X-PGP-Key-Alternative: finger obraun@FreeBSD.org X-PGP-Fingerprint: 6A3B 042A 732E 17E4 B6E7 3EAF C0B1 6B7D EF25 B1BA X-URL: http://ist.unibw-muenchen.de/People/obraun X-Accept-Language: de en X-Editor: Vim-601 http://www.vim.org/ User-Agent: Mutt/1.5.4i X-Virus-Scanned: by AMaViS snapshot-20020531 cc: ports@FreeBSD.org Subject: Re: mozilla-firebird port ready for testing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 16:51:57 -0000 --i9LlY+UWpKt15+FH Content-Type: multipart/mixed; boundary="sdtB3X0nJg68CQEu" Content-Disposition: inline --sdtB3X0nJg68CQEu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable firebird.rb does not work. Fix attached. Regards, Olli --=20 Oliver Braun :: obraun@unsane.org :: Work =3D> obraun@informatik.unibw-muenchen.de :: FreeBSD =3D> obraun@FreeBSD.org -> http://people.freebsd.org/~obraun/ :: Haskell =3D> obraun@haskell.org -> http://haskell.org/freebsd/ --sdtB3X0nJg68CQEu Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="firebird.rb.diff" Content-Transfer-Encoding: quoted-printable Index: firebird.rb =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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: /space/cvs/marcuscom-cvs/ports-stable/www/mozilla-firebird/files/= firebird.rb,v retrieving revision 1.1 diff -u -r1.1 firebird.rb --- firebird.rb 31 May 2003 07:22:19 -0000 1.1 +++ firebird.rb 31 May 2003 16:49:55 -0000 @@ -71,7 +71,7 @@ if NAME !=3D "firebird" $windows =3D io.grep(%r<"Mozilla"\s+"navigator:\s*browser">) else - $windows =3D io.grep(%r) + $windows =3D io.grep(%r) end } =20 --sdtB3X0nJg68CQEu-- --i9LlY+UWpKt15+FH Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+2N2owLFrfe8lsboRAsPcAJ0Z5dhfgeapG7IbsZyQU1UJ1baWsQCguJnv 8zQaVix95MOmvY+XDv+CF5Y= =xZF6 -----END PGP SIGNATURE----- --i9LlY+UWpKt15+FH-- From owner-freebsd-ports@FreeBSD.ORG Sat May 31 10:16:11 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C76437B401; Sat, 31 May 2003 10:16:11 -0700 (PDT) Received: from ms-smtp-02.southeast.rr.com (ms-smtp-02.southeast.rr.com [24.93.67.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7908143F75; Sat, 31 May 2003 10:16:10 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h4VHDaZh025105; Sat, 31 May 2003 13:13:36 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h4VHDdV8000977; Sat, 31 May 2003 13:13:39 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: Oliver Braun In-Reply-To: <20030531093822.GA1565@unsane.de> References: <1054366060.65940.5.camel@shumai.marcuscom.com> <20030531093822.GA1565@unsane.de> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-IINtwx3w+BRWS07qZoBZ" Organization: FreeBSD, Inc. Message-Id: <1054401355.6433.6.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 31 May 2003 13:15:55 -0400 X-Spam-Status: No, hits=-8.7 required=5.0 tests=BAYES_00,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: ports@FreeBSD.org Subject: Re: mozilla-firebird port ready for testing X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 17:16:11 -0000 --=-IINtwx3w+BRWS07qZoBZ Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2003-05-31 at 05:38, Oliver Braun wrote: > * Joe Marcus Clarke [2003-05-31 03:27 -0400]: > > I've just added the mozilla-firebird port to my CVS repo. >=20 > # make > >> MozillaFirebird-0.6-source.tar.bz2 doesn't seem to exist in /usr/ports= /distfiles/. > >> Attempting to fetch from http://komodo.mozilla.org/pub/firebird/releas= es/0.6/. > Receiving MozillaFirebird-0.6-source.tar.bz2 (31992582 bytes): 100% (ETA = 00:00) =20 > 31992582 bytes transferred in 353.3 seconds (88.43 kBps) > =3D=3D=3D> Extracting for mozilla-firebird-gtk2-0.6 > >> Checksum OK for MozillaFirebird-0.6-source.tar.bz2. >=20 > Extracting source (this takes a while) ... >=20 > =3D=3D=3D> Patching for mozilla-firebird-gtk2-0.6 > =3D=3D=3D> Applying FreeBSD patches for mozilla-firebird-gtk2-0.6 > 1 out of 5 hunks failed--saving rejects to gfx/src/gtk/nsFontMetricsXft.c= pp.rej > >> Patch patch-gfx_src_gtk_nsFontMetricsXft.cpp failed to apply cleanly. > >> Patch(es) patch-Double.cpp patch-alpha applied cleanly. > *** Error code 1 >=20 > Fix is attached. Thanks. Figures it was the one patch I through in at the end without testing with the blind assumption, "that code won't be different from Mozilla." Joe >=20 > Regards, > Olli --=20 Joe Marcus Clarke FreeBSD GNOME Team :: marcus@FreeBSD.org http://www.FreeBSD.org/gnome --=-IINtwx3w+BRWS07qZoBZ Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQA+2ONLb2iPiv4Uz4cRAqlSAJsE700xiPOPtTSkgS2Kwxnx5QdkZQCfaRha 35RfMoh54ByRld/YimwHAtg= =vpF3 -----END PGP SIGNATURE----- --=-IINtwx3w+BRWS07qZoBZ-- From owner-freebsd-ports@FreeBSD.ORG Sat May 31 10:22:54 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4157037B401 for ; Sat, 31 May 2003 10:22:54 -0700 (PDT) Received: from h1.liquidneon.com (h1.liquidneon.com [66.252.192.116]) by mx1.FreeBSD.org (Postfix) with SMTP id 00A4143F3F for ; Sat, 31 May 2003 10:22:53 -0700 (PDT) (envelope-from alane@wwweasel.geeksrus.net) Received: (qmail 83320 invoked from network); 31 May 2003 17:22:52 -0000 Received: from 12-211-226-151.client.attbi.com (HELO wwweasel.geeksrus.net) (@12.211.226.151) by h1.liquidneon.com with SMTP; 31 May 2003 17:22:52 -0000 Received: from wwweasel.geeksrus.net (localhost [127.0.0.1]) by wwweasel.geeksrus.net (8.12.9/8.12.9) with ESMTP id h4VHPjYt003286; Sat, 31 May 2003 11:25:45 -0600 (MDT) (envelope-from alane@wwweasel.geeksrus.net) Received: (from alane@localhost) by wwweasel.geeksrus.net (8.12.9/8.12.9/Submit) id h4VHPi4I003282; Sat, 31 May 2003 11:25:44 -0600 (MDT) Date: Sat, 31 May 2003 11:25:44 -0600 From: AlanE To: FreeBSD Ports List , FreeBSD Port Mgr Team Message-ID: <20030531172543.GA2454@wwweasel.geeksrus.net> Mail-Followup-To: FreeBSD Ports List , FreeBSD Port Mgr Team Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-message-flag: Every program expands until it can send mail. Except Exchange Server. User-Agent: Mutt/1.5.4i Subject: abandon all my ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: alane@geeksrus.net List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 17:22:54 -0000 The fellow who invited me to Denver is now kicking me out with 5 days notice (i'm not sure this is even legal, but i won't know until i talk to welfare on monday) and no legal documents. i will no longer be available to maintain ports for a while. I'd appreciate my commit bit being kept active, if that is possible. -- AlanE (Alan Eldridge) Unix/C(++) IT Pro for 23 yrs, likes fixing weird distributed systems bugs. FreeBSD Committer, KDE, KDE-FreeBSD Teams (alane@freebsd.org) (http://www.freebsd.org, http://www.kde.org, http://freebsd.kde.org/) From owner-freebsd-ports@FreeBSD.ORG Sat May 31 13:45:27 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78A5D37B401 for ; Sat, 31 May 2003 13:45:27 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6272843F93 for ; Sat, 31 May 2003 13:45:26 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 61549 invoked from network); 31 May 2003 20:45:21 -0000 Received: from stingray.liwing.de (HELO liwing.de) ([213.70.188.164]) (envelope-sender ) by mail.liwing.de (qmail-ldap-1.03) with SMTP for ; 31 May 2003 20:45:21 -0000 Message-ID: <3ED91461.8080906@liwing.de> Date: Sat, 31 May 2003 22:45:21 +0200 From: Jens Rehsack Organization: LiWing IT-Services User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.2) Gecko/20030208 Netscape/7.02 (Compact - Build 2) X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Clark References: <004901c3277c$c2a902b0$3301a8c0@dpser> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org cc: dirk@FreeBSD.org Subject: Re: FreeBSD Port: mod_php4-4.3.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 20:45:27 -0000 On 5/31/2003 3:58 PM, David Clark wrote: > Dirk, > > First, let me say that I only know enough *nix to be dangerous, so I > apologize if this is a stupid newbie question. > > I have a virtual account with su access. It has php 4.0.6 installed, and > I'm trying to upgrade since they claim it is outside their realm of > responsibility. > > When doing make, I get > > > ===> Extracting for mod_php4-4.3.1,1 >>> Checksum OK for php-4.3.1.tar.bz2. > ===> mod_php4-4.3.1,1 depends on file: /usr/local/sbin/apxs - found > ===> mod_php4-4.3.1,1 depends on shared library: gd.2 - found > ===> mod_php4-4.3.1,1 depends on shared library: freetype.9 - not > found > ===> Verifying install for freetype.9 in /usr/ports/print/freetype2 > ==> Skipping freetype2-2.0.5 which is already installed. > ===> Returning to build of mod_php4-4.3.1,1 > Error: shared library "freetype.9" does not exist > *** Error code 1 This is not a failure in www/mod_php4 port but by user :-) You have to update your ports using cvsup(1) (net/cvsup or net/cvsup-without-gui) and update the freetype port using portupgrade (sysutils/portupgrade). Jens From owner-freebsd-ports@FreeBSD.ORG Sat May 31 15:30:32 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39A4D37B401; Sat, 31 May 2003 15:30:32 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-104-32.dsl.lsan03.pacbell.net [64.169.104.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55E4243F3F; Sat, 31 May 2003 15:30:31 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 1B71566E42; Sat, 31 May 2003 15:30:31 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 0CB16B1B; Sat, 31 May 2003 15:30:31 -0700 (PDT) Date: Sat, 31 May 2003 15:30:31 -0700 From: Kris Kennaway To: FreeBSD Ports List , FreeBSD Port Mgr Team Message-ID: <20030531223030.GA30233@rot13.obsecurity.org> References: <20030531172543.GA2454@wwweasel.geeksrus.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cWoXeonUoKmBZSoM" Content-Disposition: inline In-Reply-To: <20030531172543.GA2454@wwweasel.geeksrus.net> User-Agent: Mutt/1.4.1i Subject: Re: abandon all my ports X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 22:30:32 -0000 --cWoXeonUoKmBZSoM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, May 31, 2003 at 11:25:44AM -0600, AlanE wrote: > The fellow who invited me to Denver is now kicking me out with 5 days > notice (i'm not sure this is even legal, but i won't know until i talk > to welfare on monday) and no legal documents. >=20 > i will no longer be available to maintain ports for a while. I'd appreci= ate > my commit bit being kept active, if that is possible. I'm sorry to hear that, Alan..that really sucks. I hope you can get things sorted out and hurry back to us! Kris --cWoXeonUoKmBZSoM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+2S0GWry0BWjoQKURAupiAJ9LRq37SRoiJKKxgZvm6IvpfwJBHQCgo4/j HTM9be2CLuLVtrRcxZDur3o= =z6au -----END PGP SIGNATURE----- --cWoXeonUoKmBZSoM-- From owner-freebsd-ports@FreeBSD.ORG Sat May 31 16:13:33 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92FAB37B401 for ; Sat, 31 May 2003 16:13:33 -0700 (PDT) Received: from relay9.melbpc.org.au (newglider.melbpc.org.au [203.12.152.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id F345143F93 for ; Sat, 31 May 2003 16:13:31 -0700 (PDT) (envelope-from kpeter@melbpc.org.au) Received: from melbpc.org.au (a1-33.melbpc.org.au [203.12.158.33]) by relay9.melbpc.org.au (8.12.8/8.12.6) with ESMTP id h4VNDSSH057840 for ; Sun, 1 Jun 2003 09:13:28 +1000 (EST) (envelope-from kpeter@melbpc.org.au) Message-ID: <3ED93719.9000708@melbpc.org.au> Date: Sun, 01 Jun 2003 09:13:29 +1000 From: Peter Kostouros Organization: Melbourne PC User Group User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4a) Gecko/20030413 X-Accept-Language: en-us, en MIME-Version: 1.0 To: ports@FreeBSD.ORG Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-RAVMilter-Version: 8.3.4(snapshot 20020706) (relay9) Subject: /usr/local/lib/libiconv.so.3: Undefined symbol "__mb_cur_max" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: kpeter@melbpc.org.au List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 23:13:33 -0000 Hi Whilst trying a gnome2 portupgrade (via portupgrade -RN), I came across a problem building libxml2: ==> Building for libxml2-2.5.1 /usr/libexec/ld-elf.so.1: /usr/local/lib/libiconv.so.3: Undefined symbol "__mb_cur_max" uname -a shows FreeBSD eva.unit.one 5.1-BETA FreeBSD 5.1-BETA #0: Fri May 30 20:54:59 EST 2003 peter@one.two.three:/usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA i386 Can anyone point me in the right direction to resolve this issue? -- Regards Peter As always the organisation disavows knowledge of this email From owner-freebsd-ports@FreeBSD.ORG Sat May 31 16:22:44 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F52637B404 for ; Sat, 31 May 2003 16:22:44 -0700 (PDT) Received: from ms-smtp-03.southeast.rr.com (ms-smtp-03.southeast.rr.com [24.93.67.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2039843FB1 for ; Sat, 31 May 2003 16:22:43 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h4VNL6tL009766; Sat, 31 May 2003 19:21:06 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h4VNKMV8003706; Sat, 31 May 2003 19:20:22 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: kpeter@melbpc.org.au In-Reply-To: <3ED93719.9000708@melbpc.org.au> References: <3ED93719.9000708@melbpc.org.au> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-jBFPdHxeGjRPmCBoand6" Organization: MarcusCom, Inc. Message-Id: <1054423359.7050.21.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 31 May 2003 19:22:40 -0400 X-Spam-Status: No, hits=-8.7 required=5.0 tests=BAYES_00,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: ports@freebsd.org Subject: Re: /usr/local/lib/libiconv.so.3: Undefined symbol "__mb_cur_max" X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 31 May 2003 23:22:44 -0000 --=-jBFPdHxeGjRPmCBoand6 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2003-05-31 at 19:13, Peter Kostouros wrote: > Hi >=20 > Whilst trying a gnome2 portupgrade (via portupgrade -RN), I came across=20 > a problem building libxml2: >=20 > =3D=3D> Building for libxml2-2.5.1 > /usr/libexec/ld-elf.so.1: /usr/local/lib/libiconv.so.3: Undefined symbol=20 > "__mb_cur_max" >=20 > uname -a shows >=20 > FreeBSD eva.unit.one 5.1-BETA FreeBSD 5.1-BETA #0: Fri May 30 20:54:59 ES= T 2003 =20 > peter@one.two.three:/usr/obj/mnt/cvs/FreeBSD/usr/src/sys/EVA i386 >=20 > Can anyone point me in the right direction to resolve this issue? Try doing a forced update of converters/libiconv, and see if that helps. You will also want to do a forced update of devel/gmake as well after updating libiconv. Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-jBFPdHxeGjRPmCBoand6 Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD4DBQA+2Tk/b2iPiv4Uz4cRAnNQAJ9uHODPigVod8l+Sq6qNuRc7nTSOACXcdVi tNHltCryqBnIQv4uCTjZKA== =mToH -----END PGP SIGNATURE----- --=-jBFPdHxeGjRPmCBoand6-- From owner-freebsd-ports@FreeBSD.ORG Sat May 31 16:38:14 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49DFD37B401 for ; Sat, 31 May 2003 16:38:14 -0700 (PDT) Received: from queue.callatg.com (queue.callatg.com [216.174.194.62]) by mx1.FreeBSD.org (Postfix) with SMTP id 7E40443F3F for ; Sat, 31 May 2003 16:38:13 -0700 (PDT) (envelope-from jason_watkins@pobox.com) Received: (qmail 10114 invoked from network); 31 May 2003 23:38:12 -0000 Received: from unknown (HELO boondocks) (64.42.111.66) by queue.atgi.net with SMTP; 31 May 2003 23:38:12 -0000 Message-ID: <014401c327cd$c8491ec0$426f2a40@boondocks> From: "jason watkins" To: Date: Sat, 31 May 2003 16:38:47 -0700 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 cc: ports@FreeBSD.org Subject: FreeBSD Port: mod_php4-4.3.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 23:38:14 -0000 Is there a reason it depends on mysql3x instead of 4x? From owner-freebsd-ports@FreeBSD.ORG Sat May 31 16:55:26 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ADA3537B401; Sat, 31 May 2003 16:55:26 -0700 (PDT) Received: from obsecurity.dyndns.org (adsl-64-169-104-32.dsl.lsan03.pacbell.net [64.169.104.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id D976943F75; Sat, 31 May 2003 16:55:25 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 9D16F66CFB; Sat, 31 May 2003 16:55:25 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 91D63B1C; Sat, 31 May 2003 16:55:25 -0700 (PDT) Date: Sat, 31 May 2003 16:55:25 -0700 From: Kris Kennaway To: ports@FreeBSD.org Message-ID: <20030531235525.GA30911@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="azLHFNyN32YCQGCU" Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: [kris@FreeBSD.org: cvs commit: CVSROOT avail] X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.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, 31 May 2003 23:55:27 -0000 --azLHFNyN32YCQGCU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Thanks for everyone's patience during the release cycle. Kris ----- Forwarded message from Kris Kennaway ----- X-Original-To: kkenn@localhost Delivered-To: kkenn@localhost.obsecurity.org X-Originating-IP: [128.125.38.123] Delivered-To: kris@freebsd.org Delivered-To: ports-committers@freebsd.org From: Kris Kennaway Date: Sat, 31 May 2003 16:52:58 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: CVSROOT avail X-FreeBSD-CVS-Branch: HEAD Precedence: bulk X-Loop: FreeBSD.ORG kris 2003/05/31 16:52:58 PDT FreeBSD ports repository Modified files: . avail=20 Log: Remove lock on ports tree. Ports are now unfrozen, but as usual please avoid large-scale changes until 5.1-R goes out the door. =20 Revision Changes Path 1.205 +1 -1 CVSROOT/avail http://cvsweb.FreeBSD.org/CVSROOT/avail.diff?r1=3D1.204&r2=3D1.205 ----- End forwarded message ----- --azLHFNyN32YCQGCU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+2UDtWry0BWjoQKURAk7xAJ0RIDcSDFwe3NxYB6tBFp5fOQ6SmgCfW2wX Sy1WkilWIIqOgfHWXsLIJBQ= =iufA -----END PGP SIGNATURE----- --azLHFNyN32YCQGCU-- From owner-freebsd-ports@FreeBSD.ORG Sat May 31 16:56:54 2003 Return-Path: Delivered-To: freebsd-ports@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 989F637B401 for ; Sat, 31 May 2003 16:56:54 -0700 (PDT) Received: from mail.liwing.de (mail.liwing.de [213.70.188.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 846F743F85 for ; Sat, 31 May 2003 16:56:53 -0700 (PDT) (envelope-from rehsack@liwing.de) Received: (qmail 6982 invoked from network); 31 May 2003 23:56:49 -0000 Received: from stingray.liwing.de (HELO liwing.de) ([213.70.188.164]) (envelope-sender ) by mail.liwing.de (qmail-ldap-1.03) with SMTP for ; 31 May 2003 23:56:49 -0000 Message-ID: <3ED94141.7080804@liwing.de> Date: Sun, 01 Jun 2003 01:56:49 +0200 From: Jens Rehsack Organization: LiWing IT-Services User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.0.2) Gecko/20030208 Netscape/7.02 (Compact - Build 2) X-Accept-Language: en-us, en MIME-Version: 1.0 To: jason watkins References: <014401c327cd$c8491ec0$426f2a40@boondocks> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: ports@FreeBSD.org cc: dirk@FreeBSD.org Subject: Re: FreeBSD Port: mod_php4-4.3.1 X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 31 May 2003 23:56:54 -0000 On 6/1/2003 1:38 AM, jason watkins wrote: > Is there a reason it depends on mysql3x instead of 4x? Yes.