From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 00:02:01 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CECE37B401; Sun, 8 Jun 2003 00:02:01 -0700 (PDT) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6074643F93; Sun, 8 Jun 2003 00:01:58 -0700 (PDT) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.9/8.12.9) with ESMTP id h5871w9B056141; Sun, 8 Jun 2003 00:01:58 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.9/8.12.9) with ESMTP id h5871vo4020062; Sun, 8 Jun 2003 00:01:57 -0700 (PDT) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.9/8.12.9/Submit) id h5871v9i020061; Sun, 8 Jun 2003 00:01:57 -0700 (PDT) (envelope-from marcel) Date: Sun, 8 Jun 2003 00:01:57 -0700 From: Marcel Moolenaar To: lioux@FreeBSD.org Message-ID: <20030608070157.GA20021@athlon.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="X1bOJ3K7DJ5YkBrT" Content-Disposition: inline User-Agent: Mutt/1.5.4i cc: gnome@FreeBSD.org Subject: gstreamer: fix for ia64 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 07:02:01 -0000 --X1bOJ3K7DJ5YkBrT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Mario, Attached the patch to make gstreamer build on ia64. I haven't had a chance to test this functionally, but it probably takes a while before I get to that. FYI, -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net --X1bOJ3K7DJ5YkBrT Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch-gst::gstarch.h" --- gst/gstarch.h.orig Sat Jun 7 22:41:31 2003 +++ gst/gstarch.h Sat Jun 7 22:47:56 2003 @@ -42,6 +42,22 @@ +/***** IA64 *****/ +#elif defined(HAVE_CPU_IA64) && defined(__GNUC__) +#define GST_ARCH_SET_SP(stackpointer) \ + __asm__("mov sp=$0\n" :: "r"(stackpointer)); + +#define GST_ARCH_CALL(target) \ + __asm__("mov r14=$0;;" \ + "ld8 r15=[r14],8;;" \ + "ld8 gp=[r14];" \ + "mov b7=r15;" \ + "br.call.dptk rp=b7" : : "r"(target)); + +#define GST_ARCH_SETUP_STACK(sp) sp -= 4 + + + /***** PowerPC *****/ #elif defined (HAVE_CPU_PPC) && defined(__GNUC__) --X1bOJ3K7DJ5YkBrT-- From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 00:50:37 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1933237B401; Sun, 8 Jun 2003 00:50:37 -0700 (PDT) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 603C143FAF; Sun, 8 Jun 2003 00:50:36 -0700 (PDT) (envelope-from marcel@xcllnt.net) Received: from itanium.pn.xcllnt.net (itanium.pn.xcllnt.net [192.168.4.5]) by ns1.xcllnt.net (8.12.9/8.12.9) with ESMTP id h587oa9B056361; Sun, 8 Jun 2003 00:50:36 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from itanium.pn.xcllnt.net (localhost [127.0.0.1]) by itanium.pn.xcllnt.net (8.12.9/8.12.9) with ESMTP id h587oZHY068103; Sun, 8 Jun 2003 00:50:35 -0700 (PDT) (envelope-from marcel@itanium.pn.xcllnt.net) Received: (from marcel@localhost) by itanium.pn.xcllnt.net (8.12.9/8.12.9/Submit) id h587oZkE068102; Sun, 8 Jun 2003 00:50:35 -0700 (PDT) Date: Sun, 8 Jun 2003 00:50:35 -0700 From: Marcel Moolenaar To: ports@FreeBSD.org Message-ID: <20030608075035.GB68056@itanium.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.4i cc: gnome@FreeBSD.org Subject: Hermes: fix for ia64 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 07:50:37 -0000 Gang, Attached the necessary configure fodder to get Hermes to build on ia64. There are a lot of *very* suspicious compiler warnings: c_genrc_ao_blit.c:96: warning: cast from pointer to integer of different size c_genrc_ao_blit.c:96: warning: cast to pointer from integer of different size On ia64 this is often enough fatal. I don't worry about that now. FYI, -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 00:52:14 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACE4E37B401; Sun, 8 Jun 2003 00:52:14 -0700 (PDT) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 012D243F85; Sun, 8 Jun 2003 00:52:14 -0700 (PDT) (envelope-from marcel@xcllnt.net) Received: from itanium.pn.xcllnt.net (itanium.pn.xcllnt.net [192.168.4.5]) by ns1.xcllnt.net (8.12.9/8.12.9) with ESMTP id h587qD9B056374; Sun, 8 Jun 2003 00:52:13 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from itanium.pn.xcllnt.net (localhost [127.0.0.1]) by itanium.pn.xcllnt.net (8.12.9/8.12.9) with ESMTP id h587qDHY068110; Sun, 8 Jun 2003 00:52:13 -0700 (PDT) (envelope-from marcel@itanium.pn.xcllnt.net) Received: (from marcel@localhost) by itanium.pn.xcllnt.net (8.12.9/8.12.9/Submit) id h587qDPX068109; Sun, 8 Jun 2003 00:52:13 -0700 (PDT) Date: Sun, 8 Jun 2003 00:52:13 -0700 From: Marcel Moolenaar To: ports@freebsd.org Message-ID: <20030608075213.GC68056@itanium.pn.xcllnt.net> References: <20030608075035.GB68056@itanium.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline In-Reply-To: <20030608075035.GB68056@itanium.pn.xcllnt.net> User-Agent: Mutt/1.5.4i cc: gnome@freebsd.org Subject: Re: Hermes: fix for ia64 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 07:52:15 -0000 --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Jun 08, 2003 at 12:50:35AM -0700, Marcel Moolenaar wrote: > Gang, > > Attached the necessary configure fodder to get Hermes to build on > ia64. Doh... -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="patch-config.sub" --- config.sub.orig Sun Jun 8 00:32:40 2003 +++ config.sub Sun Jun 8 00:30:50 2003 @@ -177,7 +177,7 @@ | mips-* | pyramid-* | tron-* | a29k-* | romp-* | rs6000-* \ | power-* | none-* | 580-* | cray2-* | h8300-* | i960-* \ | xmp-* | ymp-* | hppa-* | hppa1.0-* | hppa1.1-* | hppa2.0-* \ - | hppa2.0w-* \ + | hppa2.0w-* | ia64-* \ | alpha-* | alphaev5-* | alphaev56-* | we32k-* | cydra-* \ | ns16k-* | pn-* | np1-* | xps100-* | clipper-* | orion-* \ | sparclite-* | pdp11-* | sh-* | powerpc-* | powerpcle-* \ --6TrnltStXW4iwmi0-- From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 01:23:48 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBB4237B40C for ; Sun, 8 Jun 2003 01:23:48 -0700 (PDT) Received: from gmx.net (ADSL166-146.advancedsl.com.ar [200.63.166.146]) by mx1.FreeBSD.org (Postfix) with SMTP id 5FE2743FA3 for ; Sun, 8 Jun 2003 01:23:47 -0700 (PDT) (envelope-from emprende@gmx.net) From: "Amalia Lafuente" To: Sender: "Amalia Lafuente" Mime-Version: 1.0 Content-Type: text/plain; charset="ISO-8859-1" Date: Sun, 8 Jun 2003 05:24:59 -0300 Content-Transfer-Encoding: 8bit Message-Id: <20030608082347.5FE2743FA3@mx1.FreeBSD.org> Subject: IUI X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 08:23:49 -0000 aozY From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 02:17:57 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79E6037B401; Sun, 8 Jun 2003 02:17:57 -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 D455743FCB; Sun, 8 Jun 2003 02:17:54 -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 A100D66B9B; Sun, 8 Jun 2003 02:17:54 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 9340BB2F; Sun, 8 Jun 2003 02:17:54 -0700 (PDT) Date: Sun, 8 Jun 2003 02:17:54 -0700 From: Kris Kennaway To: Marcel Moolenaar Message-ID: <20030608091754.GA5186@rot13.obsecurity.org> References: <20030608075035.GB68056@itanium.pn.xcllnt.net> <20030608075213.GC68056@itanium.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LZvS9be/3tNcYl/X" Content-Disposition: inline In-Reply-To: <20030608075213.GC68056@itanium.pn.xcllnt.net> User-Agent: Mutt/1.4.1i cc: ports@freebsd.org cc: gnome@freebsd.org Subject: Re: Hermes: fix for ia64 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 09:17:57 -0000 --LZvS9be/3tNcYl/X Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Jun 08, 2003 at 12:52:13AM -0700, Marcel Moolenaar wrote: > On Sun, Jun 08, 2003 at 12:50:35AM -0700, Marcel Moolenaar wrote: > > Gang, > >=20 > > Attached the necessary configure fodder to get Hermes to build on > > ia64. >=20 > Doh... >=20 > --=20 > Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net Please feel free to commit. No PORTREVISION bump is needed since the port was not previously buildable on ia64. Kris --LZvS9be/3tNcYl/X Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+4v9CWry0BWjoQKURAuzyAJ4poPX+W+R2Fry5IaVig01XjH629ACgi6JQ 4p0l7ZV2jEC+zjEJ39cThKM= =SQZt -----END PGP SIGNATURE----- --LZvS9be/3tNcYl/X-- From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 04:29:31 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7668F37B401 for ; Sun, 8 Jun 2003 04:29:31 -0700 (PDT) Received: from phantasia.campus-sbg.at.eu.org (leviathan.campus-sbg.at.eu.org [195.70.114.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1E7B43FBF for ; Sun, 8 Jun 2003 04:29:28 -0700 (PDT) (envelope-from trackhackman@gmx.net) Received: from [10.13.1.204] (helo=trableboxw2k) by phantasia.campus-sbg.at.eu.org with esmtp (Exim 4.14) id 19OyMV-0007b8-AP for gnome@freebsd.org; Sun, 08 Jun 2003 13:29:23 +0200 From: "MB" To: Date: Sun, 8 Jun 2003 13:29:48 +0200 Message-ID: <002101c32db1$452e2820$cc010d0a@trabledomain.int.campussbg.at.eu.org> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.2616 X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4910.0300 Importance: Normal X-Spam-Score: 0.0 (/) X-Scanner: exiscan for exim4 (http://duncanthrax.net/exiscan/) *19OyMV-0007b8-AP*Fuz1X/8w5vE* Subject: bug while compiling palm/gnomepilot X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 11:29:31 -0000 hi, i am experiencing problems while compiling this package. i'm using fbsd 4.7. my ports are already up-to-date (2h ago). pilot.c:33: applet-widget.h: No such file or directory pilot.c:98: syntax error before `*' pilot.c:99: syntax error before `*' pilot.c: In function `apply_properties_cb': pilot.c:654: invalid type argument of `->' pilot.c:655: invalid type argument of `->' pilot.c: At top level: pilot.c:718: syntax error before `*' pilot.c:1008: syntax error before `*' pilot.c:1044: syntax error before `*' pilot.c:1062: syntax error before `*' pilot.c:1071: syntax error before `*' pilot.c: In function `applet_start_new_applet': pilot.c:1195: warning: assignment makes pointer from integer without a cast pilot.c: In function `pilot_applet_activator': pilot.c:1221: warning: assignment makes pointer from integer without a cast pilot.c:1225: invalid type argument of `->' pilot.c:1236: warning: return makes pointer from integer without a cast gmake[2]: *** [pilot.o] Error 1 gmake[2]: Leaving directory `/usr/ports/palm/gnomepilot/work/gnome-pilot-0.1.71/applet' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/palm/gnomepilot/work/gnome-pilot-0.1.71' gmake: *** [all-recursive-am] Error 2 *** Error code 2 thanks for your help, pls cc me the mail, because i'm not on the mailinglist. greets Mathias From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 09:02:42 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 515C937B401 for ; Sun, 8 Jun 2003 09:02:42 -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 5051243FE1 for ; Sun, 8 Jun 2003 09:02:41 -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 h58G2Z0u003922; Sun, 8 Jun 2003 12:02:35 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h58G2ZhB003919; Sun, 8 Jun 2003 12:02:35 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Sun, 8 Jun 2003 12:02:35 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: MB In-Reply-To: <002101c32db1$452e2820$cc010d0a@trabledomain.int.campussbg.at.eu.org> Message-ID: <20030608120144.M3788@shumai.marcuscom.com> References: <002101c32db1$452e2820$cc010d0a@trabledomain.int.campussbg.at.eu.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: gnome@freebsd.org Subject: Re: bug while compiling palm/gnomepilot X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 16:02:42 -0000 On Sun, 8 Jun 2003, MB wrote: > hi, > > i am experiencing problems while compiling this package. > i'm using fbsd 4.7. > my ports are already up-to-date (2h ago). > > pilot.c:33: applet-widget.h: No such file or directory > pilot.c:98: syntax error before `*' > pilot.c:99: syntax error before `*' > pilot.c: In function `apply_properties_cb': > pilot.c:654: invalid type argument of `->' > pilot.c:655: invalid type argument of `->' > pilot.c: At top level: > pilot.c:718: syntax error before `*' > pilot.c:1008: syntax error before `*' > pilot.c:1044: syntax error before `*' > pilot.c:1062: syntax error before `*' > pilot.c:1071: syntax error before `*' > pilot.c: In function `applet_start_new_applet': > pilot.c:1195: warning: assignment makes pointer from integer without a > cast > pilot.c: In function `pilot_applet_activator': > pilot.c:1221: warning: assignment makes pointer from integer without a > cast > pilot.c:1225: invalid type argument of `->' > pilot.c:1236: warning: return makes pointer from integer without a cast > gmake[2]: *** [pilot.o] Error 1 > gmake[2]: Leaving directory > `/usr/ports/palm/gnomepilot/work/gnome-pilot-0.1.71/applet' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory > `/usr/ports/palm/gnomepilot/work/gnome-pilot-0.1.71' > gmake: *** [all-recursive-am] Error 2 > *** Error code 2 > > thanks for your help, pls cc me the mail, because i'm not on the > mailinglist. This port is broken under the GNOME 2 desktop (use gnomepilot2 instead). However, if you're building this under the GNOME 1 desktop, you need x11/libpanel installed. Joe > > > greets > > Mathias > > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" > > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 09:33:26 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81D2637B401 for ; Sun, 8 Jun 2003 09:33:26 -0700 (PDT) Received: from gicco.homeip.net (dclient80-218-73-148.hispeed.ch [80.218.73.148]) by mx1.FreeBSD.org (Postfix) with ESMTP id 723EE43FBD for ; Sun, 8 Jun 2003 09:33:25 -0700 (PDT) (envelope-from hampi@rootshell.be) Received: from localhost.here (idefix@gicco.homeip.net [127.0.0.1]) by gicco.homeip.net (8.12.8p1/8.12.8) with ESMTP id h58GXOHx001217 for ; Sun, 8 Jun 2003 18:33:24 +0200 (CEST) (envelope-from hampi@rootshell.be) Received: (from idefix@localhost) by localhost.here (8.12.8p1/8.12.8/Submit) id h58GXNaL001216 for freebsd-gnome@freebsd.org; Sun, 8 Jun 2003 18:33:24 +0200 (CEST) X-Authentication-Warning: localhost.here: idefix set sender to hampi@rootshell.be using -f Date: Sun, 8 Jun 2003 18:33:23 +0200 From: Hanspeter Roth To: freebsd-gnome@freebsd.org Message-ID: <20030608163323.GB1114@gicco.homeip.net> Mail-Followup-To: freebsd-gnome@freebsd.org References: <20030529211335.GA1362@gicco.homeip.net> <1054243227.317.58.camel@gyros> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1054243227.317.58.camel@gyros> User-Agent: Mutt/1.4.1i Subject: xmms & esd X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: freebsd-gnome@freebsd.org List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 16:33:26 -0000 On May 29 at 17:20, Joe Marcus Clarke spoke: > On Thu, 2003-05-29 at 17:13, Hanspeter Roth wrote: > > Hello, > > > > I started vumeter and played something with xmms, but vumeter wasn't > > showing anything. > > Make sure you're outputing sound through esd in xmms. It works fine for > me. I have a port xmms-esound-gnome-1.2.7_3 installed on one host. This port contains the libesdout.so. This port seems to be no more available. I have no idea how it got on this host. But I'd like to install libesdout.so on another host. Where did libesdout.so go? -Hanspeter From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 11:15:57 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE0A137B401 for ; Sun, 8 Jun 2003 11:15:57 -0700 (PDT) Received: from hood.oook.cz (hood.oook.cz [212.27.205.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B43743FB1 for ; Sun, 8 Jun 2003 11:15:54 -0700 (PDT) (envelope-from pav@oook.cz) Received: from hood.oook.cz (localhost.oook.cz [127.0.0.1]) by hood.oook.cz (8.12.9/8.12.9) with ESMTP id h58IG9MK025251 for ; Sun, 8 Jun 2003 20:16:09 +0200 (CEST) (envelope-from pav@oook.cz) Received: (from pav@localhost) by hood.oook.cz (8.12.9/8.12.9/Submit) id h58IG8ee025250 for freebsd-gnome@freebsd.org; Sun, 8 Jun 2003 20:16:08 +0200 (CEST) X-Authentication-Warning: hood.oook.cz: pav set sender to pav@oook.cz using -f From: Pav Lucistnik To: freebsd-gnome@freebsd.org In-Reply-To: <20030608163323.GB1114@gicco.homeip.net> References: <20030529211335.GA1362@gicco.homeip.net> <20030608163323.GB1114@gicco.homeip.net> Content-Type: text/plain Content-Transfer-Encoding: 7bit Message-Id: <1055096168.22133.8.camel@hood.oook.cz> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 08 Jun 2003 20:16:08 +0200 Subject: Re: xmms & esd X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 18:15:58 -0000 V ne, 08. 06. 2003 v 18:33, Hanspeter Roth napsal: > I have a port xmms-esound-gnome-1.2.7_3 installed on one host. This > port contains the libesdout.so. This port seems to be no more > available. I have no idea how it got on this host. > But I'd like to install libesdout.so on another host. Where did > libesdout.so go? It's still there, in multimedia/xmms. Be sure you have audio/esound installed before you build xmms. -- Pav Lucistnik Traffic collapse starts at rumors of snow in Nice (french riviera) according to some of my friends :) -- Will at #angband From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 11:58:48 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D3E837B401 for ; Sun, 8 Jun 2003 11:58:48 -0700 (PDT) Received: from mailout10.sul.t-online.com (mailout10.sul.t-online.com [194.25.134.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C5D943F85 for ; Sun, 8 Jun 2003 11:58:47 -0700 (PDT) (envelope-from Alexander@Leidinger.net) Received: from fwd02.aul.t-online.de by mailout10.sul.t-online.com with smtp id 19P5NN-0001ys-04; Sun, 08 Jun 2003 20:58:45 +0200 Received: from Andro-Beta.Leidinger.net (Gh5mxuZ6ZeZcuW22DvvXrN7qefBFJt2jtZDTBycQnq4MYv6TIvQJ0m@[80.131.122.250]) by fmrl02.sul.t-online.com with esmtp id 19P5NK-29Bzjk0; Sun, 8 Jun 2003 20:58:42 +0200 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) h58IwgoM051580 for ; Sun, 8 Jun 2003 20:58:42 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.9/8.12.9) with SMTP id h58IwftH008479 for ; Sun, 8 Jun 2003 20:58:41 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Sun, 8 Jun 2003 20:58:41 +0200 From: Alexander Leidinger To: gnome@freebsd.org Message-Id: <20030608205841.7f5a4f2b.Alexander@Leidinger.net> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart_Sun__8_Jun_2003_20:58:41_+0200_08ef8a00" X-Seen: false X-ID: Gh5mxuZ6ZeZcuW22DvvXrN7qefBFJt2jtZDTBycQnq4MYv6TIvQJ0m@t-dialin.net Subject: libgda2 autodetecting already installed DBSs (patch) X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 18:58:48 -0000 This is a multi-part message in MIME format. --Multipart_Sun__8_Jun_2003_20:58:41_+0200_08ef8a00 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hi, attached is a patch to let libgda2 autodetect already installed DBSs. I only tested it with MySQL 3.23. What do you think about it? Is there interest to have more DBSs (FreeTDS, MDB, ODBC, SQLite) supported in the same way? Please CC me, I'm not subscribed. Bye, Alexander. -- "One world, one web, one program" -- Microsoft promotional ad "Ein Volk, ein Reich, ein Fuehrer" -- Adolf Hitler http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 --Multipart_Sun__8_Jun_2003_20:58:41_+0200_08ef8a00 Content-Type: text/plain; name="libgda2.diff" Content-Disposition: attachment; filename="libgda2.diff" Content-Transfer-Encoding: 8bit Index: Makefile =================================================================== RCS file: /big/FreeBSD-CVS/ports/databases/libgda2/Makefile,v retrieving revision 1.40 diff -u -u -r1.40 Makefile --- Makefile 1 Jun 2003 00:31:46 -0000 1.40 +++ Makefile 8 Jun 2003 18:53:19 -0000 @@ -7,6 +7,7 @@ PORTNAME= libgda2 PORTVERSION= 0.12.0 +PORTREVISION= 1 CATEGORIES= databases gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/0.12 @@ -34,26 +35,79 @@ MAN1= gda-config-tool.1 MAN5= gda-config.5 -.if defined(WITH_MYSQL) +.include + +.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.10) +WITH_MYSQL3= yes +.endif + +.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.12) +WITH_MYSQL40= yes +.endif + +.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.14) +WITH_MYSQL41= yes +.endif + +.if exists(${LOCALBASE}/lib/libpq.so.3) +WITH_POSTGRES7= yes +.endif + +.if exists(${LOCALBASE}/lib/libpgeasy.so.2) +WITH_POSTGRES72=yes +.endif + +.if exists(${LOCALBASE}/lib/libldap.so.2) +WITH_LDAP=yes +.endif + +.if exists(${LOCALBASE}/firebird/lib/libgds.so.1) +WITH_FIREBIRD= yes +.endif + +.if !defined(WITHOUT_MYSQL3) && defined(WITH_MYSQL3) LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} PLIST_SUB= MYSQL="" -.else +.endif + +.if !defined(WITHOUT_MYSQL40) && defined(WITH_MYSQL40) +LIB_DEPENDS+= mysqlclient.12:${PORTSDIR}/databases/mysql40-client +CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} +PLIST_SUB= MYSQL="" +.endif + +.if !defined(WITHOUT_MYSQL41) && defined(WITH_MYSQL41) +LIB_DEPENDS+= mysqlclient.14:${PORTSDIR}/databases/mysql41-client +CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} +PLIST_SUB= MYSQL="" +.endif + +.if !defined(WITH_MYSQL3) && !defined(WITH_MYSQL40) && !defined(WITH_MYSQL41) +PLIST_SUB+= MYSQL="@comment " CONFIGURE_ARGS+= --without-mysql -PLIST_SUB= MYSQL="@comment " .endif -.if defined(WITH_POSTGRES) +.if !defined(WITHOUT_POSTGRES7) && defined(WITH_POSTGRES7) POSTGRESQL_PORT?= databases/postgresql7 LIB_DEPENDS+= pq.3:${PORTSDIR}/${POSTGRESQL_PORT} CONFIGURE_ARGS+= --with-postgres=${LOCALBASE} PLIST_SUB+= POSTGRES="" -.else -CONFIGURE_ARGS+= --without-postgres +.endif + +.if !defined(WITHOUT_POSTGRES72) && defined(WITH_POSTGRES72) +POSTGRESQL_PORT?= databases/postgresql72 +LIB_DEPENDS+= pqeasy.2:${PORTSDIR}/${POSTGRESQL_PORT} +CONFIGURE_ARGS+= --with-postgres=${LOCALBASE} +PLIST_SUB+= POSTGRES="" +.endif + +.if !defined(WITH_POSTGRES7) && !defined(WITH_POSTGRES72) PLIST_SUB+= POSTGRES="@comment " +CONFIGURE_ARGS+= --without-postgres .endif -.if defined(WITH_LDAP) +.if !defined(WITHOUT_LDAP) && defined(WITH_LDAP) LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap20 CONFIGURE_ARGS+= --with-ldap=${LOCALBASE} PLIST_SUB+= LDAP="" @@ -62,12 +116,30 @@ PLIST_SUB+= LDAP="@comment " .endif +.if !defined(WITHOUT_FIREBIRD) && defined(WITH_FIREBIRD) +LIB_DEPENDS+= gds.1:${PORTSDIR}/databases/firebird +CONFIGURE_ARGS+= --with-firebird=${LOCALBASE}/firebird +PLIST_SUB+= FIREBIRD:="" +.else +CONFIGURE_ARGS+= --without-interbase +PLIST_SUB+= FIREBIRD:="@comment " +.endif + pre-everything:: -.if !defined(WITH_MYSQL) - @${ECHO_MSG} "You can enable support for MySQL databases by defining WITH_MYSQL." +.if !defined(WITH_MYSQL3) + @${ECHO_MSG} "You can enable support for MySQL 3 databases by defining WITH_MYSQL3." +.endif +.if !defined(WITH_MYSQL40) + @${ECHO_MSG} "You can enable support for MySQL 4.0 databases by defining WITH_MYSQL40." +.endif +.if !defined(WITH_MYSQL41) + @${ECHO_MSG} "You can enable support for MySQL 4.1 databases by defining WITH_MYSQL41." +.endif +.if !defined(WITH_POSTGRES7) + @${ECHO_MSG} "You can enable support for Postgres 7.0 databases by defining WITH_POSTGRES7." .endif -.if !defined(WITH_POSTGRES) - @${ECHO_MSG} "You can enable support for Postgres databases by defining WITH_POSTGRES." +.if !defined(WITH_POSTGRES72) + @${ECHO_MSG} "You can enable support for Postgres 7.2 databases by defining WITH_POSTGRES72." .endif .if !defined(WITH_LDAP) @${ECHO_MSG} "You can enable support for LDAP databases by defining WITH_LDAP." @@ -77,4 +149,4 @@ @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure -.include +.include Index: pkg-plist =================================================================== RCS file: /big/FreeBSD-CVS/ports/databases/libgda2/pkg-plist,v retrieving revision 1.23 diff -u -u -r1.23 pkg-plist --- pkg-plist 2 Jun 2003 18:18:02 -0000 1.23 +++ pkg-plist 8 Jun 2003 17:38:58 -0000 @@ -74,6 +74,7 @@ lib/libgdasql.so lib/libgdasql.so.0 lib/libgda/providers/libgda-default.so +%%FIREBIRD%%lib/libgda/providers/libgda-interbase.so %%LDAP%%lib/libgda/providers/libgda-ldap.so %%MYSQL%%lib/libgda/providers/libgda-mysql.so %%POSTGRES%%lib/libgda/providers/libgda-postgres.so --Multipart_Sun__8_Jun_2003_20:58:41_+0200_08ef8a00-- From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 14:51:16 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A439237B401 for ; Sun, 8 Jun 2003 14:51:16 -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 8E25A43FAF for ; Sun, 8 Jun 2003 14:51:15 -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 h58Lp90u005904; Sun, 8 Jun 2003 17:51:09 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h58Lp82Q005901; Sun, 8 Jun 2003 17:51:09 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Sun, 8 Jun 2003 17:51:08 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: Alexander Leidinger In-Reply-To: <20030608205841.7f5a4f2b.Alexander@Leidinger.net> Message-ID: <20030608175012.Y5841@shumai.marcuscom.com> References: <20030608205841.7f5a4f2b.Alexander@Leidinger.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: gnome@freebsd.org Subject: Re: libgda2 autodetecting already installed DBSs (patch) X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 21:51:16 -0000 On Sun, 8 Jun 2003, Alexander Leidinger wrote: > Hi, > > attached is a patch to let libgda2 autodetect already installed DBSs. I > only tested it with MySQL 3.23. What do you think about it? > > Is there interest to have more DBSs (FreeTDS, MDB, ODBC, SQLite) > supported in the same way? No complaints from me. Note, ODBC support may be broken until the ODBC port is updated. > > Please CC me, I'm not subscribed. This looks nice, Alexander. I'll commit it when I get back from vacation. Joe > > Bye, > Alexander. > > -- > "One world, one web, one program" -- Microsoft promotional ad > "Ein Volk, ein Reich, ein Fuehrer" -- Adolf Hitler > > http://www.Leidinger.net Alexander @ Leidinger.net > GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 15:14:24 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C05E37B401 for ; Sun, 8 Jun 2003 15:14:24 -0700 (PDT) Received: from gicco.homeip.net (dclient80-218-73-148.hispeed.ch [80.218.73.148]) by mx1.FreeBSD.org (Postfix) with ESMTP id 418BA43FA3 for ; Sun, 8 Jun 2003 15:14:23 -0700 (PDT) (envelope-from hampi@rootshell.be) Received: from localhost.here (idefix@gicco.homeip.net [127.0.0.1]) by gicco.homeip.net (8.12.8p1/8.12.8) with ESMTP id h58MELud020645 for ; Mon, 9 Jun 2003 00:14:22 +0200 (CEST) (envelope-from hampi@rootshell.be) Received: (from idefix@localhost) by localhost.here (8.12.8p1/8.12.8/Submit) id h58MEL7C020644 for freebsd-gnome@freebsd.org; Mon, 9 Jun 2003 00:14:21 +0200 (CEST) X-Authentication-Warning: localhost.here: idefix set sender to hampi@rootshell.be using -f Date: Mon, 9 Jun 2003 00:14:21 +0200 From: Hanspeter Roth To: freebsd-gnome@freebsd.org Message-ID: <20030608221421.GA20542@gicco.homeip.net> Mail-Followup-To: freebsd-gnome@freebsd.org References: <20030529211335.GA1362@gicco.homeip.net> <20030608163323.GB1114@gicco.homeip.net> <1055096168.22133.8.camel@hood.oook.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1055096168.22133.8.camel@hood.oook.cz> User-Agent: Mutt/1.4.1i Subject: Re: xmms & esd X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: freebsd-gnome@freebsd.org List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 22:14:24 -0000 On Jun 08 at 20:16, Pav Lucistnik spoke: > V ne, 08. 06. 2003 v 18:33, Hanspeter Roth napsal: > > > I have a port xmms-esound-gnome-1.2.7_3 installed on one host. This > > port contains the libesdout.so. This port seems to be no more > > available. I have no idea how it got on this host. > > But I'd like to install libesdout.so on another host. Where did > > libesdout.so go? > > It's still there, in multimedia/xmms. Be sure you have audio/esound > installed before you build xmms. Aha. The multimedia ports tree was missing. Now I found the xmms port! Now libesdout.so was created. Thanks. -Hanspeter From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 16:25:55 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4861037B401 for ; Sun, 8 Jun 2003 16:25:55 -0700 (PDT) Received: from mail024.syd.optusnet.com.au (mail024.syd.optusnet.com.au [210.49.20.148]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1160443FCB for ; Sun, 8 Jun 2003 16:25:54 -0700 (PDT) (envelope-from chrisreay1@optusnet.com.au) Received: from chrisw2k1 (c18728.belrs1.nsw.optusnet.com.au [210.49.81.70]) h58NPpt12441 for ; Mon, 9 Jun 2003 09:25:53 +1000 Message-ID: <000901c32e15$2e9dcbb0$0302a8c0@chrisw2k1> From: "Chris Reay" To: Date: Mon, 9 Jun 2003 09:24:59 +1000 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1158 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1165 Subject: xft build error X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 23:25:55 -0000 Hello I am trying to build "py-gtk" which depends on xft-2.1.2. I searched the "Problem Report Database" but found no reference to this error. I get the following errors in xftfreetype.c 705: PictStandardARGB32 - undeclared 708: PictStandardA8 - undeclared 714: PictStandardA8 - undeclared gmake[1]: *** [xftfreetype.lo] Error 1 blah gmake: *** [all] Error 2 *** Error code 2 FreeBSD 4.7-RELEASE-p10 Thank you Chris Reay From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 16:35:13 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79B7237B401 for ; Sun, 8 Jun 2003 16:35:13 -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 8951D43FF3 for ; Sun, 8 Jun 2003 16:35:10 -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 h58NZ30u006529; Sun, 8 Jun 2003 19:35:03 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h58NZ35U006526; Sun, 8 Jun 2003 19:35:03 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Sun, 8 Jun 2003 19:35:03 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: Chris Reay In-Reply-To: <000901c32e15$2e9dcbb0$0302a8c0@chrisw2k1> Message-ID: <20030608193301.B6473@shumai.marcuscom.com> References: <000901c32e15$2e9dcbb0$0302a8c0@chrisw2k1> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: gnome@freebsd.org Subject: Re: xft build error X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 08 Jun 2003 23:35:13 -0000 On Mon, 9 Jun 2003, Chris Reay wrote: > Hello > > I am trying to build "py-gtk" which depends on xft-2.1.2. I searched the > "Problem Report Database" but found no reference to this error. > > I get the following errors in xftfreetype.c > > 705: PictStandardARGB32 - undeclared > 708: PictStandardA8 - undeclared > 714: PictStandardA8 - undeclared > > gmake[1]: *** [xftfreetype.lo] Error 1 > blah > gmake: *** [all] Error 2 > *** Error code 2 > > FreeBSD 4.7-RELEASE-p10 You need XFree86-4.3.0 to build Xft-2.1.2. If you don't want to upgrade X, don't upgrade Xft. Joe > > Thank you > > Chris Reay > > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" > > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 22:09:35 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE39437B404 for ; Sun, 8 Jun 2003 22:09:35 -0700 (PDT) Received: from mail.gascom.ru (mail.gascom.ru [217.17.160.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 3A5E743F3F for ; Sun, 8 Jun 2003 22:09:34 -0700 (PDT) (envelope-from asa@gascom.ru) Received: (qmail 76595 invoked from network); 9 Jun 2003 04:57:15 -0000 Received: from asa.gascom.net.ru (HELO ?192.168.100.29?) (192.168.100.29) by mail.gascom.ru with SMTP; 9 Jun 2003 04:57:15 -0000 From: Sergey Akifyev To: FreeBSD GNOME Users , FreeBSD ports Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-3wjUyvOmGq/AuMCkBwQJ" Organization: JSC Gascom Message-Id: <1055135373.311.5.camel@asa.gascom.net.ru> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 09 Jun 2003 09:09:33 +0400 X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: gswitchit coredumps (doesn't check input strict enough) [PATCH] X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 05:09:36 -0000 --=-3wjUyvOmGq/AuMCkBwQJ Content-Type: multipart/mixed; boundary="=-kXQIe0jV1K3+lbUGkDim" --=-kXQIe0jV1K3+lbUGkDim Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Hello! gswitchit dumps core when parsing my Xkb configuration. I traced the bug with GDB, and fixed this issue. Patch is attached. --=20 regards, Sergey Akifyev JSC Gascom PGP key available from: ftp://ftp.gascom.ru/pub/PGP-keys/asa.txt --=-kXQIe0jV1K3+lbUGkDim-- --=-3wjUyvOmGq/AuMCkBwQJ 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+5BaMbu06QwmNwNsRAjTiAJ44UDqfx3UO9HatejQXkK2y1R/zrQCghON1 HWBhGyWxnm4WDsLVF2l5elg= =uWhB -----END PGP SIGNATURE----- --=-3wjUyvOmGq/AuMCkBwQJ-- From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 22:13:52 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFDF437B401 for ; Sun, 8 Jun 2003 22:13:52 -0700 (PDT) Received: from mail.gascom.ru (mail.gascom.ru [217.17.160.2]) by mx1.FreeBSD.org (Postfix) with SMTP id 02AE543F3F for ; Sun, 8 Jun 2003 22:13:51 -0700 (PDT) (envelope-from asa@gascom.ru) Received: (qmail 76803 invoked from network); 9 Jun 2003 05:01:32 -0000 Received: from asa.gascom.net.ru (HELO ?192.168.100.29?) (192.168.100.29) by mail.gascom.ru with SMTP; 9 Jun 2003 05:01:32 -0000 From: Sergey Akifyev To: FreeBSD GNOME Users In-Reply-To: <1055135373.311.5.camel@asa.gascom.net.ru> References: <1055135373.311.5.camel@asa.gascom.net.ru> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-88ITa06oKXTdlTwKv5e9" Organization: JSC Gascom Message-Id: <1055135629.311.10.camel@asa.gascom.net.ru> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 09 Jun 2003 09:13:49 +0400 cc: FreeBSD ports Subject: Re: gswitchit coredumps (doesn't check input strict enough) [PATCH] X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 05:13:53 -0000 --=-88ITa06oKXTdlTwKv5e9 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2003-06-09 at 09:09, Sergey Akifyev wrote: > Patch is attached. Shit happens! ENOATTACH :) ftp://ftp.gascom.ru/pub/patches/gswitchit/patch-common-gswitchit_config.c MD5 (patch-common-gswitchit_config.c) =3D 6345ebd32463863da162b710aeb7bda5 --=20 regards, Sergey Akifyev JSC Gascom PGP key available from: ftp://ftp.gascom.ru/pub/PGP-keys/asa.txt --=-88ITa06oKXTdlTwKv5e9 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+5BeNbu06QwmNwNsRAk+AAJ46VhGmfkVeNdgRCGqWsaKV84Fg+gCcDjdW 6jXe1SAtDlgopvZAGWVVJfE= =emAc -----END PGP SIGNATURE----- --=-88ITa06oKXTdlTwKv5e9-- From owner-freebsd-gnome@FreeBSD.ORG Sun Jun 8 23:38:35 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB80837B401; Sun, 8 Jun 2003 23:38:35 -0700 (PDT) Received: from mailout08.sul.t-online.com (mailout08.sul.t-online.com [194.25.134.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE90D43F75; Sun, 8 Jun 2003 23:38:34 -0700 (PDT) (envelope-from Alexander@Leidinger.net) Received: from fwd03.aul.t-online.de by mailout08.sul.t-online.com with smtp id 19PGIb-0000Wf-03; Mon, 09 Jun 2003 08:38:33 +0200 Received: from Andro-Beta.Leidinger.net (S9N+riZDZeH2X3B28aF9gpN0KXdhf1KaI7AB-2zGYooPoitCkmcO8S@[80.131.127.114]) by fmrl03.sul.t-online.com with esmtp id 19PGIb-28rvAO0; Mon, 9 Jun 2003 08:38:33 +0200 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) h596cVoM053459; Mon, 9 Jun 2003 08:38:31 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.9/8.12.9) with SMTP id h596cV1Q015950; Mon, 9 Jun 2003 08:38:31 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Mon, 9 Jun 2003 08:38:31 +0200 From: Alexander Leidinger To: Joe Marcus Clarke Message-Id: <20030609083831.2edb7559.Alexander@Leidinger.net> In-Reply-To: <20030608175012.Y5841@shumai.marcuscom.com> References: <20030608205841.7f5a4f2b.Alexander@Leidinger.net> <20030608175012.Y5841@shumai.marcuscom.com> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Seen: false X-ID: S9N+riZDZeH2X3B28aF9gpN0KXdhf1KaI7AB-2zGYooPoitCkmcO8S@t-dialin.net cc: gnome@freebsd.org Subject: Re: libgda2 autodetecting already installed DBSs (patch) X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 06:38:36 -0000 On Sun, 8 Jun 2003 17:51:08 -0400 (EDT) Joe Marcus Clarke wrote: > > Is there interest to have more DBSs (FreeTDS, MDB, ODBC, SQLite) > > supported in the same way? > > No complaints from me. Note, ODBC support may be broken until the ODBC > port is updated. I would do it the same way I did the MySQL 4, PG and Firebird part of the patch, just by looking at the plist of the DBS and by looking into configure of libgda2. Those with such a DBS installed and interest in libgda2 would have to test it. > > Please CC me, I'm not subscribed. > > This looks nice, Alexander. I'll commit it when I get back from vacation. Committing it myself isn't an option? Bye, Alexander. -- The computer revolution is over. The computers won. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 00:24:38 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 511FB37B401; Mon, 9 Jun 2003 00:24:38 -0700 (PDT) Received: from builder.freebsdmall.com (builder.freebsdmall.com [65.86.180.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA6EB43F93; Mon, 9 Jun 2003 00:24:37 -0700 (PDT) (envelope-from root@builder.freebsdmall.com) Received: by builder.freebsdmall.com (Postfix, from userid 0) id 8125813FA; Mon, 9 Jun 2003 00:24:37 -0700 (PDT) Date: Mon, 9 Jun 2003 00:24:37 -0700 From: Murray Stokely To: gnome@FreeBSD.org, portmgr@FreeBSD.org, re@FreeBSD.org Message-ID: <20030609072437.GC390@freebsdmall.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D Subject: gnome-terminal input weirdness with 5.1-RELEASE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 07:24:38 -0000 When I install gnome from the 5.1-RELEASE ISO, the keyboard input in gnome-terminal is erratic. Often, keypresses result in 3-4 keyboard events being sent. Typing 'uname' for example, will display uuuunnnnammmeeee or similar. All keys seem to be effected. The keyboard is fine and is not sticking from the console, or in kterm in the KDE environment. Is this a known issue with the Gnome port for 5.1-RELEASE? Can someone verify for me if gnome-terminal works OK for them from the 5.1-RELEASE ISO? (i386) Thanks, - Murray From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 00:33:31 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D6C837B405 for ; Mon, 9 Jun 2003 00:33:31 -0700 (PDT) Received: from mail.gascom.ru (mail.gascom.ru [217.17.160.2]) by mx1.FreeBSD.org (Postfix) with SMTP id B6B7E43F85 for ; Mon, 9 Jun 2003 00:33:28 -0700 (PDT) (envelope-from asa@gascom.ru) Received: (qmail 82921 invoked from network); 9 Jun 2003 07:21:08 -0000 Received: from asa.gascom.net.ru (HELO ?192.168.100.29?) (192.168.100.29) by mail.gascom.ru with SMTP; 9 Jun 2003 07:21:08 -0000 From: Sergey Akifyev To: Murray Stokely In-Reply-To: <20030609072437.GC390@freebsdmall.com> References: <20030609072437.GC390@freebsdmall.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-X5s9zl+AWJ2d/Y4ygatT" Organization: JSC Gascom Message-Id: <1055144006.379.3.camel@asa.gascom.net.ru> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 09 Jun 2003 11:33:26 +0400 cc: gnome@FreeBSD.org cc: re@FreeBSD.org cc: portmgr@FreeBSD.org Subject: Re: gnome-terminal input weirdness with 5.1-RELEASE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 07:33:31 -0000 --=-X5s9zl+AWJ2d/Y4ygatT Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Mon, 2003-06-09 at 11:24, Murray Stokely wrote: > When I install gnome from the 5.1-RELEASE ISO, the keyboard input in > gnome-terminal is erratic. Often, keypresses result in 3-4 keyboard > events being sent. If you're using gdm2, ensure it is running on free (e.g.no getty) tty. This can be achieved by removing 'vt9' parameter from 'command=3D' line in [server-Standard] section of gdm.conf --=20 regards, Sergey Akifyev JSC Gascom PGP key available from: ftp://ftp.gascom.ru/pub/PGP-keys/asa.txt --=-X5s9zl+AWJ2d/Y4ygatT 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+5DhGbu06QwmNwNsRAqK0AJ43gMDkCToFHVBXoP8ProPngaFOPQCfaEWC 2kCxv8Cm9tXv32bGisKuU8c= =+6WH -----END PGP SIGNATURE----- --=-X5s9zl+AWJ2d/Y4ygatT-- From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 00:43:41 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0D46137B401; Mon, 9 Jun 2003 00:43:41 -0700 (PDT) Received: from builder.freebsdmall.com (builder.freebsdmall.com [65.86.180.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB98843F85; Mon, 9 Jun 2003 00:43:39 -0700 (PDT) (envelope-from root@builder.freebsdmall.com) Received: by builder.freebsdmall.com (Postfix, from userid 0) id 43D4D1398; Mon, 9 Jun 2003 00:43:35 -0700 (PDT) Date: Mon, 9 Jun 2003 00:43:35 -0700 From: Murray Stokely To: Sergey Akifyev Message-ID: <20030609074335.GD390@freebsdmall.com> References: <20030609072437.GC390@freebsdmall.com> <1055144006.379.3.camel@asa.gascom.net.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1055144006.379.3.camel@asa.gascom.net.ru> User-Agent: Mutt/1.4i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D cc: gnome@FreeBSD.org cc: re@FreeBSD.org cc: portmgr@FreeBSD.org Subject: Re: gnome-terminal input weirdness with 5.1-RELEASE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 07:43:41 -0000 > If you're using gdm2, ensure it is running on free (e.g.no getty) tty. > This can be achieved by removing 'vt9' parameter from 'command=' line in > [server-Standard] section of gdm.conf No, I'm not running gdm. I just installed 5.1 on the box, installed gnome from sysinstall, then ran gnome on the first boot into the new system. Broken gnome-terminal was the result. Any confirmation of this bug would be appreciated. We need to make an entry in the errata if others can repeat this. - Murray From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 01:02:33 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 378A437B401; Mon, 9 Jun 2003 01:02:33 -0700 (PDT) Received: from mailout01.sul.t-online.com (mailout01.sul.t-online.com [194.25.134.80]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFA6A43F3F; Mon, 9 Jun 2003 01:02:31 -0700 (PDT) (envelope-from Alexander@Leidinger.net) Received: from fwd07.aul.t-online.de by mailout01.sul.t-online.com with smtp id 19PHbq-0007Bb-04; Mon, 09 Jun 2003 10:02:30 +0200 Received: from Andro-Beta.Leidinger.net (T5cqwEZrgelXnVPIFpoleHfMnSJ0eEyGTLGi4O7gK-Nk2DHu790H8L@[80.131.127.114]) by fmrl07.sul.t-online.com with esmtp id 19PHbh-14r5EG0; Mon, 9 Jun 2003 10:02:21 +0200 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) h5982KoM053661; Mon, 9 Jun 2003 10:02:20 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.9/8.12.9) with SMTP id h5982J1Q033485; Mon, 9 Jun 2003 10:02:19 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Mon, 9 Jun 2003 10:02:19 +0200 From: Alexander Leidinger To: Joe Marcus Clarke Message-Id: <20030609100219.310bcec6.Alexander@Leidinger.net> In-Reply-To: <20030608175012.Y5841@shumai.marcuscom.com> References: <20030608205841.7f5a4f2b.Alexander@Leidinger.net> <20030608175012.Y5841@shumai.marcuscom.com> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart_Mon__9_Jun_2003_10:02:19_+0200_08250600" X-Seen: false X-ID: T5cqwEZrgelXnVPIFpoleHfMnSJ0eEyGTLGi4O7gK-Nk2DHu790H8L@t-dialin.net cc: gnome@freebsd.org Subject: Re: libgda2 autodetecting already installed DBSs (patch) X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 08:02:33 -0000 This is a multi-part message in MIME format. --Multipart_Mon__9_Jun_2003_10:02:19_+0200_08250600 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Sun, 8 Jun 2003 17:51:08 -0400 (EDT) Joe Marcus Clarke wrote: > > Is there interest to have more DBSs (FreeTDS, MDB, ODBC, SQLite) > > supported in the same way? > > No complaints from me. Note, ODBC support may be broken until the ODBC > port is updated. New patch attached: - bugfix in plist (firebird) - should now detect FreeTDS, Sybase (via FreeTDS), MDB, ODBC and SQLITE too As with the last patch, I've only tested the MySQL 3.23 part, it would be nice if someone with one of those other DBSs could test it and report back if it works or not. Bye, Alexander. -- Press every key to continue. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 --Multipart_Mon__9_Jun_2003_10:02:19_+0200_08250600 Content-Type: text/plain; name="libgda2.diff" Content-Disposition: attachment; filename="libgda2.diff" Content-Transfer-Encoding: 8bit Index: Makefile =================================================================== RCS file: /big/FreeBSD-CVS/ports/databases/libgda2/Makefile,v retrieving revision 1.40 diff -u -r1.40 Makefile --- Makefile 1 Jun 2003 00:31:46 -0000 1.40 +++ Makefile 9 Jun 2003 07:42:59 -0000 @@ -7,6 +7,7 @@ PORTNAME= libgda2 PORTVERSION= 0.12.0 +PORTREVISION= 1 CATEGORIES= databases gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/0.12 @@ -34,26 +35,99 @@ MAN1= gda-config-tool.1 MAN5= gda-config.5 -.if defined(WITH_MYSQL) +.include + +.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.10) +WITH_MYSQL3= yes +.endif + +.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.12) +WITH_MYSQL40= yes +.endif + +.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.14) +WITH_MYSQL41= yes +.endif + +.if exists(${LOCALBASE}/lib/libpq.so.3) +WITH_POSTGRES7= yes +.endif + +.if exists(${LOCALBASE}/lib/libpgeasy.so.2) +WITH_POSTGRES72=yes +.endif + +.if exists(${LOCALBASE}/lib/libldap.so.2) +WITH_LDAP=yes +.endif + +.if exists(${LOCALBASE}/firebird/lib/libgds.so.1) +WITH_FIREBIRD= yes +.endif + +.if exists(${LOCALBASE}/lib/libtds.so.2) +WITH_FREETDS= yes +.endif + +.if exists(${LOCALBASE}/lib/libsybdb.so.3) +WITH_SYBASE= yes +.endif + +.if exists(${LOCALBASE}/lib/libmdbsql.so.0) +WITH_MDB= yes +.endif + +.if exists(${LOCALBASE}/lib/libODBC.so.1) +WITH_ODBC= yes +.endif + +.if exists(${LOCALBASE}/lib/libsqlite.so.2) +WITH_SQLITE= yes +.endif + +.if !defined(WITHOUT_MYSQL3) && defined(WITH_MYSQL3) LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} PLIST_SUB= MYSQL="" -.else +.endif + +.if !defined(WITHOUT_MYSQL40) && defined(WITH_MYSQL40) +LIB_DEPENDS+= mysqlclient.12:${PORTSDIR}/databases/mysql40-client +CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} +PLIST_SUB= MYSQL="" +.endif + +.if !defined(WITHOUT_MYSQL41) && defined(WITH_MYSQL41) +LIB_DEPENDS+= mysqlclient.14:${PORTSDIR}/databases/mysql41-client +CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} +PLIST_SUB= MYSQL="" +.endif + +.if !defined(WITH_MYSQL3) && !defined(WITH_MYSQL40) && !defined(WITH_MYSQL41) +PLIST_SUB+= MYSQL="@comment " CONFIGURE_ARGS+= --without-mysql -PLIST_SUB= MYSQL="@comment " .endif -.if defined(WITH_POSTGRES) +.if !defined(WITHOUT_POSTGRES7) && defined(WITH_POSTGRES7) POSTGRESQL_PORT?= databases/postgresql7 LIB_DEPENDS+= pq.3:${PORTSDIR}/${POSTGRESQL_PORT} CONFIGURE_ARGS+= --with-postgres=${LOCALBASE} PLIST_SUB+= POSTGRES="" -.else -CONFIGURE_ARGS+= --without-postgres +.endif + +.if !defined(WITHOUT_POSTGRES72) && defined(WITH_POSTGRES72) +POSTGRESQL_PORT?= databases/postgresql72 +LIB_DEPENDS+= pqeasy.2:${PORTSDIR}/${POSTGRESQL_PORT} +CONFIGURE_ARGS+= --with-postgres=${LOCALBASE} +PLIST_SUB+= POSTGRES="" +.endif + +.if !defined(WITH_POSTGRES7) && !defined(WITH_POSTGRES72) PLIST_SUB+= POSTGRES="@comment " +CONFIGURE_ARGS+= --without-postgres .endif -.if defined(WITH_LDAP) +.if !defined(WITHOUT_LDAP) && defined(WITH_LDAP) LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap20 CONFIGURE_ARGS+= --with-ldap=${LOCALBASE} PLIST_SUB+= LDAP="" @@ -62,19 +136,98 @@ PLIST_SUB+= LDAP="@comment " .endif +.if !defined(WITHOUT_FIREBIRD) && defined(WITH_FIREBIRD) +LIB_DEPENDS+= gds.1:${PORTSDIR}/databases/firebird +CONFIGURE_ARGS+= --with-firebird=${LOCALBASE}/firebird +PLIST_SUB+= FIREBIRD:="" +.else +CONFIGURE_ARGS+= --without-interbase +PLIST_SUB+= FIREBIRD:="@comment " +.endif + +.if !defined(WITHOUT_FREETDS) && defined(WITH_FREETDS) +LIB_DEPENDS+= tds.2:${PORTSDIR}/databases/freetds +CONFIGURE_ARGS+= --with-tds=${LOCALBASE} +PLIST_SUB+= FREETDS:="" +.else +CONFIGURE_ARGS+= --without-tds +PLIST_SUB+= FREETDS:="@comment " +.endif + +.if !defined(WITHOUT_SYBASE) && defined(WITH_SYBASE) +LIB_DEPENDS+= sybdb.3:${PORTSDIR}/databases/freetds +CONFIGURE_ARGS+= --with-sybase=${LOCALBASE} +PLIST_SUB+= SYBASE:="" +.else +CONFIGURE_ARGS+= --without-sybase +PLIST_SUB+= SYBASE:="@comment " +.endif + +.if !defined(WITHOUT_MDB) && defined(WITH_MDB) +LIB_DEPENDS+= mdbsql.0:${PORTSDIR}/databases/mdbtools +CONFIGURE_ARGS+= --with-mdb=${LOCALBASE} +PLIST_SUB+= MDB:="" +.else +CONFIGURE_ARGS+= --without-mdb +PLIST_SUB+= MDB:="@comment " +.endif + +.if !defined(WITHOUT_ODBC) && defined(WITH_ODBC) +LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC +CONFIGURE_ARGS+= --with-odbc=${LOCALBASE} +PLIST_SUB+= ODBC:="" +.else +CONFIGURE_ARGS+= --without-odbc +PLIST_SUB+= ODBC:="@comment " +.endif + +.if !defined(WITHOUT_SQLITE) && defined(WITH_SQLITE) +LIB_DEPENDS+= sqlite.2:${PORTSDIR}/databases/sqlite +CONFIGURE_ARGS+= --with-sqlite=${LOCALBASE} +PLIST_SUB+= SQLITE:="" +.else +CONFIGURE_ARGS+= --without-sqlite +PLIST_SUB+= SQLITE:="@comment " +.endif + pre-everything:: -.if !defined(WITH_MYSQL) - @${ECHO_MSG} "You can enable support for MySQL databases by defining WITH_MYSQL." +.if !defined(WITH_MYSQL3) + @${ECHO_MSG} "You can enable support for MySQL 3 databases by defining WITH_MYSQL3." .endif -.if !defined(WITH_POSTGRES) - @${ECHO_MSG} "You can enable support for Postgres databases by defining WITH_POSTGRES." +.if !defined(WITH_MYSQL40) + @${ECHO_MSG} "You can enable support for MySQL 4.0 databases by defining WITH_MYSQL40." +.endif +.if !defined(WITH_MYSQL41) + @${ECHO_MSG} "You can enable support for MySQL 4.1 databases by defining WITH_MYSQL41." +.endif +.if !defined(WITH_POSTGRES7) + @${ECHO_MSG} "You can enable support for Postgres 7.0 databases by defining WITH_POSTGRES7." +.endif +.if !defined(WITH_POSTGRES72) + @${ECHO_MSG} "You can enable support for Postgres 7.2 databases by defining WITH_POSTGRES72." .endif .if !defined(WITH_LDAP) @${ECHO_MSG} "You can enable support for LDAP databases by defining WITH_LDAP." .endif +.if !defined(WITH_FREETDS) + @${ECHO_MSG} "You can enable support for TDS databases by defining WITH_FREETDS." +.endif +.if !defined(WITH_SYBASE) + @${ECHO_MSG} "You can enable support for Sybase databases by defining WITH_SYBASE." +.endif +.if !defined(WITH_MDB) + @${ECHO_MSG} "You can enable support for MDB databases by defining WITH_MDB." +.endif +.if !defined(WITH_ODBC) + @${ECHO_MSG} "You can enable support for ODBC databases by defining WITH_ODBC." +.endif +.if !defined(WITH_SQLITE) + @${ECHO_MSG} "You can enable support for SQLITE databases by defining WITH_SQLITE." +.endif + post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure -.include +.include Index: pkg-plist =================================================================== RCS file: /big/FreeBSD-CVS/ports/databases/libgda2/pkg-plist,v retrieving revision 1.23 diff -u -r1.23 pkg-plist --- pkg-plist 2 Jun 2003 18:18:02 -0000 1.23 +++ pkg-plist 9 Jun 2003 07:45:58 -0000 @@ -74,9 +74,15 @@ lib/libgdasql.so lib/libgdasql.so.0 lib/libgda/providers/libgda-default.so +%%FIREBIRD%%lib/libgda/providers/libgda-firebird.so +%%FREETDS%%lib/libgda/providers/libgda-freetds.so %%LDAP%%lib/libgda/providers/libgda-ldap.so +%%MDB%%lib/libgda/providers/libgda-mdb.so %%MYSQL%%lib/libgda/providers/libgda-mysql.so +%%ODBC%%lib/libgda/providers/libgda-odbc.so %%POSTGRES%%lib/libgda/providers/libgda-postgres.so +%%SYBASE%%lib/libgda/providers/libgda-sybase.so +%%SQLITE%%lib/libgda/providers/libgda-sqlite.so libdata/pkgconfig/libgda.pc share/doc/libgda/architecture.html share/doc/libgda/c689.html @@ -208,8 +214,8 @@ share/locale/uk/LC_MESSAGES/libgda-2.mo share/locale/vi/LC_MESSAGES/libgda-2.mo share/locale/zh_CN/LC_MESSAGES/libgda-2.mo -@dirrm share/gnome/omf/libgda -@dirrm share/gnome/libgda/xml +@dirrm shart/LC_MESSAGES/libgda-2.mo +share/gnome/libgda/xml @dirrm share/gnome/libgda @dirrm lib/libgda/providers @dirrm lib/libgda --Multipart_Mon__9_Jun_2003_10:02:19_+0200_08250600-- From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 05:02:45 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33D8637B401 for ; Mon, 9 Jun 2003 05:02:45 -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 AF8CF43FD7 for ; Mon, 9 Jun 2003 05:02:44 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from rot13.obsecurity.org (rot13.obsecurity.org [10.0.0.5]) by obsecurity.dyndns.org (Postfix) with ESMTP id 70AF266B9B for ; Mon, 9 Jun 2003 05:02:44 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 189E3B65; Mon, 9 Jun 2003 05:02:44 -0700 (PDT) Date: Mon, 9 Jun 2003 05:02:43 -0700 From: Kris Kennaway To: gnome@FreeBSD.org Message-ID: <20030609120243.GA60447@rot13.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7AUc2qLy4jB3hD7Z" Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: pkg-plist problems X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 12:02:45 -0000 --7AUc2qLy4jB3hD7Z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Quite a few gnome ports have problems with their pkg-plist that cause them to leave files behind upon deinstallation. To pick one example: http://bento.freebsd.org/errorlogs/i386-4-latest-logs/gnomespell-0.5.log The full list is here: http://bento.freebsd.org/errorlogs/i386-4-latest-logs/extras.html Can someone please investigate? kris --7AUc2qLy4jB3hD7Z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+5HdiWry0BWjoQKURAkbTAJ9JrZgNVWhHLHcLiBTu49VXzxBVOACgms5Q iW7NUkskm5qZjRNPRar1jdQ= =scMz -----END PGP SIGNATURE----- --7AUc2qLy4jB3hD7Z-- From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 08:03:06 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0041F37B401 for ; Mon, 9 Jun 2003 08:03:05 -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 1605D43FAF for ; Mon, 9 Jun 2003 08:03:05 -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 h59F2w0u030435; Mon, 9 Jun 2003 11:02:58 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h59F2rkT030432; Mon, 9 Jun 2003 11:02:58 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 9 Jun 2003 11:02:53 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: Alexander Leidinger In-Reply-To: <20030609083831.2edb7559.Alexander@Leidinger.net> Message-ID: <20030609110218.D30408@shumai.marcuscom.com> References: <20030608205841.7f5a4f2b.Alexander@Leidinger.net> <20030609083831.2edb7559.Alexander@Leidinger.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: gnome@freebsd.org Subject: Re: libgda2 autodetecting already installed DBSs (patch) X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 15:03:06 -0000 On Mon, 9 Jun 2003, Alexander Leidinger wrote: > On Sun, 8 Jun 2003 17:51:08 -0400 (EDT) > Joe Marcus Clarke wrote: > > > > Is there interest to have more DBSs (FreeTDS, MDB, ODBC, SQLite) > > > supported in the same way? > > > > No complaints from me. Note, ODBC support may be broken until the ODBC > > port is updated. > > I would do it the same way I did the MySQL 4, PG and Firebird part of > the patch, just by looking at the plist of the DBS and by looking into > configure of libgda2. Those with such a DBS installed and interest in > libgda2 would have to test it. > > > > Please CC me, I'm not subscribed. > > > > This looks nice, Alexander. I'll commit it when I get back from vacation. > > Committing it myself isn't an option? It would be, but the gnome-db people just release 0.12.1 of everything, and I want to get everything in one fell swoop. Joe > > Bye, > Alexander. > > -- > The computer revolution is over. The computers won. > > http://www.Leidinger.net Alexander @ Leidinger.net > GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 > > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 08:06:33 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACD5F37B401; Mon, 9 Jun 2003 08:06:33 -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 BC4DC43FCB; Mon, 9 Jun 2003 08:06:32 -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 h59F6Q0u030457; Mon, 9 Jun 2003 11:06:26 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h59F6QXA030454; Mon, 9 Jun 2003 11:06:26 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 9 Jun 2003 11:06:26 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: Sergey Akifyev In-Reply-To: <1055135629.311.10.camel@asa.gascom.net.ru> Message-ID: <20030609110543.L30408@shumai.marcuscom.com> References: <1055135373.311.5.camel@asa.gascom.net.ru> <1055135629.311.10.camel@asa.gascom.net.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: FreeBSD GNOME Users cc: FreeBSD ports Subject: Re: gswitchit coredumps (doesn't check input strict enough) [PATCH] X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 15:06:34 -0000 On Mon, 9 Jun 2003, Sergey Akifyev wrote: > On Mon, 2003-06-09 at 09:09, Sergey Akifyev wrote: > > Patch is attached. > Shit happens! ENOATTACH :) Actually, this should be fixed in the 2.3.1 version that was just released. I plan to update it tomorrow. Joe > > ftp://ftp.gascom.ru/pub/patches/gswitchit/patch-common-gswitchit_config.c > MD5 (patch-common-gswitchit_config.c) = 6345ebd32463863da162b710aeb7bda5 > -- > regards, > Sergey Akifyev > JSC Gascom > PGP key available from: > ftp://ftp.gascom.ru/pub/PGP-keys/asa.txt > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 08:09:46 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5589B37B401 for ; Mon, 9 Jun 2003 08:09:46 -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 7016E43FBF for ; Mon, 9 Jun 2003 08:09:45 -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 h59F9c0u030478; Mon, 9 Jun 2003 11:09:38 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h59F9cLb030475; Mon, 9 Jun 2003 11:09:38 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 9 Jun 2003 11:09:38 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: Kris Kennaway In-Reply-To: <20030609120243.GA60447@rot13.obsecurity.org> Message-ID: <20030609110810.Y30408@shumai.marcuscom.com> References: <20030609120243.GA60447@rot13.obsecurity.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: gnome@freebsd.org Subject: Re: pkg-plist problems X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 15:09:46 -0000 On Mon, 9 Jun 2003, Kris Kennaway wrote: > Quite a few gnome ports have problems with their pkg-plist that cause > them to leave files behind upon deinstallation. > > To pick one example: > > http://bento.freebsd.org/errorlogs/i386-4-latest-logs/gnomespell-0.5.log This is embarrassing. I don't know how I let this one slip. Those locale dirs should be sans .mo. > > The full list is here: > > http://bento.freebsd.org/errorlogs/i386-4-latest-logs/extras.html > > Can someone please investigate? I'll be sure to give it my full attention when I return. Joe > > kris > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 08:18:34 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0488437B401; Mon, 9 Jun 2003 08:18:34 -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 1AC5443FBF; Mon, 9 Jun 2003 08:18:33 -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 h59FIQ0u030538; Mon, 9 Jun 2003 11:18:26 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h59FIQnm030535; Mon, 9 Jun 2003 11:18:26 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 9 Jun 2003 11:18:26 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: Murray Stokely In-Reply-To: <20030609072437.GC390@freebsdmall.com> Message-ID: <20030609111136.E30408@shumai.marcuscom.com> References: <20030609072437.GC390@freebsdmall.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: gnome@freebsd.org cc: re@freebsd.org cc: portmgr@freebsd.org Subject: Re: gnome-terminal input weirdness with 5.1-RELEASE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 15:18:34 -0000 On Mon, 9 Jun 2003, Murray Stokely wrote: > When I install gnome from the 5.1-RELEASE ISO, the keyboard input in > gnome-terminal is erratic. Often, keypresses result in 3-4 keyboard > events being sent. > > Typing 'uname' for example, will display > > uuuunnnnammmeeee > > or similar. All keys seem to be effected. The keyboard is fine and > is not sticking from the console, or in kterm in the KDE environment. > > Is this a known issue with the Gnome port for 5.1-RELEASE? > > Can someone verify for me if gnome-terminal works OK for them from the > 5.1-RELEASE ISO? (i386) This is the first I've heard about this. I myself won't be able to test the gnometerminal and vte packages until tomorrow. Are the keys actually being input multiple times, or is this simply an echo thing? Do you get any error messages on the console? Joe > > Thanks, > > - Murray > > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" > > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 10:56:47 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62AB037B401; Mon, 9 Jun 2003 10:56:47 -0700 (PDT) Received: from builder.freebsdmall.com (builder.freebsdmall.com [65.86.180.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA1E643FA3; Mon, 9 Jun 2003 10:56:46 -0700 (PDT) (envelope-from root@builder.freebsdmall.com) Received: by builder.freebsdmall.com (Postfix, from userid 0) id 7BF0B13FA; Mon, 9 Jun 2003 10:56:45 -0700 (PDT) Date: Mon, 9 Jun 2003 10:56:45 -0700 From: Murray Stokely To: Joe Marcus Clarke Message-ID: <20030609175645.GI390@freebsdmall.com> References: <20030609072437.GC390@freebsdmall.com> <20030609111136.E30408@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030609111136.E30408@shumai.marcuscom.com> User-Agent: Mutt/1.4i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D cc: gnome@freebsd.org cc: re@freebsd.org cc: portmgr@freebsd.org Subject: Re: gnome-terminal input weirdness with 5.1-RELEASE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 17:56:47 -0000 On Mon, Jun 09, 2003 at 11:18:26AM -0400, Joe Marcus Clarke wrote: > This is the first I've heard about this. I myself won't be able to test > the gnometerminal and vte packages until tomorrow. Are the keys actually > being input multiple times, or is this simply an echo thing? Do you get > any error messages on the console? The keys are actually input multiple times, not just multiple echo. I didn't notice any error messages on the console. - Murray From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 11:01:28 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0C6337B401 for ; Mon, 9 Jun 2003 11:01:27 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DC3243FE3 for ; Mon, 9 Jun 2003 11:01:24 -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 h59I1NUp051953 for ; Mon, 9 Jun 2003 11:01:23 -0700 (PDT) (envelope-from owner-bugmaster@freebsd.org) Received: (from peter@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h59I1NeY051947 for gnome@freebsd.org; Mon, 9 Jun 2003 11:01:23 -0700 (PDT) Date: Mon, 9 Jun 2003 11:01:23 -0700 (PDT) Message-Id: <200306091801.h59I1NeY051947@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: peter set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: gnome@FreeBSD.org Subject: Current problem reports assigned to you X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 18:01:28 -0000 Current FreeBSD problem reports Critical problems Serious problems Non-critical problems S Submitted Tracker Resp. Description ------------------------------------------------------------------------------- o [2002/06/16] ports/39390 gnome Make graphics/imlib not depend upon GTK+ o [2002/07/31] ports/41209 gnome www/mozilla browser serializes DNS lookup a [2002/12/06] ports/46032 gnome net/gabber doesn't work on -CURRENT o [2003/02/05] ports/47992 gnome gtk12 apps don't pick up correct locale r o [2003/06/02] ports/52853 gnome Mozilla 1.4rc1 is out 5 problems total. From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 11:16:50 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53A5C37B404 for ; Mon, 9 Jun 2003 11:16:50 -0700 (PDT) Received: from alef.poprostu.pl (alef.poprostu.pl [195.116.86.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4CB343FD7 for ; Mon, 9 Jun 2003 11:16:48 -0700 (PDT) (envelope-from piero@poprostu.pl) Received: from beth.poprostu.pl (beth.poprostu.pl [213.25.228.183]) by alef.poprostu.pl (8.12.6/8.12.6) with SMTP id h59IiEak011733 for ; Mon, 9 Jun 2003 20:44:14 +0200 (CEST) (envelope-from piero@poprostu.pl) Date: Mon, 9 Jun 2003 20:14:03 +0200 From: Piero To: freebsd-gnome@freebsd.org Message-Id: <20030609201403.37985a75.piero@poprostu.pl> In-Reply-To: <20030609175645.GI390@freebsdmall.com> References: <20030609072437.GC390@freebsdmall.com> <20030609111136.E30408@shumai.marcuscom.com> <20030609175645.GI390@freebsdmall.com> Organization: Poprostu X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Subject: Re: gnome-terminal input weirdness with 5.1-RELEASE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 18:16:50 -0000 W li=B6cie otrzymanym Mon, 9 Jun 2003 10:56:45 -0700 od Murray Stokely : > On Mon, Jun 09, 2003 at 11:18:26AM -0400, Joe Marcus Clarke wrote: > > This is the first I've heard about this. I myself won't be able to > > test the gnometerminal and vte packages until tomorrow. Are the > > keys actually being input multiple times, or is this simply an echo > > thing? Do you get any error messages on the console? >=20 > The keys are actually input multiple times, not just multiple echo. I > didn't notice any error messages on the console. Not sure, whether it the same case, but I use to face similar behaviour under heavier loaded system, when there is any big compiling job with root privileges or so. --- Piero piero@poprostu.pl From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 11:36:08 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E125C37B401 for ; Mon, 9 Jun 2003 11:36:08 -0700 (PDT) Received: from dot.httpcolonslashslash.org (dot.httpcolonslashslash.org [199.201.145.107]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8FF643F75 for ; Mon, 9 Jun 2003 11:36:06 -0700 (PDT) (envelope-from rmohns@downwardspiral.net) Received: from rmohns (helo=localhost) by dot.httpcolonslashslash.org with local-esmtp (Exim 3.36 #1) id 19PRYF-000Awc-00 for gnome@FreeBSD.org; Mon, 09 Jun 2003 14:39:27 -0400 Date: Mon, 9 Jun 2003 14:39:27 -0400 (EDT) From: a blue dreaming To: gnome@FreeBSD.org Message-ID: MIME-Version: 1.0 Content-Type: MULTIPART/MIXED; BOUNDARY="0-527818466-1055183967=:13203" Subject: error in /usr/ports/www/galeon2 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 18:36:09 -0000 This message is in MIME format. The first part should be readable text, while the remaining parts are likely unreadable without MIME-aware tools. Send mail to mime@docserver.cac.washington.edu for more info. --0-527818466-1055183967=:13203 Content-Type: TEXT/PLAIN; charset=US-ASCII hello: as suggested in the error report, i am reporting this problem... robert mohns ################################################ checking for xft... gnome-config: not found gnome-config: not found Package xft was not found in the pkg-config search path. Perhaps you should add the directory containing `xft.pc' to the PKG_CONFIG_PATH environment variable No package 'xft' found configure: error: Library requirements (xft) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them. ===> Script "configure" failed unexpectedly. Please report the problem to gnome@FreeBSD.org [maintainer] and attach the "/usr/ports/www/mozilla/work/mozilla/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/www/mozilla. *** Error code 1 Stop in /usr/ports/www/mozilla-headers. *** Error code 1 Stop in /usr/ports/www/galeon2. dot# ################################################ contents of /var/db/pkg are: ORBit-0.5.17 XFree86-4.2.0_1,1 XFree86-FontServer-4.2.0 XFree86-Server-4.2.1_3 XFree86-clients-4.2.1_1 XFree86-documents-4.2.0 XFree86-font100dpi-4.2.0 XFree86-font75dpi-4.2.0 XFree86-fontCyrillic-4.2.0_4 XFree86-fontDefaultBitmaps-4.2.0 XFree86-fontEncodings-4.2.0 XFree86-fontScalable-4.2.0 XFree86-libraries-4.2.1_1 Xft-2.1_7 bash-2.05b.004 cclient-2001a,1 cvsup-16.1f fontconfig-2.1.92 freetype2-2.1.2 gtk-1.2.10_9 imake-4.2.0_1 ipfw-graph-1.4 libmng-1.0.5 linux_base-7.1_1 mod_throttle-3.1.2 mtr-gtk-0.52 p5-Authen-SASL-2.02 p5-Digest-HMAC-1.01 p5-Digest-MD5-2.22 p5-Digest-SHA1-2.02 p5-File-Spec-0.82 p5-HTML-Parser-3.27 p5-HTML-Tagset-3.03 p5-MIME-Base64-2.18 p5-Mail-SpamAssassin-2.53 p5-Mail-Tools-1.58 p5-Net-1.12,1 p5-Net-DNS-0.34 p5-PodParser-1.21 pine-4.44 wrapper-1.0_2 zip-2.3_1 ################################################ -- do not mistake | Robert Mohns coincidence | rmohns@downwardspiral.net for destiny | http://downwardspiral.net/~rmohns ------------------+---------------------------------------------------- --0-527818466-1055183967=:13203 Content-Type: TEXT/PLAIN; charset=US-ASCII; name="config.log" Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename="config.log" VGhpcyBmaWxlIGNvbnRhaW5zIGFueSBtZXNzYWdlcyBwcm9kdWNlZCBieSBj b21waWxlcnMgd2hpbGUNCnJ1bm5pbmcgY29uZmlndXJlLCB0byBhaWQgZGVi dWdnaW5nIGlmIGNvbmZpZ3VyZSBtYWtlcyBhIG1pc3Rha2UuDQoNCmNvbmZp Z3VyZTo4MzI6IGNoZWNraW5nIGhvc3Qgc3lzdGVtIHR5cGUNCmNvbmZpZ3Vy ZTo4NTM6IGNoZWNraW5nIHRhcmdldCBzeXN0ZW0gdHlwZQ0KY29uZmlndXJl Ojg3MTogY2hlY2tpbmcgYnVpbGQgc3lzdGVtIHR5cGUNCmNvbmZpZ3VyZToy MzAxOiBjaGVja2luZyBmb3IgZ2NjDQpjb25maWd1cmU6MjQxNDogY2hlY2tp bmcgd2hldGhlciB0aGUgQyBjb21waWxlciAoY2MgLU8gLXBpcGUgIC1PMiAp IHdvcmtzDQpjb25maWd1cmU6MjQzMDogY2MgLW8gY29uZnRlc3QgLU8gLXBp cGUgIC1PMiAgIGNvbmZ0ZXN0LmMgIDE+JjUNCmNvbmZpZ3VyZToyNDU2OiBj aGVja2luZyB3aGV0aGVyIHRoZSBDIGNvbXBpbGVyIChjYyAtTyAtcGlwZSAg LU8yICkgaXMgYSBjcm9zcy1jb21waWxlcg0KY29uZmlndXJlOjI0NjE6IGNo ZWNraW5nIHdoZXRoZXIgd2UgYXJlIHVzaW5nIEdOVSBDDQpjb25maWd1cmU6 MjQ3MDogY2MgLUUgY29uZnRlc3QuYw0KY29uZmlndXJlOjI0ODk6IGNoZWNr aW5nIHdoZXRoZXIgY2MgYWNjZXB0cyAtZw0KY29uZmlndXJlOjI1MjU6IGNo ZWNraW5nIGZvciBjKysNCmNvbmZpZ3VyZToyNTU3OiBjaGVja2luZyB3aGV0 aGVyIHRoZSBDKysgY29tcGlsZXIgKGMrKyAgLU8gLXBpcGUgIC1PMiApIHdv cmtzDQpjb25maWd1cmU6MjU3MzogYysrIC1vIGNvbmZ0ZXN0ICAtTyAtcGlw ZSAgLU8yICAgY29uZnRlc3QuQyAgMT4mNQ0KY29uZmlndXJlOjI1OTk6IGNo ZWNraW5nIHdoZXRoZXIgdGhlIEMrKyBjb21waWxlciAoYysrICAtTyAtcGlw ZSAgLU8yICkgaXMgYSBjcm9zcy1jb21waWxlcg0KY29uZmlndXJlOjI2MDQ6 IGNoZWNraW5nIHdoZXRoZXIgd2UgYXJlIHVzaW5nIEdOVSBDKysNCmNvbmZp Z3VyZToyNjEzOiBjKysgLUUgY29uZnRlc3QuQw0KY29uZmlndXJlOjI2MzI6 IGNoZWNraW5nIHdoZXRoZXIgYysrIGFjY2VwdHMgLWcNCmNvbmZpZ3VyZToy NjY2OiBjaGVja2luZyBmb3IgcmFubGliDQpjb25maWd1cmU6MjY5ODogY2hl Y2tpbmcgZm9yIGFzDQpjb25maWd1cmU6MjczOTogY2hlY2tpbmcgZm9yIGFy DQpjb25maWd1cmU6Mjc4MDogY2hlY2tpbmcgZm9yIGxkDQpjb25maWd1cmU6 MjgyMTogY2hlY2tpbmcgZm9yIHN0cmlwDQpjb25maWd1cmU6Mjg2MjogY2hl Y2tpbmcgZm9yIGRsbHRvb2wNCmNvbmZpZ3VyZToyOTI3OiBjaGVja2luZyB3 aGV0aGVyIGNjIHVuZGVyc3RhbmRzIC1jIGFuZCAtbyB0b2dldGhlcg0KY29u ZmlndXJlOjI5Mzk6IGNjIC1jIGNvbmZ0ZXN0LmMgLW8gY29uZnRlc3QubyAx PiY1DQpjb25maWd1cmU6Mjk0MDogY2MgLWMgY29uZnRlc3QuYyAtbyBjb25m dGVzdC5vIDE+JjUNCmNvbmZpZ3VyZTozMDA5OiBjaGVja2luZyBob3cgdG8g cnVuIHRoZSBDIHByZXByb2Nlc3Nvcg0KY29uZmlndXJlOjMwMzA6IGNjIC1F ICBjb25mdGVzdC5jID4vZGV2L251bGwgMj5jb25mdGVzdC5vdXQNCmNvbmZp Z3VyZTozMDg5OiBjaGVja2luZyBob3cgdG8gcnVuIHRoZSBDKysgcHJlcHJv Y2Vzc29yDQpjb25maWd1cmU6MzEwNzogYysrIC1FICBjb25mdGVzdC5DID4v ZGV2L251bGwgMj5jb25mdGVzdC5vdXQNCmNvbmZpZ3VyZTozMTQzOiBjaGVj a2luZyBmb3IgYSBCU0QgY29tcGF0aWJsZSBpbnN0YWxsDQpjb25maWd1cmU6 MzE5NjogY2hlY2tpbmcgd2hldGhlciBsbiAtcyB3b3Jrcw0KY29uZmlndXJl OjMyMjE6IGNoZWNraW5nIGZvciBtYXdrDQpjb25maWd1cmU6MzIyMTogY2hl Y2tpbmcgZm9yIGdhd2sNCmNvbmZpZ3VyZTozMjIxOiBjaGVja2luZyBmb3Ig bmF3aw0KY29uZmlndXJlOjMyNTU6IGNoZWNraW5nIGZvciBwZXJsNQ0KY29u ZmlndXJlOjMyOTU6IGNoZWNraW5nIGZvciBtaW5pbXVtIHJlcXVpcmVkIHBl cmwgdmVyc2lvbiA+PSA1LjAwNA0KY29uZmlndXJlOjMzMDU6IGNoZWNraW5n IGZvciBmdWxsIHBlcmwgaW5zdGFsbGF0aW9uDQpjb25maWd1cmU6MzMxODog Y2hlY2tpbmcgZm9yIGRveHlnZW4NCmNvbmZpZ3VyZTozMzU0OiBjaGVja2lu ZyBmb3Igd2hvYW1pDQpjb25maWd1cmU6MzM5MDogY2hlY2tpbmcgZm9yIGF1 dG9jb25mDQpjb25maWd1cmU6MzQyNjogY2hlY2tpbmcgZm9yIHVuemlwDQpj b25maWd1cmU6MzQ2NDogY2hlY2tpbmcgZm9yIHppcA0KY29uZmlndXJlOjM1 MDU6IGNoZWNraW5nIGZvciBtYWtlZGVwZW5kDQpjb25maWd1cmU6MzU0MDog Y2hlY2tpbmcgZm9yIHhhcmdzDQpjb25maWd1cmU6MzU4MTogY2hlY2tpbmcg Zm9yIGdtYWtlDQpjb25maWd1cmU6MzY0MTogY2hlY2tpbmcgZm9yIFgNCmNv bmZpZ3VyZTozOTU1OiBjaGVja2luZyBmb3IgZG5ldF9udG9hIGluIC1sZG5l dA0KY29uZmlndXJlOjM5NzQ6IGNjIC1vIGNvbmZ0ZXN0IC1PIC1waXBlICAt TzIgICBjb25mdGVzdC5jIC1sZG5ldCAgIDE+JjUNCi91c3IvbGliZXhlYy9l bGYvbGQ6IGNhbm5vdCBmaW5kIC1sZG5ldA0KY29uZmlndXJlOiBmYWlsZWQg cHJvZ3JhbSB3YXM6DQojbGluZSAzOTYzICJjb25maWd1cmUiDQojaW5jbHVk ZSAiY29uZmRlZnMuaCINCi8qIE92ZXJyaWRlIGFueSBnY2MyIGludGVybmFs IHByb3RvdHlwZSB0byBhdm9pZCBhbiBlcnJvci4gICovDQovKiBXZSB1c2Ug Y2hhciBiZWNhdXNlIGludCBtaWdodCBtYXRjaCB0aGUgcmV0dXJuIHR5cGUg b2YgYSBnY2MyDQogICAgYnVpbHRpbiBhbmQgdGhlbiBpdHMgYXJndW1lbnQg cHJvdG90eXBlIHdvdWxkIHN0aWxsIGFwcGx5LiAgKi8NCmNoYXIgZG5ldF9u dG9hKCk7DQoNCmludCBtYWluKCkgew0KZG5ldF9udG9hKCkNCjsgcmV0dXJu IDA7IH0NCmNvbmZpZ3VyZTozOTk2OiBjaGVja2luZyBmb3IgZG5ldF9udG9h IGluIC1sZG5ldF9zdHViDQpjb25maWd1cmU6NDAxNTogY2MgLW8gY29uZnRl c3QgLU8gLXBpcGUgIC1PMiAgIGNvbmZ0ZXN0LmMgLWxkbmV0X3N0dWIgICAx PiY1DQovdXNyL2xpYmV4ZWMvZWxmL2xkOiBjYW5ub3QgZmluZCAtbGRuZXRf c3R1Yg0KY29uZmlndXJlOiBmYWlsZWQgcHJvZ3JhbSB3YXM6DQojbGluZSA0 MDA0ICJjb25maWd1cmUiDQojaW5jbHVkZSAiY29uZmRlZnMuaCINCi8qIE92 ZXJyaWRlIGFueSBnY2MyIGludGVybmFsIHByb3RvdHlwZSB0byBhdm9pZCBh biBlcnJvci4gICovDQovKiBXZSB1c2UgY2hhciBiZWNhdXNlIGludCBtaWdo dCBtYXRjaCB0aGUgcmV0dXJuIHR5cGUgb2YgYSBnY2MyDQogICAgYnVpbHRp biBhbmQgdGhlbiBpdHMgYXJndW1lbnQgcHJvdG90eXBlIHdvdWxkIHN0aWxs IGFwcGx5LiAgKi8NCmNoYXIgZG5ldF9udG9hKCk7DQoNCmludCBtYWluKCkg ew0KZG5ldF9udG9hKCkNCjsgcmV0dXJuIDA7IH0NCmNvbmZpZ3VyZTo0MDQ0 OiBjaGVja2luZyBmb3IgZ2V0aG9zdGJ5bmFtZQ0KY29uZmlndXJlOjQwNzI6 IGNjIC1vIGNvbmZ0ZXN0IC1PIC1waXBlICAtTzIgICBjb25mdGVzdC5jICAx PiY1DQpjb25maWd1cmU6NDE0MjogY2hlY2tpbmcgZm9yIGNvbm5lY3QNCmNv bmZpZ3VyZTo0MTcwOiBjYyAtbyBjb25mdGVzdCAtTyAtcGlwZSAgLU8yICAg Y29uZnRlc3QuYyAgMT4mNQ0KY29uZmlndXJlOjQyMzQ6IGNoZWNraW5nIGZv ciByZW1vdmUNCmNvbmZpZ3VyZTo0MjYyOiBjYyAtbyBjb25mdGVzdCAtTyAt cGlwZSAgLU8yICAgY29uZnRlc3QuYyAgMT4mNQ0KY29uZmlndXJlOjQzMjY6 IGNoZWNraW5nIGZvciBzaG1hdA0KY29uZmlndXJlOjQzNTQ6IGNjIC1vIGNv bmZ0ZXN0IC1PIC1waXBlICAtTzIgICBjb25mdGVzdC5jICAxPiY1DQpjb25m aWd1cmU6NDQyNzogY2hlY2tpbmcgZm9yIEljZUNvbm5lY3Rpb25OdW1iZXIg aW4gLWxJQ0UNCmNvbmZpZ3VyZTo0NDQ2OiBjYyAtbyBjb25mdGVzdCAtTyAt cGlwZSAgLU8yICAgLUwvdXNyL1gxMVI2L2xpYiBjb25mdGVzdC5jIC1sSUNF ICAgMT4mNQ0KY29uZmlndXJlOjQ3MDY6IGNoZWNraW5nIHdoZXRoZXIgbGQg aGFzIGFyY2hpdmUgZXh0cmFjdGlvbiBmbGFncw0KY29uZmlndXJlOjQ3MzA6 IGNjIC1vIGNvbmZ0ZXN0IC1PIC1waXBlICAtTzIgICAtSS91c3IvWDExUjYv aW5jbHVkZSAtV2wsLS13aG9sZS1hcmNoaXZlIGNvbmZ0ZXN0LmMgLVdsLC0t bm8td2hvbGUtYXJjaGl2ZSAxPiY1DQpjb25maWd1cmU6NTcxMjogY2hlY2tp bmcgZm9yIEFOU0kgQyBoZWFkZXIgZmlsZXMNCmNvbmZpZ3VyZTo1NzI1OiBj YyAtRSAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LmMgPi9kZXYv bnVsbCAyPmNvbmZ0ZXN0Lm91dA0KY29uZmlndXJlOjU3OTI6IGNjIC1vIGNv bmZ0ZXN0IC1PIC1waXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5jbHVkZSAg Y29uZnRlc3QuYyAgMT4mNQ0KY29uZmlndXJlOjU4MTY6IGNoZWNraW5nIGZv ciB3b3JraW5nIGNvbnN0DQpjb25maWd1cmU6NTg3MDogY2MgLWMgLU8gLXBp cGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LmMgMT4m NQ0KY29uZmlndXJlOjU4OTE6IGNoZWNraW5nIGZvciBtb2RlX3QNCmNvbmZp Z3VyZTo1OTI0OiBjaGVja2luZyBmb3Igb2ZmX3QNCmNvbmZpZ3VyZTo1OTU3 OiBjaGVja2luZyBmb3IgcGlkX3QNCmNvbmZpZ3VyZTo1OTkwOiBjaGVja2lu ZyBmb3Igc2l6ZV90DQpjb25maWd1cmU6NjAyMzogY2hlY2tpbmcgZm9yIHVp ZF90IGluIHN5cy90eXBlcy5oDQpjb25maWd1cmU6NjA1NzogY2hlY2tpbmcg Zm9yIHN0X2Jsa3NpemUgaW4gc3RydWN0IHN0YXQNCmNvbmZpZ3VyZTo2MDcw OiBjYyAtYyAtTyAtcGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUg Y29uZnRlc3QuYyAxPiY1DQpjb25maWd1cmU6NjA5MTogY2hlY2tpbmcgZm9y IHNpZ2luZm9fdA0KY29uZmlndXJlOjYxMDQ6IGNjIC1jIC1PIC1waXBlICAt TzIgICAtSS91c3IvWDExUjYvaW5jbHVkZSBjb25mdGVzdC5jIDE+JjUNCmNv bmZpZ3VyZTogSW4gZnVuY3Rpb24gYG1haW4nOg0KY29uZmlndXJlOjYxMDA6 IGBzaWdpbmZvX3QnIHVuZGVjbGFyZWQgKGZpcnN0IHVzZSBpbiB0aGlzIGZ1 bmN0aW9uKQ0KY29uZmlndXJlOjYxMDA6IChFYWNoIHVuZGVjbGFyZWQgaWRl bnRpZmllciBpcyByZXBvcnRlZCBvbmx5IG9uY2UNCmNvbmZpZ3VyZTo2MTAw OiBmb3IgZWFjaCBmdW5jdGlvbiBpdCBhcHBlYXJzIGluLikNCmNvbmZpZ3Vy ZTo2MTAwOiBgaW5mbycgdW5kZWNsYXJlZCAoZmlyc3QgdXNlIGluIHRoaXMg ZnVuY3Rpb24pDQpjb25maWd1cmU6IGZhaWxlZCBwcm9ncmFtIHdhczoNCiNs aW5lIDYwOTYgImNvbmZpZ3VyZSINCiNpbmNsdWRlICJjb25mZGVmcy5oIg0K I2RlZmluZSBfUE9TSVhfQ19TT1VSQ0UgMTk5NTA2TA0KICAgICAgICAgICAg ICAgICAgI2luY2x1ZGUgPHNpZ25hbC5oPg0KaW50IG1haW4oKSB7DQpzaWdp bmZvX3QqIGluZm87DQo7IHJldHVybiAwOyB9DQpjb25maWd1cmU6NjEzODog Y2hlY2tpbmcgZm9yIGludDE2X3QNCmNvbmZpZ3VyZTo2MTUxOiBjYyAtYyAt TyAtcGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgY29uZnRlc3Qu YyAxPiY1DQpjb25maWd1cmU6NjE3MzogY2hlY2tpbmcgZm9yIGludDMyX3QN CmNvbmZpZ3VyZTo2MTg2OiBjYyAtYyAtTyAtcGlwZSAgLU8yICAgLUkvdXNy L1gxMVI2L2luY2x1ZGUgY29uZnRlc3QuYyAxPiY1DQpjb25maWd1cmU6NjIw ODogY2hlY2tpbmcgZm9yIGludDY0X3QNCmNvbmZpZ3VyZTo2MjIxOiBjYyAt YyAtTyAtcGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgY29uZnRl c3QuYyAxPiY1DQpjb25maWd1cmU6NjI0MzogY2hlY2tpbmcgZm9yIGludDY0 DQpjb25maWd1cmU6NjI1NjogY2MgLWMgLU8gLXBpcGUgIC1PMiAgIC1JL3Vz ci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LmMgMT4mNQ0KY29uZmlndXJlOiBJ biBmdW5jdGlvbiBgbWFpbic6DQpjb25maWd1cmU6NjI1Mjogc3ludGF4IGVy cm9yIGJlZm9yZSBgZm9vJw0KY29uZmlndXJlOiBmYWlsZWQgcHJvZ3JhbSB3 YXM6DQojbGluZSA2MjQ4ICJjb25maWd1cmUiDQojaW5jbHVkZSAiY29uZmRl ZnMuaCINCiNpbmNsdWRlIDxzdGRpby5oPg0KICAgICAgICAgICAgICAgICAg I2luY2x1ZGUgPHN5cy90eXBlcy5oPg0KaW50IG1haW4oKSB7DQppbnQ2NCBm b28gPSAwOw0KOyByZXR1cm4gMDsgfQ0KY29uZmlndXJlOjYyNzg6IGNoZWNr aW5nIGZvciB1aW50DQpjb25maWd1cmU6NjI5MTogY2MgLWMgLU8gLXBpcGUg IC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LmMgMT4mNQ0K Y29uZmlndXJlOjYzMTM6IGNoZWNraW5nIGZvciB1aW50X3QNCmNvbmZpZ3Vy ZTo2MzI2OiBjYyAtYyAtTyAtcGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2L2lu Y2x1ZGUgY29uZnRlc3QuYyAxPiY1DQpjb25maWd1cmU6IEluIGZ1bmN0aW9u IGBtYWluJzoNCmNvbmZpZ3VyZTo2MzIyOiBzeW50YXggZXJyb3IgYmVmb3Jl IGBmb28nDQpjb25maWd1cmU6IGZhaWxlZCBwcm9ncmFtIHdhczoNCiNsaW5l IDYzMTggImNvbmZpZ3VyZSINCiNpbmNsdWRlICJjb25mZGVmcy5oIg0KI2lu Y2x1ZGUgPHN0ZGlvLmg+DQogICAgICAgICAgICAgICAgICAjaW5jbHVkZSA8 c3lzL3R5cGVzLmg+DQppbnQgbWFpbigpIHsNCnVpbnRfdCBmb28gPSAwOw0K OyByZXR1cm4gMDsgfQ0KY29uZmlndXJlOjYzNDg6IGNoZWNraW5nIGZvciB1 aW50MTZfdA0KY29uZmlndXJlOjYzNjE6IGNjIC1jIC1PIC1waXBlICAtTzIg ICAtSS91c3IvWDExUjYvaW5jbHVkZSBjb25mdGVzdC5jIDE+JjUNCmNvbmZp Z3VyZTo2MzkyOiBjaGVja2luZyBmb3IgdW5hbWUuZG9tYWlubmFtZQ0KY29u ZmlndXJlOjY0MDU6IGMrKyAtYyAgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9Y MTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LkMgMT4mNQ0KY29uZmlndXJlOiBJbiBm dW5jdGlvbiBgaW50IG1haW4oKSc6DQpjb25maWd1cmU6NjQwMTogYHN0cnVj dCB1dHNuYW1lJyBoYXMgbm8gbWVtYmVyIG5hbWVkIGBkb21haW5uYW1lJw0K Y29uZmlndXJlOiBmYWlsZWQgcHJvZ3JhbSB3YXM6DQojbGluZSA2Mzk3ICJj b25maWd1cmUiDQojaW5jbHVkZSAiY29uZmRlZnMuaCINCiNpbmNsdWRlIDxz eXMvdXRzbmFtZS5oPg0KaW50IG1haW4oKSB7DQogc3RydWN0IHV0c25hbWUg KnJlczsgY2hhciAqZG9tYWluOyANCiAgICAgICAgICAgICh2b2lkKXVuYW1l KHJlcyk7ICBpZiAocmVzICE9IDApIHsgZG9tYWluID0gcmVzLT5kb21haW5u YW1lOyB9IA0KOyByZXR1cm4gMDsgfQ0KY29uZmlndXJlOjY0Mjk6IGNoZWNr aW5nIGZvciB1bmFtZS5fX2RvbWFpbm5hbWUNCmNvbmZpZ3VyZTo2NDQyOiBj KysgLWMgIC1PIC1waXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5jbHVkZSBj b25mdGVzdC5DIDE+JjUNCmNvbmZpZ3VyZTogSW4gZnVuY3Rpb24gYGludCBt YWluKCknOg0KY29uZmlndXJlOjY0Mzg6IGBzdHJ1Y3QgdXRzbmFtZScgaGFz IG5vIG1lbWJlciBuYW1lZCBgX19kb21haW5uYW1lJw0KY29uZmlndXJlOiBm YWlsZWQgcHJvZ3JhbSB3YXM6DQojbGluZSA2NDM0ICJjb25maWd1cmUiDQoj aW5jbHVkZSAiY29uZmRlZnMuaCINCiNpbmNsdWRlIDxzeXMvdXRzbmFtZS5o Pg0KaW50IG1haW4oKSB7DQogc3RydWN0IHV0c25hbWUgKnJlczsgY2hhciAq ZG9tYWluOyANCiAgICAgICAgICAgICh2b2lkKXVuYW1lKHJlcyk7ICBpZiAo cmVzICE9IDApIHsgZG9tYWluID0gcmVzLT5fX2RvbWFpbm5hbWU7IH0gDQo7 IHJldHVybiAwOyB9DQpjb25maWd1cmU6NjQ3NDogY2hlY2tpbmcgZm9yIDY0 LWJpdCBPUw0KY29uZmlndXJlOjY0ODQ6IGNjIC1vIGNvbmZ0ZXN0IC1PIC1w aXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5jbHVkZSAgY29uZnRlc3QuYyAg MT4mNQ0KY29uZmlndXJlOiBmYWlsZWQgcHJvZ3JhbSB3YXM6DQojbGluZSA2 NDc5ICJjb25maWd1cmUiDQojaW5jbHVkZSAiY29uZmRlZnMuaCINCiBpbnQg bWFpbiAoKSB7DQogICAgaWYgKHNpemVvZihsb25nKSA9PSA4KSB7IHJldHVy biAwOyB9IHJldHVybiAxOyB9IA0KY29uZmlndXJlOjY1MTQ6IGNoZWNraW5n IGZvciB1c2FibGUgd2NoYXJfdCAoMiBieXRlcywgdW5zaWduZWQpDQpjb25m aWd1cmU6NjUyOTogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUgIC1PMiAgIC1J L3Vzci9YMTFSNi9pbmNsdWRlICBjb25mdGVzdC5jICAxPiY1DQpjb25maWd1 cmU6IGZhaWxlZCBwcm9ncmFtIHdhczoNCiNsaW5lIDY1MjIgImNvbmZpZ3Vy ZSINCiNpbmNsdWRlICJjb25mZGVmcy5oIg0KI2luY2x1ZGUgPHN0ZGRlZi5o Pg0KICAgICAgICAgICAgICAgICBpbnQgbWFpbiAoKSB7DQogICAgICAgICAg ICAgICAgICAgcmV0dXJuIChzaXplb2Yod2NoYXJfdCkgIT0gMikgfHwNCiAg ICAgICAgICAgICAgICAgICAgICAgICAgKHdjaGFyX3QpLTEgPCAod2NoYXJf dCkgMCA7IH0gDQpjb25maWd1cmU6NjU2NDogY2hlY2tpbmcgZm9yIGNvbXBp bGVyIC1mc2hvcnQtd2NoYXIgb3B0aW9uDQpjb25maWd1cmU6NjU4MjogYysr IC1vIGNvbmZ0ZXN0ICAtTyAtcGlwZSAgLU8yIC1mc2hvcnQtd2NoYXIgICAt SS91c3IvWDExUjYvaW5jbHVkZSAgY29uZnRlc3QuQyAgMT4mNQ0KY2MxcGx1 czogSW52YWxpZCBvcHRpb24gYC1mc2hvcnQtd2NoYXInDQpjb25maWd1cmU6 IGZhaWxlZCBwcm9ncmFtIHdhczoNCiNsaW5lIDY1NzIgImNvbmZpZ3VyZSIN CiNpbmNsdWRlICJjb25mZGVmcy5oIg0KI2lmZGVmIF9fY3BsdXNwbHVzDQpl eHRlcm4gIkMiIHZvaWQgZXhpdChpbnQpOw0KI2VuZGlmDQojaW5jbHVkZSA8 c3RkZGVmLmg+DQogICAgICAgICAgICAgICAgICAgICBpbnQgbWFpbiAoKSB7 DQogICAgICAgICAgICAgICAgICAgICAgIHJldHVybiAoc2l6ZW9mKHdjaGFy X3QpICE9IDIpIHx8DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAo d2NoYXJfdCktMSA8ICh3Y2hhcl90KSAwIDsgfSANCmNvbmZpZ3VyZTo2NjI1 OiBjaGVja2luZyBmb3Igd2NydG9tYg0KY29uZmlndXJlOjY2Mzc6IGMrKyAt byBjb25mdGVzdCAgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNs dWRlICBjb25mdGVzdC5DICAxPiY1DQpjb25maWd1cmU6IEluIGZ1bmN0aW9u IGBpbnQgbWFpbigpJzoNCmNvbmZpZ3VyZTo2NjMzOiBpbXBsaWNpdCBkZWNs YXJhdGlvbiBvZiBmdW5jdGlvbiBgaW50IHdjcnRvbWIoLi4uKScNCmNvbmZp Z3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOg0KI2xpbmUgNjYzMCAiY29uZmln dXJlIg0KI2luY2x1ZGUgImNvbmZkZWZzLmgiDQojaW5jbHVkZSA8d2NoYXIu aD4NCmludCBtYWluKCkgew0KbWJzdGF0ZV90IHBzPXswfTt3Y3J0b21iKDAs J2YnLCZwcyk7DQo7IHJldHVybiAwOyB9DQpjb25maWd1cmU6NjY1NzogY2hl Y2tpbmcgZm9yIG1icnRvd2MNCmNvbmZpZ3VyZTo2NjY5OiBjKysgLW8gY29u ZnRlc3QgIC1PIC1waXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5jbHVkZSAg Y29uZnRlc3QuQyAgMT4mNQ0KY29uZmlndXJlOiBJbiBmdW5jdGlvbiBgaW50 IG1haW4oKSc6DQpjb25maWd1cmU6NjY2NTogaW1wbGljaXQgZGVjbGFyYXRp b24gb2YgZnVuY3Rpb24gYGludCBtYnJ0b3djKC4uLiknDQpjb25maWd1cmU6 IGZhaWxlZCBwcm9ncmFtIHdhczoNCiNsaW5lIDY2NjIgImNvbmZpZ3VyZSIN CiNpbmNsdWRlICJjb25mZGVmcy5oIg0KI2luY2x1ZGUgPHdjaGFyLmg+DQpp bnQgbWFpbigpIHsNCm1ic3RhdGVfdCBwcz17MH07bWJydG93YygwLDAsMCwm cHMpOw0KOyByZXR1cm4gMDsgfQ0KY29uZmlndXJlOjY3MDE6IGNoZWNraW5n IGZvciBkaXJlbnQuaCB0aGF0IGRlZmluZXMgRElSDQpjb25maWd1cmU6Njcx NDogY2MgLWMgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRl IGNvbmZ0ZXN0LmMgMT4mNQ0KY29uZmlndXJlOjY3Mzk6IGNoZWNraW5nIGZv ciBvcGVuZGlyIGluIC1sZGlyDQpjb25maWd1cmU6Njc1ODogY2MgLW8gY29u ZnRlc3QgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICBj b25mdGVzdC5jIC1sZGlyICAgMT4mNQ0KL3Vzci9saWJleGVjL2VsZi9sZDog Y2Fubm90IGZpbmQgLWxkaXINCmNvbmZpZ3VyZTogZmFpbGVkIHByb2dyYW0g d2FzOg0KI2xpbmUgNjc0NyAiY29uZmlndXJlIg0KI2luY2x1ZGUgImNvbmZk ZWZzLmgiDQovKiBPdmVycmlkZSBhbnkgZ2NjMiBpbnRlcm5hbCBwcm90b3R5 cGUgdG8gYXZvaWQgYW4gZXJyb3IuICAqLw0KLyogV2UgdXNlIGNoYXIgYmVj YXVzZSBpbnQgbWlnaHQgbWF0Y2ggdGhlIHJldHVybiB0eXBlIG9mIGEgZ2Nj Mg0KICAgIGJ1aWx0aW4gYW5kIHRoZW4gaXRzIGFyZ3VtZW50IHByb3RvdHlw ZSB3b3VsZCBzdGlsbCBhcHBseS4gICovDQpjaGFyIG9wZW5kaXIoKTsNCg0K aW50IG1haW4oKSB7DQpvcGVuZGlyKCkNCjsgcmV0dXJuIDA7IH0NCmNvbmZp Z3VyZTo2ODM0OiBjaGVja2luZyBmb3Igc3lzL2J5dGVvcmRlci5oDQpjb25m aWd1cmU6Njg0NDogY2MgLUUgICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUkv dXNyL1gxMVI2L2luY2x1ZGUgY29uZnRlc3QuYyA+L2Rldi9udWxsIDI+Y29u ZnRlc3Qub3V0DQpjb25maWd1cmU6Njg0MDogc3lzL2J5dGVvcmRlci5oOiBO byBzdWNoIGZpbGUgb3IgZGlyZWN0b3J5DQpjb25maWd1cmU6IGZhaWxlZCBw cm9ncmFtIHdhczoNCiNsaW5lIDY4MzkgImNvbmZpZ3VyZSINCiNpbmNsdWRl ICJjb25mZGVmcy5oIg0KI2luY2x1ZGUgPHN5cy9ieXRlb3JkZXIuaD4NCmNv bmZpZ3VyZTo2ODM0OiBjaGVja2luZyBmb3IgY29tcGF0LmgNCmNvbmZpZ3Vy ZTo2ODQ0OiBjYyAtRSAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAtSS91c3Iv WDExUjYvaW5jbHVkZSBjb25mdGVzdC5jID4vZGV2L251bGwgMj5jb25mdGVz dC5vdXQNCmNvbmZpZ3VyZTo2ODQwOiBjb21wYXQuaDogTm8gc3VjaCBmaWxl IG9yIGRpcmVjdG9yeQ0KY29uZmlndXJlOiBmYWlsZWQgcHJvZ3JhbSB3YXM6 DQojbGluZSA2ODM5ICJjb25maWd1cmUiDQojaW5jbHVkZSAiY29uZmRlZnMu aCINCiNpbmNsdWRlIDxjb21wYXQuaD4NCmNvbmZpZ3VyZTo2ODM0OiBjaGVj a2luZyBmb3IgZ2V0b3B0LmgNCmNvbmZpZ3VyZTo2ODQ0OiBjYyAtRSAgIC1J L3Vzci9YMTFSNi9pbmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVkZSBjb25m dGVzdC5jID4vZGV2L251bGwgMj5jb25mdGVzdC5vdXQNCmNvbmZpZ3VyZTo2 ODQwOiBnZXRvcHQuaDogTm8gc3VjaCBmaWxlIG9yIGRpcmVjdG9yeQ0KY29u ZmlndXJlOiBmYWlsZWQgcHJvZ3JhbSB3YXM6DQojbGluZSA2ODM5ICJjb25m aWd1cmUiDQojaW5jbHVkZSAiY29uZmRlZnMuaCINCiNpbmNsdWRlIDxnZXRv cHQuaD4NCmNvbmZpZ3VyZTo2ODc0OiBjaGVja2luZyBmb3Igc3lzL2JpdHlw ZXMuaA0KY29uZmlndXJlOjY4ODQ6IGNjIC1FICAgLUkvdXNyL1gxMVI2L2lu Y2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LmMgPi9kZXYv bnVsbCAyPmNvbmZ0ZXN0Lm91dA0KY29uZmlndXJlOjY4ODA6IHN5cy9iaXR5 cGVzLmg6IE5vIHN1Y2ggZmlsZSBvciBkaXJlY3RvcnkNCmNvbmZpZ3VyZTog ZmFpbGVkIHByb2dyYW0gd2FzOg0KI2xpbmUgNjg3OSAiY29uZmlndXJlIg0K I2luY2x1ZGUgImNvbmZkZWZzLmgiDQojaW5jbHVkZSA8c3lzL2JpdHlwZXMu aD4NCmNvbmZpZ3VyZTo2ODc0OiBjaGVja2luZyBmb3IgbWVtb3J5LmgNCmNv bmZpZ3VyZTo2ODg0OiBjYyAtRSAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAt SS91c3IvWDExUjYvaW5jbHVkZSBjb25mdGVzdC5jID4vZGV2L251bGwgMj5j b25mdGVzdC5vdXQNCmNvbmZpZ3VyZTo2ODc0OiBjaGVja2luZyBmb3IgdW5p c3RkLmgNCmNvbmZpZ3VyZTo2ODg0OiBjYyAtRSAgIC1JL3Vzci9YMTFSNi9p bmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVkZSBjb25mdGVzdC5jID4vZGV2 L251bGwgMj5jb25mdGVzdC5vdXQNCmNvbmZpZ3VyZTo2OTE0OiBjaGVja2lu ZyBmb3IgZ251L2xpYmMtdmVyc2lvbi5oDQpjb25maWd1cmU6NjkyNDogY2Mg LUUgICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUkvdXNyL1gxMVI2L2luY2x1 ZGUgY29uZnRlc3QuYyA+L2Rldi9udWxsIDI+Y29uZnRlc3Qub3V0DQpjb25m aWd1cmU6NjkyMDogZ251L2xpYmMtdmVyc2lvbi5oOiBObyBzdWNoIGZpbGUg b3IgZGlyZWN0b3J5DQpjb25maWd1cmU6IGZhaWxlZCBwcm9ncmFtIHdhczoN CiNsaW5lIDY5MTkgImNvbmZpZ3VyZSINCiNpbmNsdWRlICJjb25mZGVmcy5o Ig0KI2luY2x1ZGUgPGdudS9saWJjLXZlcnNpb24uaD4NCmNvbmZpZ3VyZTo2 OTE0OiBjaGVja2luZyBmb3IgbmxfdHlwZXMuaA0KY29uZmlndXJlOjY5MjQ6 IGNjIC1FICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9p bmNsdWRlIGNvbmZ0ZXN0LmMgPi9kZXYvbnVsbCAyPmNvbmZ0ZXN0Lm91dA0K Y29uZmlndXJlOjY5NTQ6IGNoZWNraW5nIGZvciBYMTEvWEtCbGliLmgNCmNv bmZpZ3VyZTo2OTY0OiBjYyAtRSAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAt SS91c3IvWDExUjYvaW5jbHVkZSBjb25mdGVzdC5jID4vZGV2L251bGwgMj5j b25mdGVzdC5vdXQNCmNvbmZpZ3VyZTo2OTk1OiBjaGVja2luZyBmb3Igc3lz L3N0YXR2ZnMuaA0KY29uZmlndXJlOjcwMDU6IGNjIC1FICAgLUkvdXNyL1gx MVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LmMg Pi9kZXYvbnVsbCAyPmNvbmZ0ZXN0Lm91dA0KY29uZmlndXJlOjcwMDE6IHN5 cy9zdGF0dmZzLmg6IE5vIHN1Y2ggZmlsZSBvciBkaXJlY3RvcnkNCmNvbmZp Z3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOg0KI2xpbmUgNzAwMCAiY29uZmln dXJlIg0KI2luY2x1ZGUgImNvbmZkZWZzLmgiDQojaW5jbHVkZSA8c3lzL3N0 YXR2ZnMuaD4NCmNvbmZpZ3VyZTo2OTk1OiBjaGVja2luZyBmb3Igc3lzL3N0 YXRmcy5oDQpjb25maWd1cmU6NzAwNTogY2MgLUUgICAtSS91c3IvWDExUjYv aW5jbHVkZSAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgY29uZnRlc3QuYyA+L2Rl di9udWxsIDI+Y29uZnRlc3Qub3V0DQpjb25maWd1cmU6NzAwMTogc3lzL3N0 YXRmcy5oOiBObyBzdWNoIGZpbGUgb3IgZGlyZWN0b3J5DQpjb25maWd1cmU6 IGZhaWxlZCBwcm9ncmFtIHdhczoNCiNsaW5lIDcwMDAgImNvbmZpZ3VyZSIN CiNpbmNsdWRlICJjb25mZGVmcy5oIg0KI2luY2x1ZGUgPHN5cy9zdGF0ZnMu aD4NCmNvbmZpZ3VyZTo2OTk1OiBjaGVja2luZyBmb3Igc3lzL3Zmcy5oDQpj b25maWd1cmU6NzAwNTogY2MgLUUgICAtSS91c3IvWDExUjYvaW5jbHVkZSAg LUkvdXNyL1gxMVI2L2luY2x1ZGUgY29uZnRlc3QuYyA+L2Rldi9udWxsIDI+ Y29uZnRlc3Qub3V0DQpjb25maWd1cmU6NzAwMTogc3lzL3Zmcy5oOiBObyBz dWNoIGZpbGUgb3IgZGlyZWN0b3J5DQpjb25maWd1cmU6IGZhaWxlZCBwcm9n cmFtIHdhczoNCiNsaW5lIDcwMDAgImNvbmZpZ3VyZSINCiNpbmNsdWRlICJj b25mZGVmcy5oIg0KI2luY2x1ZGUgPHN5cy92ZnMuaD4NCmNvbmZpZ3VyZTo2 OTk1OiBjaGVja2luZyBmb3Igc3lzL21vdW50LmgNCmNvbmZpZ3VyZTo3MDA1 OiBjYyAtRSAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAtSS91c3IvWDExUjYv aW5jbHVkZSBjb25mdGVzdC5jID4vZGV2L251bGwgMj5jb25mdGVzdC5vdXQN CmNvbmZpZ3VyZTo3MDM2OiBjaGVja2luZyBmb3IgbW1pbnRyaW4uaA0KY29u ZmlndXJlOjcwNDY6IGNjIC1FICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1J L3Vzci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LmMgPi9kZXYvbnVsbCAyPmNv bmZ0ZXN0Lm91dA0KY29uZmlndXJlOjcwNDI6IG1taW50cmluLmg6IE5vIHN1 Y2ggZmlsZSBvciBkaXJlY3RvcnkNCmNvbmZpZ3VyZTogZmFpbGVkIHByb2dy YW0gd2FzOg0KI2xpbmUgNzA0MSAiY29uZmlndXJlIg0KI2luY2x1ZGUgImNv bmZkZWZzLmgiDQojaW5jbHVkZSA8bW1pbnRyaW4uaD4NCmNvbmZpZ3VyZTo3 MDgzOiBjaGVja2luZyBmb3IgbmV3DQpjb25maWd1cmU6NzA5MzogYysrIC1F ICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRl IGNvbmZ0ZXN0LkMgPi9kZXYvbnVsbCAyPmNvbmZ0ZXN0Lm91dA0KY29uZmln dXJlOjcxMzQ6IGNoZWNraW5nIGZvciBzeXMvY2RlZnMuaA0KY29uZmlndXJl OjcxNDQ6IGNjIC1FICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9Y MTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LmMgPi9kZXYvbnVsbCAyPmNvbmZ0ZXN0 Lm91dA0KY29uZmlndXJlOjcxNzg6IGNoZWNraW5nIGZvciBnZXRob3N0Ynlu YW1lX3IgaW4gLWxjX3INCmNvbmZpZ3VyZTo3MTk3OiBjYyAtbyBjb25mdGVz dCAtTyAtcGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vz ci9YMTFSNi9pbmNsdWRlICBjb25mdGVzdC5jIC1sY19yICAgMT4mNQ0KL3Vz ci9saWIvbGliYy5zbzogV0FSTklORyEgIHNldGtleSgzKSBub3QgcHJlc2Vu dCBpbiB0aGUgc3lzdGVtIQ0KL3Vzci9saWIvbGliYy5zbzogd2FybmluZzog dGhpcyBwcm9ncmFtIHVzZXMgZ2V0cygpLCB3aGljaCBpcyB1bnNhZmUuDQov dXNyL2xpYi9saWJjLnNvOiB3YXJuaW5nOiBta3RlbXAoKSBwb3NzaWJseSB1 c2VkIHVuc2FmZWx5OyBjb25zaWRlciB1c2luZyBta3N0ZW1wKCkNCi91c3Iv bGliL2xpYmMuc286IFdBUk5JTkchICBkZXNfc2V0a2V5KDMpIG5vdCBwcmVz ZW50IGluIHRoZSBzeXN0ZW0hDQovdXNyL2xpYi9saWJjLnNvOiBXQVJOSU5H ISAgZW5jcnlwdCgzKSBub3QgcHJlc2VudCBpbiB0aGUgc3lzdGVtIQ0KL3Vz ci9saWIvbGliYy5zbzogd2FybmluZzogdG1wbmFtKCkgcG9zc2libHkgdXNl ZCB1bnNhZmVseTsgY29uc2lkZXIgdXNpbmcgbWtzdGVtcCgpDQovdXNyL2xp Yi9saWJjLnNvOiB3YXJuaW5nOiB0aGlzIHByb2dyYW0gdXNlcyBmX3ByZWFs bG9jKCksIHdoaWNoIGlzIG5vdCByZWNvbW1lbmRlZC4NCi91c3IvbGliL2xp YmMuc286IFdBUk5JTkchICBkZXNfY2lwaGVyKDMpIG5vdCBwcmVzZW50IGlu IHRoZSBzeXN0ZW0hDQovdXNyL2xpYi9saWJjLnNvOiB3YXJuaW5nOiB0ZW1w bmFtKCkgcG9zc2libHkgdXNlZCB1bnNhZmVseTsgY29uc2lkZXIgdXNpbmcg bWtzdGVtcCgpDQovdG1wL2NjQlY1WVBCLm86IEluIGZ1bmN0aW9uIGBtYWlu JzoNCi90bXAvY2NCVjVZUEIubygudGV4dCsweDcpOiB1bmRlZmluZWQgcmVm ZXJlbmNlIHRvIGBnZXRob3N0YnluYW1lX3InDQpjb25maWd1cmU6IGZhaWxl ZCBwcm9ncmFtIHdhczoNCiNsaW5lIDcxODYgImNvbmZpZ3VyZSINCiNpbmNs dWRlICJjb25mZGVmcy5oIg0KLyogT3ZlcnJpZGUgYW55IGdjYzIgaW50ZXJu YWwgcHJvdG90eXBlIHRvIGF2b2lkIGFuIGVycm9yLiAgKi8NCi8qIFdlIHVz ZSBjaGFyIGJlY2F1c2UgaW50IG1pZ2h0IG1hdGNoIHRoZSByZXR1cm4gdHlw ZSBvZiBhIGdjYzINCiAgICBidWlsdGluIGFuZCB0aGVuIGl0cyBhcmd1bWVu dCBwcm90b3R5cGUgd291bGQgc3RpbGwgYXBwbHkuICAqLw0KY2hhciBnZXRo b3N0YnluYW1lX3IoKTsNCg0KaW50IG1haW4oKSB7DQpnZXRob3N0YnluYW1l X3IoKQ0KOyByZXR1cm4gMDsgfQ0KY29uZmlndXJlOjcyMjc6IGNoZWNraW5n IGZvciBhdGFuIGluIC1sbQ0KY29uZmlndXJlOjcyNDY6IGNjIC1vIGNvbmZ0 ZXN0IC1PIC1waXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUkv dXNyL1gxMVI2L2luY2x1ZGUgIGNvbmZ0ZXN0LmMgLWxtICAgMT4mNQ0KY29u ZmlndXJlOjcyODA6IGNoZWNraW5nIGZvciBkbG9wZW4gaW4gLWxkbA0KY29u ZmlndXJlOjcyOTk6IGNjIC1vIGNvbmZ0ZXN0IC1PIC1waXBlICAtTzIgICAt SS91c3IvWDExUjYvaW5jbHVkZSAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIGNv bmZ0ZXN0LmMgLWxkbCAgLWxtICAxPiY1DQovdXNyL2xpYmV4ZWMvZWxmL2xk OiBjYW5ub3QgZmluZCAtbGRsDQpjb25maWd1cmU6IGZhaWxlZCBwcm9ncmFt IHdhczoNCiNsaW5lIDcyODggImNvbmZpZ3VyZSINCiNpbmNsdWRlICJjb25m ZGVmcy5oIg0KLyogT3ZlcnJpZGUgYW55IGdjYzIgaW50ZXJuYWwgcHJvdG90 eXBlIHRvIGF2b2lkIGFuIGVycm9yLiAgKi8NCi8qIFdlIHVzZSBjaGFyIGJl Y2F1c2UgaW50IG1pZ2h0IG1hdGNoIHRoZSByZXR1cm4gdHlwZSBvZiBhIGdj YzINCiAgICBidWlsdGluIGFuZCB0aGVuIGl0cyBhcmd1bWVudCBwcm90b3R5 cGUgd291bGQgc3RpbGwgYXBwbHkuICAqLw0KY2hhciBkbG9wZW4oKTsNCg0K aW50IG1haW4oKSB7DQpkbG9wZW4oKQ0KOyByZXR1cm4gMDsgfQ0KY29uZmln dXJlOjc0MzI6IGNoZWNraW5nIGZvciBzb2NrZXQgaW4gLWxzb2NrZXQNCmNv bmZpZ3VyZTo3NDUxOiBjYyAtbyBjb25mdGVzdCAtTyAtcGlwZSAgLU8yICAg LUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICBj b25mdGVzdC5jIC1sc29ja2V0ICAtbG0gIDE+JjUNCi91c3IvbGliZXhlYy9l bGYvbGQ6IGNhbm5vdCBmaW5kIC1sc29ja2V0DQpjb25maWd1cmU6IGZhaWxl ZCBwcm9ncmFtIHdhczoNCiNsaW5lIDc0NDAgImNvbmZpZ3VyZSINCiNpbmNs dWRlICJjb25mZGVmcy5oIg0KLyogT3ZlcnJpZGUgYW55IGdjYzIgaW50ZXJu YWwgcHJvdG90eXBlIHRvIGF2b2lkIGFuIGVycm9yLiAgKi8NCi8qIFdlIHVz ZSBjaGFyIGJlY2F1c2UgaW50IG1pZ2h0IG1hdGNoIHRoZSByZXR1cm4gdHlw ZSBvZiBhIGdjYzINCiAgICBidWlsdGluIGFuZCB0aGVuIGl0cyBhcmd1bWVu dCBwcm90b3R5cGUgd291bGQgc3RpbGwgYXBwbHkuICAqLw0KY2hhciBzb2Nr ZXQoKTsNCg0KaW50IG1haW4oKSB7DQpzb2NrZXQoKQ0KOyByZXR1cm4gMDsg fQ0KY29uZmlndXJlOjc0OTY6IGNoZWNraW5nIGZvciBYRHJhd0xpbmVzIGlu IC1sWDExDQpjb25maWd1cmU6NzUxNTogY2MgLW8gY29uZnRlc3QgLU8gLXBp cGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAtSS91c3IvWDExUjYv aW5jbHVkZSAgLUwvdXNyL1gxMVI2L2xpYiAgY29uZnRlc3QuYyAtbFgxMSAt bFgxMSAgLWxtICAxPiY1DQpjb25maWd1cmU6NzUzNzogY2hlY2tpbmcgZm9y IFhleHRBZGREaXNwbGF5IGluIC1sWGV4dA0KY29uZmlndXJlOjc1NTY6IGNj IC1vIGNvbmZ0ZXN0IC1PIC1waXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5j bHVkZSAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1ML3Vzci9YMTFSNi9saWIg IGNvbmZ0ZXN0LmMgLWxYZXh0IC1sWDExICAtbG0gIDE+JjUNCmNvbmZpZ3Vy ZTo3NTgwOiBjaGVja2luZyBmb3IgWHRGcmVlIGluIC1sWHQNCmNvbmZpZ3Vy ZTo3NTk5OiBjYyAtbyBjb25mdGVzdCAtTyAtcGlwZSAgLU8yICAgLUkvdXNy L1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAtTC91c3Iv WDExUjYvbGliICBjb25mdGVzdC5jIC1sWHQgIC1sbSAgMT4mNQ0KY29uZmln dXJlOjc3NTQ6IGNoZWNraW5nIGZvciBYaW5lcmFtYUlzQWN0aXZlIGluIC1s WGluZXJhbWENCmNvbmZpZ3VyZTo3NzczOiBjYyAtbyBjb25mdGVzdCAtTyAt cGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFS Ni9pbmNsdWRlICAtTC91c3IvWDExUjYvbGliICBjb25mdGVzdC5jIC1sWGlu ZXJhbWEgLWxYMTEgIC1sWGV4dCAtbG0gIDE+JjUNCmNvbmZpZ3VyZTo3Nzk1 OiBjaGVja2luZyBmb3IgWDExL2V4dGVuc2lvbnMvWGluZXJhbWEuaA0KY29u ZmlndXJlOjc4MDU6IGNjIC1FICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1J L3Vzci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LmMgPi9kZXYvbnVsbCAyPmNv bmZ0ZXN0Lm91dA0KY29uZmlndXJlOjc4Mjg6IGNoZWNraW5nIGZvciBYU2ht Q3JlYXRlSW1hZ2UgaW4gLWxYZXh0DQpjb25maWd1cmU6Nzg0NzogY2MgLW8g Y29uZnRlc3QgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRl ICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUwvdXNyL1gxMVI2L2xpYiAgY29u ZnRlc3QuYyAtbFhleHQgLWxYMTEgIC1sWGV4dCAtbG0gIDE+JjUNCmNvbmZp Z3VyZTo3ODY5OiBjaGVja2luZyBmb3IgWDExL2V4dGVuc2lvbnMvWFNobS5o DQpjb25maWd1cmU6Nzg3OTogY2MgLUUgICAtSS91c3IvWDExUjYvaW5jbHVk ZSAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgY29uZnRlc3QuYyA+L2Rldi9udWxs IDI+Y29uZnRlc3Qub3V0DQpjb25maWd1cmU6NzkwOTogY2hlY2tpbmcgZm9y IFhpZUZsb0dlb21ldHJ5IGluIC1sWElFDQpjb25maWd1cmU6NzkyODogY2Mg LW8gY29uZnRlc3QgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNs dWRlICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUwvdXNyL1gxMVI2L2xpYiAg Y29uZnRlc3QuYyAtbFhJRSAtbFgxMSAgLWxYZXh0IC1sbSAgMT4mNQ0KY29u ZmlndXJlOjc5NTA6IGNoZWNraW5nIGZvciBYMTEvZXh0ZW5zaW9ucy9YSUVs aWIuaA0KY29uZmlndXJlOjc5NjA6IGNjIC1FICAgLUkvdXNyL1gxMVI2L2lu Y2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LmMgPi9kZXYv bnVsbCAyPmNvbmZ0ZXN0Lm91dA0KY29uZmlndXJlOjgwMTM6IGNjIC1jIC1P IC1waXBlICAtTzIgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAgLUkvdXNyL1gx MVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LmMg MT4mNQ0KY29uZmlndXJlOjgwMzI6IGNoZWNraW5nIGZvciBwdGhyZWFkX2Ny ZWF0ZSBpbiAtbHB0aHJlYWRzDQpjYyAtbyBkdW1teSBkdW1teS5jIC1PIC1w aXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUkvdXNyL1gxMVI2 L2luY2x1ZGUgLWxwdGhyZWFkcyAgLWxtIA0KL3Vzci9saWJleGVjL2VsZi9s ZDogY2Fubm90IGZpbmQgLWxwdGhyZWFkcw0KY29uZmlndXJlOjgwNTQ6IGNo ZWNraW5nIGZvciBwdGhyZWFkX2NyZWF0ZSBpbiAtbHB0aHJlYWQNCmNjIC1v IGR1bW15IGR1bW15LmMgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9p bmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVkZSAtbHB0aHJlYWQgIC1sbSAN Ci91c3IvbGliZXhlYy9lbGYvbGQ6IGNhbm5vdCBmaW5kIC1scHRocmVhZA0K Y29uZmlndXJlOjgwNzY6IGNoZWNraW5nIGZvciBwdGhyZWFkX2NyZWF0ZSBp biAtbGNfcg0KY2MgLW8gZHVtbXkgZHVtbXkuYyAtTyAtcGlwZSAgLU8yICAg LUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlIC1s Y19yICAtbG0gDQovdXNyL2xpYi9saWJjLnNvOiBXQVJOSU5HISAgc2V0a2V5 KDMpIG5vdCBwcmVzZW50IGluIHRoZSBzeXN0ZW0hDQovdXNyL2xpYi9saWJj LnNvOiB3YXJuaW5nOiB0aGlzIHByb2dyYW0gdXNlcyBnZXRzKCksIHdoaWNo IGlzIHVuc2FmZS4NCi91c3IvbGliL2xpYmMuc286IHdhcm5pbmc6IG1rdGVt cCgpIHBvc3NpYmx5IHVzZWQgdW5zYWZlbHk7IGNvbnNpZGVyIHVzaW5nIG1r c3RlbXAoKQ0KL3Vzci9saWIvbGliYy5zbzogV0FSTklORyEgIGRlc19zZXRr ZXkoMykgbm90IHByZXNlbnQgaW4gdGhlIHN5c3RlbSENCi91c3IvbGliL2xp YmMuc286IFdBUk5JTkchICBlbmNyeXB0KDMpIG5vdCBwcmVzZW50IGluIHRo ZSBzeXN0ZW0hDQovdXNyL2xpYi9saWJjLnNvOiB3YXJuaW5nOiB0bXBuYW0o KSBwb3NzaWJseSB1c2VkIHVuc2FmZWx5OyBjb25zaWRlciB1c2luZyBta3N0 ZW1wKCkNCi91c3IvbGliL2xpYmMuc286IHdhcm5pbmc6IHRoaXMgcHJvZ3Jh bSB1c2VzIGZfcHJlYWxsb2MoKSwgd2hpY2ggaXMgbm90IHJlY29tbWVuZGVk Lg0KL3Vzci9saWIvbGliYy5zbzogV0FSTklORyEgIGRlc19jaXBoZXIoMykg bm90IHByZXNlbnQgaW4gdGhlIHN5c3RlbSENCi91c3IvbGliL2xpYmMuc286 IHdhcm5pbmc6IHRlbXBuYW0oKSBwb3NzaWJseSB1c2VkIHVuc2FmZWx5OyBj b25zaWRlciB1c2luZyBta3N0ZW1wKCkNCmNvbmZpZ3VyZTo4MTU0OiBjaGVj a2luZyB3aGV0aGVyIGNjIGFjY2VwdHMgLXB0aHJlYWQNCmNvbmZpZ3VyZTo4 MzE3OiBjaGVja2luZyB3aGV0aGVyIG1tYXAoKSBzZWVzIHdyaXRlKClzDQpj b25maWd1cmU6ODM2MDogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUgIC1PMiAg IC1JL3Vzci9YMTFSNi9pbmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVkZSAg Y29uZnRlc3QuYyAtbG0gIDE+JjUNCmNvbmZpZ3VyZTo4Mzg1OiBjaGVja2lu ZyB3aGV0aGVyIGNjIG5lZWRzIC10cmFkaXRpb25hbA0KY29uZmlndXJlOjg0 MTA6IHRlcm1pby5oOiBObyBzdWNoIGZpbGUgb3IgZGlyZWN0b3J5DQpjb25m aWd1cmU6ODQzMTogY2hlY2tpbmcgZm9yIDgtYml0IGNsZWFuIG1lbWNtcA0K Y29uZmlndXJlOjg0NDk6IGNjIC1vIGNvbmZ0ZXN0IC1PIC1waXBlICAtTzIg ICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUkvdXNyL1gxMVI2L2luY2x1ZGUg IGNvbmZ0ZXN0LmMgLWxtICAxPiY1DQpjb25maWd1cmU6ODQ2OTogY2hlY2tp bmcgZm9yIHJhbmRvbQ0KY29uZmlndXJlOjg0OTc6IGNjIC1vIGNvbmZ0ZXN0 IC1PIC1waXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUkvdXNy L1gxMVI2L2luY2x1ZGUgIGNvbmZ0ZXN0LmMgLWxtICAxPiY1DQpjb25maWd1 cmU6ODQ2OTogY2hlY2tpbmcgZm9yIHN0cmVycm9yDQpjb25maWd1cmU6ODQ5 NzogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFS Ni9pbmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVkZSAgY29uZnRlc3QuYyAt bG0gIDE+JjUNCmNvbmZpZ3VyZTo4NDY5OiBjaGVja2luZyBmb3IgbGNob3du DQpjb25maWd1cmU6ODQ5NzogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUgIC1P MiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVk ZSAgY29uZnRlc3QuYyAtbG0gIDE+JjUNCmNvbmZpZ3VyZTo4NDY5OiBjaGVj a2luZyBmb3IgZmNobW9kDQpjb25maWd1cmU6ODQ5NzogY2MgLW8gY29uZnRl c3QgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAtSS91 c3IvWDExUjYvaW5jbHVkZSAgY29uZnRlc3QuYyAtbG0gIDE+JjUNCmNvbmZp Z3VyZTo4NDY5OiBjaGVja2luZyBmb3Igc25wcmludGYNCmNvbmZpZ3VyZTo4 NDk3OiBjYyAtbyBjb25mdGVzdCAtTyAtcGlwZSAgLU8yICAgLUkvdXNyL1gx MVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICBjb25mdGVzdC5j IC1sbSAgMT4mNQ0KY29uZmlndXJlOjg0Njk6IGNoZWNraW5nIGZvciBzdGF0 dmZzDQpjb25maWd1cmU6ODQ5NzogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUg IC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAtSS91c3IvWDExUjYvaW5j bHVkZSAgY29uZnRlc3QuYyAtbG0gIDE+JjUNCi90bXAvY2M1UnBvS3Yubzog SW4gZnVuY3Rpb24gYG1haW4nOg0KL3RtcC9jYzVScG9Ldi5vKC50ZXh0KzB4 Nyk6IHVuZGVmaW5lZCByZWZlcmVuY2UgdG8gYHN0YXR2ZnMnDQpjb25maWd1 cmU6IGZhaWxlZCBwcm9ncmFtIHdhczoNCiNsaW5lIDg0NzQgImNvbmZpZ3Vy ZSINCiNpbmNsdWRlICJjb25mZGVmcy5oIg0KLyogU3lzdGVtIGhlYWRlciB0 byBkZWZpbmUgX19zdHViIG1hY3JvcyBhbmQgaG9wZWZ1bGx5IGZldyBwcm90 b3R5cGVzLA0KICAgIHdoaWNoIGNhbiBjb25mbGljdCB3aXRoIGNoYXIgc3Rh dHZmcygpOyBiZWxvdy4gICovDQojaW5jbHVkZSA8YXNzZXJ0Lmg+DQovKiBP dmVycmlkZSBhbnkgZ2NjMiBpbnRlcm5hbCBwcm90b3R5cGUgdG8gYXZvaWQg YW4gZXJyb3IuICAqLw0KLyogV2UgdXNlIGNoYXIgYmVjYXVzZSBpbnQgbWln aHQgbWF0Y2ggdGhlIHJldHVybiB0eXBlIG9mIGEgZ2NjMg0KICAgIGJ1aWx0 aW4gYW5kIHRoZW4gaXRzIGFyZ3VtZW50IHByb3RvdHlwZSB3b3VsZCBzdGls bCBhcHBseS4gICovDQpjaGFyIHN0YXR2ZnMoKTsNCg0KaW50IG1haW4oKSB7 DQoNCi8qIFRoZSBHTlUgQyBsaWJyYXJ5IGRlZmluZXMgdGhpcyBmb3IgZnVu Y3Rpb25zIHdoaWNoIGl0IGltcGxlbWVudHMNCiAgICB0byBhbHdheXMgZmFp bCB3aXRoIEVOT1NZUy4gIFNvbWUgZnVuY3Rpb25zIGFyZSBhY3R1YWxseSBu YW1lZA0KICAgIHNvbWV0aGluZyBzdGFydGluZyB3aXRoIF9fIGFuZCB0aGUg bm9ybWFsIG5hbWUgaXMgYW4gYWxpYXMuICAqLw0KI2lmIGRlZmluZWQgKF9f c3R1Yl9zdGF0dmZzKSB8fCBkZWZpbmVkIChfX3N0dWJfX19zdGF0dmZzKQ0K Y2hva2UgbWUNCiNlbHNlDQpzdGF0dmZzKCk7DQojZW5kaWYNCg0KOyByZXR1 cm4gMDsgfQ0KY29uZmlndXJlOjg0Njk6IGNoZWNraW5nIGZvciBtZW1tb3Zl DQpjb25maWd1cmU6ODQ5NzogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUgIC1P MiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVk ZSAgY29uZnRlc3QuYyAtbG0gIDE+JjUNCmNvbmZpZ3VyZTo4NDY5OiBjaGVj a2luZyBmb3IgcmludA0KY29uZmlndXJlOjg0OTc6IGNjIC1vIGNvbmZ0ZXN0 IC1PIC1waXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUkvdXNy L1gxMVI2L2luY2x1ZGUgIGNvbmZ0ZXN0LmMgLWxtICAxPiY1DQpjb25maWd1 cmU6ODUyNDogY2hlY2tpbmcgZm9yIG5sX2xhbmdpbmZvDQpjb25maWd1cmU6 ODU1MjogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9Y MTFSNi9pbmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVkZSAgY29uZnRlc3Qu YyAtbG0gIDE+JjUNCmNvbmZpZ3VyZTo4NTI0OiBjaGVja2luZyBmb3IgZmxv Y2tmaWxlDQpjb25maWd1cmU6ODU1MjogY2MgLW8gY29uZnRlc3QgLU8gLXBp cGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAtSS91c3IvWDExUjYv aW5jbHVkZSAgY29uZnRlc3QuYyAtbG0gIDE+JjUNCmNvbmZpZ3VyZTo4NTgx OiBjaGVja2luZyBmb3IgbG9jYWx0aW1lX3INCmNvbmZpZ3VyZTo4NjA5OiBj YyAtbyBjb25mdGVzdCAtTyAtcGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2L2lu Y2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICBjb25mdGVzdC5jIC1sbSAg MT4mNQ0KY29uZmlndXJlOjg1ODE6IGNoZWNraW5nIGZvciBzdHJ0b2tfcg0K Y29uZmlndXJlOjg2MDk6IGNjIC1vIGNvbmZ0ZXN0IC1PIC1waXBlICAtTzIg ICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUkvdXNyL1gxMVI2L2luY2x1ZGUg IGNvbmZ0ZXN0LmMgLWxtICAxPiY1DQpjb25maWd1cmU6ODYzNjogY2hlY2tp bmcgZm9yIHJlc19uaW5pdCgpDQpjb25maWd1cmU6ODY1MzogY2MgLW8gY29u ZnRlc3QgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAt SS91c3IvWDExUjYvaW5jbHVkZSAgY29uZnRlc3QuYyAtbG0gIDE+JjUNCklu IGZpbGUgaW5jbHVkZWQgZnJvbSBjb25maWd1cmU6ODY0NzoNCi91c3IvaW5j bHVkZS9yZXNvbHYuaDoxMDQ6IGZpZWxkIGBuc2FkZHJfbGlzdCcgaGFzIGlu Y29tcGxldGUgdHlwZQ0KL3Vzci9pbmNsdWRlL3Jlc29sdi5oOjExNDogZmll bGQgYGFkZHInIGhhcyBpbmNvbXBsZXRlIHR5cGUNCi91c3IvaW5jbHVkZS9y ZXNvbHYuaDoxMjk6IGZpZWxkIGBpbmEnIGhhcyBpbmNvbXBsZXRlIHR5cGUN Ci91c3IvaW5jbHVkZS9yZXNvbHYuaDoxMzA6IGZpZWxkIGBpbjZhJyBoYXMg aW5jb21wbGV0ZSB0eXBlDQpjb25maWd1cmU6IGZhaWxlZCBwcm9ncmFtIHdh czoNCiNsaW5lIDg2NDEgImNvbmZpZ3VyZSINCiNpbmNsdWRlICJjb25mZGVm cy5oIg0KDQogICAgICAgICNpZmRlZiBsaW51eA0KICAgICAgICAjZGVmaW5l IF9CU0RfU09VUkNFIDENCiAgICAgICAgI2VuZGlmDQogICAgICAgICNpbmNs dWRlIDxyZXNvbHYuaD4NCiAgICAgICAgDQppbnQgbWFpbigpIHsNCmludCBm b28gPSByZXNfbmluaXQoJl9yZXMpOw0KOyByZXR1cm4gMDsgfQ0KY29uZmln dXJlOjg2ODM6IGNoZWNraW5nIGZvciBnbnVfZ2V0X2xpYmNfdmVyc2lvbigp DQpjb25maWd1cmU6ODY5OTogYysrIC1vIGNvbmZ0ZXN0ICAtTyAtcGlwZSAg LU8yICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNs dWRlICBjb25mdGVzdC5DIC1sbSAgMT4mNQ0KY29uZmlndXJlOiBJbiBmdW5j dGlvbiBgaW50IG1haW4oKSc6DQpjb25maWd1cmU6ODY5NTogaW1wbGljaXQg ZGVjbGFyYXRpb24gb2YgZnVuY3Rpb24gYGludCBnbnVfZ2V0X2xpYmNfdmVy c2lvbiguLi4pJw0KY29uZmlndXJlOjg2OTU6IGluaXRpYWxpemF0aW9uIHRv IGBjb25zdCBjaGFyIConIGZyb20gYGludCcgbGFja3MgYSBjYXN0DQpjb25m aWd1cmU6IGZhaWxlZCBwcm9ncmFtIHdhczoNCiNsaW5lIDg2ODggImNvbmZp Z3VyZSINCiNpbmNsdWRlICJjb25mZGVmcy5oIg0KDQogICAgICAgICNpZmRl ZiBIQVZFX0dOVV9MSUJDX1ZFUlNJT05fSA0KICAgICAgICAjaW5jbHVkZSA8 Z251L2xpYmMtdmVyc2lvbi5oPg0KICAgICAgICAjZW5kaWYNCiAgICAgICAg DQppbnQgbWFpbigpIHsNCmNvbnN0IGNoYXIgKmdsaWJjX3ZlcnNpb24gPSBn bnVfZ2V0X2xpYmNfdmVyc2lvbigpOw0KOyByZXR1cm4gMDsgfQ0KY29uZmln dXJlOjg3Mjg6IGNoZWNraW5nIGZvciBpY29udiBpbiAtbGljb252DQpjb25m aWd1cmU6ODc1MDogYysrIC1vIGNvbmZ0ZXN0ICAtTyAtcGlwZSAgLU8yICAg LUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICBj b25mdGVzdC5DIC1saWNvbnYgIC1sbSAgMT4mNQ0KL3Vzci9saWJleGVjL2Vs Zi9sZDogY2Fubm90IGZpbmQgLWxpY29udg0KY29uZmlndXJlOiBmYWlsZWQg cHJvZ3JhbSB3YXM6DQojbGluZSA4NzM2ICJjb25maWd1cmUiDQojaW5jbHVk ZSAiY29uZmRlZnMuaCINCi8qIE92ZXJyaWRlIGFueSBnY2MyIGludGVybmFs IHByb3RvdHlwZSB0byBhdm9pZCBhbiBlcnJvci4gICovDQojaWZkZWYgX19j cGx1c3BsdXMNCmV4dGVybiAiQyINCiNlbmRpZg0KLyogV2UgdXNlIGNoYXIg YmVjYXVzZSBpbnQgbWlnaHQgbWF0Y2ggdGhlIHJldHVybiB0eXBlIG9mIGEg Z2NjMg0KICAgIGJ1aWx0aW4gYW5kIHRoZW4gaXRzIGFyZ3VtZW50IHByb3Rv dHlwZSB3b3VsZCBzdGlsbCBhcHBseS4gICovDQpjaGFyIGljb252KCk7DQoN CmludCBtYWluKCkgew0KaWNvbnYoKQ0KOyByZXR1cm4gMDsgfQ0KY29uZmln dXJlOjg3Njk6IGNoZWNraW5nIGZvciBsaWJpY29udiBpbiAtbGljb252DQpj b25maWd1cmU6ODc5MTogYysrIC1vIGNvbmZ0ZXN0ICAtTyAtcGlwZSAgLU8y ICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRl ICBjb25mdGVzdC5DIC1saWNvbnYgIC1sbSAgMT4mNQ0KL3Vzci9saWJleGVj L2VsZi9sZDogY2Fubm90IGZpbmQgLWxpY29udg0KY29uZmlndXJlOiBmYWls ZWQgcHJvZ3JhbSB3YXM6DQojbGluZSA4Nzc3ICJjb25maWd1cmUiDQojaW5j bHVkZSAiY29uZmRlZnMuaCINCi8qIE92ZXJyaWRlIGFueSBnY2MyIGludGVy bmFsIHByb3RvdHlwZSB0byBhdm9pZCBhbiBlcnJvci4gICovDQojaWZkZWYg X19jcGx1c3BsdXMNCmV4dGVybiAiQyINCiNlbmRpZg0KLyogV2UgdXNlIGNo YXIgYmVjYXVzZSBpbnQgbWlnaHQgbWF0Y2ggdGhlIHJldHVybiB0eXBlIG9m IGEgZ2NjMg0KICAgIGJ1aWx0aW4gYW5kIHRoZW4gaXRzIGFyZ3VtZW50IHBy b3RvdHlwZSB3b3VsZCBzdGlsbCBhcHBseS4gICovDQpjaGFyIGxpYmljb252 KCk7DQoNCmludCBtYWluKCkgew0KbGliaWNvbnYoKQ0KOyByZXR1cm4gMDsg fQ0KY29uZmlndXJlOjg4MTY6IGNoZWNraW5nIGZvciBpY29udigpDQpjb25m aWd1cmU6ODgzNTogYysrIC1vIGNvbmZ0ZXN0ICAtTyAtcGlwZSAgLU8yICAg LUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICBj b25mdGVzdC5DIC1sbSAgIDE+JjUNCmNvbmZpZ3VyZTo4ODI0OiBpY29udi5o OiBObyBzdWNoIGZpbGUgb3IgZGlyZWN0b3J5DQpjb25maWd1cmU6IEluIGZ1 bmN0aW9uIGBpbnQgbWFpbigpJzoNCmNvbmZpZ3VyZTo4ODI4OiBzeW50YXgg ZXJyb3IgYmVmb3JlIGA9Jw0KY29uZmlndXJlOjg4Mjk6IGBoJyB1bmRlY2xh cmVkIChmaXJzdCB1c2UgdGhpcyBmdW5jdGlvbikNCmNvbmZpZ3VyZTo4ODI5 OiAoRWFjaCB1bmRlY2xhcmVkIGlkZW50aWZpZXIgaXMgcmVwb3J0ZWQgb25s eSBvbmNlDQpjb25maWd1cmU6ODgyOTogZm9yIGVhY2ggZnVuY3Rpb24gaXQg YXBwZWFycyBpbi4pDQpjb25maWd1cmU6ODgyOTogaW1wbGljaXQgZGVjbGFy YXRpb24gb2YgZnVuY3Rpb24gYGludCBpY29udiguLi4pJw0KY29uZmlndXJl Ojg4MzA6IGltcGxpY2l0IGRlY2xhcmF0aW9uIG9mIGZ1bmN0aW9uIGBpbnQg aWNvbnZfY2xvc2UoLi4uKScNCmNvbmZpZ3VyZTogZmFpbGVkIHByb2dyYW0g d2FzOg0KI2xpbmUgODgyMSAiY29uZmlndXJlIg0KI2luY2x1ZGUgImNvbmZk ZWZzLmgiDQoNCiAgICAgICAgI2luY2x1ZGUgPHN0ZGxpYi5oPg0KICAgICAg ICAjaW5jbHVkZSA8aWNvbnYuaD4NCiAgICAgICAgDQppbnQgbWFpbigpIHsN Cg0KICAgICAgICAgICAgaWNvbnZfdCBoID0gaWNvbnZfb3BlbigiIiwgIiIp Ow0KICAgICAgICAgICAgaWNvbnYoaCwgTlVMTCwgTlVMTCwgTlVMTCwgTlVM TCk7DQogICAgICAgICAgICBpY29udl9jbG9zZShoKTsNCiAgICAgICAgDQo7 IHJldHVybiAwOyB9DQpjb25maWd1cmU6ODkxMzogY2hlY2tpbmcgd2hldGhl ciB2YV9saXN0IGFzc2lnbm1lbnRzIG5lZWQgYXJyYXkgbm90YXRpb24NCmNv bmZpZ3VyZTo4OTM0OiBjYyAtbyBjb25mdGVzdCAtTyAtcGlwZSAgLU8yICAg LUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICBj b25mdGVzdC5jIC1sbSAgMT4mNQ0KY29uZmlndXJlOjkwMTI6IGNoZWNraW5n IGZvciBDKysgZXhjZXB0aW9ucyBmbGFnDQpjb25maWd1cmU6OTA0NzogY2hl Y2tpbmcgZm9yIGdjYyAzLjAgQUJJDQpjb25maWd1cmU6OTA2NTogYysrIC1j ICAtTyAtcGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vz ci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LkMgMT4mNQ0KY29uZmlndXJlOjkw NTk6ICNlcnJvciBOb3QgZ2NjMy4NCmNvbmZpZ3VyZTogZmFpbGVkIHByb2dy YW0gd2FzOg0KI2xpbmUgOTA1MiAiY29uZmlndXJlIg0KI2luY2x1ZGUgImNv bmZkZWZzLmgiDQoNCmludCBtYWluKCkgew0KDQojaWYgZGVmaW5lZChfX0dY WF9BQklfVkVSU0lPTikgJiYgX19HWFhfQUJJX1ZFUlNJT04gPj0gMTAwIC8q IEcrKyBWMyBBQkkgKi8NCiAgcmV0dXJuIDA7DQojZWxzZQ0KI2Vycm9yIE5v dCBnY2MzLg0KI2VuZGlmDQogICAgICAgICAgICAgICAgICAgICAgDQo7IHJl dHVybiAwOyB9DQpjb25maWd1cmU6OTA4NjogY2hlY2tpbmcgZm9yIGlvczo6 YmluYXJ5DQpjb25maWd1cmU6OTEwMDogYysrIC1jICAtTyAtcGlwZSAgLU8y ICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRl IGNvbmZ0ZXN0LkMgMT4mNQ0KY29uZmlndXJlOjkxMjQ6IGNoZWNraW5nIGZv ciBpb3M6OmJpbg0KY29uZmlndXJlOjkxMzg6IGMrKyAtYyAgLU8gLXBpcGUg IC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAtSS91c3IvWDExUjYvaW5j bHVkZSBjb25mdGVzdC5DIDE+JjUNCmNvbmZpZ3VyZTo5MTYxOiBjaGVja2lu ZyBmb3IgQysrICJleHBsaWNpdCIga2V5d29yZA0KY29uZmlndXJlOjkxNzY6 IGMrKyAtYyAgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRl ICAtSS91c3IvWDExUjYvaW5jbHVkZSBjb25mdGVzdC5DIDE+JjUNCmNvbmZp Z3VyZTo5MTk3OiBjaGVja2luZyBmb3IgQysrIHRlbXBsYXRlIHNwZWNpYWxp emF0aW9uIHN1cHBvcnQNCmNvbmZpZ3VyZTo5MjEyOiBjKysgLWMgIC1PIC1w aXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUkvdXNyL1gxMVI2 L2luY2x1ZGUgY29uZnRlc3QuQyAxPiY1DQpjb25maWd1cmU6OTI0MjogY2hl Y2tpbmcgZm9yIG1vZGVybiBDKysgdGVtcGxhdGUgc3BlY2lhbGl6YXRpb24g c3ludGF4IHN1cHBvcnQNCmNvbmZpZ3VyZTo5MjU3OiBjKysgLWMgIC1PIC1w aXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUkvdXNyL1gxMVI2 L2luY2x1ZGUgY29uZnRlc3QuQyAxPiY1DQpjb25maWd1cmU6OTI3OTogY2hl Y2tpbmcgd2hldGhlciBwYXJ0aWFsIHRlbXBsYXRlIHNwZWNpYWxpemF0aW9u IHdvcmtzDQpjb25maWd1cmU6OTI5MjogYysrIC1jICAtTyAtcGlwZSAgLU8y ICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRl IGNvbmZ0ZXN0LkMgMT4mNQ0KY29uZmlndXJlOjkzMTM6IGNoZWNraW5nIGZv ciBleHRlcm4gZXhwbGljaXQgdGVtcGxhdGUgaW5zdGFudGlhdGlvbg0KY29u ZmlndXJlOjkzMjY6IGMrKyAtYyAgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9Y MTFSNi9pbmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVkZSBjb25mdGVzdC5D IDE+JjUNCmNvbmZpZ3VyZTo5MzQ4OiBjaGVja2luZyB3aGV0aGVyIG9wZXJh dG9ycyBtdXN0IGJlIHJlLWRlZmluZWQgZm9yIHRlbXBsYXRlcyBkZXJpdmVk IGZyb20gdGVtcGxhdGVzDQpjb25maWd1cmU6OTM2NTogYysrIC1jICAtTyAt cGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFS Ni9pbmNsdWRlIGNvbmZ0ZXN0LkMgMT4mNQ0KY29uZmlndXJlOjkzODc6IGNo ZWNraW5nIHdoZXRoZXIgd2UgbmVlZCB0byBjYXN0IGEgZGVyaXZlZCB0ZW1w bGF0ZSB0byBwYXNzIGFzIGl0cyBiYXNlIGNsYXNzDQpjb25maWd1cmU6OTQw MTogYysrIC1jICAtTyAtcGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2L2luY2x1 ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LkMgMT4mNQ0KY29u ZmlndXJlOjk0MjI6IGNoZWNraW5nIHdoZXRoZXIgdGhlIGNvbXBpbGVyIGNh biByZXNvbHZlIGNvbnN0IGFtYmlndWl0aWVzIGZvciB0ZW1wbGF0ZXMNCmNv bmZpZ3VyZTo5NDQ4OiBjKysgLWMgIC1PIC1waXBlICAtTzIgICAtSS91c3Iv WDExUjYvaW5jbHVkZSAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgY29uZnRlc3Qu QyAxPiY1DQpjb25maWd1cmU6OTQ3MDogY2hlY2tpbmcgd2hldGhlciB0aGUg QysrICJ1c2luZyIga2V5d29yZCBjYW4gY2hhbmdlIGFjY2Vzcw0KY29uZmln dXJlOjk0ODY6IGMrKyAtYyAgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFS Ni9pbmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVkZSBjb25mdGVzdC5DIDE+ JjUNCmNvbmZpZ3VyZTo5NDgwOiBjYW5ub3QgYWRqdXN0IGFjY2VzcyB0byBg aW50IFg6OmdvKGNvbnN0IFggJiknIGluIGBjbGFzcyBZJw0KY29uZmlndXJl Ojk0Nzg6ICAgYmVjYXVzZSBvZiBsb2NhbCBtZXRob2QgYGludCBZOjpnbyhp bnQpJyB3aXRoIHNhbWUgbmFtZQ0KY29uZmlndXJlOiBmYWlsZWQgcHJvZ3Jh bSB3YXM6DQojbGluZSA5NDc1ICJjb25maWd1cmUiDQojaW5jbHVkZSAiY29u ZmRlZnMuaCINCmNsYXNzIFggeyBwdWJsaWM6IGludCBnbyhjb25zdCBYJikg e3JldHVybiAzO30gfTsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICBjbGFzcyBZIDogcHVibGljIFggew0KICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgcHVibGljOiAgaW50IGdvKGludCkge3JldHVybiAyO30N CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHByaXZhdGU6IHVz aW5nIFg6OmdvOw0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH07 DQppbnQgbWFpbigpIHsNClggeDsgWSB5Ow0KOyByZXR1cm4gMDsgfQ0KY29u ZmlndXJlOjk1MDc6IGNoZWNraW5nIHdoZXRoZXIgdGhlIEMrKyAidXNpbmci IGtleXdvcmQgcmVzb2x2ZXMgYW1iaWd1aXR5DQpjb25maWd1cmU6OTUyODog YysrIC1jICAtTyAtcGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUg IC1JL3Vzci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LkMgMT4mNQ0KY29uZmln dXJlOjk1MjI6IGNhbm5vdCBhZGp1c3QgYWNjZXNzIHRvIGBpbnQgWDo6am8o Y29uc3QgWCAmKScgaW4gYGNsYXNzIFknDQpjb25maWd1cmU6OTUxOTogICBi ZWNhdXNlIG9mIGxvY2FsIG1ldGhvZCBgaW50IFk6OmpvKGludCknIHdpdGgg c2FtZSBuYW1lDQpjb25maWd1cmU6OTUyMjogY2Fubm90IGFkanVzdCBhY2Nl c3MgdG8gYGludCBYOjpnbyhjb25zdCBYICYpJyBpbiBgY2xhc3MgWScNCmNv bmZpZ3VyZTo5NTE4OiAgIGJlY2F1c2Ugb2YgbG9jYWwgbWV0aG9kIGBpbnQg WTo6Z28oaW50KScgd2l0aCBzYW1lIG5hbWUNCmNvbmZpZ3VyZTogSW4gZnVu Y3Rpb24gYGludCBtYWluKCknOg0KY29uZmlndXJlOjk1MjQ6IG5vIG1hdGNo aW5nIGZ1bmN0aW9uIGZvciBjYWxsIHRvIGBZOjpqbyAoWCAmKScNCmNvbmZp Z3VyZTo5NTE5OiBjYW5kaWRhdGVzIGFyZTogaW50IFk6OmpvKGludCkNCmNv bmZpZ3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOg0KI2xpbmUgOTUxMiAiY29u ZmlndXJlIg0KI2luY2x1ZGUgImNvbmZkZWZzLmgiDQpjbGFzcyBYIHsgDQog ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICBwdWJsaWM6IGludCBn byhjb25zdCBYJikge3JldHVybiAzO30NCiAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgaW50IGpvKGNvbnN0IFgmKSB7cmV0dXJu IDM7fQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIH07DQogICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3MgWSA6IHB1YmxpYyBY IHsNCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIHB1YmxpYzog IGludCBnbyhpbnQpIHtyZXR1cm4gMjt9DQogICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICBpbnQgam8oaW50KSB7cmV0dXJuIDI7 fQ0KICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg dXNpbmcgWDo6am87DQogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICBwcml2YXRlOiB1c2luZyBYOjpnbzsNCiAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICB9Ow0KaW50IG1haW4oKSB7DQpYIHg7IFkgeTsgeS5qbyh4 KTsNCjsgcmV0dXJuIDA7IH0NCmNvbmZpZ3VyZTo5NTQ5OiBjaGVja2luZyBm b3IgInN0ZDo6IiBuYW1lc3BhY2UNCmNvbmZpZ3VyZTo5NTYxOiBjKysgLWMg IC1PIC1waXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUkvdXNy L1gxMVI2L2luY2x1ZGUgY29uZnRlc3QuQyAxPiY1DQpjb25maWd1cmU6OTU4 MjogY2hlY2tpbmcgd2hldGhlciBzdGFuZGFyZCB0ZW1wbGF0ZSBvcGVyYXRv ciE9KCkgaXMgYW1iaWd1b3VzDQpjb25maWd1cmU6OTU5NzogYysrIC1jICAt TyAtcGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9Y MTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LkMgMT4mNQ0KY29uZmlndXJlOjk2MTk6 IGNoZWNraW5nIGZvciBDKysgcmVpbnRlcnByZXRfY2FzdA0KY29uZmlndXJl Ojk2MzI6IGMrKyAtYyAgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9p bmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVkZSBjb25mdGVzdC5DIDE+JjUN CmNvbmZpZ3VyZTo5NjUzOiBjaGVja2luZyBmb3IgQysrIGR5bmFtaWNfY2Fz dCB0byB2b2lkKg0KY29uZmlndXJlOjk2ODA6IGMrKyAtbyBjb25mdGVzdCAg LU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAtSS91c3Iv WDExUjYvaW5jbHVkZSAgY29uZnRlc3QuQyAtbG0gIDE+JjUNCmNvbmZpZ3Vy ZTo5NzA0OiBjaGVja2luZyB3aGV0aGVyIEMrKyByZXF1aXJlcyBpbXBsZW1l bnRhdGlvbiBvZiB1bnVzZWQgdmlydHVhbCBtZXRob2RzDQpjb25maWd1cmU6 OTcxNjogYysrIC1vIGNvbmZ0ZXN0ICAtTyAtcGlwZSAgLU8yICAgLUkvdXNy L1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICBjb25mdGVz dC5DIC1sbSAgMT4mNQ0KY29uZmlndXJlOjk3MTA6IHdhcm5pbmc6IGFsbCBt ZW1iZXIgZnVuY3Rpb25zIGluIGNsYXNzIGBYJyBhcmUgcHJpdmF0ZQ0KL3Rt cC9jY21sSWloaC5vOiBJbiBmdW5jdGlvbiBgbWFpbic6DQovdG1wL2NjbWxJ aWhoLm8oLnRleHQrMHg5KTogdW5kZWZpbmVkIHJlZmVyZW5jZSB0byBgWCB2 aXJ0dWFsIHRhYmxlJw0KY29uZmlndXJlOiBmYWlsZWQgcHJvZ3JhbSB3YXM6 DQojbGluZSA5NzA5ICJjb25maWd1cmUiDQojaW5jbHVkZSAiY29uZmRlZnMu aCINCmNsYXNzIFgge3ByaXZhdGU6IHZpcnR1YWwgdm9pZCBuZXZlcl9jYWxs ZWQoKTt9Ow0KaW50IG1haW4oKSB7DQpYIHg7DQo7IHJldHVybiAwOyB9DQpj b25maWd1cmU6OTczOTogY2hlY2tpbmcgZm9yIHRyb3VibGUgY29tcGFyaW5n IHRvIHplcm8gbmVhciBzdGQ6Om9wZXJhdG9yIT0oKQ0KY29uZmlndXJlOjk3 NTU6IGMrKyAtYyAgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9pbmNs dWRlICAtSS91c3IvWDExUjYvaW5jbHVkZSBjb25mdGVzdC5DIDE+JjUNCmNv bmZpZ3VyZTo5Nzg3OiBjaGVja2luZyBmb3IgTENfTUVTU0FHRVMNCmNvbmZp Z3VyZTo5Nzk5OiBjYyAtYyAtTyAtcGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2 L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlIGNvbmZ0ZXN0LmMgMT4m NQ0KY29uZmlndXJlOjk5NzM6IGNoZWNraW5nIGZvciBqcGVnX2Rlc3Ryb3lf Y29tcHJlc3MgaW4gLWxqcGVnDQpjb25maWd1cmU6OTk5MjogY2MgLW8gY29u ZnRlc3QgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLU8gLXBpcGUgIC1PMiAgIC1J L3Vzci9YMTFSNi9pbmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVkZSAtTC91 c3IvbG9jYWwvbGliICBjb25mdGVzdC5jIC1sanBlZyAgLWxtICAxPiY1DQpj b25maWd1cmU6MTAwMzU6IGNjIC1vIGNvbmZ0ZXN0IC1JL3Vzci9sb2NhbC9p bmNsdWRlIC1PIC1waXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5jbHVkZSAg LUkvdXNyL1gxMVI2L2luY2x1ZGUgLUwvdXNyL2xvY2FsL2xpYiAgY29uZnRl c3QuYyAtbGpwZWcgIC1sbSAgMT4mNQ0KY29uZmlndXJlOjEwMDc2OiBjaGVj a2luZyBmb3IgZ3pyZWFkIGluIC1seg0KY29uZmlndXJlOjEwMDk1OiBjYyAt byBjb25mdGVzdCAtSXllcy9pbmNsdWRlIC1PIC1waXBlICAtTzIgICAtSS91 c3IvWDExUjYvaW5jbHVkZSAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgLUx5ZXMv bGliICBjb25mdGVzdC5jIC1seiAgLWxtICAxPiY1DQpjb25maWd1cmU6MTAx NDQ6IGNjIC1vIGNvbmZ0ZXN0IC1JeWVzL2luY2x1ZGUgLU8gLXBpcGUgIC1P MiAgIC1JL3Vzci9YMTFSNi9pbmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVk ZSAtTHllcy9saWIgIGNvbmZ0ZXN0LmMgLWx6ICAtbG0gIDE+JjUNCmNvbmZp Z3VyZToxMDE4NzogY2hlY2tpbmcgZm9yIHBuZ19nZXRfdmFsaWQgaW4gLWxw bmcNCmNvbmZpZ3VyZToxMDIwNjogY2MgLW8gY29uZnRlc3QgLUkvdXNyL2xv Y2FsL2luY2x1ZGUgIC1PIC1waXBlICAtTzIgICAtSS91c3IvWDExUjYvaW5j bHVkZSAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgLUwvdXNyL2xvY2FsL2xpYiAt bHogIC1seiAgY29uZnRlc3QuYyAtbHBuZyAgLWxtICAxPiY1DQpjb25maWd1 cmU6MTAyNDg6IGNjIC1vIGNvbmZ0ZXN0IC1JL3Vzci9sb2NhbC9pbmNsdWRl ICAtTyAtcGlwZSAgLU8yICAgLUkvdXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vz ci9YMTFSNi9pbmNsdWRlIC1ML3Vzci9sb2NhbC9saWIgLWx6ICAtbHogIGNv bmZ0ZXN0LmMgLWxwbmcgIC1sbSAgMT4mNQ0KY29uZmlndXJlOiBmYWlsZWQg cHJvZ3JhbSB3YXM6DQojbGluZSAxMDIzNCAiY29uZmlndXJlIg0KI2luY2x1 ZGUgImNvbmZkZWZzLmgiDQojaW5jbHVkZSA8c3RkaW8uaD4NCgkjaW5jbHVk ZSA8c3lzL3R5cGVzLmg+DQoJI2luY2x1ZGUgPHBuZy5oPg0KCWludCBtYWlu ICgpIHsNCgkgICAgI2lmIFBOR19MSUJQTkdfVkVSID49IDEwMjA1DQoJCWV4 aXQoMCk7DQoJICAgICNlbHNlDQoJCWV4aXQoMSk7DQoJICAgICNlbmRpZg0K CX0NCgkNCmNvbmZpZ3VyZToxMDI5MTogY2hlY2tpbmcgZm9yIG1uZ19pbml0 aWFsaXplIGluIC1sbW5nDQpjb25maWd1cmU6MTAzMTA6IGNjIC1vIGNvbmZ0 ZXN0IC1JL3Vzci9sb2NhbC9pbmNsdWRlICAtTyAtcGlwZSAgLU8yICAgLUkv dXNyL1gxMVI2L2luY2x1ZGUgIC1JL3Vzci9YMTFSNi9pbmNsdWRlIC1ML3Vz ci9sb2NhbC9saWIgLWx6ICAtbHogIGNvbmZ0ZXN0LmMgLWxtbmcgIC1sbSAg MT4mNQ0KY29uZmlndXJlOjEwMzUyOiBjYyAtbyBjb25mdGVzdCAtSS91c3Iv bG9jYWwvaW5jbHVkZSAgLU8gLXBpcGUgIC1PMiAgIC1JL3Vzci9YMTFSNi9p bmNsdWRlICAtSS91c3IvWDExUjYvaW5jbHVkZSAtTC91c3IvbG9jYWwvbGli IC1seiAgLWx6ICBjb25mdGVzdC5jIC1sbW5nICAtbG0gIDE+JjUNCmNvbmZp Z3VyZToxMDU3MDogY2hlY2tpbmcgZm9yIGd0ay1jb25maWcNCmNvbmZpZ3Vy ZToxMDYwNTogY2hlY2tpbmcgZm9yIEdUSyAtIHZlcnNpb24gPj0gMS4yLjAN CmNvbmZpZ3VyZToxMDcwNjogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUgIC1P MiAtSS91c3IvWDExUjYvaW5jbHVkZS9ndGsxMiAtSS91c3IvbG9jYWwvaW5j bHVkZS9nbGliMTIgLUkvdXNyL2xvY2FsL2luY2x1ZGUgLUkvdXNyL1gxMVI2 L2luY2x1ZGUgICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUkvdXNyL1gxMVI2 L2luY2x1ZGUgIGNvbmZ0ZXN0LmMgLWxtICAtTC91c3IvWDExUjYvbGliIC1M L3Vzci9YMTFSNi9saWIgLWxndGsxMiAtbGdkazEyIC1ML3Vzci9sb2NhbC9s aWIgLVdsLC1FIC1sZ21vZHVsZTEyIC1sZ2xpYjEyIC1saW50bCAtbFhpIC1s WGV4dCAtbFgxMSAtbG0gMT4mNQ0KY29uZmlndXJlOjExMjczOiBjaGVja2lu ZyBmb3IgZnJlZXR5cGUtY29uZmlnDQpjb25maWd1cmU6MTEzMDk6IGNoZWNr aW5nIGZvciBGcmVlVHlwZSAtIHZlcnNpb24gPj0gNi4xLjANCmNvbmZpZ3Vy ZToxMTM4MzogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUgIC1PMiAtSS91c3Iv bG9jYWwvaW5jbHVkZS9mcmVldHlwZTIgLUkvdXNyL2xvY2FsL2luY2x1ZGUg ICAtSS91c3IvWDExUjYvaW5jbHVkZSAgLUkvdXNyL1gxMVI2L2luY2x1ZGUg IGNvbmZ0ZXN0LmMgLUwvdXNyL2xvY2FsL2xpYiAtbGZyZWV0eXBlIC1sbSAg MT4mNQ0KY29uZmlndXJlOjExNDU2OiBjaGVja2luZyBmb3IgcGtnLWNvbmZp Zw0KY29uZmlndXJlOjExNTAwOiBjaGVja2luZyBmb3IgeGZ0DQo= --0-527818466-1055183967=:13203 Content-Type: TEXT/PLAIN; charset=US-ASCII; name=var-db-pkg Content-Transfer-Encoding: BASE64 Content-ID: Content-Description: Content-Disposition: attachment; filename=var-db-pkg T1JCaXQtMC41LjE3DQpYRnJlZTg2LTQuMi4wXzEsMQ0KWEZyZWU4Ni1Gb250 U2VydmVyLTQuMi4wDQpYRnJlZTg2LVNlcnZlci00LjIuMV8zDQpYRnJlZTg2 LWNsaWVudHMtNC4yLjFfMQ0KWEZyZWU4Ni1kb2N1bWVudHMtNC4yLjANClhG cmVlODYtZm9udDEwMGRwaS00LjIuMA0KWEZyZWU4Ni1mb250NzVkcGktNC4y LjANClhGcmVlODYtZm9udEN5cmlsbGljLTQuMi4wXzQNClhGcmVlODYtZm9u dERlZmF1bHRCaXRtYXBzLTQuMi4wDQpYRnJlZTg2LWZvbnRFbmNvZGluZ3Mt NC4yLjANClhGcmVlODYtZm9udFNjYWxhYmxlLTQuMi4wDQpYRnJlZTg2LWxp YnJhcmllcy00LjIuMV8xDQpYZnQtMi4xXzcNCmJhc2gtMi4wNWIuMDA0DQpj Y2xpZW50LTIwMDFhLDENCmN2c3VwLTE2LjFmDQpmb250Y29uZmlnLTIuMS45 Mg0KZnJlZXR5cGUyLTIuMS4yDQpndGstMS4yLjEwXzkNCmltYWtlLTQuMi4w XzENCmlwZnctZ3JhcGgtMS40DQpsaWJtbmctMS4wLjUNCmxpbnV4X2Jhc2Ut Ny4xXzENCm1vZF90aHJvdHRsZS0zLjEuMg0KbXRyLWd0ay0wLjUyDQpwNS1B dXRoZW4tU0FTTC0yLjAyDQpwNS1EaWdlc3QtSE1BQy0xLjAxDQpwNS1EaWdl c3QtTUQ1LTIuMjINCnA1LURpZ2VzdC1TSEExLTIuMDINCnA1LUZpbGUtU3Bl Yy0wLjgyDQpwNS1IVE1MLVBhcnNlci0zLjI3DQpwNS1IVE1MLVRhZ3NldC0z LjAzDQpwNS1NSU1FLUJhc2U2NC0yLjE4DQpwNS1NYWlsLVNwYW1Bc3Nhc3Np bi0yLjUzDQpwNS1NYWlsLVRvb2xzLTEuNTgNCnA1LU5ldC0xLjEyLDENCnA1 LU5ldC1ETlMtMC4zNA0KcDUtUG9kUGFyc2VyLTEuMjENCnBpbmUtNC40NA0K d3JhcHBlci0xLjBfMg0KemlwLTIuM18xDQo= --0-527818466-1055183967=:13203-- From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 11:38:50 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CE3937B401 for ; Mon, 9 Jun 2003 11:38:48 -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 543F843FDD for ; Mon, 9 Jun 2003 11:38:46 -0700 (PDT) (envelope-from martin@kleinerdrache.org) Received: (qmail 96123 invoked by uid 0); 9 Jun 2003 18:38:44 -0000 Date: 9 Jun 2003 18:38:44 -0000 Message-ID: <20030609183844.96122.qmail@httpd1.terions.de> To: FreeBSD-gnats-submit@freebsd.org From: Martin Klaffenboeck X-send-pr-version: 3.113 X-GNATS-Notify: cc: gnome@freebsd.org Subject: [UPDATE] gdeskcal 0.51 -> 0.52 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Martin Klaffenboeck List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 18:38:50 -0000 >Submitter-Id: current-users >Originator: Martin Klaffenboeck >Organization: >Confidential: no >Synopsis: [UPDATE] gdeskcal 0.51 -> 0.52 >Severity: non-critical >Priority: low >Category: ports >Class: maintainer-update >Release: FreeBSD 4.8-STABLE i386 >Environment: System: 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 >Description: This is the update from gdeskcal 0.51 to 0.52. Everything is ok. Btw, how can I set a default sender address for send-pr? I always have to set the From and Reply-To header. Thanks for an answer. Martin >How-To-Repeat: >Fix: --- gdeskcal.diff begins here --- diff -Nur gdeskcal.orig/Makefile gdeskcal/Makefile --- gdeskcal.orig/Makefile Wed May 21 11:02:16 2003 +++ gdeskcal/Makefile Mon Jun 9 20:32:51 2003 @@ -6,7 +6,7 @@ # PORTNAME= gdeskcal -PORTVERSION= 0.51 +PORTVERSION= 0.52 CATEGORIES= deskutils python gnome MASTER_SITES= http://www.pycage.de/download/ DISTNAME= gDeskCal-${PORTVERSION:S/./_/} @@ -38,7 +38,7 @@ ${MKDIR} ${PREFIX}/share/locale/ar/LC_MESSAGES -.for i in ar cs de el es fr he hu it ja nl ru tr zh_CN +.for i in ar cs de el es fr he hu it ja nl ru tr zh_CN ko ${MKDIR} ${PREFIX}/share/locale/${i}/LC_MESSAGES ${INSTALL_DATA} ${WRKSRC}/locale/${i}/LC_MESSAGES/gdeskcal.mo \ ${PREFIX}/share/locale/${i}/LC_MESSAGES diff -Nur gdeskcal.orig/distinfo gdeskcal/distinfo --- gdeskcal.orig/distinfo Wed May 21 11:02:16 2003 +++ gdeskcal/distinfo Mon Jun 9 20:34:04 2003 @@ -1 +1 @@ -MD5 (gDeskCal-0_51.tar.gz) = 3f568a639f1c0c20954c98860d72a5dc +MD5 (gDeskCal-0_52.tar.gz) = 039a0e7ccd2c17b27802f4e60b415e79 diff -Nur gdeskcal.orig/pkg-plist gdeskcal/pkg-plist --- gdeskcal.orig/pkg-plist Wed May 21 11:02:16 2003 +++ gdeskcal/pkg-plist Mon Jun 9 20:35:30 2003 @@ -64,6 +64,7 @@ share/locale/hu/LC_MESSAGES/gdeskcal.mo share/locale/it/LC_MESSAGES/gdeskcal.mo share/locale/ja/LC_MESSAGES/gdeskcal.mo +share/locale/ko/LC_MESSAGES/gdeskcal.mo share/locale/nl/LC_MESSAGES/gdeskcal.mo share/locale/ru/LC_MESSAGES/gdeskcal.mo share/locale/tr/LC_MESSAGES/gdeskcal.mo --- gdeskcal.diff ends here --- From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 13:25:02 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 700DD37B401 for ; Mon, 9 Jun 2003 13:25:02 -0700 (PDT) Received: from mail48.fg.online.no (mail48-s.fg.online.no [148.122.161.48]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F80843FCB for ; Mon, 9 Jun 2003 13:25:00 -0700 (PDT) (envelope-from morten@rodal.no) Received: from slimy.rodal.no (ti121210a080-2151.bb.online.no [80.212.8.103]) by mail48.fg.online.no (8.9.3p2/8.9.3) with ESMTP id WAA22102 for ; Mon, 9 Jun 2003 22:24:55 +0200 (MEST) Received: from atlantis.rodal.no (atlantis.rodal.no [192.168.20.62]) by slimy.rodal.no (8.12.8p1/8.12.8) with ESMTP id h59KOqGZ018128 for ; Mon, 9 Jun 2003 22:24:52 +0200 (CEST) (envelope-from morten@rodal.no) Received: (from morten@localhost) by atlantis.rodal.no (8.12.9/8.12.9/Submit) id h59KOpMY011145 for gnome@freebsd.org; Mon, 9 Jun 2003 22:24:51 +0200 (CEST) (envelope-from morten) Date: Mon, 9 Jun 2003 22:24:51 +0200 From: Morten Rodal To: gnome@freebsd.org Message-ID: <20030609202451.GA10754@atlantis.rodal.no> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OXfL5xGRrasGEqWY" Content-Disposition: inline Subject: gnome2 and checking length of commandline args X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 20:25:02 -0000 --OXfL5xGRrasGEqWY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Could the check for the length of the commandline arguments be made any smarter/quicker? Perhaps using the sysctl kern.argmax? As of right now many of the gnome2 ports spend about 1-2 minutes at the checking the maximum length of command line arguments...=20 in the configure script. --=20 Morten Rodal --OXfL5xGRrasGEqWY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+5O0TbWe1Cy11WVsRAsEBAKDdjP7B9UioNjZq22Ow7/IJwZbyVQCeOTy9 IeXYLkE8XMbnEdMl2coRNc8= =4LdD -----END PGP SIGNATURE----- --OXfL5xGRrasGEqWY-- From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 14:17:01 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB21237B401 for ; Mon, 9 Jun 2003 14:17:01 -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 9B0CD43F75 for ; Mon, 9 Jun 2003 14:17:00 -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 h59LGr0u032556; Mon, 9 Jun 2003 17:16:53 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h59LGqTc032553; Mon, 9 Jun 2003 17:16:53 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 9 Jun 2003 17:16:52 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: a blue dreaming In-Reply-To: Message-ID: <20030609171623.N32525@shumai.marcuscom.com> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: gnome@freebsd.org Subject: Re: error in /usr/ports/www/galeon2 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 21:17:02 -0000 On Mon, 9 Jun 2003, a blue dreaming wrote: > > hello: > > as suggested in the error report, i am reporting this problem... Make sure you have XFree86-4.3.0 installed, then install Xft-2.1.2 (x11-fonts/Xft). After that, you'll be set. Joe > > > robert mohns > > ################################################ > > > checking for xft... gnome-config: not found > gnome-config: not found > Package xft was not found in the pkg-config search path. > Perhaps you should add the directory containing `xft.pc' > to the PKG_CONFIG_PATH environment variable > No package 'xft' found > > configure: error: Library requirements (xft) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them. > ===> Script "configure" failed unexpectedly. > Please report the problem to gnome@FreeBSD.org [maintainer] and attach > the "/usr/ports/www/mozilla/work/mozilla/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/www/mozilla. > *** Error code 1 > > Stop in /usr/ports/www/mozilla-headers. > *** Error code 1 > > Stop in /usr/ports/www/galeon2. > dot# > > ################################################ > > contents of /var/db/pkg are: > > ORBit-0.5.17 > XFree86-4.2.0_1,1 > XFree86-FontServer-4.2.0 > XFree86-Server-4.2.1_3 > XFree86-clients-4.2.1_1 > XFree86-documents-4.2.0 > XFree86-font100dpi-4.2.0 > XFree86-font75dpi-4.2.0 > XFree86-fontCyrillic-4.2.0_4 > XFree86-fontDefaultBitmaps-4.2.0 > XFree86-fontEncodings-4.2.0 > XFree86-fontScalable-4.2.0 > XFree86-libraries-4.2.1_1 > Xft-2.1_7 > bash-2.05b.004 > cclient-2001a,1 > cvsup-16.1f > fontconfig-2.1.92 > freetype2-2.1.2 > gtk-1.2.10_9 > imake-4.2.0_1 > ipfw-graph-1.4 > libmng-1.0.5 > linux_base-7.1_1 > mod_throttle-3.1.2 > mtr-gtk-0.52 > p5-Authen-SASL-2.02 > p5-Digest-HMAC-1.01 > p5-Digest-MD5-2.22 > p5-Digest-SHA1-2.02 > p5-File-Spec-0.82 > p5-HTML-Parser-3.27 > p5-HTML-Tagset-3.03 > p5-MIME-Base64-2.18 > p5-Mail-SpamAssassin-2.53 > p5-Mail-Tools-1.58 > p5-Net-1.12,1 > p5-Net-DNS-0.34 > p5-PodParser-1.21 > pine-4.44 > wrapper-1.0_2 > zip-2.3_1 > > ################################################ > > -- > do not mistake | Robert Mohns > coincidence | rmohns@downwardspiral.net > for destiny | http://downwardspiral.net/~rmohns > ------------------+---------------------------------------------------- PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 14:49:33 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D7CF37B401; Mon, 9 Jun 2003 14:49:33 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09EBD43FB1; Mon, 9 Jun 2003 14:49:33 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: from freefall.freebsd.org (lioux@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h59LnWUp078310; Mon, 9 Jun 2003 14:49:32 -0700 (PDT) (envelope-from lioux@freefall.freebsd.org) Received: (from lioux@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h59LnWLX078306; Mon, 9 Jun 2003 14:49:32 -0700 (PDT) Date: Mon, 9 Jun 2003 14:49:32 -0700 (PDT) From: Mario Sergio Fujikawa Ferreira Message-Id: <200306092149.h59LnWLX078306@freefall.freebsd.org> To: lioux@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/52893: Update port: converters/libiconv to 1.9.1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 21:49:33 -0000 Synopsis: Update port: converters/libiconv to 1.9.1 Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: lioux Responsible-Changed-When: Mon Jun 9 14:49:32 PDT 2003 Responsible-Changed-Why: Over to maintainer(s) http://www.freebsd.org/cgi/query-pr.cgi?pr=52893 From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 15:05:48 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FE2C37B401; Mon, 9 Jun 2003 15:05:48 -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 41C5D43FBF; Mon, 9 Jun 2003 15:05:45 -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 h59M5c0u032793; Mon, 9 Jun 2003 18:05:38 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h59M5bFn032790; Mon, 9 Jun 2003 18:05:37 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Mon, 9 Jun 2003 18:05:37 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: Murray Stokely In-Reply-To: <20030609072437.GC390@freebsdmall.com> Message-ID: <20030609180145.K32633@shumai.marcuscom.com> References: <20030609072437.GC390@freebsdmall.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: gnome@freebsd.org cc: re@freebsd.org cc: portmgr@freebsd.org Subject: Re: gnome-terminal input weirdness with 5.1-RELEASE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 22:05:48 -0000 On Mon, 9 Jun 2003, Murray Stokely wrote: > When I install gnome from the 5.1-RELEASE ISO, the keyboard input in > gnome-terminal is erratic. Often, keypresses result in 3-4 keyboard > events being sent. > > Typing 'uname' for example, will display > > uuuunnnnammmeeee > > or similar. All keys seem to be effected. The keyboard is fine and > is not sticking from the console, or in kterm in the KDE environment. > > Is this a known issue with the Gnome port for 5.1-RELEASE? > > Can someone verify for me if gnome-terminal works OK for them from the > 5.1-RELEASE ISO? (i386) Murray, I have done a limited test, and another user has done a more through test. Both were successful. I get in to San Jose tomorrow, so hopefully I'll be able to find a machine to install 5.1 on, and give it a thorough try myself. Joe > > Thanks, > > - Murray > > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" > > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 15:13:03 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 348FB37B401; Mon, 9 Jun 2003 15:13:02 -0700 (PDT) Received: from builder.freebsdmall.com (builder.freebsdmall.com [65.86.180.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC37643F93; Mon, 9 Jun 2003 15:13:01 -0700 (PDT) (envelope-from root@builder.freebsdmall.com) Received: by builder.freebsdmall.com (Postfix, from userid 0) id 8618613D4; Mon, 9 Jun 2003 15:13:01 -0700 (PDT) Date: Mon, 9 Jun 2003 15:13:01 -0700 From: Murray Stokely To: Joe Marcus Clarke Message-ID: <20030609221301.GK390@freebsdmall.com> References: <20030609072437.GC390@freebsdmall.com> <20030609180145.K32633@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030609180145.K32633@shumai.marcuscom.com> User-Agent: Mutt/1.4i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D cc: gnome@freebsd.org cc: re@freebsd.org cc: portmgr@freebsd.org Subject: Re: gnome-terminal input weirdness with 5.1-RELEASE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 22:13:03 -0000 On Mon, Jun 09, 2003 at 06:05:37PM -0400, Joe Marcus Clarke wrote: > > Can someone verify for me if gnome-terminal works OK for them from the > > 5.1-RELEASE ISO? (i386) > > Murray, I have done a limited test, and another user has done a more > through test. Both were successful. > > I get in to San Jose tomorrow, so hopefully I'll be able to find a machine > to install 5.1 on, and give it a thorough try myself. Ok thanks for the update. I'll look into this more on my end as well. - Murray From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 15:15:27 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7D7F37B404; Mon, 9 Jun 2003 15:15:27 -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 AD89C43FAF; Mon, 9 Jun 2003 15:15:26 -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 75E7666B9B; Mon, 9 Jun 2003 15:15:26 -0700 (PDT) Received: by rot13.obsecurity.org (Postfix, from userid 1000) id 6BD6DB74; Mon, 9 Jun 2003 15:15:26 -0700 (PDT) Date: Mon, 9 Jun 2003 15:15:26 -0700 From: Kris Kennaway To: Joe Marcus Clarke Message-ID: <20030609221526.GC94211@rot13.obsecurity.org> References: <20030609120243.GA60447@rot13.obsecurity.org> <20030609110810.Y30408@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="aT9PWwzfKXlsBJM1" Content-Disposition: inline In-Reply-To: <20030609110810.Y30408@shumai.marcuscom.com> User-Agent: Mutt/1.4.1i cc: gnome@freebsd.org cc: Kris Kennaway Subject: Re: pkg-plist problems X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 22:15:28 -0000 --aT9PWwzfKXlsBJM1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Jun 09, 2003 at 11:09:38AM -0400, Joe Marcus Clarke wrote: > On Mon, 9 Jun 2003, Kris Kennaway wrote: >=20 > > Quite a few gnome ports have problems with their pkg-plist that cause > > them to leave files behind upon deinstallation. > > > > To pick one example: > > > > http://bento.freebsd.org/errorlogs/i386-4-latest-logs/gnomespell-0.5.= log >=20 > This is embarrassing. I don't know how I let this one slip. Those locale > dirs should be sans .mo. >=20 > > > > The full list is here: > > > > http://bento.freebsd.org/errorlogs/i386-4-latest-logs/extras.html > > > > Can someone please investigate? >=20 > I'll be sure to give it my full attention when I return. Great, thanks. Kris P.S. Now go and enjoy your vacation! :-) --aT9PWwzfKXlsBJM1 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+5Qb9Wry0BWjoQKURAl5uAJ9816pUJruvrtU2bm38AEHpZzCL4ACfZXUW 53fQJpIrkoi2MttZOb3Q+AE= =LYZ9 -----END PGP SIGNATURE----- --aT9PWwzfKXlsBJM1-- From owner-freebsd-gnome@FreeBSD.ORG Mon Jun 9 15:21:50 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89E8137B401; Mon, 9 Jun 2003 15:21:50 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2520343FDF; Mon, 9 Jun 2003 15:21:50 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: from freefall.freebsd.org (lioux@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h59MLoUp083774; Mon, 9 Jun 2003 15:21:50 -0700 (PDT) (envelope-from lioux@freefall.freebsd.org) Received: (from lioux@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h59MLoCZ083770; Mon, 9 Jun 2003 15:21:50 -0700 (PDT) Date: Mon, 9 Jun 2003 15:21:50 -0700 (PDT) From: Mario Sergio Fujikawa Ferreira Message-Id: <200306092221.h59MLoCZ083770@freefall.freebsd.org> To: lioux@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/52974: evolution-devel installs broken .pc files X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Jun 2003 22:21:50 -0000 Synopsis: evolution-devel installs broken .pc files Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: lioux Responsible-Changed-When: Mon Jun 9 15:21:49 PDT 2003 Responsible-Changed-Why: Over to maintainer(s) http://www.freebsd.org/cgi/query-pr.cgi?pr=52974 From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 06:53:10 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FA8137B401 for ; Tue, 10 Jun 2003 06:53:10 -0700 (PDT) Received: from mailout04.sul.t-online.com (mailout04.sul.t-online.com [194.25.134.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5544C43FF9 for ; Tue, 10 Jun 2003 06:53:09 -0700 (PDT) (envelope-from Alexander@Leidinger.net) Received: from fwd00.aul.t-online.de by mailout04.sul.t-online.com with smtp id 19PjYh-0007fZ-00; Tue, 10 Jun 2003 15:53:07 +0200 Received: from Andro-Beta.Leidinger.net (VOdyuuZTQefbGaDPj0VPtgEBzPqMna9CyxPX9OX6cs1iFDiPbxLe8+@[80.131.127.146]) by fmrl00.sul.t-online.com with esmtp id 19PjYR-01q7IO0; Tue, 10 Jun 2003 15:52:51 +0200 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) h5ADqooM059274 for ; Tue, 10 Jun 2003 15:52:50 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.9/8.12.9) with SMTP id h5ADqnoF081197 for ; Tue, 10 Jun 2003 15:52:49 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Tue, 10 Jun 2003 15:52:49 +0200 From: Alexander Leidinger To: gnome@freebsd.org Message-Id: <20030610155249.6479988c.Alexander@Leidinger.net> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart_Tue__10_Jun_2003_15:52:49_+0200_091d6200" X-Seen: false X-ID: VOdyuuZTQefbGaDPj0VPtgEBzPqMna9CyxPX9OX6cs1iFDiPbxLe8+@t-dialin.net Subject: glib20 pango and gtk20 update (patch) X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2003 13:53:10 -0000 This is a multi-part message in MIME format. --Multipart_Tue__10_Jun_2003_15:52:49_+0200_091d6200 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Hi, attached are diffs to update glib2, pango and gtk2 to the newly released versions. I haven't checked if the plist has to get updated (except for lib/pango/1.2.0/modules). Note for other committers: the LIBS part in the gtk diff is necessary to detect Xrandr. Bye, Alexander. -- Actually, Microsoft is sort of a mixture between the Borg and the Ferengi. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 --Multipart_Tue__10_Jun_2003_15:52:49_+0200_091d6200 Content-Type: text/plain; name="pango.diff" Content-Disposition: attachment; filename="pango.diff" Content-Transfer-Encoding: 8bit Index: Makefile =================================================================== RCS file: /big/FreeBSD-CVS/ports/x11-toolkits/pango/Makefile,v retrieving revision 1.49 diff -u -r1.49 Makefile --- Makefile 3 Jun 2003 00:21:45 -0000 1.49 +++ Makefile 10 Jun 2003 13:16:03 -0000 @@ -6,8 +6,7 @@ # PORTNAME= pango -PORTVERSION= 1.2.2 -PORTREVISION= 1 +PORTVERSION= 1.2.3 CATEGORIES= x11-toolkits MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/${PORTNAME}/1.2,} \ ftp://ftp.gtk.org/pub/gtk/v2.0/ \ Index: distinfo =================================================================== RCS file: /big/FreeBSD-CVS/ports/x11-toolkits/pango/distinfo,v retrieving revision 1.17 diff -u -r1.17 distinfo --- distinfo 1 Jun 2003 08:08:27 -0000 1.17 +++ distinfo 10 Jun 2003 13:16:50 -0000 @@ -1 +1 @@ -MD5 (gnome2/pango-1.2.2.tar.bz2) = b8858106b9c7c9b040fc466c95909713 +MD5 (gnome2/pango-1.2.3.tar.bz2) = 12247592ea582907cfd2de81aeb32caf --Multipart_Tue__10_Jun_2003_15:52:49_+0200_091d6200 Content-Type: text/plain; name="glib20.diff" Content-Disposition: attachment; filename="glib20.diff" Content-Transfer-Encoding: 8bit Index: Makefile =================================================================== RCS file: /big/FreeBSD-CVS/ports/devel/glib20/Makefile,v retrieving revision 1.82 diff -u -r1.82 Makefile --- Makefile 29 Apr 2003 16:25:56 -0000 1.82 +++ Makefile 10 Jun 2003 12:45:43 -0000 @@ -6,8 +6,7 @@ # PORTNAME= glib -PORTVERSION= 2.2.1 -PORTREVISION= 1 +PORTVERSION= 2.2.2 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/${PORTNAME}/2.2,} \ ftp://ftp.gtk.org/pub/gtk/v2.0/ \ Index: distinfo =================================================================== RCS file: /big/FreeBSD-CVS/ports/devel/glib20/distinfo,v retrieving revision 1.36 diff -u -r1.36 distinfo --- distinfo 7 Feb 2003 18:42:02 -0000 1.36 +++ distinfo 10 Jun 2003 12:46:21 -0000 @@ -1 +1 @@ -MD5 (gnome2/glib-2.2.1.tar.bz2) = 42406a17819080326e105f8333963b97 +MD5 (gnome2/glib-2.2.2.tar.bz2) = 3e9a9512943c81a78cafa0536dcc8b41 --Multipart_Tue__10_Jun_2003_15:52:49_+0200_091d6200 Content-Type: text/plain; name="gtk20.diff" Content-Disposition: attachment; filename="gtk20.diff" Content-Transfer-Encoding: 8bit Index: Makefile =================================================================== RCS file: /big/FreeBSD-CVS/ports/x11-toolkits/gtk20/Makefile,v retrieving revision 1.113 diff -u -r1.113 Makefile --- Makefile 3 May 2003 07:07:01 -0000 1.113 +++ Makefile 10 Jun 2003 13:31:37 -0000 @@ -6,8 +6,7 @@ # PORTNAME= gtk -PORTVERSION= 2.2.1 -PORTREVISION= 1 +PORTVERSION= 2.2.2 CATEGORIES= x11-toolkits MASTER_SITES= ${MASTER_SITE_GNOME:S,%SUBDIR%,sources/gtk+/2.2,} \ ftp://ftp.gtk.org/pub/gtk/v2.0/ \ @@ -39,7 +38,7 @@ CONFIGURE_ARGS= --enable-static CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include/freetype2 \ -I${LOCALBASE}/include -I${X11BASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" + LDFLAGS="-L${LOCALBASE}/lib" LIBS="-L${X11BASE}/lib" PLIST_SUB= GTK_VERSION="2.2.0" MAN1= gdk-pixbuf-csource.1 Index: distinfo =================================================================== RCS file: /big/FreeBSD-CVS/ports/x11-toolkits/gtk20/distinfo,v retrieving revision 1.55 diff -u -r1.55 distinfo --- distinfo 7 Feb 2003 18:42:22 -0000 1.55 +++ distinfo 10 Jun 2003 13:04:11 -0000 @@ -1 +1 @@ -MD5 (gnome2/gtk+-2.2.1.tar.bz2) = dfd5755fddb26a46c96bfaa813280ac4 +MD5 (gnome2/gtk+-2.2.2.tar.bz2) = 5a7c639f0f2d682bdc17e3f81c17c79c --Multipart_Tue__10_Jun_2003_15:52:49_+0200_091d6200-- From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 07:35:48 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6073B37B401; Tue, 10 Jun 2003 07:35:48 -0700 (PDT) Received: from mailout08.sul.t-online.com (mailout08.sul.t-online.com [194.25.134.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEA4243F75; Tue, 10 Jun 2003 07:35:42 -0700 (PDT) (envelope-from Alexander@Leidinger.net) Received: from fwd00.aul.t-online.de by mailout08.sul.t-online.com with smtp id 19PkDr-0005Ia-05; Tue, 10 Jun 2003 16:35:39 +0200 Received: from Andro-Beta.Leidinger.net (SUrEX-ZrQetc25C9nEqinlbZRAMFLC4mPw0Bsow59Cax8IAGH3MHgr@[80.131.127.146]) by fmrl00.sul.t-online.com with esmtp id 19PkDj-0DEGtE0; Tue, 10 Jun 2003 16:35:31 +0200 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) h5AEZUoM059425; Tue, 10 Jun 2003 16:35:30 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.9/8.12.9) with SMTP id h5AEZToF063916; Tue, 10 Jun 2003 16:35:29 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Tue, 10 Jun 2003 16:35:29 +0200 From: Alexander Leidinger To: Joe Marcus Clarke Message-Id: <20030610163529.33565513.Alexander@Leidinger.net> In-Reply-To: <20030609110218.D30408@shumai.marcuscom.com> References: <20030608205841.7f5a4f2b.Alexander@Leidinger.net> <20030608175012.Y5841@shumai.marcuscom.com> <20030609083831.2edb7559.Alexander@Leidinger.net> <20030609110218.D30408@shumai.marcuscom.com> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="Multipart_Tue__10_Jun_2003_16:35:29_+0200_08f0da00" X-Seen: false X-ID: SUrEX-ZrQetc25C9nEqinlbZRAMFLC4mPw0Bsow59Cax8IAGH3MHgr@t-dialin.net cc: gnome@freebsd.org Subject: Re: libgda2 autodetecting already installed DBSs (patch) X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2003 14:35:48 -0000 This is a multi-part message in MIME format. --Multipart_Tue__10_Jun_2003_16:35:29_+0200_08f0da00 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Mon, 9 Jun 2003 11:02:53 -0400 (EDT) Joe Marcus Clarke wrote: > > > This looks nice, Alexander. I'll commit it when I get back from vacation. > > > > Committing it myself isn't an option? > > It would be, but the gnome-db people just release 0.12.1 of everything, > and I want to get everything in one fell swoop. Patch attached. The plist isn't really checked, I only corrected the libgnomedb major version (it's an entry in the announcement, so I looked at it). Bye, Alexander. -- Weird enough for government work. http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 --Multipart_Tue__10_Jun_2003_16:35:29_+0200_08f0da00 Content-Type: text/plain; name="libgnomedb.diff" Content-Disposition: attachment; filename="libgnomedb.diff" Content-Transfer-Encoding: 8bit Index: Makefile =================================================================== RCS file: /big/FreeBSD-CVS/ports/databases/libgnomedb/Makefile,v retrieving revision 1.15 diff -u -r1.15 Makefile --- Makefile 1 Jun 2003 00:33:20 -0000 1.15 +++ Makefile 10 Jun 2003 14:10:35 -0000 @@ -6,7 +6,7 @@ # PORTNAME= libgnomedb -PORTVERSION= 0.12.0 +PORTVERSION= 0.12.1 CATEGORIES= databases gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/libgnomedb/0.12 Index: distinfo =================================================================== RCS file: /big/FreeBSD-CVS/ports/databases/libgnomedb/distinfo,v retrieving revision 1.8 diff -u -r1.8 distinfo --- distinfo 1 Jun 2003 00:33:20 -0000 1.8 +++ distinfo 10 Jun 2003 14:10:56 -0000 @@ -1 +1 @@ -MD5 (gnome2/libgnomedb-0.12.0.tar.bz2) = 152461ff1fdc78cac3151dafbe20c830 +MD5 (gnome2/libgnomedb-0.12.1.tar.bz2) = 78816530d0740016dd1b98effb56c811 Index: pkg-plist =================================================================== RCS file: /big/FreeBSD-CVS/ports/databases/libgnomedb/pkg-plist,v retrieving revision 1.10 diff -u -r1.10 pkg-plist --- pkg-plist 2 Jun 2003 18:18:02 -0000 1.10 +++ pkg-plist 10 Jun 2003 14:19:38 -0000 @@ -40,7 +40,7 @@ lib/gnome-vfs-2.0/modules/libdatabase.so lib/libgnomedb-2.a lib/libgnomedb-2.so -lib/libgnomedb-2.so.2 +lib/libgnomedb-2.so.3 libdata/pkgconfig/libgnomedb.pc libdata/bonobo/servers/GNOME_Database_Components.server libdata/bonobo/servers/GNOME_Database_Monikers.server --Multipart_Tue__10_Jun_2003_16:35:29_+0200_08f0da00 Content-Type: text/plain; name="libgda2.diff" Content-Disposition: attachment; filename="libgda2.diff" Content-Transfer-Encoding: 8bit Index: Makefile =================================================================== RCS file: /big/FreeBSD-CVS/ports/databases/libgda2/Makefile,v retrieving revision 1.40 diff -u -r1.40 Makefile --- Makefile 1 Jun 2003 00:31:46 -0000 1.40 +++ Makefile 10 Jun 2003 14:02:25 -0000 @@ -6,7 +6,7 @@ # PORTNAME= libgda2 -PORTVERSION= 0.12.0 +PORTVERSION= 0.12.1 CATEGORIES= databases gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME:S/2$//}/0.12 @@ -34,26 +34,99 @@ MAN1= gda-config-tool.1 MAN5= gda-config.5 -.if defined(WITH_MYSQL) +.include + +.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.10) +WITH_MYSQL3= yes +.endif + +.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.12) +WITH_MYSQL40= yes +.endif + +.if exists(${LOCALBASE}/lib/mysql/libmysqlclient.so.14) +WITH_MYSQL41= yes +.endif + +.if exists(${LOCALBASE}/lib/libpq.so.3) +WITH_POSTGRES7= yes +.endif + +.if exists(${LOCALBASE}/lib/libpgeasy.so.2) +WITH_POSTGRES72=yes +.endif + +.if exists(${LOCALBASE}/lib/libldap.so.2) +WITH_LDAP=yes +.endif + +.if exists(${LOCALBASE}/firebird/lib/libgds.so.1) +WITH_FIREBIRD= yes +.endif + +.if exists(${LOCALBASE}/lib/libtds.so.2) +WITH_FREETDS= yes +.endif + +.if exists(${LOCALBASE}/lib/libsybdb.so.3) +WITH_SYBASE= yes +.endif + +.if exists(${LOCALBASE}/lib/libmdbsql.so.0) +WITH_MDB= yes +.endif + +.if exists(${LOCALBASE}/lib/libODBC.so.1) +WITH_ODBC= yes +.endif + +.if exists(${LOCALBASE}/lib/libsqlite.so.2) +WITH_SQLITE= yes +.endif + +.if !defined(WITHOUT_MYe.so.2) +WITH_SQLITE= yes ) LIB_DEPENDS+= mysqlclient.10:${PORTSDIR}/databases/mysql323-client CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} PLIST_SUB= MYSQL="" -.else +.endif + +.if !defined(WITHOUT_MYSQL40) && defined(WITH_MYSQL40) +LIB_DEPENDS+= mysqlclient.12:${PORTSDIR}/databases/mysql40-client +CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} +PLIST_SUB= MYSQL="" +.endif + +.if !defined(WITHOUT_MYSQL41) && defined(WITH_MYSQL41) +LIB_DEPENDS+= mysqlclient.14:${PORTSDIR}/databases/mysql41-client +CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} +PLIST_SUB= MYSQL="" +.endif + +.if !defined(WITH_MYSQL3) && !defined(WITH_MYSQL40) && !defined(WITH_MYSQL41) +PLIST_SUB+= MYSQL="@comment " CONFIGURE_ARGS+= --without-mysql -PLIST_SUB= MYSQL="@comment " .endif -.if defined(WITH_POSTGRES) +.if !defined(WITHOUT_POSTGRES7) && defined(WITH_POSTGRES7) POSTGRESQL_PORT?= databases/postgresql7 LIB_DEPENDS+= pq.3:${PORTSDIR}/${POSTGRESQL_PORT} CONFIGURE_ARGS+= --with-postgres=${LOCALBASE} PLIST_SUB+= POSTGRES="" -.else -CONFIGURE_ARGS+= --without-postgres +.endif + +.if !defined(WITHOUT_POSTGRES72) && defined(WITH_POSTGRES72) +POSTGRESQL_PORT?= databases/postgresql72 +LIB_DEPENDS+= pqeasy.2:${PORTSDIR}/${POSTGRESQL_PORT} +CONFIGURE_ARGS+= --with-postgres=${LOCALBASE} +PLIST_SUB+= POSTGRES="" +.endif + +.if !defined(WITH_POSTGRES7) && !defined(WITH_POSTGRES72) PLIST_SUB+= POSTGRES="@comment " +CONFIGURE_ARGS+= --without-postgres .endif -.if defined(WITH_LDAP) +.if !defined(WITHOUT_LDAP) && defined(WITH_LDAP) LIB_DEPENDS+= ldap.2:${PORTSDIR}/net/openldap20 CONFIGURE_ARGS+= --with-ldap=${LOCALBASE} PLIST_SUB+= LDAP="" @@ -62,19 +135,98 @@ PLIST_SUB+= LDAP="@comment " .endif +.if !defined(WITHOUT_FIREBIRD) && defined(WITH_FIREBIRD) +LIB_DEPENDS+= gds.1:${PORTSDIR}/databases/firebird +CONFIGURE_ARGS+= --with-firebird=${LOCALBASE}/firebird +PLIST_SUB+= FIREBIRD:="" +.else +CONFIGURE_ARGS+= --without-interbase +PLIST_SUB+= FIREBIRD:="@comment " +.endif + +.if !defined(WITHOUT_FREETDS) && defined(WITH_FREETDS) +LIB_DEPENDS+= tds.2:${PORTSDIR}/databases/freetds +CONFIGURE_ARGS+= --with-tds=${LOCALBASE} +PLIST_SUB+= FREETDS:="" +.else +CONFIGURE_ARGS+= --without-tds +PLIST_SUB+= FREETDS:="@comment " +.endif + +.if !defined(WITHOUT_SYBASE) && defined(WITH_SYBASE) +LIB_DEPENDS+= sybdb.3:${PORTSDIR}/databases/freetds +CONFIGURE_ARGS+= --with-sybase=${LOCALBASE} +PLIST_SUB+= SYBASE:="" +.else +CONFIGURE_ARGS+= --without-sybase +PLIST_SUB+= SYBASE:="@comment " +.endif + +.if !defined(WITHOUT_MDB) && defined(WITH_MDB) +LIB_DEPENDS+= mdbsql.0:${PORTSDIR}/databases/mdbtools +CONFIGURE_ARGS+= --with-mdb=${LOCALBASE} +PLIST_SUB+= MDB:="" +.else +CONFIGURE_ARGS+= --without-mdb +PLIST_SUB+= MDB:="@comment " +.endif + +.if !defined(WITHOUT_ODBC) && defined(WITH_ODBC) +LIB_DEPENDS+= odbc.1:${PORTSDIR}/databases/unixODBC +CONFIGURE_ARGS+= --with-odbc=${LOCALBASE} +PLIST_SUB+= ODBC:="" +.else +CONFIGURE_ARGS+= --without-odbc +PLIST_SUB+= ODBC:="@comment " +.endif + +.if !defined(WITHOUT_SQLITE) && defined(WITH_SQLITE) +LIB_DEPENDS+= sqlite.2:${PORTSDIR}/databases/sqlite +CONFIGURE_ARGS+= --with-sqlite=${LOCALBASE} +PLIST_SUB+= SQLITE:="" +.else +CONFIGURE_ARGS+= --without-sqlite +PLIST_SUB+= SQLITE:="@comment " +.endif + pre-everything:: -.if !defined(WITH_MYSQL) - @${ECHO_MSG} "You can enable support for MySQL databases by defining WITH_MYSQL." +.if !defined(WITH_MYSQL3) + @${ECHO_MSG} "You can enable support for MySQL 3 databases by defining WITH_MYSQL3." .endif -.if !defined(WITH_POSTGRES) - @${ECHO_MSG} "You can enable support for Postgres databases by defining WITH_POSTGRES." +.if !defined(WITH_MYSQL40) + @${ECHO_MSG} "You can enable support for MySQL 4.0 databases by defining WITH_MYSQL40." +.endif +.if !defined(WITH_MYSQL41) + @${ECHO_MSG} "You can enable support for MySQL 4.1 databases by defining WITH_MYSQL41." +.endif +.if !defined(WITH_POSTGRES7) + @${ECHO_MSG} "You can enable support for Postgres 7.0 databases by defining WITH_POSTGRES7." +.endif +.if !defined(WITH_POSTGRES72) + @${ECHO_MSG} "You can enable support for Postgres 7.2 databases by defining WITH_POSTGRES72." .endif .if !defined(WITH_LDAP) @${ECHO_MSG} "You can enable support for LDAP databases by defining WITH_LDAP." .endif +.if !defined(WITH_FREETDS) + @${ECHO_MSG} "You can enable support for TDS databases by defining WITH_FREETDS." +.endif +.if !defined(WITH_SYBASE) + @${ECHO_MSG} "You can enable support for Sybase databases by defining WITH_SYBASE." +.endif +.if !defined(WITH_MDB) + @${ECHO_MSG} "You can enable support for MDB databases by defining WITH_MDB." +.endif +.if !defined(WITH_ODBC) + @${ECHO_MSG} "You can enable support for ODBC databases by defining WITH_ODBC." +.endif +.if !defined(WITH_SQLITE) + @${ECHO_MSG} "You can enable support for SQLITE databases by defining WITH_SQLITE." +.endif + post-patch: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g ; \ s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure -.include +.include Index: distinfo =================================================================== RCS file: /big/FreeBSD-CVS/ports/databases/libgda2/distinfo,v retrieving revision 1.20 diff -u -r1.20 distinfo --- distinfo 1 Jun 2003 00:31:46 -0000 1.20 +++ distinfo 10 Jun 2003 14:02:57 -0000 @@ -1 +1 @@ -MD5 (gnome2/libgda-0.12.0.tar.bz2) = 445b26d782468c11f5cf3a972a710e42 +MD5 (gnome2/libgda-0.12.1.tar.bz2) = d98597ca9746d36db8e455ce7de48ac0 Index: pkg-plist =================================================================== RCS file: /big/FreeBSD-CVS/ports/databases/libgda2/pkg-plist,v retrieving revision 1.23 diff -u -r1.23 pkg-plist --- pkg-plist 2 Jun 2003 18:18:02 -0000 1.23 +++ pkg-plist 9 Jun 2003 07:45:58 -0000 @@ -74,9 +74,15 @@ lib/libgdasql.so lib/libgdasql.so.0 lib/libgda/providers/libgda-default.so +%%FIREBIRD%%lib/libgda/providers/libgda-firebird.so +%%FREETDS%%lib/libgda/providers/libgda-freetds.so %%LDAP%%lib/libgda/providers/libgda-ldap.so +%%MDB%%lib/libgda/providers/libgda-mdb.so %%MYSQL%%lib/libgda/providers/libgda-mysql.so +%%ODBC%%lib/libgda/providers/libgda-odbc.so %%POSTGRES%%lib/libgda/providers/libgda-postgres.so +%%SYBASE%%lib/libgda/providers/libgda-sybase.so +%%SQLITE%%lib/libgda/providers/libgda-sqlite.so libdata/pkgconfig/libgda.pc share/doc/libgda/architecture.html share/doc/libgda/c689.html --Multipart_Tue__10_Jun_2003_16:35:29_+0200_08f0da00 Content-Type: text/plain; name="mergeant.diff" Content-Disposition: attachment; filename="mergeant.diff" Content-Transfer-Encoding: 8bit Index: Makefile =================================================================== RCS file: /big/FreeBSD-CVS/ports/databases/mergeant/Makefile,v retrieving revision 1.11 diff -u -r1.11 Makefile --- Makefile 1 Jun 2003 00:34:12 -0000 1.11 +++ Makefile 10 Jun 2003 14:21:08 -0000 @@ -6,7 +6,7 @@ # PORTNAME= mergeant -PORTVERSION= 0.12.0 +PORTVERSION= 0.12.1 CATEGORIES= databases gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/0.12 Index: distinfo =================================================================== RCS file: /big/FreeBSD-CVS/ports/databases/mergeant/distinfo,v retrieving revision 1.6 diff -u -r1.6 distinfo --- distinfo 1 Jun 2003 00:34:12 -0000 1.6 +++ distinfo 10 Jun 2003 14:21:40 -0000 @@ -1 +1 @@ -MD5 (gnome2/mergeant-0.12.0.tar.bz2) = 93bb562a010c2fbab600bed9626f7e15 +MD5 (gnome2/mergeant-0.12.1.tar.bz2) = 42a2f6778b81409db6cd1baa49663dca --Multipart_Tue__10_Jun_2003_16:35:29_+0200_08f0da00-- From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 08:27:41 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F300A37B401 for ; Tue, 10 Jun 2003 08:27:40 -0700 (PDT) Received: from symbion.srrc.usda.gov (symbion.srrc.usda.gov [199.133.86.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id D36D943FB1 for ; Tue, 10 Jun 2003 08:27:38 -0700 (PDT) (envelope-from gjohnson@srrc.ars.usda.gov) Received: from node1.cluster.srrc.usda.gov (localhost [127.0.0.1]) by symbion.srrc.usda.gov (8.12.9/8.12.9) with ESMTP id h5AFRaBm073002 for ; Tue, 10 Jun 2003 10:27:36 -0500 (CDT) (envelope-from glenn@node1.cluster.srrc.usda.gov) Received: (from glenn@localhost)h5AFRZH1073001 for gnome@freebsd.org; Tue, 10 Jun 2003 10:27:35 -0500 (CDT) (envelope-from glenn) Date: Tue, 10 Jun 2003 10:27:35 -0500 From: Glenn Johnson To: gnome@freebsd.org Message-ID: <20030610152735.GA71845@node1.cluster.srrc.usda.gov> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: reading passwd file with gdm X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2003 15:27:41 -0000 I am trying to parse the master.passwd file during gdm logins to see if the passwd has reached its expiration time. The following command works on the command line and in a simple sh script that I tested: CHANGE=`perl -e "print join(':', getpwnam ('$USER'));" | awk -F: '{print $5}'` However, it does not work when put into gdm/PreSession/Default. Here is my PreSession/Default file. I put in an echo command to see the values. --begin gdm/PreSession/Default-- #!/bin/sh # # Note that any setup should come before the sessreg command as # that must be 'exec'ed for the pid to be correct (sessreg uses the parent # pid) # # Note that output goes into the .xsession-errors file for easy debugging # PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin xrdb /etc/X11/Xresources xmessage -nearmouse -file /etc/motd -default okay if /usr/bin/which -s xsetroot > /dev/null 2>&1; then xsetroot -cursor_name left_ptr -solid "#363047" fi TIME=`date +%s` CHANGE=`perl -e "print join(':', getpwnam ('$USER'));" | awk -F: '{print $5}'` echo TIME is $TIME CHANGE is $CHANGE EXPIRED is $EXPIRED > ~/aging if [ "$EXPIRED" = "yes" ]; then xterm -e passwd fi if /usr/bin/which -s sessreg > /dev/null 2>&1; then # some output for easy debugging echo "$0: Registering your session with wtmp and utmp" echo "$0: running: sessreg -a -w /var/log/wtmp -u /var/run/utmp -x \"$X_SERVERS\" -h \"$REMOTE_HOST\" -l $DISPLAY $USER" exec sessreg -a -w /var/log/wtmp -u /var/run/utmp -x "$X_SERVERS" -h "$REMOTE_HOST" -l $DISPLAY $USER # this is not reached fi # some output for easy debugging echo "$0: could not find the sessreg utility, cannot update wtmp and utmp" exit 0 --end gdm/PreSession/Default-- Here are the contents of the ~/aging file: TIME is 1055258058 CHANGE is EXPIRED is Does any one have any idea why that perl command is not working when run in the gdm PreSession/Default script? Thanks. -- Glenn Johnson USDA, ARS, SRRC Phone: (504) 286-4252 New Orleans, LA 70124 e-mail: gjohnson@srrc.ars.usda.gov From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 10:01:12 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 489E837B405 for ; Tue, 10 Jun 2003 10:01:12 -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 DA82443FA3 for ; Tue, 10 Jun 2003 10:01:10 -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 h5AH130u039775; Tue, 10 Jun 2003 13:01:03 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h5AH13Pq039772; Tue, 10 Jun 2003 13:01:03 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Tue, 10 Jun 2003 13:01:03 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: Glenn Johnson In-Reply-To: <20030610152735.GA71845@node1.cluster.srrc.usda.gov> Message-ID: <20030610130030.S39727@shumai.marcuscom.com> References: <20030610152735.GA71845@node1.cluster.srrc.usda.gov> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: gnome@freebsd.org Subject: Re: reading passwd file with gdm X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2003 17:01:13 -0000 On Tue, 10 Jun 2003, Glenn Johnson wrote: > I am trying to parse the master.passwd file during gdm logins to see if > the passwd has reached its expiration time. The following command works > on the command line and in a simple sh script that I tested: > > CHANGE=`perl -e "print join(':', getpwnam ('$USER'));" | awk -F: '{print $5}'` > > However, it does not work when put into gdm/PreSession/Default. > > Here is my PreSession/Default file. I put in an echo command to see the > values. Does anything get written to the aging file? Joe > > --begin gdm/PreSession/Default-- > > #!/bin/sh > # > # Note that any setup should come before the sessreg command as > # that must be 'exec'ed for the pid to be correct (sessreg uses the parent > # pid) > # > # Note that output goes into the .xsession-errors file for easy debugging > # > PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin > xrdb /etc/X11/Xresources > xmessage -nearmouse -file /etc/motd -default okay > > if /usr/bin/which -s xsetroot > /dev/null 2>&1; then > xsetroot -cursor_name left_ptr -solid "#363047" > fi > > TIME=`date +%s` > CHANGE=`perl -e "print join(':', getpwnam ('$USER'));" | awk -F: '{print $5}'` > echo TIME is $TIME CHANGE is $CHANGE EXPIRED is $EXPIRED > ~/aging > if [ "$EXPIRED" = "yes" ]; then > xterm -e passwd > fi > > if /usr/bin/which -s sessreg > /dev/null 2>&1; then > # some output for easy debugging > echo "$0: Registering your session with wtmp and utmp" > echo "$0: running: sessreg -a -w /var/log/wtmp -u /var/run/utmp -x \"$X_SERVERS\" -h \"$REMOTE_HOST\" -l $DISPLAY $USER" > > exec sessreg -a -w /var/log/wtmp -u /var/run/utmp -x "$X_SERVERS" -h "$REMOTE_HOST" -l $DISPLAY $USER > # this is not reached > fi > > # some output for easy debugging > echo "$0: could not find the sessreg utility, cannot update wtmp and utmp" > exit 0 > > --end gdm/PreSession/Default-- > > Here are the contents of the ~/aging file: > > TIME is 1055258058 CHANGE is EXPIRED is > > Does any one have any idea why that perl command is not working when run > in the gdm PreSession/Default script? > > Thanks. > > -- > Glenn Johnson > USDA, ARS, SRRC Phone: (504) 286-4252 > New Orleans, LA 70124 e-mail: gjohnson@srrc.ars.usda.gov > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" > > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 10:18:45 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D42037B401; Tue, 10 Jun 2003 10:18:45 -0700 (PDT) Received: from symbion.srrc.usda.gov (symbion.srrc.usda.gov [199.133.86.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F76043FDD; Tue, 10 Jun 2003 10:18:44 -0700 (PDT) (envelope-from gjohnson@srrc.ars.usda.gov) Received: from node1.cluster.srrc.usda.gov (localhost [127.0.0.1]) by symbion.srrc.usda.gov (8.12.9/8.12.9) with ESMTP id h5AHIhpG091110; Tue, 10 Jun 2003 12:18:43 -0500 (CDT) (envelope-from glenn@node1.cluster.srrc.usda.gov) Received: (from glenn@localhost)h5AHIggD091109; Tue, 10 Jun 2003 12:18:42 -0500 (CDT) Date: Tue, 10 Jun 2003 12:18:42 -0500 From: Glenn Johnson To: Joe Marcus Clarke Message-ID: <20030610171842.GA89639@node1.cluster.srrc.usda.gov> References: <20030610152735.GA71845@node1.cluster.srrc.usda.gov> <20030610130030.S39727@shumai.marcuscom.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030610130030.S39727@shumai.marcuscom.com> User-Agent: Mutt/1.5.4i cc: gnome@freebsd.org Subject: Re: reading passwd file with gdm X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2003 17:18:45 -0000 On Tue, Jun 10, 2003 at 01:01:03PM -0400, Joe Marcus Clarke wrote: > On Tue, 10 Jun 2003, Glenn Johnson wrote: > > > I am trying to parse the master.passwd file during gdm logins to > > see if the passwd has reached its expiration time. The following > > command works on the command line and in a simple sh script that I > > tested: > > > > CHANGE=`perl -e "print join(':', getpwnam ('$USER'));" | awk -F: '{print $5}'` > > > > However, it does not work when put into gdm/PreSession/Default. > > > > Does anything get written to the aging file? Yes, I had that in the original mail towards the bottom but here it is again (time value updated of course): TIME is 1055263524 CHANGE is EXPIRED is The echo command in the script is: echo TIME is $TIME CHANGE is $CHANGE EXPIRED is $EXPIRED > ~/aging So the TIME variable is getting substituted via `date +%s` but the CHANGE variable is not. I verified that perl is found by putting a `which perl` in the script. I am thinking that it must be an environment problem. By the way, I am not committed to using perl here if there is another way to extract a field from the master.passwd file. Thanks. P.S. Joe, I hope you had a good vacation. -- Glenn Johnson USDA, ARS, SRRC Phone: (504) 286-4252 New Orleans, LA 70124 e-mail: gjohnson@srrc.ars.usda.gov From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 12:13:08 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 061A737B401 for ; Tue, 10 Jun 2003 12:13:08 -0700 (PDT) Received: from lakemtao08.cox.net (lakemtao08.cox.net [68.1.17.113]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B2A943FDD for ; Tue, 10 Jun 2003 12:13:05 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from sysinfo.mezzweb.com ([68.103.37.247]) by lakemtao08.cox.net (InterMail vM.5.01.04.05 201-253-122-122-105-20011231) with ESMTP id <20030610191302.MMVQ7627.lakemtao08.cox.net@sysinfo.mezzweb.com> for ; Tue, 10 Jun 2003 15:13:02 -0400 Content-Type: text/plain; charset=utf-8; format=flowed To: freebsd-gnome@freebsd.org From: Jeremy Messenger MIME-Version: 1.0 Date: Tue, 10 Jun 2003 13:58:27 -0500 Message-ID: User-Agent: Opera7.11/Linux M2 build 406 Subject: x11-fm/nautilus2 (2.3.2) has been failed.. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2003 19:13:08 -0000 I just did the install gnome2 on the empty /usr/local/ and /usr/X11R6/.. The build has been failed on the x11-fm/nautilus2.. ============================== DPIC -o .libs/nautilus-authn-manager.lo nautilus-authn-manager.c:40:37: eel/eel-password-dialog.h: No such file or directory nautilus-authn-manager.c:52: syntax error before '*' token nautilus-authn-manager.c: In function `construct_password_dialog': nautilus-authn-manager.c:56: `EelPasswordDialog' undeclared (first use in this function) nautilus-authn-manager.c:56: (Each undeclared identifier is reported only once nautilus-authn-manager.c:56: for each function it appears in.) nautilus-authn-manager.c:56: `dialog' undeclared (first use in this function) nautilus-authn-manager.c: In function `present_authentication_dialog_blocking': nautilus-authn-manager.c:84: `EelPasswordDialog' undeclared (first use in this function) nautilus-authn-manager.c:84: `dialog' undeclared (first use in this function) nautilus-authn-manager.c:92: warning: assignment makes pointer from integer without a cast nautilus-authn-manager.c:93: warning: assignment makes pointer from integer without a cast nautilus-authn-manager.c: In function `authentication_dialog_button_clicked': nautilus-authn-manager.c:129: warning: assignment makes pointer from integer without a cast nautilus-authn-manager.c:131: warning: assignment makes pointer from integer without a cast nautilus-authn-manager.c: In function `present_authentication_dialog_nonblocking': nautilus-authn-manager.c:158: `EelPasswordDialog' undeclared (first use in this function) nautilus-authn-manager.c:158: `dialog' undeclared (first use in this function) gmake[2]: *** [nautilus-authn-manager.lo] Error 1 gmake[2]: Leaving directory `/usr/ports/x11-fm/nautilus2/work/nautilus- 2.3.2/libnautilus-private' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/x11-fm/nautilus2/work/nautilus- 2.3.2' gmake: *** [all-recursive-am] Error 2 *** Error code 2 Stop in /usr/ports/x11-fm/nautilus2. *** Error code 1 ============================== It said something with eel, I already have it installed. ============================== # pkg_info | grep eel eel2-2.3.3 ============================== CVSup'ed around 30 minutes before the uname clock. ============================== # uname -a FreeBSD mezz.mezzweb.com 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Tue Jun 10 03:32:44 CDT 2003 root@mezz.mezzweb.com:/usr/obj/usr/src/sys/GENERIC i386 ============================== Cheers, Mezz -- bsdforums.org 's moderator, mezz. From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 14:52:00 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40AC037B401 for ; Tue, 10 Jun 2003 14:52:00 -0700 (PDT) Received: from sisko.webonaut.com (sisko.webonaut.com [212.41.243.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C07043FAF for ; Tue, 10 Jun 2003 14:51:59 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from [127.0.0.1] (localhost.webonaut.com [127.0.0.1]) by sisko.webonaut.com (Postfix) with ESMTP id 197DC28434; Tue, 10 Jun 2003 23:52:02 +0200 (CEST) From: Franz Klammer To: Jeremy Messenger In-Reply-To: References: Content-Type: text/plain; charset=iso-8859-1 Message-Id: <1055281921.818.21.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 10 Jun 2003 21:52:01 +0000 Content-Transfer-Encoding: 8bit cc: freebsd-gnome@freebsd.org Subject: Re: x11-fm/nautilus2 (2.3.2) has been failed.. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2003 21:52:01 -0000 i had the same problem. it seems that nautilus2-2.3.2 cannot build with eel2-2.3.3.¹) I tried a test build with nautilus 2.3.3 but that version needs libgnomeui-2.3.3 (which is out since today). i suggest to checkout the previous version of eel2 in the meantime. franz. ¹) eel2-2.3.3 didn't have the requested file eel-password-dialog.h: http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports/x11-toolkits/eel2/pkg-plist.diff?r1=1.9&r2=1.10&f=h Am Di, 2003-06-10 um 18.58 schrieb Jeremy Messenger: > I just did the install gnome2 on the empty /usr/local/ and /usr/X11R6/.. > The build has been failed on the x11-fm/nautilus2.. > > ============================== > DPIC -o .libs/nautilus-authn-manager.lo > nautilus-authn-manager.c:40:37: eel/eel-password-dialog.h: No such file or > directory > nautilus-authn-manager.c:52: syntax error before '*' token > nautilus-authn-manager.c: In function `construct_password_dialog': > nautilus-authn-manager.c:56: `EelPasswordDialog' undeclared (first use in > this function) > nautilus-authn-manager.c:56: (Each undeclared identifier is reported only > once > nautilus-authn-manager.c:56: for each function it appears in.) > nautilus-authn-manager.c:56: `dialog' undeclared (first use in this > function) > nautilus-authn-manager.c: In function > `present_authentication_dialog_blocking': > nautilus-authn-manager.c:84: `EelPasswordDialog' undeclared (first use in > this function) > nautilus-authn-manager.c:84: `dialog' undeclared (first use in this > function) > nautilus-authn-manager.c:92: warning: assignment makes pointer from integer > without a cast > nautilus-authn-manager.c:93: warning: assignment makes pointer from integer > without a cast > nautilus-authn-manager.c: In function > `authentication_dialog_button_clicked': > nautilus-authn-manager.c:129: warning: assignment makes pointer from > integer without a cast > nautilus-authn-manager.c:131: warning: assignment makes pointer from > integer without a cast > nautilus-authn-manager.c: In function > `present_authentication_dialog_nonblocking': > nautilus-authn-manager.c:158: `EelPasswordDialog' undeclared (first use in > this function) > nautilus-authn-manager.c:158: `dialog' undeclared (first use in this > function) > gmake[2]: *** [nautilus-authn-manager.lo] Error 1 > gmake[2]: Leaving directory `/usr/ports/x11-fm/nautilus2/work/nautilus- > 2.3.2/libnautilus-private' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory `/usr/ports/x11-fm/nautilus2/work/nautilus- > 2.3.2' > gmake: *** [all-recursive-am] Error 2 > *** Error code 2 > Stop in /usr/ports/x11-fm/nautilus2. > *** Error code 1 > ============================== > > It said something with eel, I already have it installed. > > ============================== > # pkg_info | grep eel > eel2-2.3.3 > ============================== > > CVSup'ed around 30 minutes before the uname clock. > ============================== > # uname -a > FreeBSD mezz.mezzweb.com 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Tue Jun 10 > 03:32:44 CDT 2003 root@mezz.mezzweb.com:/usr/obj/usr/src/sys/GENERIC > i386 > ============================== > > Cheers, > Mezz -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 15:16:00 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 366F237B401 for ; Tue, 10 Jun 2003 15:16:00 -0700 (PDT) Received: from lakemtao05.cox.net (lakemtao05.cox.net [68.1.17.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EAA243FBF for ; Tue, 10 Jun 2003 15:15:59 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from sysinfo.mezzweb.com ([68.103.37.247]) by lakemtao05.cox.net ESMTP <20030610221558.CPTP28938.lakemtao05.cox.net@sysinfo.mezzweb.com>; Tue, 10 Jun 2003 18:15:58 -0400 To: Franz Klammer References: <1055281921.818.21.camel@sisko.webonaut.com> Message-ID: Content-Type: text/plain; charset=utf-8; format=flowed From: Jeremy Messenger MIME-Version: 1.0 Date: Tue, 10 Jun 2003 17:01:15 -0500 In-Reply-To: <1055281921.818.21.camel@sisko.webonaut.com> User-Agent: Opera7.11/Linux M2 build 406 cc: freebsd-gnome@freebsd.org Subject: Re: x11-fm/nautilus2 (2.3.2) has been failed.. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2003 22:16:00 -0000 On 10 Jun 2003 21:52:01 +0000, Franz Klammer wrote: > i had the same problem. it seems that nautilus2-2.3.2 cannot build with > eel2-2.3.3.¹) I tried a test build with nautilus 2.3.3 but that > version needs libgnomeui-2.3.3 (which is out since today). > > i suggest to checkout the previous version of eel2 in the meantime. Thanks for figure it out! I will checkout the previous version and try it again.. Cheers, Mezz > franz. > > ¹) eel2-2.3.3 didn't have the requested file eel-password-dialog.h: > http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports/x11- > toolkits/eel2/pkg-plist.diff?r1=1.9&r2=1.10&f=h > > Am Di, 2003-06-10 um 18.58 schrieb Jeremy Messenger: >> I just did the install gnome2 on the empty /usr/local/ and /usr/X11R6/.. >> The build has been failed on the x11-fm/nautilus2.. >> >> ============================== >> ============================== >> >> It said something with eel, I already have it installed. >> >> ============================== >> # pkg_info | grep eel >> eel2-2.3.3 >> ============================== >> >> CVSup'ed around 30 minutes before the uname clock. >> ============================== >> # uname -a >> FreeBSD mezz.mezzweb.com 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Tue Jun 10 >> 03:32:44 CDT 2003 root@mezz.mezzweb.com:/usr/obj/usr/src/sys/GENERIC >> >> i386 >> ============================== >> >> Cheers, >> Mezz -- bsdforums.org 's moderator, mezz. From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 16:50:38 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EE4937B401 for ; Tue, 10 Jun 2003 16:50:38 -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 2D49343F3F for ; Tue, 10 Jun 2003 16:50:35 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5ANlgUD008678; Tue, 10 Jun 2003 19:47:45 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5ANknV8077366; Tue, 10 Jun 2003 19:46:50 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Jeremy Messenger In-Reply-To: References: <1055281921.818.21.camel@sisko.webonaut.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-gTUr+T0mTD3QzFy9TgA7" Organization: MarcusCom, Inc. Message-Id: <1055289015.347.0.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 10 Jun 2003 19:50:16 -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: freebsd-gnome@freebsd.org Subject: Re: x11-fm/nautilus2 (2.3.2) has been failed.. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2003 23:50:38 -0000 --=-gTUr+T0mTD3QzFy9TgA7 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable On Tue, 2003-06-10 at 18:01, Jeremy Messenger wrote: > On 10 Jun 2003 21:52:01 +0000, Franz Klammer wrote= : >=20 > > i had the same problem. it seems that nautilus2-2.3.2 cannot build with= =20 > > eel2-2.3.3.=B9) I tried a test build with nautilus 2.3.3 but that > > version needs libgnomeui-2.3.3 (which is out since today). > > > > i suggest to checkout the previous version of eel2 in the meantime. >=20 > Thanks for figure it out! I will checkout the previous version and try it= =20 > again.. I've made it to SJ, so expect a lot of port updates soon. Joe >=20 > Cheers, > Mezz >=20 > > franz. > > > > =B9) eel2-2.3.3 didn't have the requested file eel-password-dialog.h: > > http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports/x11- > > toolkits/eel2/pkg-plist.diff?r1=3D1.9&r2=3D1.10&f=3Dh > > > > Am Di, 2003-06-10 um 18.58 schrieb Jeremy Messenger: > >> I just did the install gnome2 on the empty /usr/local/ and /usr/X11R6/= ..=20 > >> The build has been failed on the x11-fm/nautilus2.. > >> > >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D > > >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D > >> > >> It said something with eel, I already have it installed. > >> > >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D > >> # pkg_info | grep eel > >> eel2-2.3.3 > >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D > >> > >> CVSup'ed around 30 minutes before the uname clock. > >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D > >> # uname -a > >> FreeBSD mezz.mezzweb.com 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Tue Jun 1= 0=20 > >> 03:32:44 CDT 2003 root@mezz.mezzweb.com:/usr/obj/usr/src/sys/GENER= IC > >> > >> i386 > >> =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D > >> > >> Cheers, > >> Mezz --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-gTUr+T0mTD3QzFy9TgA7 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+5m63b2iPiv4Uz4cRAt6uAKCQfn22o+4EtbyDewZ3Gf4Y/Ha+bwCgrOft bcZRGl6jIst8vfw0fn9Fy7g= =tB+W -----END PGP SIGNATURE----- --=-gTUr+T0mTD3QzFy9TgA7-- From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 16:56:01 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1B9E37B401 for ; Tue, 10 Jun 2003 16:56:01 -0700 (PDT) Received: from lakemtao05.cox.net (lakemtao05.cox.net [68.1.17.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id E799143FAF for ; Tue, 10 Jun 2003 16:56:00 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from sysinfo.mezzweb.com ([68.103.37.247]) by lakemtao05.cox.net ESMTP <20030610235558.DIKQ28938.lakemtao05.cox.net@sysinfo.mezzweb.com>; Tue, 10 Jun 2003 19:55:58 -0400 To: Joe Marcus Clarke References: <1055281921.818.21.camel@sisko.webonaut.com> <1055289015.347.0.camel@gyros> Message-ID: Content-Type: text/plain; charset=utf-8; format=flowed From: Jeremy Messenger MIME-Version: 1.0 Date: Tue, 10 Jun 2003 18:41:21 -0500 In-Reply-To: <1055289015.347.0.camel@gyros> User-Agent: Opera7.11/Linux M2 build 406 cc: freebsd-gnome@freebsd.org Subject: Re: x11-fm/nautilus2 (2.3.2) has been failed.. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Jun 2003 23:56:02 -0000 On 10 Jun 2003 19:50:16 -0400, Joe Marcus Clarke wrote: > On Tue, 2003-06-10 at 18:01, Jeremy Messenger wrote: >> On 10 Jun 2003 21:52:01 +0000, Franz Klammer >> wrote: >> >> > i had the same problem. it seems that nautilus2-2.3.2 cannot build >> with > eel2-2.3.3.¹) I tried a test build with nautilus 2.3.3 but that >> > version needs libgnomeui-2.3.3 (which is out since today). >> > >> > i suggest to checkout the previous version of eel2 in the meantime. >> >> Thanks for figure it out! I will checkout the previous version and try >> it again.. > > I've made it to SJ, so expect a lot of port updates soon. Look forward for it.. Hope, you enjoy your vacation.. :-) Cheers, Mezz > Joe > >> >> Cheers, >> Mezz >> >> > franz. >> > >> > ¹) eel2-2.3.3 didn't have the requested file eel-password-dialog.h: >> > http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports/x11- >> > toolkits/eel2/pkg-plist.diff?r1=1.9&r2=1.10&f=h >> > >> > Am Di, 2003-06-10 um 18.58 schrieb Jeremy Messenger: >> >> I just did the install gnome2 on the empty /usr/local/ and >> /usr/X11R6/.. >> The build has been failed on the x11-fm/nautilus2.. >> >> >> >> ============================== >> >> >> ============================== >> >> >> >> It said something with eel, I already have it installed. >> >> >> >> ============================== >> >> # pkg_info | grep eel >> >> eel2-2.3.3 >> >> ============================== >> >> >> >> CVSup'ed around 30 minutes before the uname clock. >> >> ============================== >> >> # uname -a >> >> FreeBSD mezz.mezzweb.com 5.1-CURRENT FreeBSD 5.1-CURRENT #0: Tue Jun >> 10 >> 03:32:44 CDT 2003 >> root@mezz.mezzweb.com:/usr/obj/usr/src/sys/GENERIC >> >> >> >> i386 >> >> ============================== >> >> >> >> Cheers, >> >> Mezz -- bsdforums.org 's moderator, mezz. From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 17:16:20 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4CF437B401 for ; Tue, 10 Jun 2003 17:16:20 -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 052E543FCB for ; Tue, 10 Jun 2003 17:16:20 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5B0Ee8V015290 for ; Tue, 10 Jun 2003 20:14:40 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5B0CoV8077626 for ; Tue, 10 Jun 2003 20:12:50 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: FreeBSD GNOME Users Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-e/QqNTp2oNYl74L6P9FM" Organization: FreeBSD, Inc. Message-Id: <1055290576.686.5.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 10 Jun 2003 20:16:16 -0400 X-Spam-Status: No, hits=-6.9 required=5.0 tests=BAYES_10,PGP_SIGNATURE_2 autolearn=ham version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) Subject: I'm back X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 00:16:21 -0000 --=-e/QqNTp2oNYl74L6P9FM Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I've returned from vacation, but I'm not back at home yet. I will be updating quite a few ports in a while, but GNOME 1.4 will not be removed until I return home. For those interested, You can find pictures of my vacation at http://www.marcuscom.com/Southwest/. The Hopi pictures are pictures taken going to the Hopi Reservation in northern Arizona. The Hopid do not permit pictures. The Sunday pictures of Zion are taken from Angel's Landing and on the West Rim trail. For more info on Angel's Landing, and what we had to do to hike it, Google "Angel's Landing Zion". The woman in the pictures is my girlfriend, Naomi. Joe --=20 Joe Marcus Clarke FreeBSD GNOME Team :: marcus@FreeBSD.org http://www.FreeBSD.org/gnome --=-e/QqNTp2oNYl74L6P9FM 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+5nTQb2iPiv4Uz4cRAiU/AJ4qaS5PBmONsfkHjGgX4YxesuM1MgCfVQ2h KIT8JsUElyM9YTjdYuGaNoc= =wlO4 -----END PGP SIGNATURE----- --=-e/QqNTp2oNYl74L6P9FM-- From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 18:29:46 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4734737B401 for ; Tue, 10 Jun 2003 18:29:46 -0700 (PDT) Received: from fire.org.nz (firewall.fire.org.nz [203.97.144.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id A90CB43FAF for ; Tue, 10 Jun 2003 18:29:43 -0700 (PDT) (envelope-from andy@fud.org.nz) Received: by homer.fire.org.nz id <119059>; Wed, 11 Jun 2003 13:29:39 +1200 From: Andrew Thompson To: FreeBSD GNOME Users Content-Type: text/plain Message-Id: <03Jun11.132939nzst.119059@homer.fire.org.nz> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 11 Jun 2003 13:29:37 +1200 Content-Transfer-Encoding: 7bit Subject: Anjuta X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 01:29:46 -0000 Hi, Has anyone else come across a bug (?) with anjuta where upon saving the file, the next mouse,keyboard action brings up this message: "The file 'index.php' on the disk is more recent than the current buffer. Do you want to reload it?" I am editing the file on a nfs mount, mabey the buffering is throwing it off. I am tempted just to comment out the text_editor_check_disk_status() function but I thought i'd ask here first. I am using v1.1.1 but earlier versions do the same. Andy From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 18:44:30 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 604FD37B401 for ; Tue, 10 Jun 2003 18:44:30 -0700 (PDT) Received: from lakemtao07.cox.net (lakemtao07.cox.net [68.1.17.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7230443F3F for ; Tue, 10 Jun 2003 18:44:29 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from sysinfo.mezzweb.com ([68.103.37.247]) by lakemtao07.cox.net (InterMail vM.5.01.04.05 201-253-122-122-105-20011231) with ESMTP id <20030611014427.JIKA4514.lakemtao07.cox.net@sysinfo.mezzweb.com> for ; Tue, 10 Jun 2003 21:44:27 -0400 Content-Type: text/plain; charset=utf-8; format=flowed To: freebsd-gnome@freebsd.org From: Jeremy Messenger MIME-Version: 1.0 Date: Tue, 10 Jun 2003 20:29:50 -0500 Message-ID: User-Agent: Opera7.11/Linux M2 build 406 Subject: Two crashed of msgfmt when install x11/xscreensaver-gnome.. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 01:44:30 -0000 I noticed that I get two lines of crashed/core dumped when it installed the x11/xscreensaver-gnome, but I don't know if it's big deal. It does install x11/xscreensaver-gnome fine without get fail. I can't figure how it got crashed.. ========================== # locate msgfmt | grep core /usr/ports/x11/xscreensaver-gnome/work/xscreensaver-4.10/po/msgfmt.core ========================== Here's when I ran gdb on the msgfmt.core, but I don't know if it helps that much.. ========================== # gdb msgfmt msgfmt.core [...copyright...] Core was generated by `msgfmt'. Program terminated with signal 6, Aborted. Reading symbols from /usr/local/lib/libgettextsrc-0.11.5.so...done. Loaded symbols for /usr/local/lib/libgettextsrc-0.11.5.so Reading symbols from /usr/local/lib/libgettextlib-0.11.5.so...done. Loaded symbols for /usr/local/lib/libgettextlib-0.11.5.so Reading symbols from /usr/local/lib/libintl.so.4...done. Loaded symbols for /usr/local/lib/libintl.so.4 Reading symbols from /usr/local/lib/libiconv.so.3...done. Loaded symbols for /usr/local/lib/libiconv.so.3 Reading symbols from /usr/lib/libc.so.5...done. Loaded symbols for /usr/lib/libc.so.5 Reading symbols from /usr/libexec/ld-elf.so.1...done. Loaded symbols for /usr/libexec/ld-elf.so.1 #0 0x281d3173 in profil () at {standard input}:15 15 {standard input}: No such file or directory. in {standard input} (gdb) bt #0 0x281d3173 in profil () at {standard input}:15 #1 0x2823e69c in getenv (name=0x0) at /usr/src/lib/libc/stdlib/getenv.c:92 #2 0x2807b35a in mbfile_getc (mbc=0xbfbfe2b0, mbf=0x28092d40) at po- lex.c:576 #3 0x2807b732 in lex_getc (mbc=0xbfbfe2b0) at po-lex.c:754 #4 0x2807bdf5 in po_gram_lex () at po-lex.c:1006 #5 0x2807c60e in po_gram_parse () at bison.simple:432 #6 0x2807a638 in po_scan_file (pop=0x8059000, filename=0x0) at po.c:123 #7 0x0804bb92 in read_po_file (filename=0x0) at msgfmt.c:1595 #8 0x08049ff3 in main (argc=134582272, argv=0x28092a7c) at msgfmt.c:455 #9 0x08049979 in _start () Current language: auto; currently asm ========================== Cheers, Mezz -- bsdforums.org 's moderator, mezz. From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 18:53:06 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7075A37B401 for ; Tue, 10 Jun 2003 18:53:06 -0700 (PDT) Received: from lakemtao06.cox.net (lakemtao06.cox.net [68.1.17.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96E0043FDD for ; Tue, 10 Jun 2003 18:53:05 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from sysinfo.mezzweb.com ([68.103.37.247]) by lakemtao06.cox.net (InterMail vM.5.01.04.05 201-253-122-122-105-20011231) with ESMTP id <20030611015305.KDXN23505.lakemtao06.cox.net@sysinfo.mezzweb.com> for ; Tue, 10 Jun 2003 21:53:05 -0400 Content-Type: text/plain; charset=utf-8; format=flowed To: freebsd-gnome@freebsd.org From: Jeremy Messenger MIME-Version: 1.0 Date: Tue, 10 Jun 2003 20:38:26 -0500 Message-ID: User-Agent: Opera7.11/Linux M2 build 406 Subject: archivers/fileroller failed, cuz of archivers/lzop's old link.. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 01:53:06 -0000 =================================== ===> Verifying install for lzop in /usr/ports/archivers/lzop >> lzop-1.01.tar.gz doesn't seem to exist in /usr/ports/distfiles/. >> Attempting to fetch from >> http://www.oberhumer.com/opensource/lzop/download/. fetch: http://www.oberhumer.com/opensource/lzop/download/lzop-1.01.tar.gz: Moved Permanently >> Attempting to fetch from >> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/lzop-1.01.tar.gz: Not logged in >> Couldn't fetch it - please try to retrieve this >> port manually into /usr/ports/distfiles/ and try again. *** Error code 1 =================================== It has been moved to the new place at.. http://www.lzop.org/download/lzop-1.01.tar.gz Should I submit the PR with the diff for it? The maintainer is ports@FreeBSD.org .. Cheers, Mezz -- bsdforums.org 's moderator, mezz. From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 19:18:02 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCB4E37B401 for ; Tue, 10 Jun 2003 19:18:02 -0700 (PDT) Received: from heaven.gigo.com (heaven.gigo.com [64.57.102.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48ADE43F75 for ; Tue, 10 Jun 2003 19:18:02 -0700 (PDT) (envelope-from lioux@brturbo.com) Received: from 200-193-224-118.bsace7003.dsl.brasiltelecom.net.br (200-193-224-118.bsace7003.dsl.brasiltelecom.net.br [200.193.224.118]) by heaven.gigo.com (Postfix) with ESMTP id 5720AB737 for ; Tue, 10 Jun 2003 19:17:58 -0700 (PDT) Received: (qmail 4161 invoked by uid 1001); 11 Jun 2003 02:10:13 -0000 Message-ID: <20030611021013.4160.qmail@exxodus.fedaykin.here> Date: Tue, 10 Jun 2003 23:09:51 -0300 From: Mario Sergio Fujikawa Ferreira To: gnome@FreeBSD.org Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dc+cDN39EJAMEtIO" Content-Disposition: inline X-Operating-System: FreeBSD 4.8-STABLE X-Disclaimer: I hope you find what you are looking for... in life :) User-Agent: Mutt/1.5.4i Subject: RFC gstreamer 0.6.2 update X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 02:18:03 -0000 --dc+cDN39EJAMEtIO Content-Type: multipart/mixed; boundary="n8g4imXOkfNTN/H1" Content-Disposition: inline --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, I've just updated both gstreamer and gstreamer-plugins ports to version 0.6.2 which is a bugfix release mostly. I tested it against gstreamer-player port and despite some audio out of sync problems, it seems to work fine. Could you guys cross test this? If I hear nothing otherwise, I should be committing these to the tree by 13:00 GMT-3. Bear in mind that there has been a library version bump on both ports, therefore you might have to update your library dependencies. Regards, --=20 Mario S F Ferreira - DF - Brazil - "I guess this is a signature." FreeBSD Committer | FreeBSD-KDE Core Team | CS Developer feature, n: a documented bug | bug, n: an undocumented feature --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="multimedia.gstreamer.patch" Content-Transfer-Encoding: quoted-printable diff -ruN /usr/ports/multimedia/gstreamer/Makefile /usr/home/lioux/src/mypo= rts/multimedia/gstreamer/Makefile --- /usr/ports/multimedia/gstreamer/Makefile Tue Apr 22 08:22:12 2003 +++ /usr/home/lioux/src/myports/multimedia/gstreamer/Makefile Tue Jun 10 14= :31:10 2003 @@ -6,10 +6,11 @@ # =20 PORTNAME=3D gstreamer -PORTVERSION=3D 0.6.1 +PORTVERSION=3D 0.6.2 CATEGORIES=3D multimedia -MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR=3D ${PORTNAME} +#MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} +#MASTER_SITE_SUBDIR=3D ${PORTNAME} +MASTER_SITES=3D http://gstreamer.net/releases/${PORTVERSION}/src/ =20 MAINTAINER=3D lioux@FreeBSD.org COMMENT=3D Development framework for creating media applications @@ -41,12 +42,13 @@ =20 MAN1=3D gst-complete.1 gst-compprep.1 gst-inspect.1 gst-launch.1 \ gst-feedback.1 gst-md5sum.1 \ + gst-typefind.1 \ gst-register.1 gst-xmllaunch.1 =20 PKG_CONFIG?=3D"${LOCALBASE}/bin/pkg-config" =20 # library minor number -SHLIB_VERSION=3D 0 +SHLIB_VERSION=3D 1 =20 post-install: # register plugins diff -ruN /usr/ports/multimedia/gstreamer/distinfo /usr/home/lioux/src/mypo= rts/multimedia/gstreamer/distinfo --- /usr/ports/multimedia/gstreamer/distinfo Tue Apr 22 08:22:12 2003 +++ /usr/home/lioux/src/myports/multimedia/gstreamer/distinfo Tue Jun 10 13= :52:53 2003 @@ -1 +1 @@ -MD5 (gstreamer-0.6.1.tar.bz2) =3D e9db8443c7679978b72d485c744f3189 +MD5 (gstreamer-0.6.2.tar.bz2) =3D 56de8c6b9128cfd9f9758ed13ec8abeb diff -ruN /usr/ports/multimedia/gstreamer/pkg-plist /usr/home/lioux/src/myp= orts/multimedia/gstreamer/pkg-plist --- /usr/ports/multimedia/gstreamer/pkg-plist Tue Apr 22 08:22:12 2003 +++ /usr/home/lioux/src/myports/multimedia/gstreamer/pkg-plist Tue Jun 10 1= 4:24:56 2003 @@ -6,6 +6,7 @@ bin/gst-launch bin/gst-md5sum bin/gst-register +bin/gst-typefind bin/gst-xmllaunch include/gstreamer-%%VERSION%%/gst/bytestream/bytestream.h include/gstreamer-%%VERSION%%/gst/control/control.h --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="multimedia.gstreamer-plugins.patch" Content-Transfer-Encoding: quoted-printable diff -ruN /usr/ports/multimedia/gstreamer-plugins/Makefile /usr/home/lioux/= src/myports/multimedia/gstreamer-plugins/Makefile --- /usr/ports/multimedia/gstreamer-plugins/Makefile Tue May 13 05:32:37 20= 03 +++ /usr/home/lioux/src/myports/multimedia/gstreamer-plugins/Makefile Tue J= un 10 15:13:54 2003 @@ -6,11 +6,11 @@ # =20 PORTNAME=3D gstreamer -PORTVERSION=3D 0.6.1 -PORTREVISION=3D 1 +PORTVERSION=3D 0.6.2 CATEGORIES=3D multimedia audio -MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR=3D ${PORTNAME} +#MASTER_SITES=3D ${MASTER_SITE_SOURCEFORGE} +#MASTER_SITE_SUBDIR=3D ${PORTNAME} +MASTER_SITES=3D http://gstreamer.net/releases/${PORTVERSION}/src/ PKGNAMESUFFIX=3D -plugins DISTNAME=3D gst-plugins-${PORTVERSION} =20 @@ -18,7 +18,7 @@ COMMENT=3D GStreamer written collection of plugins handling several media = types =20 BUILD_DEPENDS=3D pkg-config:${PORTSDIR}/devel/pkgconfig -LIB_DEPENDS=3D gstreamer-0.6.0:${PORTSDIR}/multimedia/gstreamer \ +LIB_DEPENDS=3D gstreamer-0.6.1:${PORTSDIR}/multimedia/gstreamer \ popt.0:${PORTSDIR}/devel/popt \ =20 USE_X_PREFIX=3D yes @@ -57,7 +57,7 @@ XMMS_CONFIG?=3D"${LOCALBASE}/bin/xmms-config" =20 # library minor number -SHLIB_VERSION=3D 0 +SHLIB_VERSION=3D 1 =20 post-patch: # as of this writing, FreeBSD does not support lrint* C99 math functions @@ -138,6 +138,11 @@ WITH_AVIFILE=3Dyes .endif =20 +# cdparanoia +.if exists(${LOCALBASE}/lib/libcdda_paranoia.a) +WITH_CDPARANOIA=3Dyes +.endif + # esound .if (${HAVE_GNOME:Mesound}!=3D"") WITH_ESOUND=3Dyes @@ -304,6 +309,16 @@ PLIST_SUB+=3D AVIFILE=3D"" .endif =20 +# cdparanoia +.ifndef(WITH_CDPARANOIA) +CONFIGURE_ARGS+=3D --disable-cdparanoia +PLIST_SUB+=3D CDPARANOIA=3D"@comment " +.else +LIB_DEPENDS+=3D cdda_interface.0:${PORTSDIR}/audio/cdparanoia + +PLIST_SUB+=3D CDPARANOIA=3D"" +.endif + # esound .ifndef(WITH_ESOUND) CONFIGURE_ARGS+=3D --disable-esd \ @@ -604,6 +619,10 @@ .ifndef(WITH_AVIFILE) @${ECHO_MSG} '=3D=3D=3D>' @${ECHO_MSG} '=3D=3D=3D> Define WITH_AVIFILE to enable avifile Video plug= in' +.endif +.ifndef(WITH_CDPARANOIA) + @${ECHO_MSG} '=3D=3D=3D>' + @${ECHO_MSG} '=3D=3D=3D> Define WITH_CDPARANOIA to enable cdparanoia Audi= o plugin' .endif .ifndef(WITH_ESOUND) @${ECHO_MSG} '=3D=3D=3D>' diff -ruN /usr/ports/multimedia/gstreamer-plugins/distinfo /usr/home/lioux/= src/myports/multimedia/gstreamer-plugins/distinfo --- /usr/ports/multimedia/gstreamer-plugins/distinfo Tue Apr 22 08:22:12 20= 03 +++ /usr/home/lioux/src/myports/multimedia/gstreamer-plugins/distinfo Tue J= un 10 13:54:36 2003 @@ -1 +1 @@ -MD5 (gst-plugins-0.6.1.tar.gz) =3D 0d3cc17cafc57f145d80b880af47f99f +MD5 (gst-plugins-0.6.2.tar.gz) =3D ef7b6ce20e32e9abae22aeb2169f4055 diff -ruN /usr/ports/multimedia/gstreamer-plugins/pkg-plist /usr/home/lioux= /src/myports/multimedia/gstreamer-plugins/pkg-plist --- /usr/ports/multimedia/gstreamer-plugins/pkg-plist Tue Apr 22 08:22:12 2= 003 +++ /usr/home/lioux/src/myports/multimedia/gstreamer-plugins/pkg-plist Tue = Jun 10 20:38:23 2003 @@ -22,6 +22,7 @@ lib/gstreamer-%%VERSION%%/libgstauparse.so lib/gstreamer-%%VERSION%%/libgstavidemux.so lib/gstreamer-%%VERSION%%/libgstavimux.so +%%CDPARANOIA%%lib/gstreamer-%%VERSION%%/libgstcdparanoia.so lib/gstreamer-%%VERSION%%/libgstcdxaparse.so lib/gstreamer-%%VERSION%%/libgstchart.so %%HERMES%%lib/gstreamer-%%VERSION%%/libgstcolorspace.so @@ -54,7 +55,6 @@ %%LIBMAD%%lib/gstreamer-%%VERSION%%/libgstmad.so lib/gstreamer-%%VERSION%%/libgstmedian.so %%LIBMIKMOD%%lib/gstreamer-%%VERSION%%/libgstmikmod.so -lib/gstreamer-%%VERSION%%/libgstmodplug.so lib/gstreamer-%%VERSION%%/libgstmono2stereo.so lib/gstreamer-%%VERSION%%/libgstmonoscope.so lib/gstreamer-%%VERSION%%/libgstmp1videoparse.so @@ -117,7 +117,7 @@ lib/libgstgconf-%%VERSION%%.so.%%SHLIB_VERSION%% lib/libgstmedia-info-%%VERSION%%.a lib/libgstmedia-info-%%VERSION%%.so -lib/libgstmedia-info-%%VERSION%%.so.%%SHLIB_VERSION%% +lib/libgstmedia-info-%%VERSION%%.so.0 lib/libgstplay-%%VERSION%%.a lib/libgstplay-%%VERSION%%.so lib/libgstplay-%%VERSION%%.so.%%SHLIB_VERSION%% --n8g4imXOkfNTN/H1-- --dc+cDN39EJAMEtIO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.2 (FreeBSD) iD8DBQE+5o+F99ikl0dk/7oRAsqKAJ9VnKMbFu7x5dgOyAgBhBXhdp/9jwCfXigr xtvMv8eLEng833fu/B0sLOc= =YaEx -----END PGP SIGNATURE----- --dc+cDN39EJAMEtIO-- From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 20:56:50 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C54837B407; Tue, 10 Jun 2003 20:56:50 -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 A748E43FDD; Tue, 10 Jun 2003 20:56:47 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5B3pFTp017078; Tue, 10 Jun 2003 23:51:15 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5B3rHV8078862; Tue, 10 Jun 2003 23:53:17 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Mario Sergio Fujikawa Ferreira In-Reply-To: <20030611021013.4160.qmail@exxodus.fedaykin.here> References: <20030611021013.4160.qmail@exxodus.fedaykin.here> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-k7FKuquq+NzzYR+UIHHi" Organization: MarcusCom, Inc. Message-Id: <1055303803.307.2.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 10 Jun 2003 23:56:44 -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: FreeBSD GNOME Users Subject: Re: RFC gstreamer 0.6.2 update X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 03:56:50 -0000 --=-k7FKuquq+NzzYR+UIHHi Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2003-06-10 at 22:09, Mario Sergio Fujikawa Ferreira wrote: > Hi, >=20 > I've just updated both gstreamer and gstreamer-plugins ports > to version 0.6.2 which is a bugfix release mostly. >=20 > I tested it against gstreamer-player port and despite > some audio out of sync problems, it seems to work fine. >=20 > Could you guys cross test this? If I hear nothing > otherwise, I should be committing these to the tree by 13:00 GMT-3. > Bear in mind that there has been a library version bump on both > ports, therefore you might have to update your library dependencies. This looks good. Please be sure to hit the ports that require the shared lib bump. Thanks. Joe >=20 > Regards, --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-k7FKuquq+NzzYR+UIHHi 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+5qh7b2iPiv4Uz4cRAplYAJ9AyhwgBbkNSRFYkMKSOQaezPK/MQCfc6YT /9zzwXTXy2OJIglusRlcm6I= =CJrL -----END PGP SIGNATURE----- --=-k7FKuquq+NzzYR+UIHHi-- From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 20:58:18 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7390637B401 for ; Tue, 10 Jun 2003 20:58:18 -0700 (PDT) Received: from ms-smtp-03.southeast.rr.com (ms-smtp-03.southeast.rr.com [24.93.67.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E87543F93 for ; Tue, 10 Jun 2003 20:58:17 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5B3uV8V028122; Tue, 10 Jun 2003 23:56:32 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5B3sdV8078889; Tue, 10 Jun 2003 23:54:39 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Jeremy Messenger In-Reply-To: References: Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-CGCqI4D9TmmwJIJg8you" Organization: MarcusCom, Inc. Message-Id: <1055303886.307.4.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 10 Jun 2003 23:58:06 -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: freebsd-gnome@freebsd.org Subject: Re: archivers/fileroller failed, cuz of archivers/lzop's old link.. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 03:58:18 -0000 --=-CGCqI4D9TmmwJIJg8you Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Tue, 2003-06-10 at 21:38, Jeremy Messenger wrote: > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D> Verifying install for lzop in /usr/ports/archivers/lzop > >> lzop-1.01.tar.gz doesn't seem to exist in /usr/ports/distfiles/. > >> Attempting to fetch from=20 > >> http://www.oberhumer.com/opensource/lzop/download/. > fetch: http://www.oberhumer.com/opensource/lzop/download/lzop-1.01.tar.gz= : > Moved Permanently > >> Attempting to fetch from=20 > >> ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/. > fetch: ftp://ftp.FreeBSD.org/pub/FreeBSD/ports/distfiles/lzop-1.01.tar.gz= : > Not logged in > >> Couldn't fetch it - please try to retrieve this > >> port manually into /usr/ports/distfiles/ and try again. > *** Error code 1 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >=20 > It has been moved to the new place at.. >=20 > http://www.lzop.org/download/lzop-1.01.tar.gz >=20 > Should I submit the PR with the diff for it? The maintainer is=20 > ports@FreeBSD.org .. Committed, thanks! Joe >=20 > Cheers, > Mezz --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-CGCqI4D9TmmwJIJg8you 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+5qjOb2iPiv4Uz4cRAvUYAJ9vJHJkCvlBFGTmJQNFQskuFXdN8gCeMXH7 WX/OpUR44YlhsZ6qF5UkmOA= =EXV5 -----END PGP SIGNATURE----- --=-CGCqI4D9TmmwJIJg8you-- From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 22:37:31 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1397337B401; Tue, 10 Jun 2003 22:37:31 -0700 (PDT) Received: from lakemtao07.cox.net (lakemtao07.cox.net [68.1.17.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18EBF43F3F; Tue, 10 Jun 2003 22:37:30 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from sysinfo.mezzweb.com ([68.103.37.247]) by lakemtao07.cox.net (InterMail vM.5.01.04.05 201-253-122-122-105-20011231) with ESMTP id <20030611053728.KURH4514.lakemtao07.cox.net@sysinfo.mezzweb.com>; Wed, 11 Jun 2003 01:37:28 -0400 To: freebsd-gnome@freebsd.org From: Jeremy Messenger Content-Type: multipart/mixed; boundary="----------sxgpzuySJrGh9qwZhlohD9" MIME-Version: 1.0 Date: Wed, 11 Jun 2003 00:22:50 -0500 Message-ID: User-Agent: Opera7.11/Linux M2 build 406 cc: nobutaka@freebsd.org Subject: libxine hasn't update to bsd.gnome.mk's new way yet? X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 05:37:31 -0000 ------------sxgpzuySJrGh9qwZhlohD9 Content-Type: text/plain; charset=utf-8; format=flowed It just failed on multimedia/libxine, so I just realized that it still hasn't been commit yet to the bsd.gnome.mk's new way. Perhaps, I should submit the PR or what? I still hold the diff of it, so in case if you don't have it anymore. Here's an attach of it. Cheers, Mezz -- bsdforums.org 's moderator, mezz. ------------sxgpzuySJrGh9qwZhlohD9 Content-Disposition: attachment; filename="libxine.diff" Content-Type: application/octet-stream; name="libxine.diff" Content-Transfer-Encoding: Base64 ZGlmZiAtdXIgbGlieGluZS5vcmlnL01ha2VmaWxlIGxpYnhpbmUvTWFrZWZp bGUKLS0tIGxpYnhpbmUub3JpZy9NYWtlZmlsZQlUdWUgQXByIDI5IDA3OjEy OjA2IDIwMDMKKysrIGxpYnhpbmUvTWFrZWZpbGUJTW9uIEp1biAgMiAxNjoz NTo1NyAyMDAzCkBAIC02OSw4ICs2OSw4IEBACiBQTElTVF9TVUIrPQlIQVZF X0VTT1VORD0iQGNvbW1lbnQgIgogLmVuZGlmCiAKLS5pZiBleGlzdHMoJHtY MTFCQVNFfS9saWJkYXRhL3BrZ2NvbmZpZy9nbm9tZS12ZnMtMi4wLnBjKQot TElCX0RFUEVORFMrPQlnbm9tZXZmcy0yLjA6JHtQT1JUU0RJUn0vZGV2ZWwv Z25vbWV2ZnMyCisuaWYgJHtIQVZFX0dOT01FOk1nbm9tZXZmczJ9ICE9ICIi CitVU0VfR05PTUUrPQlnbm9tZXZmczIKIFBMSVNUX1NVQis9CUhBVkVfR05P TUVWRlMyPSIiCiAuZWxzZQogUExJU1RfU1VCKz0JSEFWRV9HTk9NRVZGUzI9 IkBjb21tZW50ICIK ------------sxgpzuySJrGh9qwZhlohD9-- From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 23:27:53 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9130037B401; Tue, 10 Jun 2003 23:27:53 -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 A78F343F85; Tue, 10 Jun 2003 23:27:52 -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 h5B6Rj0u044693; Wed, 11 Jun 2003 02:27:45 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h5B6RjwK044690; Wed, 11 Jun 2003 02:27:45 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Wed, 11 Jun 2003 02:27:45 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: gnome@freebsd.org Message-ID: <20030611022138.T44663@shumai.marcuscom.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: ports@freebsd.org Subject: HEADS UP EVOLUTION USERS: Evolution 1.4.0 merged X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 06:27:53 -0000 Evolution has been updated to 1.4.0. This new version is a GNOME 2 port. The old GNOME 1.4 version is no longer supported as 1.4.0 is now stable. The update should be transparent. Portupgrade will take care of the actual application upgrade, then Evo should do the rest with your mail files. For more details, please see the Evo 1.4.0 release notes at: http://developer.ximian.com/projects/evolution/release_notes/1.4.html Send email to freebsd-gnome@freebsd.org with any questions. Joe PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 23:41:05 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8489D37B401; Tue, 10 Jun 2003 23:41:05 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22B0B43FA3; Tue, 10 Jun 2003 23:41:05 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (marcus@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h5B6f5Up000210; Tue, 10 Jun 2003 23:41:05 -0700 (PDT) (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h5B6f4WZ000206; Tue, 10 Jun 2003 23:41:04 -0700 (PDT) Date: Tue, 10 Jun 2003 23:41:04 -0700 (PDT) From: Joe Marcus Clarke Message-Id: <200306110641.h5B6f4WZ000206@freefall.freebsd.org> To: bland@mail.ru, marcus@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/52974: evolution-devel installs broken .pc files X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 06:41:05 -0000 Synopsis: evolution-devel installs broken .pc files State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Tue Jun 10 23:40:52 PDT 2003 State-Changed-Why: Fixed in Evo 1.4.0. http://www.freebsd.org/cgi/query-pr.cgi?pr=52974 From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 23:42:36 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96FEA37B401 for ; Tue, 10 Jun 2003 23:42:35 -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 EA72143FA3 for ; Tue, 10 Jun 2003 23:42:33 -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 h5B6gP0u044785; Wed, 11 Jun 2003 02:42:25 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h5B6gJbs044782; Wed, 11 Jun 2003 02:42:25 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Wed, 11 Jun 2003 02:42:19 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: Andrew Thompson In-Reply-To: <03Jun11.132939nzst.119059@homer.fire.org.nz> Message-ID: <20030611024148.N44764@shumai.marcuscom.com> References: <03Jun11.132939nzst.119059@homer.fire.org.nz> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: FreeBSD GNOME Users Subject: Re: Anjuta X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 06:42:36 -0000 On Tue, 11 Jun 2003, Andrew Thompson wrote: > Hi, > > Has anyone else come across a bug (?) with anjuta where upon saving the > file, the next mouse,keyboard action brings up this message: > > "The file 'index.php' on the disk is more recent than > the current buffer. > Do you want to reload it?" > > > I am editing the file on a nfs mount, mabey the buffering is throwing it > off. I am tempted just to comment out the > text_editor_check_disk_status() function but I thought i'd ask here > first. > > I am using v1.1.1 but earlier versions do the same. Could be a time mis-match between your NFS server and client. Consider running NTP on them, and keeping the clocks in sync. Joe > > > Andy > > > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" > > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 23:43:48 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF25A37B401 for ; Tue, 10 Jun 2003 23:43:48 -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 DB4B443F3F for ; Tue, 10 Jun 2003 23:43:47 -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 h5B6hd0u044797; Wed, 11 Jun 2003 02:43:39 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h5B6hdQ5044794; Wed, 11 Jun 2003 02:43:39 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Wed, 11 Jun 2003 02:43:39 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: Jeremy Messenger In-Reply-To: Message-ID: <20030611024309.R44764@shumai.marcuscom.com> References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: freebsd-gnome@freebsd.org Subject: Re: Two crashed of msgfmt when install x11/xscreensaver-gnome.. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 06:43:49 -0000 On Tue, 10 Jun 2003, Jeremy Messenger wrote: > I noticed that I get two lines of crashed/core dumped when it installed the > x11/xscreensaver-gnome, but I don't know if it's big deal. It does install > x11/xscreensaver-gnome fine without get fail. I can't figure how it got > crashed.. Don't worry about this. It's not a big deal from I can tell. I believe xscreensaver wants an older version of gettext. Joe > > ========================== > # locate msgfmt | grep core > /usr/ports/x11/xscreensaver-gnome/work/xscreensaver-4.10/po/msgfmt.core > ========================== > > Here's when I ran gdb on the msgfmt.core, but I don't know if it helps that > much.. > > ========================== > # gdb msgfmt msgfmt.core > > [...copyright...] > > Core was generated by `msgfmt'. > Program terminated with signal 6, Aborted. > Reading symbols from /usr/local/lib/libgettextsrc-0.11.5.so...done. > Loaded symbols for /usr/local/lib/libgettextsrc-0.11.5.so > Reading symbols from /usr/local/lib/libgettextlib-0.11.5.so...done. > Loaded symbols for /usr/local/lib/libgettextlib-0.11.5.so > Reading symbols from /usr/local/lib/libintl.so.4...done. > Loaded symbols for /usr/local/lib/libintl.so.4 > Reading symbols from /usr/local/lib/libiconv.so.3...done. > Loaded symbols for /usr/local/lib/libiconv.so.3 > Reading symbols from /usr/lib/libc.so.5...done. > Loaded symbols for /usr/lib/libc.so.5 > Reading symbols from /usr/libexec/ld-elf.so.1...done. > Loaded symbols for /usr/libexec/ld-elf.so.1 > #0 0x281d3173 in profil () at {standard input}:15 > 15 {standard input}: No such file or directory. > in {standard input} > > (gdb) bt > #0 0x281d3173 in profil () at {standard input}:15 > #1 0x2823e69c in getenv (name=0x0) at /usr/src/lib/libc/stdlib/getenv.c:92 > #2 0x2807b35a in mbfile_getc (mbc=0xbfbfe2b0, mbf=0x28092d40) at po- > lex.c:576 > #3 0x2807b732 in lex_getc (mbc=0xbfbfe2b0) at po-lex.c:754 > #4 0x2807bdf5 in po_gram_lex () at po-lex.c:1006 > #5 0x2807c60e in po_gram_parse () at bison.simple:432 > #6 0x2807a638 in po_scan_file (pop=0x8059000, filename=0x0) at po.c:123 > #7 0x0804bb92 in read_po_file (filename=0x0) at msgfmt.c:1595 > #8 0x08049ff3 in main (argc=134582272, argv=0x28092a7c) at msgfmt.c:455 > #9 0x08049979 in _start () > Current language: auto; currently asm > ========================== > > Cheers, > Mezz > > > -- > bsdforums.org 's moderator, mezz. > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" > > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Tue Jun 10 23:46:17 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F06137B401 for ; Tue, 10 Jun 2003 23:46:17 -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 4895A43F85 for ; Tue, 10 Jun 2003 23:46:16 -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 h5B6k90u044814; Wed, 11 Jun 2003 02:46:09 -0400 (EDT) (envelope-from marcus@freebsd.org) Received: from localhost (marcus@localhost)h5B6k8fr044811; Wed, 11 Jun 2003 02:46:09 -0400 (EDT) X-Authentication-Warning: shumai.marcuscom.com: marcus owned process doing -bs Date: Wed, 11 Jun 2003 02:46:08 -0400 (EDT) From: Joe Marcus Clarke X-X-Sender: marcus@shumai.marcuscom.com To: Glenn Johnson In-Reply-To: <20030610152735.GA71845@node1.cluster.srrc.usda.gov> Message-ID: <20030611024402.B44764@shumai.marcuscom.com> References: <20030610152735.GA71845@node1.cluster.srrc.usda.gov> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: gnome@freebsd.org Subject: Re: reading passwd file with gdm X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 06:46:17 -0000 On Tue, 10 Jun 2003, Glenn Johnson wrote: > I am trying to parse the master.passwd file during gdm logins to see if > the passwd has reached its expiration time. The following command works > on the command line and in a simple sh script that I tested: > > CHANGE=`perl -e "print join(':', getpwnam ('$USER'));" | awk -F: '{print $5}'` > > However, it does not work when put into gdm/PreSession/Default. > > Here is my PreSession/Default file. I put in an echo command to see the > values. > > --begin gdm/PreSession/Default-- > > #!/bin/sh > # > # Note that any setup should come before the sessreg command as > # that must be 'exec'ed for the pid to be correct (sessreg uses the parent > # pid) > # > # Note that output goes into the .xsession-errors file for easy debugging > # > PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin > xrdb /etc/X11/Xresources > xmessage -nearmouse -file /etc/motd -default okay > > if /usr/bin/which -s xsetroot > /dev/null 2>&1; then > xsetroot -cursor_name left_ptr -solid "#363047" > fi > > TIME=`date +%s` > CHANGE=`perl -e "print join(':', getpwnam ('$USER'));" | awk -F: '{print $5}'` > echo TIME is $TIME CHANGE is $CHANGE EXPIRED is $EXPIRED > ~/aging > if [ "$EXPIRED" = "yes" ]; then > xterm -e passwd > fi > > if /usr/bin/which -s sessreg > /dev/null 2>&1; then > # some output for easy debugging > echo "$0: Registering your session with wtmp and utmp" > echo "$0: running: sessreg -a -w /var/log/wtmp -u /var/run/utmp -x \"$X_SERVERS\" -h \"$REMOTE_HOST\" -l $DISPLAY $USER" > > exec sessreg -a -w /var/log/wtmp -u /var/run/utmp -x "$X_SERVERS" -h "$REMOTE_HOST" -l $DISPLAY $USER > # this is not reached > fi > > # some output for easy debugging > echo "$0: could not find the sessreg utility, cannot update wtmp and utmp" > exit 0 > > --end gdm/PreSession/Default-- > > Here are the contents of the ~/aging file: > > TIME is 1055258058 CHANGE is EXPIRED is > > Does any one have any idea why that perl command is not working when run > in the gdm PreSession/Default script? It _MAY_ be that the $USER variable substitution isn't happening correctly (though I don't know why). Try using Perl's %ENV hash to get it: CHANGE=`perl -e "print join(':', getpwnam ($ENV{'USER'}));" | awk -F: '{print $5}'` Joe > > Thanks. > > -- > Glenn Johnson > USDA, ARS, SRRC Phone: (504) 286-4252 > New Orleans, LA 70124 e-mail: gjohnson@srrc.ars.usda.gov > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" > > PGP Key : http://www.marcuscom.com/pgp.asc From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 00:12:53 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF23337B401 for ; Wed, 11 Jun 2003 00:12:53 -0700 (PDT) Received: from mx0.gmx.net (mx0.gmx.net [213.165.64.100]) by mx1.FreeBSD.org (Postfix) with SMTP id 29B1343F75 for ; Wed, 11 Jun 2003 00:12:52 -0700 (PDT) (envelope-from roman.mora@gmx.de) Received: (qmail 28566 invoked by uid 0); 11 Jun 2003 07:12:51 -0000 Date: Wed, 11 Jun 2003 09:12:50 +0200 (MEST) From: Roman Mora To: gnome@FreeBSD.org MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="========GMXBoundary139011055315570" X-Priority: 3 (Normal) X-Authenticated-Sender: #0002077716@gmx.net X-Authenticated-IP: [62.138.36.82] Message-ID: <13901.1055315570@www7.gmx.net> X-Mailer: WWW-Mail 1.6 (Global Message Exchange) X-Flags: 0001 Subject: Script "configure" failed unexpectedly while compiling gnome2-fifth-toe X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 07:12:54 -0000 This is a MIME encapsulated multipart message - please use a MIME-compliant e-mail program to open it. Dies ist eine mehrteilige Nachricht im MIME-Format - bitte verwenden Sie zum Lesen ein MIME-konformes Mailprogramm. --========GMXBoundary139011055315570 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit I try to build gnome2-fifth-toe from the ports (portstree has been updated with cvsup), but I get this error: ------------------------------------------------------------------------------------------------- configure: error: Can't find GMP (--without-gmp for cut-down non-GMP build) ===> Script "configure" failed unexpectedly. Please report the problem to gnome@FreeBSD.org [maintainer] and attach the "/usr/ports/lang/librep/work/librep-0.16.2/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. an `ls /var/db/pkg`). *** Error code 1 Stop in /usr/ports/lang/librep. *** Error code 1 Stop in /usr/ports/x11-toolkits/rep-gtk2. *** Error code 1 Stop in /usr/ports/x11-wm/sawfish2. *** Error code 1 Stop in /usr/ports/x11/gnome2-fifth-toe. ------------------------------------------------------------------------------------------------- /usr/ports/lang/librep/work/librep-0.16.2/config.log is attachted to this mail as well as pkg.txt (an overview of the packages installed on my system). -- +++ GMX - Mail, Messaging & more http://www.gmx.net +++ Bitte lächeln! Fotogalerie online mit GMX ohne eigene Homepage! --========GMXBoundary139011055315570 Content-Type: application/octet-stream; name="config.log" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="config.log" VGhpcyBmaWxlIGNvbnRhaW5zIGFueSBtZXNzYWdlcyBwcm9kdWNlZCBieSBjb21waWxlcnMgd2hp bGUKcnVubmluZyBjb25maWd1cmUsIHRvIGFpZCBkZWJ1Z2dpbmcgaWYgY29uZmlndXJlIG1ha2Vz IGEgbWlzdGFrZS4KCmNvbmZpZ3VyZTo5NjM6IGNoZWNraW5nIGhvc3Qgc3lzdGVtIHR5cGUKY29u ZmlndXJlOjEwMDQ6IGNoZWNraW5nIGZvciBnY2MKY29uZmlndXJlOjExMTc6IGNoZWNraW5nIHdo ZXRoZXIgdGhlIEMgY29tcGlsZXIgKGNjIC1PIC1waXBlIC1tY3B1PXBlbnRpdW1wcm8gKSB3b3Jr cwpjb25maWd1cmU6MTEzMzogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUgLW1jcHU9cGVudGl1bXBy byAtSS91c3IvbG9jYWwvaW5jbHVkZSAgY29uZnRlc3QuYyAtTC91c3IvbG9jYWwvbGliIC1seHBn NCAtbGludGwgLWxjX3IgMT4mNQpjb25maWd1cmU6MTE1OTogY2hlY2tpbmcgd2hldGhlciB0aGUg QyBjb21waWxlciAoY2MgLU8gLXBpcGUgLW1jcHU9cGVudGl1bXBybyApIGlzIGEgY3Jvc3MtY29t cGlsZXIKY29uZmlndXJlOjExNjQ6IGNoZWNraW5nIHdoZXRoZXIgd2UgYXJlIHVzaW5nIEdOVSBD CmNvbmZpZ3VyZToxMTczOiBjYyAtRSBjb25mdGVzdC5jCmNvbmZpZ3VyZToxMTkyOiBjaGVja2lu ZyB3aGV0aGVyIGNjIGFjY2VwdHMgLWcKY29uZmlndXJlOjEyMjU6IGNoZWNraW5nIGZvciBzdHJl cnJvciBpbiAtbGNwb3NpeApjb25maWd1cmU6MTI0NDogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUg LW1jcHU9cGVudGl1bXBybyAtSS91c3IvbG9jYWwvaW5jbHVkZSAgY29uZnRlc3QuYyAtbGNwb3Np eCAgLUwvdXNyL2xvY2FsL2xpYiAtbHhwZzQgLWxpbnRsIC1sY19yIDE+JjUKL3Vzci9iaW4vbGQ6 IGNhbm5vdCBmaW5kIC1sY3Bvc2l4CmNvbmZpZ3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOgojbGlu ZSAxMjMzICJjb25maWd1cmUiCiNpbmNsdWRlICJjb25mZGVmcy5oIgovKiBPdmVycmlkZSBhbnkg Z2NjMiBpbnRlcm5hbCBwcm90b3R5cGUgdG8gYXZvaWQgYW4gZXJyb3IuICAqLwovKiBXZSB1c2Ug Y2hhciBiZWNhdXNlIGludCBtaWdodCBtYXRjaCB0aGUgcmV0dXJuIHR5cGUgb2YgYSBnY2MyCiAg ICBidWlsdGluIGFuZCB0aGVuIGl0cyBhcmd1bWVudCBwcm90b3R5cGUgd291bGQgc3RpbGwgYXBw bHkuICAqLwpjaGFyIHN0cmVycm9yKCk7CgppbnQgbWFpbigpIHsKc3RyZXJyb3IoKQo7IHJldHVy biAwOyB9CmNvbmZpZ3VyZToxMjY3OiBjaGVja2luZyBob3cgdG8gcnVuIHRoZSBDIHByZXByb2Nl c3Nvcgpjb25maWd1cmU6MTI4ODogY2MgLUUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgY29uZnRlc3Qu YyA+L2Rldi9udWxsIDI+Y29uZnRlc3Qub3V0CmNvbmZpZ3VyZToxMzU4OiBjaGVja2luZyBmb3Ig YSBCU0QgY29tcGF0aWJsZSBpbnN0YWxsCmNvbmZpZ3VyZToxNDExOiBjaGVja2luZyB3aGV0aGVy IGxuIC1zIHdvcmtzCmNvbmZpZ3VyZToxNDMyOiBjaGVja2luZyB3aGV0aGVyIGdtYWtlIHNldHMg JHtNQUtFfQpjb25maWd1cmU6MTQ2MDogY2hlY2tpbmcgd2hldGhlciBjYyBuZWVkcyAtdHJhZGl0 aW9uYWwKY29uZmlndXJlOjE0ODU6MjA6IHRlcm1pby5oOiBObyBzdWNoIGZpbGUgb3IgZGlyZWN0 b3J5CmNvbmZpZ3VyZToxNTQxOiBjaGVja2luZyBmb3IgQ3lnd2luIGVudmlyb25tZW50CmNvbmZp Z3VyZToxNTU3OiBjYyAtYyAtTyAtcGlwZSAtbWNwdT1wZW50aXVtcHJvIC1JL3Vzci9sb2NhbC9p bmNsdWRlIGNvbmZ0ZXN0LmMgMT4mNQpjb25maWd1cmU6IEluIGZ1bmN0aW9uIGBtYWluJzoKY29u ZmlndXJlOjE1NTM6IGBfX0NZR1dJTjMyX18nIHVuZGVjbGFyZWQgKGZpcnN0IHVzZSBpbiB0aGlz IGZ1bmN0aW9uKQpjb25maWd1cmU6MTU1MzogKEVhY2ggdW5kZWNsYXJlZCBpZGVudGlmaWVyIGlz IHJlcG9ydGVkIG9ubHkgb25jZQpjb25maWd1cmU6MTU1MzogZm9yIGVhY2ggZnVuY3Rpb24gaXQg YXBwZWFycyBpbi4pCmNvbmZpZ3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOgojbGluZSAxNTQ2ICJj b25maWd1cmUiCiNpbmNsdWRlICJjb25mZGVmcy5oIgoKaW50IG1haW4oKSB7CgojaWZuZGVmIF9f Q1lHV0lOX18KI2RlZmluZSBfX0NZR1dJTl9fIF9fQ1lHV0lOMzJfXwojZW5kaWYKcmV0dXJuIF9f Q1lHV0lOX187CjsgcmV0dXJuIDA7IH0KY29uZmlndXJlOjE1NzQ6IGNoZWNraW5nIGZvciBtaW5n dzMyIGVudmlyb25tZW50CmNvbmZpZ3VyZToxNTg2OiBjYyAtYyAtTyAtcGlwZSAtbWNwdT1wZW50 aXVtcHJvIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgMT4mNQpjb25maWd1cmU6IElu IGZ1bmN0aW9uIGBtYWluJzoKY29uZmlndXJlOjE1ODI6IGBfX01JTkdXMzJfXycgdW5kZWNsYXJl ZCAoZmlyc3QgdXNlIGluIHRoaXMgZnVuY3Rpb24pCmNvbmZpZ3VyZToxNTgyOiAoRWFjaCB1bmRl Y2xhcmVkIGlkZW50aWZpZXIgaXMgcmVwb3J0ZWQgb25seSBvbmNlCmNvbmZpZ3VyZToxNTgyOiBm b3IgZWFjaCBmdW5jdGlvbiBpdCBhcHBlYXJzIGluLikKY29uZmlndXJlOiBmYWlsZWQgcHJvZ3Jh bSB3YXM6CiNsaW5lIDE1NzkgImNvbmZpZ3VyZSIKI2luY2x1ZGUgImNvbmZkZWZzLmgiCgppbnQg bWFpbigpIHsKcmV0dXJuIF9fTUlOR1czMl9fOwo7IHJldHVybiAwOyB9CmNvbmZpZ3VyZToxNjQ5 OiBjaGVja2luZyBidWlsZCBzeXN0ZW0gdHlwZQpjb25maWd1cmU6MTY3ODogY2hlY2tpbmcgZm9y IGxkIHVzZWQgYnkgR0NDCmNvbmZpZ3VyZToxNzQ2OiBjaGVja2luZyBpZiB0aGUgbGlua2VyICgv dXNyL2Jpbi9sZCkgaXMgR05VIGxkCkdOVSBsZCB2ZXJzaW9uIDIuMTMuMiBbRnJlZUJTRF0gMjAw Mi0xMS0yNwpjb25maWd1cmU6MTc2MzogY2hlY2tpbmcgZm9yIC91c3IvYmluL2xkIG9wdGlvbiB0 byByZWxvYWQgb2JqZWN0IGZpbGVzCmNvbmZpZ3VyZToxNzc1OiBjaGVja2luZyBmb3IgQlNELWNv bXBhdGlibGUgbm0KY29uZmlndXJlOjE4MTM6IGNoZWNraW5nIGZvciBhIHNlZCB0aGF0IGRvZXMg bm90IHRydW5jYXRlIG91dHB1dApjb25maWd1cmU6MTg5NzogY2hlY2tpbmcgaG93IHRvIHJlY29n bmlzZSBkZXBlbmRlbnQgbGlicmFyaWVzCmNvbmZpZ3VyZToyMDgzOiBjaGVja2luZyBmb3Igb2Jq ZWN0IHN1ZmZpeApjb25maWd1cmU6MjA4OTogY2MgLWMgLU8gLXBpcGUgLW1jcHU9cGVudGl1bXBy byAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jIDE+JjUKY29uZmlndXJlOjIxMDk6IGNo ZWNraW5nIGZvciBleGVjdXRhYmxlIHN1ZmZpeApjb25maWd1cmU6MjExOTogY2MgLW8gY29uZnRl c3QgLU8gLXBpcGUgLW1jcHU9cGVudGl1bXBybyAtSS91c3IvbG9jYWwvaW5jbHVkZSAgY29uZnRl c3QuYyAtTC91c3IvbG9jYWwvbGliIC1seHBnNCAtbGludGwgLWxjX3IgMT4mNQpjb25maWd1cmU6 MjE1MDogY2hlY2tpbmcgY29tbWFuZCB0byBwYXJzZSAvdXNyL2Jpbi9ubSAtQiBvdXRwdXQKY29u ZmlndXJlOjIyMzM6IGNjIC1jIC1PIC1waXBlIC1tY3B1PXBlbnRpdW1wcm8gLUkvdXNyL2xvY2Fs L2luY2x1ZGUgY29uZnRlc3QuYyAxPiY1CmNvbmZpZ3VyZToyMjM2OiAvdXNyL2Jpbi9ubSAtQiBj b25mdGVzdC5vIHwgc2VkIC1uIC1lICdzL14uKlsgXVwoW0FCQ0RHSVNUV11bQUJDREdJU1RXXSpc KVsgXVsgXSpcKFwpXChbX0EtWmEtel1bX0EtWmEtejAtOV0qXCkkL1wxIFwyXDMgXDMvcCcgPiBj b25mdGVzdC5ubQpjb25maWd1cmU6MjI4NzogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUgLW1jcHU9 cGVudGl1bXBybyAtSS91c3IvbG9jYWwvaW5jbHVkZSAgY29uZnRlc3QuYyBjb25mdHN0bS5vIDE+ JjUKY29uZmlndXJlOjIzMzY6IGNoZWNraW5nIGZvciBkbGZjbi5oCmNvbmZpZ3VyZToyMzQ2OiBj YyAtRSAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jID4vZGV2L251bGwgMj5jb25mdGVz dC5vdXQKY29uZmlndXJlOjI1MTU6IGNoZWNraW5nIGZvciByYW5saWIKY29uZmlndXJlOjI1ODI6 IGNoZWNraW5nIGZvciBzdHJpcApjb25maWd1cmU6MjgyNTogY2hlY2tpbmcgZm9yIG9iamRpcgpj b25maWd1cmU6Mjg1MjogY2hlY2tpbmcgZm9yIGNjIG9wdGlvbiB0byBwcm9kdWNlIFBJQwpjb25m aWd1cmU6MzAwMDogY2hlY2tpbmcgaWYgY2MgUElDIGZsYWcgLWZQSUMgd29ya3MKY29uZmlndXJl OjMwMTQ6IGNjIC1jIC1PIC1waXBlIC1tY3B1PXBlbnRpdW1wcm8gLWZQSUMgLURQSUMgLUkvdXNy L2xvY2FsL2luY2x1ZGUgY29uZnRlc3QuYyAxPiY1CmNvbmZpZ3VyZTozMDY2OiBjaGVja2luZyBp ZiBjYyBzdGF0aWMgZmxhZyAtc3RhdGljIHdvcmtzCmNvbmZpZ3VyZTozMDgxOiBjYyAtbyBjb25m dGVzdCAtTyAtcGlwZSAtbWNwdT1wZW50aXVtcHJvIC1JL3Vzci9sb2NhbC9pbmNsdWRlICAtc3Rh dGljIGNvbmZ0ZXN0LmMgLUwvdXNyL2xvY2FsL2xpYiAtbHhwZzQgLWxpbnRsIC1sY19yIDE+JjUK Y29uZmlndXJlOjMxMDg6IGNoZWNraW5nIGlmIGNjIHN1cHBvcnRzIC1jIC1vIGZpbGUubwpjb25m aWd1cmU6MzEyNzogY2MgLWMgLU8gLXBpcGUgLW1jcHU9cGVudGl1bXBybyAtbyBvdXQvY29uZnRl c3QyLm8gLUkvdXNyL2xvY2FsL2luY2x1ZGUgY29uZnRlc3QuYyAxPiY1CmNvbmZpZ3VyZTozMTU2 OiBjaGVja2luZyBpZiBjYyBzdXBwb3J0cyAtYyAtbyBmaWxlLmxvCmNvbmZpZ3VyZTozMTc0OiBj YyAtYyAtTyAtcGlwZSAtbWNwdT1wZW50aXVtcHJvIC1jIC1vIGNvbmZ0ZXN0LmxvIC1JL3Vzci9s b2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgMT4mNQpjb25maWd1cmU6MzIyNDogY2hlY2tpbmcgaWYg Y2Mgc3VwcG9ydHMgLWZuby1ydHRpIC1mbm8tZXhjZXB0aW9ucwpjb25maWd1cmU6MzIzNzogY2Mg LWMgLU8gLXBpcGUgLW1jcHU9cGVudGl1bXBybyAtZm5vLXJ0dGkgLWZuby1leGNlcHRpb25zIC1j IGNvbmZ0ZXN0LmMgLUkvdXNyL2xvY2FsL2luY2x1ZGUgY29uZnRlc3QuYyAxPiY1CmNvbmZpZ3Vy ZTozMjY0OiBjaGVja2luZyB3aGV0aGVyIHRoZSBsaW5rZXIgKC91c3IvYmluL2xkKSBzdXBwb3J0 cyBzaGFyZWQgbGlicmFyaWVzCmNvbmZpZ3VyZTozOTYzOiBjaGVja2luZyBob3cgdG8gaGFyZGNv ZGUgbGlicmFyeSBwYXRocyBpbnRvIHByb2dyYW1zCmNvbmZpZ3VyZTozOTkxOiBjaGVja2luZyB3 aGV0aGVyIHN0cmlwcGluZyBsaWJyYXJpZXMgaXMgcG9zc2libGUKY29uZmlndXJlOjQwMDU6IGNo ZWNraW5nIGR5bmFtaWMgbGlua2VyIGNoYXJhY3RlcmlzdGljcwpjb25maWd1cmU6NDQyOTogY2hl Y2tpbmcgaWYgbGlidG9vbCBzdXBwb3J0cyBzaGFyZWQgbGlicmFyaWVzCmNvbmZpZ3VyZTo0NDMz OiBjaGVja2luZyB3aGV0aGVyIHRvIGJ1aWxkIHNoYXJlZCBsaWJyYXJpZXMKY29uZmlndXJlOjQ0 NTY6IGNoZWNraW5nIHdoZXRoZXIgdG8gYnVpbGQgc3RhdGljIGxpYnJhcmllcwpjb25maWd1cmU6 NDk5MjogY2hlY2tpbmcgd2hldGhlciAtbGMgc2hvdWxkIGJlIGV4cGxpY2l0bHkgbGlua2VkIGlu CmNvbmZpZ3VyZTo0OTk5OiBjYyAtYyAtTyAtcGlwZSAtbWNwdT1wZW50aXVtcHJvIC1JL3Vzci9s b2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgMT4mNQpjb25maWd1cmU6NTAxMjogY2MgLXNoYXJlZCBj b25mdGVzdC5vICAtdiAtV2wsLXNvbmFtZSAtV2wsY29uZnRlc3QgLW8gY29uZnRlc3QgMj4mMSB8 IGdyZXAgIC1sYyAgPi9kZXYvbnVsbCAyPiYxCmNvbmZpZ3VyZTo1NjAyOiBjaGVja2luZyBmb3Ig Z2V0aG9zdGVudApjb25maWd1cmU6NTYzMDogY2MgLW8gY29uZnRlc3QgLU8gLXBpcGUgLW1jcHU9 cGVudGl1bXBybyAtSS91c3IvbG9jYWwvaW5jbHVkZSAgY29uZnRlc3QuYyAtTC91c3IvbG9jYWwv bGliIC1seHBnNCAtbGludGwgLWxjX3IgMT4mNQpjb25maWd1cmU6NTY5NzogY2hlY2tpbmcgZm9y IHNldHNvY2tvcHQKY29uZmlndXJlOjU3MjU6IGNjIC1vIGNvbmZ0ZXN0IC1PIC1waXBlIC1tY3B1 PXBlbnRpdW1wcm8gLUkvdXNyL2xvY2FsL2luY2x1ZGUgIGNvbmZ0ZXN0LmMgLUwvdXNyL2xvY2Fs L2xpYiAtbHhwZzQgLWxpbnRsIC1sY19yIDE+JjUKY29uZmlndXJlOjU3OTI6IGNoZWNraW5nIGZv ciBkbG9wZW4KY29uZmlndXJlOjU4MjA6IGNjIC1vIGNvbmZ0ZXN0IC1PIC1waXBlIC1tY3B1PXBl bnRpdW1wcm8gLUkvdXNyL2xvY2FsL2luY2x1ZGUgIGNvbmZ0ZXN0LmMgLUwvdXNyL2xvY2FsL2xp YiAtbHhwZzQgLWxpbnRsIC1sY19yIDE+JjUKY29uZmlndXJlOjU4OTI6IGNoZWNraW5nIGZvciBk aXJlbnQuaCB0aGF0IGRlZmluZXMgRElSCmNvbmZpZ3VyZTo1OTA1OiBjYyAtYyAtTyAtcGlwZSAt bWNwdT1wZW50aXVtcHJvIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgMT4mNQpjb25m aWd1cmU6NTkzMDogY2hlY2tpbmcgZm9yIG9wZW5kaXIgaW4gLWxkaXIKY29uZmlndXJlOjU5NDk6 IGNjIC1vIGNvbmZ0ZXN0IC1PIC1waXBlIC1tY3B1PXBlbnRpdW1wcm8gLUkvdXNyL2xvY2FsL2lu Y2x1ZGUgIGNvbmZ0ZXN0LmMgLWxkaXIgIC1ML3Vzci9sb2NhbC9saWIgLWx4cGc0IC1saW50bCAt bGNfciAxPiY1Ci91c3IvYmluL2xkOiBjYW5ub3QgZmluZCAtbGRpcgpjb25maWd1cmU6IGZhaWxl ZCBwcm9ncmFtIHdhczoKI2xpbmUgNTkzOCAiY29uZmlndXJlIgojaW5jbHVkZSAiY29uZmRlZnMu aCIKLyogT3ZlcnJpZGUgYW55IGdjYzIgaW50ZXJuYWwgcHJvdG90eXBlIHRvIGF2b2lkIGFuIGVy cm9yLiAgKi8KLyogV2UgdXNlIGNoYXIgYmVjYXVzZSBpbnQgbWlnaHQgbWF0Y2ggdGhlIHJldHVy biB0eXBlIG9mIGEgZ2NjMgogICAgYnVpbHRpbiBhbmQgdGhlbiBpdHMgYXJndW1lbnQgcHJvdG90 eXBlIHdvdWxkIHN0aWxsIGFwcGx5LiAgKi8KY2hhciBvcGVuZGlyKCk7CgppbnQgbWFpbigpIHsK b3BlbmRpcigpCjsgcmV0dXJuIDA7IH0KY29uZmlndXJlOjYwMTM6IGNoZWNraW5nIGZvciBBTlNJ IEMgaGVhZGVyIGZpbGVzCmNvbmZpZ3VyZTo2MDI2OiBjYyAtRSAtSS91c3IvbG9jYWwvaW5jbHVk ZSBjb25mdGVzdC5jID4vZGV2L251bGwgMj5jb25mdGVzdC5vdXQKY29uZmlndXJlOjYwOTM6IGNj IC1vIGNvbmZ0ZXN0IC1PIC1waXBlIC1tY3B1PXBlbnRpdW1wcm8gLUkvdXNyL2xvY2FsL2luY2x1 ZGUgIGNvbmZ0ZXN0LmMgLUwvdXNyL2xvY2FsL2xpYiAtbHhwZzQgLWxpbnRsIC1sY19yIDE+JjUK Y29uZmlndXJlOjYxMTc6IGNoZWNraW5nIGZvciBzeXMvd2FpdC5oIHRoYXQgaXMgUE9TSVguMSBj b21wYXRpYmxlCmNvbmZpZ3VyZTo2MTM4OiBjYyAtYyAtTyAtcGlwZSAtbWNwdT1wZW50aXVtcHJv IC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgMT4mNQpjb25maWd1cmU6NjE1OTogY2hl Y2tpbmcgd2hldGhlciB0aW1lLmggYW5kIHN5cy90aW1lLmggbWF5IGJvdGggYmUgaW5jbHVkZWQK Y29uZmlndXJlOjYxNzM6IGNjIC1jIC1PIC1waXBlIC1tY3B1PXBlbnRpdW1wcm8gLUkvdXNyL2xv Y2FsL2luY2x1ZGUgY29uZnRlc3QuYyAxPiY1CmNvbmZpZ3VyZTo2MTk3OiBjaGVja2luZyBmb3Ig ZmNudGwuaApjb25maWd1cmU6NjIwNzogY2MgLUUgLUkvdXNyL2xvY2FsL2luY2x1ZGUgY29uZnRl c3QuYyA+L2Rldi9udWxsIDI+Y29uZnRlc3Qub3V0CmNvbmZpZ3VyZTo2MTk3OiBjaGVja2luZyBm b3Igc3lzL2lvY3RsLmgKY29uZmlndXJlOjYyMDc6IGNjIC1FIC1JL3Vzci9sb2NhbC9pbmNsdWRl IGNvbmZ0ZXN0LmMgPi9kZXYvbnVsbCAyPmNvbmZ0ZXN0Lm91dApjb25maWd1cmU6NjE5NzogY2hl Y2tpbmcgZm9yIHN5cy90aW1lLmgKY29uZmlndXJlOjYyMDc6IGNjIC1FIC1JL3Vzci9sb2NhbC9p bmNsdWRlIGNvbmZ0ZXN0LmMgPi9kZXYvbnVsbCAyPmNvbmZ0ZXN0Lm91dApjb25maWd1cmU6NjE5 NzogY2hlY2tpbmcgZm9yIHN5cy91dHNuYW1lLmgKY29uZmlndXJlOjYyMDc6IGNjIC1FIC1JL3Vz ci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgPi9kZXYvbnVsbCAyPmNvbmZ0ZXN0Lm91dApjb25m aWd1cmU6NjE5NzogY2hlY2tpbmcgZm9yIHVuaXN0ZC5oCmNvbmZpZ3VyZTo2MjA3OiBjYyAtRSAt SS91c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVzdC5jID4vZGV2L251bGwgMj5jb25mdGVzdC5vdXQK Y29uZmlndXJlOjYxOTc6IGNoZWNraW5nIGZvciBzaWdpbmZvLmgKY29uZmlndXJlOjYyMDc6IGNj IC1FIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgPi9kZXYvbnVsbCAyPmNvbmZ0ZXN0 Lm91dApjb25maWd1cmU6NjIwMzoyMTogc2lnaW5mby5oOiBObyBzdWNoIGZpbGUgb3IgZGlyZWN0 b3J5CmNvbmZpZ3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOgojbGluZSA2MjAyICJjb25maWd1cmUi CiNpbmNsdWRlICJjb25mZGVmcy5oIgojaW5jbHVkZSA8c2lnaW5mby5oPgpjb25maWd1cmU6NjE5 NzogY2hlY2tpbmcgZm9yIG1lbW9yeS5oCmNvbmZpZ3VyZTo2MjA3OiBjYyAtRSAtSS91c3IvbG9j YWwvaW5jbHVkZSBjb25mdGVzdC5jID4vZGV2L251bGwgMj5jb25mdGVzdC5vdXQKY29uZmlndXJl OjYxOTc6IGNoZWNraW5nIGZvciBzdHJvcHRzLmgKY29uZmlndXJlOjYyMDc6IGNjIC1FIC1JL3Vz ci9sb2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgPi9kZXYvbnVsbCAyPmNvbmZ0ZXN0Lm91dApjb25m aWd1cmU6NjIwMzoyMTogc3Ryb3B0cy5oOiBObyBzdWNoIGZpbGUgb3IgZGlyZWN0b3J5CmNvbmZp Z3VyZTogZmFpbGVkIHByb2dyYW0gd2FzOgojbGluZSA2MjAyICJjb25maWd1cmUiCiNpbmNsdWRl ICJjb25mZGVmcy5oIgojaW5jbHVkZSA8c3Ryb3B0cy5oPgpjb25maWd1cmU6NjE5NzogY2hlY2tp bmcgZm9yIHRlcm1pb3MuaApjb25maWd1cmU6NjIwNzogY2MgLUUgLUkvdXNyL2xvY2FsL2luY2x1 ZGUgY29uZnRlc3QuYyA+L2Rldi9udWxsIDI+Y29uZnRlc3Qub3V0CmNvbmZpZ3VyZTo2MTk3OiBj aGVja2luZyBmb3Igc3RyaW5nLmgKY29uZmlndXJlOjYyMDc6IGNjIC1FIC1JL3Vzci9sb2NhbC9p bmNsdWRlIGNvbmZ0ZXN0LmMgPi9kZXYvbnVsbCAyPmNvbmZ0ZXN0Lm91dApjb25maWd1cmU6NjE5 NzogY2hlY2tpbmcgZm9yIGxpbWl0cy5oCmNvbmZpZ3VyZTo2MjA3OiBjYyAtRSAtSS91c3IvbG9j YWwvaW5jbHVkZSBjb25mdGVzdC5jID4vZGV2L251bGwgMj5jb25mdGVzdC5vdXQKY29uZmlndXJl OjYxOTc6IGNoZWNraW5nIGZvciBhcmd6LmgKY29uZmlndXJlOjYyMDc6IGNjIC1FIC1JL3Vzci9s b2NhbC9pbmNsdWRlIGNvbmZ0ZXN0LmMgPi9kZXYvbnVsbCAyPmNvbmZ0ZXN0Lm91dApjb25maWd1 cmU6NjIwMzoxODogYXJnei5oOiBObyBzdWNoIGZpbGUgb3IgZGlyZWN0b3J5CmNvbmZpZ3VyZTog ZmFpbGVkIHByb2dyYW0gd2FzOgojbGluZSA2MjAyICJjb25maWd1cmUiCiNpbmNsdWRlICJjb25m ZGVmcy5oIgojaW5jbHVkZSA8YXJnei5oPgpjb25maWd1cmU6NjE5NzogY2hlY2tpbmcgZm9yIGxv Y2FsZS5oCmNvbmZpZ3VyZTo2MjA3OiBjYyAtRSAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25mdGVz dC5jID4vZGV2L251bGwgMj5jb25mdGVzdC5vdXQKY29uZmlndXJlOjYxOTc6IGNoZWNraW5nIGZv ciBubF90eXBlcy5oCmNvbmZpZ3VyZTo2MjA3OiBjYyAtRSAtSS91c3IvbG9jYWwvaW5jbHVkZSBj b25mdGVzdC5jID4vZGV2L251bGwgMj5jb25mdGVzdC5vdXQKY29uZmlndXJlOjYxOTc6IGNoZWNr aW5nIGZvciBtYWxsb2MuaApjb25maWd1cmU6NjIwNzogY2MgLUUgLUkvdXNyL2xvY2FsL2luY2x1 ZGUgY29uZnRlc3QuYyA+L2Rldi9udWxsIDI+Y29uZnRlc3Qub3V0CkluIGZpbGUgaW5jbHVkZWQg ZnJvbSBjb25maWd1cmU6NjIwMzoKL3Vzci9pbmNsdWRlL21hbGxvYy5oOjM6MjogI2Vycm9yICI8 bWFsbG9jLmg+IGhhcyBiZWVuIHJlcGxhY2VkIGJ5IDxzdGRsaWIuaD4iCmNvbmZpZ3VyZTogZmFp bGVkIHByb2dyYW0gd2FzOgojbGluZSA2MjAyICJjb25maWd1cmUiCiNpbmNsdWRlICJjb25mZGVm cy5oIgojaW5jbHVkZSA8bWFsbG9jLmg+CmNvbmZpZ3VyZTo2MTk3OiBjaGVja2luZyBmb3Igc3lz L3BhcmFtLmgKY29uZmlndXJlOjYyMDc6IGNjIC1FIC1JL3Vzci9sb2NhbC9pbmNsdWRlIGNvbmZ0 ZXN0LmMgPi9kZXYvbnVsbCAyPmNvbmZ0ZXN0Lm91dApjb25maWd1cmU6NjI2MjogY2hlY2tpbmcg Zm9yIGdtcC5oCmNvbmZpZ3VyZTo2MjcyOiBjYyAtRSAtSS91c3IvbG9jYWwvaW5jbHVkZSBjb25m dGVzdC5jID4vZGV2L251bGwgMj5jb25mdGVzdC5vdXQKY29uZmlndXJlOjYyNjg6MTc6IGdtcC5o OiBObyBzdWNoIGZpbGUgb3IgZGlyZWN0b3J5CmNvbmZpZ3VyZTogZmFpbGVkIHByb2dyYW0gd2Fz OgojbGluZSA2MjY3ICJjb25maWd1cmUiCiNpbmNsdWRlICJjb25mZGVmcy5oIgojaW5jbHVkZSA8 Z21wLmg+Cg== --========GMXBoundary139011055315570 Content-Type: text/plain; name="pkg.txt" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="pkg.txt" QWJpV29yZDItZ25vbWUtMS45LjEKSGVybWVzLTEuMy4yXzEKSW1hZ2VNYWdpY2stNS41LjYKTWVz YS0zLjQuMl8yCk9SQml0LTAuNS4xNwpPUkJpdDItMi42LjIKWEZyZWU4Ni1Gb250U2VydmVyLTQu My4wXzEKWEZyZWU4Ni1OZXN0U2VydmVyLTQuMy4wXzEKWEZyZWU4Ni1QcmludFNlcnZlci00LjMu MApYRnJlZTg2LVNlcnZlci00LjMuMF84ClhGcmVlODYtVmlydHVhbEZyYW1lYnVmZmVyU2VydmVy LTQuMy4wXzEKWEZyZWU4Ni1jbGllbnRzLTQuMy4wXzIKWEZyZWU4Ni1kb2N1bWVudHMtNC4zLjAK WEZyZWU4Ni1mb250MTAwZHBpLTQuMy4wClhGcmVlODYtZm9udDc1ZHBpLTQuMy4wClhGcmVlODYt Zm9udEN5cmlsbGljLTQuMy4wClhGcmVlODYtZm9udERlZmF1bHRCaXRtYXBzLTQuMy4wClhGcmVl ODYtZm9udEVuY29kaW5ncy00LjMuMApYRnJlZTg2LWZvbnRTY2FsYWJsZS00LjMuMApYRnJlZTg2 LWxpYnJhcmllcy00LjMuMF81ClhGcmVlODYtbWFudWFscy00LjMuMApYZnQtMi4xLjIKYWFsaWIt MS40LnI1XzEKYWNtZS0yLjAuNAphc3BlbGwtMC41MC4zXzEKYXQtc3BpLTEuMS44CmF0ay0xLjIu NAphdXRvY29uZjIxMy0yLjEzLjAwMDIyN181CmF1dG9tYWtlLTEuNSwxCmF1dG9tYWtlMTQtMS40 LjVfOQphdXRvdHJhY2UtMC4zMS4xCmJhbHNhMi0yLjAuMTFfMQpiYXNoLTIuMDViLjAwNwpiaXNv bi0xLjc1CmJpdHN0cmVhbS12ZXJhLTEuMTAKYm9ub2JvLWFjdGl2YXRpb24tMi4yLjIsMQpidWdi dWRkeTItMi4yLjEwNApjYWJleHRyYWN0LTAuNgpjZHJ0b29scy0yLjBfMQpjc2NvcGUtMTUuNApj dXBzLWJhc2UtMS4xLjE4LjBfNQpjdXBzLXBzdG9yYXN0ZXItNy4wNS42CmN2c3VwLTE2LjFoCmRi My0zLjMuMTEsMQpkamJmZnQtMC43Ngpkb2Nib29rLXNrLTQuMS4yCmRvY2Jvb2steG1sLTQuMgpk b2Nib29rLXhzbC0xLjYxLjIKZWVsMi0yLjIuNAplb2cyLTIuMi4xCmVzb3VuZC0wLjIuMjkKZXhw YXQtMS45NS42XzEKZmFtLTIuNi45XzIKZmlsZXJvbGxlci0yLjIuNCwxCmZvbnRjb25maWctMi4y LjAKZm9udGlsdXMtMC40CmZyZWV0eXBlLTEuMy4xXzIKZnJlZXR5cGUyLTIuMS40XzEKZnJpYmlk aS0wLjEwLjRfMQpmcm9udGxpbmUtMC41LjQKZ2FpbC0xLjIuMgpnYWltLTAuNjQKZ2FsMi0xLjk5 LjYKZ2NhbGN0b29sLTQuMi44NgpnY29uZi1lZGl0b3ItMC40LjAsMQpnY29uZjItMi4yLjEKZ2Ri bS0xLjguMwpnZG0yLTIuNC4xLjRfMQpnZWRpdDItMi4yLjEKZ2V0dGV4dC0wLjExLjVfMQpnZ3Yy LTIuMC4xCmdoZXgyLTIuMi4xCmdob3N0c2NyaXB0LWdudS03LjA3CmdpbXAtMS4zLjE0XzEsMQpn aW1wLXByaW50LTQuMi41CmdsYWRlMi0yLjAuMApnbGUtMy4wLjMKZ2xpYi0xLjIuMTBfOQpnbGli LTIuMi4xXzEKZ21ha2UtMy44MApnbmV0LTEuMS44Cmdub21lLWljb24tdGhlbWUtMS4wLjQKZ25v bWUtcGtndmlldy0xLjAuMApnbm9tZS10aGVtZXMtMi4yLjIKZ25vbWUyLTIuMi4xXzEKZ25vbWVh cHBsZXRzMi0yLjIuMgpnbm9tZWF1ZGlvLTEuNC4wCmdub21lY29udHJvbGNlbnRlcjItMi4yLjIK Z25vbWVkZXNrdG9wLTIuMi4yCmdub21lZ2FtZXMyLTIuMi4xXzIKZ25vbWVoaWVyLTEuMF84Cmdu b21laWN1Mi0wLjk5Cmdub21lbGlicy0xLjQuMl8xCmdub21lbWVkaWEyLTIuMi4xLjFfMQpnbm9t ZW1lZXRpbmctMC45Ni4xCmdub21lbWltZWRhdGEtMi4yLjEKZ25vbWVwYW5lbC0yLjIuMgpnbm9t ZXNlc3Npb24tMi4yLjIKZ25vbWVzeXN0ZW1tb25pdG9yLTIuMC41Cmdub21ldGVybWluYWwtMi4y LjIKZ25vbWV1c2VyZG9jczItMi4wLjZfMQpnbm9tZXV0aWxzMi0yLjIuMywxCmdub21ldmZzMi0y LjIuNQpnbnVscy00LjBfMQpnbnVtZXJpYzItMS4xLjE3XzEKZ251cGctMS4yLjJfMQpnb2IyLTIu MC42CmdwZ21lLTAuMy4xNV8xCmdzdHJlYW1lci0wLjYuMQpnc3RyZWFtZXItcGx1Z2lucy0wLjYu MV8xCmd0ZXRyaW5ldC0wLjcuMQpndGh1bWIyLTIuMS4wXzEKZ3RrLTEuMi4xMF85Cmd0ay0yLjIu MV8xCmd0ay1lbmdpbmVzMi0yLjIuMApndGstdGhpbmljZS1lbmdpbmUtMi4wLjIKZ3Rrc3BlbGwy LTIuMC40Cmd1aWxlLTEuNi40XzEKaGRmLTQuMXI1CmltYWtlLTQuMy4wCmltbGliLTEuOS4xNF8x CmludGx0b29sLTAuMjYKaXNwZWxsLTMuMi4wNl8zCmphc3Blci0xLjcwMC4yCmpiaWdraXQtMS40 CmpwZWctNmJfMQpsYW1lLTMuOTMuMQpsY21zLTEuMDksMQpsaGEtMS4xNGlfMQpsaWJJREwtMC44 LjIKbGliYTUyLTAuNy40CmxpYmFvLWVzb3VuZC0wLjguM18xCmxpYmFydF9sZ3BsMi0yLjMuMTIK bGliYXVkaW9maWxlLTAuMi4zCmxpYmJvbm9iby0yLjIuMgpsaWJib25vYm91aS0yLjIuMgpsaWJk dmRjc3MtMS4yLjUKbGliZHZkcmVhZC0wLjkuNApsaWJlc210cC0xLjBfMSwxCmxpYmZweC0xLjIu MC44CmxpYmdhaWwtZ25vbWUtMS4wLjJfMQpsaWJnZGEyLTAuMTIuMApsaWJnbGFkZTItMi4wLjFf MQpsaWJnbm9tZS0yLjIuMQpsaWJnbm9tZWNhbnZhcy0yLjIuMQpsaWJnbm9tZWRiLTAuMTIuMAps aWJnbm9tZXByaW50LTIuMi4xLjIKbGliZ25vbWVwcmludHVpLTIuMi4xLjIKbGliZ25vbWV1aS0y LjIuMV8xCmxpYmdudWdldG9wdC0xLjIKbGliZ3NmLTEuOC4xCmxpYmd0a2h0bWwtMi4yLjRfMQps aWJndG9wMi0yLjAuMgpsaWJpY29udi0xLjhfMgpsaWJpanMtMC4zNApsaWJtaWttb2QtMy4xLjEw CmxpYm1uZy0xLjAuNQpsaWJtcGVnMi0wLjMuMV8xCmxpYm9nZy0xLjBfMSwzCmxpYnJzdmcyLTIu Mi41XzEKbGlidG9vbC0xLjMuNF80CmxpYnVuZ2lmLTQuMS4wYjEKbGlidm9yYmlzLTEuMF8xLDMK bGlid21mLTAuMi44CmxpYnduY2stMi4yLjIKbGlieGluZS0xLjAuYjExCmxpYnhtbC0xLjguMTdf MQpsaWJ4bWwyLTIuNS43XzEKbGlieHNsdC0xLjAuMzAKbGlienZ0LTIuMC4xXzYKbGluYy0xLjAu MgpsaW5rcy0wLjk4LDEKbGludXhfYmFzZS03LjFfNQpsem8tMS4wOF8xCmx6b3AtMS4wMQptNC0x LjRfMQptYWQtZXNvdW5kLTAuMTQuMmJfMgptZXJnZWFudC0wLjEyLjAKbWV0YWNpdHktMi40LjU1 XzEKbWV0YWNpdHktc2V0dXAtMC43LjFfMgptaW5nLTAuMmFfMQpta2NhdGFsb2ctMS4xCm1wZzEy My0wLjU5cl85Cm5hc20tMC45OC4zNSwxCm5hdXRpbHVzLW1lZGlhLTAuMi4xCm5hdXRpbHVzMi0y LjIuNApudmlkaWEtZHJpdmVyLTEuMC4zMjAzXzEKb3Blbi1tb3RpZi0yLjIuMl8xCm9wZW5sZGFw MjAtMi4wLjI1XzQKb3BlcmEtNi4xMi4yMDAzMDMwNQpwYW4yLTAuMTQuMApwYW5nby0xLjIuMl8x CnBjcmUtMy45CnBlcmwtNS42LjFfMTMKcGtnY29uZmlnLTAuMTUuMApwa2dkYi5kYgpwbG90dXRp bHMtMi40LjEKcG5nLTEuMi41XzIKcG9wdC0xLjYuNApwb3J0dXBncmFkZS0yMDAzMDQyNwpwc3Rv ZWRpdC0zLjMzCnB0aC0yLjAuMApweTIyLWV4cGF0LTIuMi4zXzIKcHl0aG9uLTIuMi4zCnJwbS0z LjAuNl82CnJ1YnktMS42LjguMjAwMy4wNC4xOQpydWJ5LWJkYjEtMC4xLjkKcnVieS1zaGltLXJ1 YnkxOC0xLjguMC5wMi4yMDAzLjA0LjE5CnNhbWJhLTIuMi44YQpzY3JvbGxrZWVwZXItMC4zLjEy XzEsMQpzZGwtMS4yLjVfMQpzZG9jYm9vay14bWwtNC4xLjIuNQpzZWFob3JzZS0wLjcuMwpzb2Rp cG9kaS0wLjMxCnNveC0xMi4xNy4zXzEKc3RhcnR1cC1ub3RpZmljYXRpb24tMC41XzEKc3ZnYWxp Yi0xLjQuMl8xCnRjbC04LjMuNV8yCnRpZmYtMy41LjcKdG90ZW0tMC45OS4wXzEKdHRta2ZkaXIt MC4wXzEKdW56aXAtNS41MAp1cndmb250cy10dGYtMS4wLjdiMTgKdmltLTYuMi4xNAp2dGUtMC4x MC4yOAp3ZWJmb250cy0wLjIxXzEKd3JhcHBlci0xLjBfMwp4Y2hhdDItMi4wLjIKeG1tcy0xLjIu N18zCnhzY3JlZW5zYXZlci1nbm9tZS00LjEwCnllbHAtMi4yLjEK --========GMXBoundary139011055315570-- From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 01:49:34 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67C2837B405 for ; Wed, 11 Jun 2003 01:49:34 -0700 (PDT) Received: from mailgw.servicefactory.se (mailgw.servicefactory.se [192.71.33.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C20843F75 for ; Wed, 11 Jun 2003 01:49:32 -0700 (PDT) (envelope-from jonas@bulow.mine.nu) Received: from ark.servicefactory.se (ark.servicefactory.se [192.71.33.5]) h5B8nUV14626 for ; Wed, 11 Jun 2003 10:49:30 +0200 (CEST) Received: from bulow.mine.nu (ark.servicefactory.se [192.71.33.5]) by ark.servicefactory.se (8.11.6p2/8.11.6) with ESMTP id h5B8nUl06811 for ; Wed, 11 Jun 2003 10:49:30 +0200 (CEST) Message-ID: <3EE6ED18.8070201@bulow.mine.nu> Date: Wed, 11 Jun 2003 10:49:28 +0200 From: Jonas Bulow Organization: Service Factory User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3.1) Gecko/20030509 X-Accept-Language: en-us, en, sv MIME-Version: 1.0 To: freebsd-gnome@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: portupgrade -r pkgconfig fails on nautilus X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 08:49:34 -0000 Hi, I'm using marcusmerge to upgrade gnome. eel2-2.3.3 is installed but I can't find eel-password-dialog.h under /usr/X11R6. What is missing here? /jonas nautilus-authn-manager.c:40: eel/eel-password-dialog.h: No such file or directory nautilus-authn-manager.c:52: syntax error before `*' nautilus-authn-manager.c: In function `construct_password_dialog': nautilus-authn-manager.c:56: `EelPasswordDialog' undeclared (first use in this function) nautilus-authn-manager.c:56: (Each undeclared identifier is reported only once nautilus-authn-manager.c:56: for each function it appears in.) nautilus-authn-manager.c:56: `dialog' undeclared (first use in this function) nautilus-authn-manager.c: In function `present_authentication_dialog_blocking': nautilus-authn-manager.c:84: `EelPasswordDialog' undeclared (first use in this function) nautilus-authn-manager.c:84: `dialog' undeclared (first use in this function) nautilus-authn-manager.c:85: syntax error before `dialog_result' nautilus-authn-manager.c:89: `dialog_result' undeclared (first use in this function) nautilus-authn-manager.c:92: warning: assignment makes pointer from integer without a cast nautilus-authn-manager.c:93: warning: assignment makes pointer from integer without a cast nautilus-authn-manager.c: In function `authentication_dialog_button_clicked': nautilus-authn-manager.c:129: warning: assignment makes pointer from integer without a cast nautilus-authn-manager.c:131: warning: assignment makes pointer from integer without a cast nautilus-authn-manager.c: In function `present_authentication_dialog_nonblocking': nautilus-authn-manager.c:158: `EelPasswordDialog' undeclared (first use in this function) nautilus-authn-manager.c:158: `dialog' undeclared (first use in this function) gmake[2]: *** [nautilus-authn-manager.lo] Error 1 gmake[2]: Leaving directory `/usr/ports/x11-fm/nautilus2/work/nautilus-2.3.2/libnautilus-private' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/x11-fm/nautilus2/work/nautilus-2.3.2' gmake: *** [all-recursive-am] Error 2 *** Error code 2 From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 05:31:05 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A38D137B401 for ; Wed, 11 Jun 2003 05:31:05 -0700 (PDT) Received: from sisko.webonaut.com (sisko.webonaut.com [212.41.243.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD52043FAF for ; Wed, 11 Jun 2003 05:31:04 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from [127.0.0.1] (localhost.webonaut.com [127.0.0.1]) by sisko.webonaut.com (Postfix) with ESMTP id C777228434; Wed, 11 Jun 2003 14:31:01 +0200 (CEST) From: Franz Klammer To: Jonas Bulow In-Reply-To: <3EE6ED18.8070201@bulow.mine.nu> References: <3EE6ED18.8070201@bulow.mine.nu> Content-Type: text/plain Message-Id: <1055334660.815.6.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 11 Jun 2003 14:31:01 +0200 Content-Transfer-Encoding: 7bit cc: freebsd-gnome@freebsd.org Subject: Re: portupgrade -r pkgconfig fails on nautilus X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 12:31:05 -0000 nautilus-2.3.2 cannot be build with eel2-2.3.3. you can either do a "portupgrade -r pkgconfig -x nautilus2\*" or checkout a older version of the marcuscom-cvs and downgrade eel2 or wait a short time because there are some more other ports updates outstanding. franz. Am Mi, 2003-06-11 um 10.49 schrieb Jonas Bulow: > Hi, > > I'm using marcusmerge to upgrade gnome. > > eel2-2.3.3 is installed but I can't find eel-password-dialog.h under > /usr/X11R6. > > What is missing here? > > /jonas > > > nautilus-authn-manager.c:40: eel/eel-password-dialog.h: No such file or > directory > nautilus-authn-manager.c:52: syntax error before `*' > nautilus-authn-manager.c: In function `construct_password_dialog': > nautilus-authn-manager.c:56: `EelPasswordDialog' undeclared (first use > in this function) > nautilus-authn-manager.c:56: (Each undeclared identifier is reported > only once > nautilus-authn-manager.c:56: for each function it appears in.) > nautilus-authn-manager.c:56: `dialog' undeclared (first use in this > function) > nautilus-authn-manager.c: In function > `present_authentication_dialog_blocking': > nautilus-authn-manager.c:84: `EelPasswordDialog' undeclared (first use > in this function) > nautilus-authn-manager.c:84: `dialog' undeclared (first use in this > function) > nautilus-authn-manager.c:85: syntax error before `dialog_result' > nautilus-authn-manager.c:89: `dialog_result' undeclared (first use in > this function) > nautilus-authn-manager.c:92: warning: assignment makes pointer from > integer without a cast > nautilus-authn-manager.c:93: warning: assignment makes pointer from > integer without a cast > nautilus-authn-manager.c: In function > `authentication_dialog_button_clicked': > nautilus-authn-manager.c:129: warning: assignment makes pointer from > integer without a cast > nautilus-authn-manager.c:131: warning: assignment makes pointer from > integer without a cast > nautilus-authn-manager.c: In function > `present_authentication_dialog_nonblocking': > nautilus-authn-manager.c:158: `EelPasswordDialog' undeclared (first use > in this function) > nautilus-authn-manager.c:158: `dialog' undeclared (first use in this > function) > gmake[2]: *** [nautilus-authn-manager.lo] Error 1 > gmake[2]: Leaving directory > `/usr/ports/x11-fm/nautilus2/work/nautilus-2.3.2/libnautilus-private' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory > `/usr/ports/x11-fm/nautilus2/work/nautilus-2.3.2' > gmake: *** [all-recursive-am] Error 2 > *** Error code 2 > > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 07:30:40 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 153D337B401 for ; Wed, 11 Jun 2003 07:30:40 -0700 (PDT) Received: from alef.poprostu.pl (alef.poprostu.pl [195.116.86.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9717F43FA3 for ; Wed, 11 Jun 2003 07:30:36 -0700 (PDT) (envelope-from piero@poprostu.pl) Received: from beth.poprostu.pl (beth.poprostu.pl [213.25.228.183]) by alef.poprostu.pl (8.12.6/8.12.6) with SMTP id h5BEwIak099970 for ; Wed, 11 Jun 2003 16:58:19 +0200 (CEST) (envelope-from piero@poprostu.pl) Date: Wed, 11 Jun 2003 16:25:28 +0200 From: Piero To: freebsd-gnome@freebsd.org Message-Id: <20030611162528.273ea7cf.piero@poprostu.pl> Organization: Poprostu X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: no calendar view in new evo X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 14:30:40 -0000 Hi, After portupgrading Evo to 1.4. I cannot get in it to the calendar view. Todo list shows up instead. I noticed also some problems with local chars in fonts of the left modules switching panel. Screenshot: http://beth.poprostu.pl/~smyru/screens/no-cal-in-evo.png BTW: After the upgrade with the recently commits and uninstalling the old obsolete Gnome stuff (unneeded by the new Evo) I am noticing a huge increase in the speed and responsiveness. Congratulations for your job and thanks a lot. --- Piero piero@poprostu.pl From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 07:45:25 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3628A37B401 for ; Wed, 11 Jun 2003 07:45:25 -0700 (PDT) Received: from sisko.webonaut.com (sisko.webonaut.com [212.41.243.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F02743F3F for ; Wed, 11 Jun 2003 07:45:24 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from [127.0.0.1] (localhost.webonaut.com [127.0.0.1]) by sisko.webonaut.com (Postfix) with ESMTP id 33BFD28434; Wed, 11 Jun 2003 16:45:23 +0200 (CEST) From: Franz Klammer To: Piero In-Reply-To: <20030611162528.273ea7cf.piero@poprostu.pl> References: <20030611162528.273ea7cf.piero@poprostu.pl> Content-Type: text/plain Message-Id: <1055342722.71167.8.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 11 Jun 2003 14:45:22 +0000 Content-Transfer-Encoding: 7bit cc: freebsd-gnome@freebsd.org Subject: Re: no calendar view in new evo X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 14:45:25 -0000 i thought also long time that the calendar is disappeared but then i've seen that the day/week-view is still resized to a a small (0 pixel) view on the left side also the same with the calendar over the todo list. franz. Am Mi, 2003-06-11 um 14.25 schrieb Piero: > Hi, > > After portupgrading Evo to 1.4. I cannot get in it to the calendar view. > Todo list shows up instead. I noticed also some problems with local > chars in fonts of the left modules switching panel. Screenshot: > http://beth.poprostu.pl/~smyru/screens/no-cal-in-evo.png > > BTW: After the upgrade with the recently commits and uninstalling the > old obsolete Gnome stuff (unneeded by the new Evo) I am noticing a huge > increase in the speed and responsiveness. Congratulations for your job > and thanks a lot. > > --- > Piero > piero@poprostu.pl > > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 07:48:35 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F24937B401 for ; Wed, 11 Jun 2003 07:48:35 -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 1853343FAF for ; Wed, 11 Jun 2003 07:48:34 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5BEjmUD000460; Wed, 11 Jun 2003 10:45:51 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5BEisV8084178; Wed, 11 Jun 2003 10:44:54 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Piero In-Reply-To: <20030611162528.273ea7cf.piero@poprostu.pl> References: <20030611162528.273ea7cf.piero@poprostu.pl> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Qbey9yJOQr3NxSpcsS7C" Organization: MarcusCom, Inc. Message-Id: <1055342901.306.2.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 11 Jun 2003 14:48:24 +0000 X-Spam-Status: No, hits=-8.9 required=5.0 tests=BAYES_01,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: freebsd-gnome@freebsd.org Subject: Re: no calendar view in new evo X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 14:48:35 -0000 --=-Qbey9yJOQr3NxSpcsS7C Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-06-11 at 14:25, Piero wrote: > Hi, >=20 > After portupgrading Evo to 1.4. I cannot get in it to the calendar view. > Todo list shows up instead. I noticed also some problems with local > chars in fonts of the left modules switching panel. Screenshot: > http://beth.poprostu.pl/~smyru/screens/no-cal-in-evo.png See if downgrading to pango-1.2.2 fixes the font problem. Joe >=20 > BTW: After the upgrade with the recently commits and uninstalling the > old obsolete Gnome stuff (unneeded by the new Evo) I am noticing a huge > increase in the speed and responsiveness. Congratulations for your job > and thanks a lot. >=20 > --- > Piero > piero@poprostu.pl >=20 > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-Qbey9yJOQr3NxSpcsS7C 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+50E1b2iPiv4Uz4cRAoL/AJ4s907erHwibxCEG6sn5Bw2LpuOxQCfRzz2 V/E6ffIjuxvtzCfBHEcJPBc= =9wpS -----END PGP SIGNATURE----- --=-Qbey9yJOQr3NxSpcsS7C-- From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 07:58:26 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB67137B401 for ; Wed, 11 Jun 2003 07:58:26 -0700 (PDT) Received: from sisko.webonaut.com (sisko.webonaut.com [212.41.243.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17D3143FE9 for ; Wed, 11 Jun 2003 07:58:26 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from [127.0.0.1] (localhost.webonaut.com [127.0.0.1]) by sisko.webonaut.com (Postfix) with ESMTP id B4DE828434; Wed, 11 Jun 2003 16:58:26 +0200 (CEST) From: Franz Klammer To: Joe Marcus Clarke In-Reply-To: <1055342901.306.2.camel@gyros> References: <20030611162528.273ea7cf.piero@poprostu.pl> <1055342901.306.2.camel@gyros> Content-Type: text/plain Message-Id: <1055343506.71167.16.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 11 Jun 2003 14:58:26 +0000 Content-Transfer-Encoding: 7bit cc: freebsd-gnome@freebsd.org Subject: Re: no calendar view in new evo X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 14:58:27 -0000 Am Mi, 2003-06-11 um 14.48 schrieb Joe Marcus Clarke: > On Wed, 2003-06-11 at 14:25, Piero wrote: > > Hi, > > > > After portupgrading Evo to 1.4. I cannot get in it to the calendar view. > > Todo list shows up instead. I noticed also some problems with local > > chars in fonts of the left modules switching panel. Screenshot: > > http://beth.poprostu.pl/~smyru/screens/no-cal-in-evo.png > > See if downgrading to pango-1.2.2 fixes the font problem. > i don't think that's necessary. remove the shortcuts and create them new. i had (again ;) the samle problem with german letters. i guess that's an iso8859/utf-8 conversion problem. also you need only rename the group title. franz. > Joe > > > > > BTW: After the upgrade with the recently commits and uninstalling the > > old obsolete Gnome stuff (unneeded by the new Evo) I am noticing a huge > > increase in the speed and responsiveness. Congratulations for your job > > and thanks a lot. > > > > --- > > Piero > > piero@poprostu.pl > > > > _______________________________________________ > > freebsd-gnome@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 08:03:00 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE43537B401 for ; Wed, 11 Jun 2003 08:03:00 -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 E687A43FDD for ; Wed, 11 Jun 2003 08:02:59 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5BF1J8V021277; Wed, 11 Jun 2003 11:01:19 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5BExOV8084315; Wed, 11 Jun 2003 10:59:25 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Franz Klammer In-Reply-To: <1055343506.71167.16.camel@sisko.webonaut.com> References: <20030611162528.273ea7cf.piero@poprostu.pl> <1055342901.306.2.camel@gyros> <1055343506.71167.16.camel@sisko.webonaut.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-/n7op8JIG6w8yhLt+pyl" Organization: MarcusCom, Inc. Message-Id: <1055343774.306.10.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 11 Jun 2003 15:02:55 +0000 X-Spam-Status: No, hits=-8.9 required=5.0 tests=BAYES_01,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: freebsd-gnome@freebsd.org Subject: Re: no calendar view in new evo X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 15:03:01 -0000 --=-/n7op8JIG6w8yhLt+pyl Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-06-11 at 14:58, Franz Klammer wrote: > Am Mi, 2003-06-11 um 14.48 schrieb Joe Marcus Clarke: > > On Wed, 2003-06-11 at 14:25, Piero wrote: > > > Hi, > > >=20 > > > After portupgrading Evo to 1.4. I cannot get in it to the calendar vi= ew. > > > Todo list shows up instead. I noticed also some problems with local > > > chars in fonts of the left modules switching panel. Screenshot: > > > http://beth.poprostu.pl/~smyru/screens/no-cal-in-evo.png > >=20 > > See if downgrading to pango-1.2.2 fixes the font problem. > >=20 >=20 > i don't think that's necessary. remove the shortcuts and=20 > create them new. i had (again ;) the samle problem with > german letters. i guess that's an iso8859/utf-8 conversion > problem. also you need only rename the group title. Thanks, Franz. It occurred to me afterward that if it were a pango problem, Piero would be seeing this in other apps. Joe >=20 > franz. >=20 > > Joe > >=20 > > >=20 > > > BTW: After the upgrade with the recently commits and uninstalling the > > > old obsolete Gnome stuff (unneeded by the new Evo) I am noticing a hu= ge > > > increase in the speed and responsiveness. Congratulations for your jo= b > > > and thanks a lot. > > >=20 > > > --- > > > Piero > > > piero@poprostu.pl > > >=20 > > > _______________________________________________ > > > freebsd-gnome@freebsd.org mailing list > > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.o= rg" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-/n7op8JIG6w8yhLt+pyl 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+50Seb2iPiv4Uz4cRAo9UAKCg+5jRmS/M2dj1JoTNMluQcAut2QCeKzMC B5do0C0CRjtbmFhf/mNiafI= =gySk -----END PGP SIGNATURE----- --=-/n7op8JIG6w8yhLt+pyl-- From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 08:15:19 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF6A537B404 for ; Wed, 11 Jun 2003 08:15:19 -0700 (PDT) Received: from brama.eko.wroc.pl (brama.eko.wroc.pl [195.116.86.81]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0926543FBF for ; Wed, 11 Jun 2003 08:15:17 -0700 (PDT) (envelope-from piotr.smyrak@eko.org.pl) Received: from beth.poprostu.pl (beth.poprostu.pl [213.25.228.183]) by brama.eko.wroc.pl (8.12.8p1/8.12.6) with SMTP id h5BFX68n067051 for ; Wed, 11 Jun 2003 17:33:07 +0200 (CEST) (envelope-from piotr.smyrak@eko.org.pl) Date: Wed, 11 Jun 2003 17:04:22 +0200 From: Piero (by way of Piotr Smyrak ) To: Franz Klammer Message-Id: <20030611170422.6f53c138.piero@poprostu.pl> In-Reply-To: <1055343506.71167.16.camel@sisko.webonaut.com> References: <20030611162528.273ea7cf.piero@poprostu.pl> <1055342901.306.2.camel@gyros> <1055343506.71167.16.camel@sisko.webonaut.com> Organization: Poprostu X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Resent-Date: Wed, 11 Jun 2003 17:09:41 +0200 Resent-From: Piotr Smyrak Resent-Message-Id: <20030611170941.4dd8e2ac.piotr.smyrak@eko.org.pl> Resent-To: freebsd-gnome@freebsd.org Subject: Re: no calendar view in new evo X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 15:15:20 -0000 W li=B6cie otrzymanym 11 Jun 2003 14:58:26 +0000 od Franz Klammer : > Am Mi, 2003-06-11 um 14.48 schrieb Joe Marcus Clarke: > > On Wed, 2003-06-11 at 14:25, Piero wrote: > > > Hi, > > >=20 > > > After portupgrading Evo to 1.4. I cannot get in it to the calendar > > > view. Todo list shows up instead. I noticed also some problems > > > with local chars in fonts of the left modules switching panel. > > > Screenshot: > > > http://beth.poprostu.pl/~smyru/screens/no-cal-in-evo.png > >=20 > > See if downgrading to pango-1.2.2 fixes the font problem. > >=20 >=20 > i don't think that's necessary. remove the shortcuts and=20 > create them new. i had (again ;) the samle problem with > german letters. i guess that's an iso8859/utf-8 conversion > problem. also you need only rename the group title. Franz, you are very right with both issues. Thanks a lot. Just seems like switching month/day/week/etc view in calendar brings the problem back. I keep testing. --- Piero piero@poprostu.pl From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 08:37:57 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAA9637B401 for ; Wed, 11 Jun 2003 08:37:57 -0700 (PDT) Received: from sisko.webonaut.com (sisko.webonaut.com [212.41.243.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 357A443FCB for ; Wed, 11 Jun 2003 08:37:57 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from [127.0.0.1] (localhost.webonaut.com [127.0.0.1]) by sisko.webonaut.com (Postfix) with ESMTP id F2F7D28434; Wed, 11 Jun 2003 17:37:56 +0200 (CEST) From: Franz Klammer To: Joe Marcus Clarke In-Reply-To: <1055343774.306.10.camel@gyros> References: <20030611162528.273ea7cf.piero@poprostu.pl> <1055342901.306.2.camel@gyros> <1055343506.71167.16.camel@sisko.webonaut.com> <1055343774.306.10.camel@gyros> Content-Type: text/plain Message-Id: <1055345875.71167.52.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 11 Jun 2003 15:37:56 +0000 Content-Transfer-Encoding: 7bit cc: freebsd-gnome@freebsd.org Subject: Re: no calendar view in new evo X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 15:37:58 -0000 Am Mi, 2003-06-11 um 15.02 schrieb Joe Marcus Clarke: > On Wed, 2003-06-11 at 14:58, Franz Klammer wrote: > > Am Mi, 2003-06-11 um 14.48 schrieb Joe Marcus Clarke: > > > On Wed, 2003-06-11 at 14:25, Piero wrote: > > > > Hi, > > > > > > > > After portupgrading Evo to 1.4. I cannot get in it to the calendar view. > > > > Todo list shows up instead. I noticed also some problems with local > > > > chars in fonts of the left modules switching panel. Screenshot: > > > > http://beth.poprostu.pl/~smyru/screens/no-cal-in-evo.png > > > > > > See if downgrading to pango-1.2.2 fixes the font problem. > > > > > > > i don't think that's necessary. remove the shortcuts and > > create them new. i had (again ;) the samle problem with > > german letters. i guess that's an iso8859/utf-8 conversion > > problem. also you need only rename the group title. > > Thanks, Franz. It occurred to me afterward that if it were a pango > problem, Piero would be seeing this in other apps. > you mean like the problem that i have now a longer time with gnumeric?: http://webonaut.com/temp/gnumeric-1.png but this problem i have since my gnome-2.2/pango-1.2.2 days (if not longer...?) and _only_ with gnumeric. i always hoped with the latest version of gnumeric that's solved. but i think this thread is - at long last - a good reason to ask :-) franz. > Joe > > > > > franz. > > > > > Joe > > > > > > > > > > > BTW: After the upgrade with the recently commits and uninstalling the > > > > old obsolete Gnome stuff (unneeded by the new Evo) I am noticing a huge > > > > increase in the speed and responsiveness. Congratulations for your job > > > > and thanks a lot. > > > > > > > > --- > > > > Piero > > > > piero@poprostu.pl > > > > > > > > _______________________________________________ > > > > freebsd-gnome@freebsd.org mailing list > > > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 09:19:25 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A18B637B401 for ; Wed, 11 Jun 2003 09:19:25 -0700 (PDT) Received: from himinbjorg.ttsg.com (wallstreet34.kickstartusa.com [65.105.161.248]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE38243FCB for ; Wed, 11 Jun 2003 09:19:24 -0700 (PDT) (envelope-from tuc@ttsg.com) Received: (from tuc@localhost) by himinbjorg.ttsg.com (8.12.8/8.12.8) id h5BGJNkZ030973 for gnome@FreeBSD.org; Wed, 11 Jun 2003 12:19:23 -0400 (EDT) (envelope-from tuc) From: Tuc Message-Id: <200306111619.h5BGJNkZ030973@himinbjorg.ttsg.com> To: gnome@FreeBSD.org Date: Wed, 11 Jun 2003 12:19:23 -0400 (EDT) X-Mailer: ELM [version 2.5 PL6] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Gnomepilot2 message X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 16:19:25 -0000 Hi, I'm getting : himinbjorg# pwd /usr/ports/palm/gnomepilot2 himinbjorg# make ===> gnomepilot2-2.0.9 is marked as broken: gnomepilot2 wants to use the GNOME 2 desktop, but you wish to use the GNOME 1 desktop.. Where do I tell it that I'll use GNOME 2. I can't find what it checks anywhere. Thanks, Tuc/TTSG Internet Services, Inc. From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 09:21:38 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EF2E37B401 for ; Wed, 11 Jun 2003 09:21:38 -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 E109043F3F for ; Wed, 11 Jun 2003 09:21:36 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5BGG0Tp018059; Wed, 11 Jun 2003 12:16:01 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5BGHxV8084816; Wed, 11 Jun 2003 12:17:59 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Franz Klammer In-Reply-To: <1055345875.71167.52.camel@sisko.webonaut.com> References: <20030611162528.273ea7cf.piero@poprostu.pl> <1055342901.306.2.camel@gyros> <1055343506.71167.16.camel@sisko.webonaut.com> <1055343774.306.10.camel@gyros> <1055345875.71167.52.camel@sisko.webonaut.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-V2N8Cn7rpofrG4oJRsEy" Organization: MarcusCom, Inc. Message-Id: <1055348485.306.12.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 11 Jun 2003 16:21:26 +0000 X-Spam-Status: No, hits=-8.9 required=5.0 tests=BAYES_01,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: freebsd-gnome@freebsd.org Subject: Re: no calendar view in new evo X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 16:21:38 -0000 --=-V2N8Cn7rpofrG4oJRsEy Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-06-11 at 15:37, Franz Klammer wrote: > Am Mi, 2003-06-11 um 15.02 schrieb Joe Marcus Clarke: > > On Wed, 2003-06-11 at 14:58, Franz Klammer wrote: > > > Am Mi, 2003-06-11 um 14.48 schrieb Joe Marcus Clarke: > > > > On Wed, 2003-06-11 at 14:25, Piero wrote: > > > > > Hi, > > > > >=20 > > > > > After portupgrading Evo to 1.4. I cannot get in it to the calenda= r view. > > > > > Todo list shows up instead. I noticed also some problems with loc= al > > > > > chars in fonts of the left modules switching panel. Screenshot: > > > > > http://beth.poprostu.pl/~smyru/screens/no-cal-in-evo.png > > > >=20 > > > > See if downgrading to pango-1.2.2 fixes the font problem. > > > >=20 > > >=20 > > > i don't think that's necessary. remove the shortcuts and=20 > > > create them new. i had (again ;) the samle problem with > > > german letters. i guess that's an iso8859/utf-8 conversion > > > problem. also you need only rename the group title. > >=20 > > Thanks, Franz. It occurred to me afterward that if it were a pango > > problem, Piero would be seeing this in other apps. > >=20 >=20 > you mean like the problem that i have now a longer time with gnumeric?: > http://webonaut.com/temp/gnumeric-1.png >=20 > but this problem i have since my gnome-2.2/pango-1.2.2 days (if not=20 > longer...?) and _only_ with gnumeric. i always hoped with the latest > version of gnumeric that's solved.=20 >=20 > but i think this thread is - at long last - a good reason to ask :-) It may actually be fixed in this upcoming release I'm about to commit.=20 I had to mangle the German translation to get it to compile in the past. I'll see if it's fixed now. Joe >=20 > franz. >=20 > > Joe > >=20 > > >=20 > > > franz. > > >=20 > > > > Joe > > > >=20 > > > > >=20 > > > > > BTW: After the upgrade with the recently commits and uninstalling= the > > > > > old obsolete Gnome stuff (unneeded by the new Evo) I am noticing = a huge > > > > > increase in the speed and responsiveness. Congratulations for you= r job > > > > > and thanks a lot. > > > > >=20 > > > > > --- > > > > > Piero > > > > > piero@poprostu.pl > > > > >=20 > > > > > _______________________________________________ > > > > > freebsd-gnome@freebsd.org mailing list > > > > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > > > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freeb= sd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-V2N8Cn7rpofrG4oJRsEy 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+51cFb2iPiv4Uz4cRAvfsAJwLoeCoZgNra71Lz+p2PXj0r0lc6gCff93F epFwusveScmF4xW6y67DpWw= =O5ND -----END PGP SIGNATURE----- --=-V2N8Cn7rpofrG4oJRsEy-- From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 09:27:14 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C18037B401 for ; Wed, 11 Jun 2003 09:27:14 -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 8160043FBF for ; Wed, 11 Jun 2003 09:27:11 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5BGPW8V007332; Wed, 11 Jun 2003 12:25:32 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5BGNbV8084856; Wed, 11 Jun 2003 12:23:37 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Tuc In-Reply-To: <200306111619.h5BGJNkZ030973@himinbjorg.ttsg.com> References: <200306111619.h5BGJNkZ030973@himinbjorg.ttsg.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-mxP4UftjHCk8NfhEJDnR" Organization: MarcusCom, Inc. Message-Id: <1055348800.306.18.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 11 Jun 2003 16:27:07 +0000 X-Spam-Status: No, hits=-8.9 required=5.0 tests=BAYES_01,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: FreeBSD GNOME Users Subject: Re: Gnomepilot2 message X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 16:27:14 -0000 --=-mxP4UftjHCk8NfhEJDnR Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-06-11 at 16:19, Tuc wrote: > Hi, >=20 > I'm getting : >=20 > himinbjorg# pwd > /usr/ports/palm/gnomepilot2 > himinbjorg# make > =3D=3D=3D> gnomepilot2-2.0.9 is marked as broken: gnomepilot2 wants to u= se the GNOME 2 desktop, but you wish to use the GNOME 1 desktop.. >=20 > Where do I tell it that I'll use GNOME 2. I can't find what it checks > anywhere. You need to set GNOME_DESKTOP_VERSION=3D2 in /etc/make.conf. Joe >=20 >=20 > Thanks, Tuc/TTSG Internet Services, Inc. > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-mxP4UftjHCk8NfhEJDnR 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+51hAb2iPiv4Uz4cRAjytAJ9x04ZFrXooeoT4LY7fL2bmBgPHMgCfT9lh qQH96pFFaG8qlgSy3k/8GI0= =sZYx -----END PGP SIGNATURE----- --=-mxP4UftjHCk8NfhEJDnR-- From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 09:35:05 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B236737B401 for ; Wed, 11 Jun 2003 09:35:05 -0700 (PDT) Received: from priv-edtnes53.telusplanet.net (defout.telus.net [199.185.220.240]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9A8443F3F for ; Wed, 11 Jun 2003 09:35:02 -0700 (PDT) (envelope-from jdearl@telus.net) Received: from comp4.ici.net ([142.179.173.206]) by priv-edtnes53.telusplanet.netESMTP <20030611163502.QMKU20485.priv-edtnes53.telusplanet.net@comp4.ici.net> for ; Wed, 11 Jun 2003 10:35:02 -0600 Date: Wed, 11 Jun 2003 10:36:17 -0600 From: James Earl To: gnome@freebsd.org Message-ID: <20030611163617.GA69701@comp4.ici.net> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 2.0.11 Lines: 16 Subject: Evolution 1.4.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 16:35:06 -0000 I just installed your port of Evolution 1.4.0. Have you encountered any problems with Evolution setting up the ~/evolution directory contents with messed up permissions? Here's a sample of Inbox: -r--r--r-- 1 james staff 103 Jun 11 10:28 folder-metadata.xml -rw------- 1 james staff 95 Jun 11 10:28 local-metadata.xml -r--r--r-- 1 james staff 22371 Jun 11 10:28 mbox -rw------- 1 james staff 166 Jun 11 10:28 mbox.ev-summary -rw------- 1 james staff 10240 Jun 11 10:28 mbox.ibex.index -rw------- 1 james staff 1388 Jun 11 10:28 mbox.ibex.index.data It's like this in every directory, so it doesn't let me do alot of things related to e-mail (eg. send, recieve, read Welcome to Evolution, etc.) Just thought I'd pass this on to you and see if you had any ideas? From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 09:37:32 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C30D137B401 for ; Wed, 11 Jun 2003 09:37:32 -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 DC64A43F85 for ; Wed, 11 Jun 2003 09:37:31 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5BGYoUD001421; Wed, 11 Jun 2003 12:34:51 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5BGXuV8084985; Wed, 11 Jun 2003 12:33:57 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: James Earl In-Reply-To: <20030611163617.GA69701@comp4.ici.net> References: <20030611163617.GA69701@comp4.ici.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-HM9SgwIVqWluUaCzyYc0" Organization: MarcusCom, Inc. Message-Id: <1055349446.306.20.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 11 Jun 2003 16:37:26 +0000 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: FreeBSD GNOME Users Subject: Re: Evolution 1.4.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 16:37:33 -0000 --=-HM9SgwIVqWluUaCzyYc0 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-06-11 at 16:36, James Earl wrote: > I just installed your port of Evolution 1.4.0. Have you encountered any=20 > problems with Evolution setting up the ~/evolution directory contents wit= h=20 > messed up permissions? >=20 > Here's a sample of Inbox: > -r--r--r-- 1 james staff 103 Jun 11 10:28 folder-metadata.xml > -rw------- 1 james staff 95 Jun 11 10:28 local-metadata.xml > -r--r--r-- 1 james staff 22371 Jun 11 10:28 mbox > -rw------- 1 james staff 166 Jun 11 10:28 mbox.ev-summary > -rw------- 1 james staff 10240 Jun 11 10:28 mbox.ibex.index > -rw------- 1 james staff 1388 Jun 11 10:28 mbox.ibex.index.data >=20 > It's like this in every directory, so it doesn't let me do alot of things= =20 > related to e-mail (eg. send, recieve, read Welcome to Evolution, etc.) >=20 > Just thought I'd pass this on to you and see if you had any ideas? The update worked fine for me. All my permissions checked out. I haven't heard any other reports of this. Joe > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-HM9SgwIVqWluUaCzyYc0 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+51rGb2iPiv4Uz4cRAjJTAJ9iWNtWv9zidtFbdfs1idxz1pJkvACeIwcF BuPF35Kad82Ua+FlhSp9/hM= =iHyv -----END PGP SIGNATURE----- --=-HM9SgwIVqWluUaCzyYc0-- From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 09:55:33 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E0DD37B404 for ; Wed, 11 Jun 2003 09:55:33 -0700 (PDT) Received: from himinbjorg.ttsg.com (wallstreet34.kickstartusa.com [65.105.161.248]) by mx1.FreeBSD.org (Postfix) with ESMTP id 428CF43F93 for ; Wed, 11 Jun 2003 09:55:32 -0700 (PDT) (envelope-from tuc@ttsg.com) Received: (from tuc@localhost) by himinbjorg.ttsg.com (8.12.8/8.12.8) id h5BGtRXM043534; Wed, 11 Jun 2003 12:55:27 -0400 (EDT) (envelope-from tuc) From: Tuc Message-Id: <200306111655.h5BGtRXM043534@himinbjorg.ttsg.com> To: marcus@marcuscom.com (Joe Marcus Clarke) Date: Wed, 11 Jun 2003 12:55:27 -0400 (EDT) In-Reply-To: <1055348800.306.18.camel@gyros> from "Joe Marcus Clarke" at Jun 11, 2003 04:27:07 PM X-Mailer: ELM [version 2.5 PL6] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: FreeBSD GNOME Users cc: Tuc Subject: Re: Gnomepilot2 message X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 16:55:33 -0000 > > You need to set GNOME_DESKTOP_VERSION=2 in /etc/make.conf. > Ok, thanks. I appreciate the reply! Tuc/TTSG Internet Services, Inc. From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 11:27:36 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 078C037B401 for ; Wed, 11 Jun 2003 11:27:36 -0700 (PDT) Received: from priv-edtnes51.telusplanet.net (defout.telus.net [199.185.220.240]) by mx1.FreeBSD.org (Postfix) with ESMTP id D079343F3F for ; Wed, 11 Jun 2003 11:27:34 -0700 (PDT) (envelope-from jdearl@telus.net) Received: from comp4.ici.net ([142.179.173.206]) by priv-edtnes51.telusplanet.netESMTP <20030611182734.WREX8914.priv-edtnes51.telusplanet.net@comp4.ici.net> for ; Wed, 11 Jun 2003 12:27:34 -0600 Date: Wed, 11 Jun 2003 12:28:54 -0600 From: James Earl To: gnome@freebsd.org Message-ID: <20030611182854.GE88984@comp4.ici.net> References: <20030611181600.3A1971A491@rocky.ximian.com> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20030611181600.3A1971A491@rocky.ximian.com>; from bugzilla-daemon@rocky.ximian.com on Wed, Jun 11, 2003 at 12:16:00 -0600 X-Mailer: Balsa 2.0.11 Lines: 45 Subject: Fwd: [Bug 44541][Maj] Changed - Incorrect permissions on fresh install [bugzilla-daemon@rocky.ximian.com] X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 18:27:36 -0000 Sorry, I don't mean to bother you -- can you give me any direction on this response? Perhaps I entered the bug report poorly? James On 2003.06.11 12:16, bugzilla-daemon@rocky.ximian.com wrote: Please do not reply to this email- if you want to comment on the bug, go to the URL shown below and enter your comments there. Changed by fejj@ximian.com. http://bugzilla.ximian.com/show_bug.cgi?id=44541 --- shadow/44541 Wed Jun 11 14:10:03 2003 +++ shadow/44541.tmp.18519 Wed Jun 11 14:16:00 2003 @@ -1,14 +1,14 @@ Bug#: 44541 Product: Evolution Version: 1.4 OS: other OS Details: FreeBSD 4.8 -Status: NEW -Resolution: -Severity: +Status: RESOLVED +Resolution: NOTXIMIAN +Severity: Unknown Priority: Major Component: Mailer AssignedTo: evolution-mail-maintainers@ximian.com ReportedBy: jdearl@telus.net QAContact: evolution-qa@ximian.com TargetMilestone: --- @@ -28,6 +28,11 @@ How often does this happen? Fresh installs Additional Information: Installed from FreeBSD port twice. Both times with the same results. + +------- Additional Comments From fejj@ximian.com 2003-06-11 14:15 ------- +I would say this is a direct result of your umask settings + +certainly has nothing to do with mailer code. From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 13:15:05 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D483437B401; Wed, 11 Jun 2003 13:15:05 -0700 (PDT) Received: from shockwave.systems.pipex.net (shockwave.systems.pipex.net [62.241.160.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 684F743F85; Wed, 11 Jun 2003 13:15:04 -0700 (PDT) (envelope-from stacey@vickiandstacey.com) Received: from Demon.vickiandstacey.com (81-86-129-77.dsl.pipex.com [81.86.129.77]) by shockwave.systems.pipex.net (Postfix) with ESMTP id ABDFF1600017B; Wed, 11 Jun 2003 21:15:01 +0100 (BST) Received: from Demon.vickiandstacey.com (localhost [127.0.0.1]) h5BKF4JZ029450; Wed, 11 Jun 2003 21:15:05 +0100 (BST) (envelope-from stacey@Demon.vickiandstacey.com) Received: (from stacey@localhost) by Demon.vickiandstacey.com (8.12.8/8.12.8/Submit) id h5BKExOB029449; Wed, 11 Jun 2003 21:14:59 +0100 (BST) Date: Wed, 11 Jun 2003 21:14:59 +0100 (BST) Message-Id: <200306112014.h5BKExOB029449@Demon.vickiandstacey.com> To: FreeBSD-gnats-submit@freebsd.org From: Stacey Roberts X-send-pr-version: 3.113 X-GNATS-Notify: cc: gnome@freebsd.org Subject: portupgrade for evolution-1.2.4 fails after fresh cvsup of ports tree X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Stacey Roberts List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 20:15:06 -0000 >Submitter-Id: current-users >Originator: Stacey Roberts >Organization: >Confidential: no >Synopsis: portupgrade for evolution-1.2.4 fails after fresh cvsup of ports tree >Severity: critical >Priority: high >Category: ports >Class: sw-bug >Release: FreeBSD 4.8-RC i386 >Environment: System: FreeBSD Demon.vickiandstacey.com 4.8-RC FreeBSD 4.8-RC #0: Sat Mar 22 12:10:35 GMT 2003 root@Demon.vickiandstacey.com:/usr/obj/usr/src/sys/HAMMER i386 >Description: After cvsup of ports tree, attempts to portupgrade evolution-1.2.4 to latest port version fails with the following error: ./obj/echogs -e .dev -w- -l-obj ./obj/dpnxtlib ./obj/gsalphac.o ./obj/echogs -e .dev -w- -l-obj ./obj/dpsnext -include ./obj/dps ./obj/dpnxtlib ./obj/echogs -e .dev -a- ./obj/dpsnext -obj ./obj/zdpnext.o ./obj/echogs -e .dev -a- ./obj/dpsnext -oper zdpnext ./obj/echogs -e .dev -a- ./obj/dpsnext -ps gs_dpnxt ./obj/echogs -e .dev -w- -l-obj ./obj/epsf -ps gs_epsf cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -o ./obj/gdevpipe.o -c ./src/gdevpipe.c In file included from ./src/gdevpipe.c:22: src/pipe_.h:44: warning: function declaration isn't a prototype ./src/gdevpipe.c: In function `pipe_fopen': ./src/gdevpipe.c:61: warning: cast discards qualifiers from pointer target type ./src/gdevpipe.c:61: warning: cast discards qualifiers from pointer target type ./obj/echogs -e .dev -w- -l-obj ./obj/pipe ./obj/gdevpipe.o ./obj/echogs -e .dev -a- ./obj/pipe -iodev pipe cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevx.o -c ./src/gdevx.c ./src/gdevx.c: In function `x_copy_mono': ./src/gdevx.c:419: warning: cast discards qualifiers from pointer target type ./src/gdevx.c: In function `x_copy_image': ./src/gdevx.c:575: warning: cast discards qualifiers from pointer target type cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxcmp.o -c ./src/gdevxcmp.c cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxini.o -c ./src/gdevxini.c ./src/gdevxini.c: In function `gdev_x_open': ./src/gdevxini.c:101: warning: `xid_height' might be used uninitialized in this function ./src/gdevxini.c:101: warning: `xid_width' might be used uninitialized in this function cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -Wno-cast-qual -Wno-traditional -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxres.o -c ./src/gdevxres.c cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxxf.o -c ./src/gdevxxf.c cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -o ./obj/gdevemap.o -c ./src/gdevemap.c cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -o ./obj/gsparamx.o -c ./src/gsparamx.c ./obj/echogs -e .dev -w- -l-obj ./obj/x11_ ./obj/gdevx.o ./obj/gdevxcmp.o ./obj/gdevxini.o ./obj/gdevxres.o ./obj/gdevxxf.o ./obj/gdevemap.o ./obj/gsparamx.o ./obj/echogs -e .dev -a- ./obj/x11_ -link -L/usr/X11R6/lib ./obj/echogs -e .dev -a- ./obj/x11_ -lib Xt SM ICE Xext X11 ./obj/echogs -e .dev -a- ./obj/x11_ -include ./obj/bboxutil ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11 -include ./obj/x11_ cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxalt.o -c ./src/gdevxalt.c ./src/gdevxalt.c:772: warning: `x_alpha_map_color_rgb' defined but not used ./obj/echogs -e .dev -w- -l-obj ./obj/x11alt_ ./obj/gdevxalt.o ./obj/echogs -e .dev -a- ./obj/x11alt_ -include ./obj/x11_ ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11alpha -include ./obj/x11alt_ ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11cmyk -include ./obj/x11alt_ ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11cmyk2 -include ./obj/x11alt_ ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11cmyk4 -include ./obj/x11alt_ ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11cmyk8 -include ./obj/x11alt_ ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11gray2 -include ./obj/x11alt_ ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11gray4 -include ./obj/x11alt_ ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11mono -include ./obj/x11alt_ ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11rg16x -include ./obj/x11alt_ ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11rg32x -include ./obj/x11alt_ cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -o ./obj/gdevl256.o -c ./src/gdevl256.c ./src/gdevl256.c:39: vga.h: No such file or directory ./src/gdevl256.c:40: vgagl.h: No such file or directory ./src/gdevl256.c:107: warning: non-static declaration for `lvga256_open' follows static ./src/gdevl256.c: In function `lvga256_open': ./src/gdevl256.c:111: warning: implicit declaration of function `vga_init' ./src/gdevl256.c:112: warning: implicit declaration of function `vga_getdefaultmode' ./src/gdevl256.c:114: `G320x200x256' undeclared (first use in this function) ./src/gdevl256.c:114: (Each undeclared identifier is reported only once ./src/gdevl256.c:114: for each function it appears in.) ./src/gdevl256.c:115: warning: implicit declaration of function `vga_setmode' ./src/gdevl256.c:116: warning: implicit declaration of function `gl_setcontextvga' ./src/gdevl256.c:117: warning: implicit declaration of function `vga_getxdim' ./src/gdevl256.c:118: warning: implicit declaration of function `vga_getydim' ./src/gdevl256.c:129: warning: implicit declaration of function `gl_setpalettecolor' ./src/gdevl256.c: At top level: ./src/gdevl256.c:142: warning: non-static declaration for `lvga256_close' follows static ./src/gdevl256.c: In function `lvga256_close': ./src/gdevl256.c:143: warning: function `vga_setmode' was previously declared within a block ./src/gdevl256.c:143: `TEXT' undeclared (first use in this function) ./src/gdevl256.c: At top level: ./src/gdevl256.c:154: warning: non-static declaration for `lvga256_map_rgb_color' follows static ./src/gdevl256.c: In function `lvga256_map_rgb_color': ./src/gdevl256.c:193: warning: function `gl_setpalettecolor' was previously declared within a block ./src/gdevl256.c: At top level: ./src/gdevl256.c:201: warning: non-static declaration for `lvga256_map_color_rgb' follows static ./src/gdevl256.c:216: warning: non-static declaration for `lvga256_copy_mono' follows static ./src/gdevl256.c: In function `lvga256_copy_mono': ./src/gdevl256.c:233: warning: implicit declaration of function `gl_fillbox' ./src/gdevl256.c:244: warning: implicit declaration of function `gl_setpixel' ./src/gdevl256.c: At top level: ./src/gdevl256.c:262: warning: non-static declaration for `lvga256_copy_color' follows static./src/gdevl256.c: In function `lvga256_copy_color': ./src/gdevl256.c:267: warning: implicit declaration of function `gl_putbox' ./src/gdevl256.c: At top level: ./src/gdevl256.c:280: warning: non-static declaration for `lvga256_fill_rectangle' follows static ./src/gdevl256.c: In function `lvga256_fill_rectangle': ./src/gdevl256.c:282: warning: function `gl_fillbox' was previously declared within a block ./src/gdevl256.c: At top level: ./src/gdevl256.c:294: warning: non-static declaration for `lvga256_tile_rectangle' follows static ./src/gdevl256.c:306: warning: non-static declaration for `lvga256_draw_line' follows static ./src/gdevl256.c: In function `lvga256_draw_line': ./src/gdevl256.c:307: warning: implicit declaration of function `gl_line' gmake: *** [obj/gdevl256.o] Error 1 *** Error code 2 Stop in /usr/ports/print/ghostscript-gnu. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade20484.8 make ** Fix the problem and try again. ---> Skipping 'print/gnomeprint' (gnomeprint-0.37) because 'print/ghostscript-gnu' (ghostscript-gnu-7.06) failed ---> Skipping 'devel/bonobo' (bonobo-1.0.22) because 'print/gnomeprint' (gnomeprint-0.37) failed ---> Skipping 'devel/bonobo-conf' (bonobo-conf-0.16) because 'devel/bonobo' (bonobo-1.0.22) failed ---> Skipping 'databases/libgda' (libgda-0.2.96_1) because 'devel/bonobo' (bonobo-1.0.22) failed ---> Skipping 'databases/gnomedb' (gnomedb-0.2.96_1) because 'databases/libgda' (libgda-0.2.96_1) failed ---> Skipping 'devel/libglade' (libglade-0.17_2) because 'databases/libgda' (libgda-0.2.96_1) failed ---> Skipping 'x11-toolkits/gal' (gal-0.24) because 'databases/libgda' (libgda-0.2.96_1) failed ---> Skipping 'www/gtkhtml' (gtkhtml-1.1.10) because 'databases/libgda' (libgda-0.2.96_1) failed ---> Skipping 'textproc/gnomespell' (gnomespell-0.5) because 'databases/libgda' (libgda-0.2.96_1) failed ---> Skipping 'palm/gnomepilot' (gnomepilot-0.1.71) because 'databases/libgda' (libgda-0.2.96_1) failed ---> Skipping 'palm/gnomepilot-conduits' (gnomepilot-conduits-0.9) because 'databases/libgda' (libgda-0.2.96_1) failed ---> Skipping 'mail/evolution' (evolution-1.2.4) because 'x11-toolkits/gal' (gal-0.24) failed ** The following packages were not installed or upgraded (*:skipped / !:failed) ! print/ghostscript-gnu (ghostscript-gnu-7.06) (missing header) * print/gnomeprint (gnomeprint-0.37) * devel/bonobo (bonobo-1.0.22) * devel/bonobo-conf (bonobo-conf-0.16) * databases/libgda (libgda-0.2.96_1) * databases/gnomedb (gnomedb-0.2.96_1) * devel/libglade (libglade-0.17_2) * x11-toolkits/gal (gal-0.24) * www/gtkhtml (gtkhtml-1.1.10) * textproc/gnomespell (gnomespell-0.5) * palm/gnomepilot (gnomepilot-0.1.71) * palm/gnomepilot-conduits (gnomepilot-conduits-0.9) * mail/evolution (evolution-1.2.4) # >How-To-Repeat: cvsup ports tree Run portsupgrade -R evolution-1.2.4 >Fix: In understand that this is a problem with ghostscript-gnu-7.06, see ports/53117. However, please forgive me for submitting this under a "Gnome" PR. I've not seen any activity on that PR, and with ghostscript-gnu being a critical component for Evolution, I'm hedging that *something* could get progressed this way. If there is anything I can do / information that I could provide, please ask. From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 13:50:08 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C945737B401; Wed, 11 Jun 2003 13:50:08 -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 5C9D943FB1; Wed, 11 Jun 2003 13:50:05 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5BKmP8V001376; Wed, 11 Jun 2003 16:48:25 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5BKkLV8086938; Wed, 11 Jun 2003 16:46:21 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Stacey Roberts In-Reply-To: <200306112014.h5BKExOB029449@Demon.vickiandstacey.com> References: <200306112014.h5BKExOB029449@Demon.vickiandstacey.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-YZUxsDCmplxyR7PNfwAM" Organization: MarcusCom, Inc. Message-Id: <1055364591.308.0.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 11 Jun 2003 16:49:51 -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: FreeBSD GNOME Users cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: portupgrade for evolution-1.2.4 fails after fresh cvsup of ports tree X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 20:50:09 -0000 --=-YZUxsDCmplxyR7PNfwAM Content-Type: text/plain Content-Transfer-Encoding: quoted-printable This has nothing to do with Evolution. Please notify the ghostscript maintainer. Joe On Wed, 2003-06-11 at 16:14, Stacey Roberts wrote: > >Submitter-Id: current-users > >Originator: Stacey Roberts > >Organization:=09 > >Confidential: no=20 > >Synopsis: portupgrade for evolution-1.2.4 fails after fresh cvsup of por= ts tree > >Severity: critical > >Priority: high > >Category: ports > >Class: sw-bug > >Release: FreeBSD 4.8-RC i386 > >Environment: > System: FreeBSD Demon.vickiandstacey.com 4.8-RC FreeBSD 4.8-RC #0: Sat Ma= r 22 12:10:35 GMT 2003 root@Demon.vickiandstacey.com:/usr/obj/usr/src/sys/H= AMMER i386 >=20 > >Description: > After cvsup of ports tree, attempts to portupgrade evolution-1.2.4 to lat= est port version fails with the following error: >=20 > ./obj/echogs -e .dev -w- -l-obj ./obj/dpnxtlib ./obj/gsalphac.o > ./obj/echogs -e .dev -w- -l-obj ./obj/dpsnext -include ./obj/dps ./obj/dp= nxtlib > ./obj/echogs -e .dev -a- ./obj/dpsnext -obj ./obj/zdpnext.o > ./obj/echogs -e .dev -a- ./obj/dpsnext -oper zdpnext > ./obj/echogs -e .dev -a- ./obj/dpsnext -ps gs_dpnxt > ./obj/echogs -e .dev -w- -l-obj ./obj/epsf -ps gs_epsf > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=3Dpentiumpro -Wall -= Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditiona= l -fno-builtin -fno-common -DUPD_SIGNAL=3D0 -I./gimp-print -I/usr/local/inc= lude -I./obj -I./src -o ./obj/gdevpipe.o -c ./src/gdevpipe.c > In file included from ./src/gdevpipe.c:22: > src/pipe_.h:44: warning: function declaration isn't a prototype > ./src/gdevpipe.c: In function `pipe_fopen': > ./src/gdevpipe.c:61: warning: cast discards qualifiers from pointer targe= t type > ./src/gdevpipe.c:61: warning: cast discards qualifiers from pointer targe= t type > ./obj/echogs -e .dev -w- -l-obj ./obj/pipe ./obj/gdevpipe.o > ./obj/echogs -e .dev -a- ./obj/pipe -iodev pipe > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=3Dpentiumpro -Wall -= Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditiona= l -fno-builtin -fno-common -DUPD_SIGNAL=3D0 -I./gimp-print -I/usr/local/inc= lude -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevx.o -c ./src/gdevx.= c > ./src/gdevx.c: In function `x_copy_mono': > ./src/gdevx.c:419: warning: cast discards qualifiers from pointer target = type > ./src/gdevx.c: In function `x_copy_image': > ./src/gdevx.c:575: warning: cast discards qualifiers from pointer target = type > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=3Dpentiumpro -Wall -= Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditiona= l -fno-builtin -fno-common -DUPD_SIGNAL=3D0 -I./gimp-print -I/usr/local/inc= lude -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxcmp.o -c ./src/gde= vxcmp.c > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=3Dpentiumpro -Wall -= Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditiona= l -fno-builtin -fno-common -DUPD_SIGNAL=3D0 -I./gimp-print -I/usr/local/inc= lude -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxini.o -c ./src/gde= vxini.c > ./src/gdevxini.c: In function `gdev_x_open': > ./src/gdevxini.c:101: warning: `xid_height' might be used uninitialized i= n this function > ./src/gdevxini.c:101: warning: `xid_width' might be used uninitialized in= this function > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=3Dpentiumpro -Wall -= Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditiona= l -fno-builtin -fno-common -DUPD_SIGNAL=3D0 -I./gimp-print -I/usr/local/inc= lude -Wno-cast-qual -Wno-traditional -I./obj -I./src -I/usr/X11R6/include = -o ./obj/gdevxres.o -c ./src/gdevxres.c > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=3Dpentiumpro -Wall -= Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditiona= l -fno-builtin -fno-common -DUPD_SIGNAL=3D0 -I./gimp-print -I/usr/local/inc= lude -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxxf.o -c ./src/gdev= xxf.c > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=3Dpentiumpro -Wall -= Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditiona= l -fno-builtin -fno-common -DUPD_SIGNAL=3D0 -I./gimp-print -I/usr/local/inc= lude -I./obj -I./src -o ./obj/gdevemap.o -c ./src/gdevemap.c > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=3Dpentiumpro -Wall -= Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditiona= l -fno-builtin -fno-common -DUPD_SIGNAL=3D0 -I./gimp-print -I/usr/local/inc= lude -I./obj -I./src -o ./obj/gsparamx.o -c ./src/gsparamx.c > ./obj/echogs -e .dev -w- -l-obj ./obj/x11_ ./obj/gdevx.o ./obj/gdevxcmp.o= ./obj/gdevxini.o ./obj/gdevxres.o ./obj/gdevxxf.o ./obj/gdevemap.o ./obj/g= sparamx.o > ./obj/echogs -e .dev -a- ./obj/x11_ -link -L/usr/X11R6/lib > ./obj/echogs -e .dev -a- ./obj/x11_ -lib Xt SM ICE Xext X11 > ./obj/echogs -e .dev -a- ./obj/x11_ -include ./obj/bboxutil > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11 -include ./obj/x1= 1_ > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=3Dpentiumpro -Wall -= Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditiona= l -fno-builtin -fno-common -DUPD_SIGNAL=3D0 -I./gimp-print -I/usr/local/inc= lude -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxalt.o -c ./src/gde= vxalt.c > ./src/gdevxalt.c:772: warning: `x_alpha_map_color_rgb' defined but not us= ed > ./obj/echogs -e .dev -w- -l-obj ./obj/x11alt_ ./obj/gdevxalt.o > ./obj/echogs -e .dev -a- ./obj/x11alt_ -include ./obj/x11_ > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11alpha -include ./o= bj/x11alt_ > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11cmyk -include ./ob= j/x11alt_ > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11cmyk2 -include ./o= bj/x11alt_ > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11cmyk4 -include ./o= bj/x11alt_ > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11cmyk8 -include ./o= bj/x11alt_ > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11gray2 -include ./o= bj/x11alt_ > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11gray4 -include ./o= bj/x11alt_ > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11mono -include ./ob= j/x11alt_ > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11rg16x -include ./o= bj/x11alt_ > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11rg32x -include ./o= bj/x11alt_ > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=3Dpentiumpro -Wall -= Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditiona= l -fno-builtin -fno-common -DUPD_SIGNAL=3D0 -I./gimp-print -I/usr/local/inc= lude -I./obj -I./src -o ./obj/gdevl256.o -c ./src/gdevl256.c > ./src/gdevl256.c:39: vga.h: No such file or directory > ./src/gdevl256.c:40: vgagl.h: No such file or directory > ./src/gdevl256.c:107: warning: non-static declaration for `lvga256_open' = follows static > ./src/gdevl256.c: In function `lvga256_open': > ./src/gdevl256.c:111: warning: implicit declaration of function `vga_init= ' > ./src/gdevl256.c:112: warning: implicit declaration of function `vga_getd= efaultmode' > ./src/gdevl256.c:114: `G320x200x256' undeclared (first use in this functi= on) > ./src/gdevl256.c:114: (Each undeclared identifier is reported only once > ./src/gdevl256.c:114: for each function it appears in.) > ./src/gdevl256.c:115: warning: implicit declaration of function `vga_setm= ode' > ./src/gdevl256.c:116: warning: implicit declaration of function `gl_setco= ntextvga' > ./src/gdevl256.c:117: warning: implicit declaration of function `vga_getx= dim' > ./src/gdevl256.c:118: warning: implicit declaration of function `vga_gety= dim' > ./src/gdevl256.c:129: warning: implicit declaration of function `gl_setpa= lettecolor' > ./src/gdevl256.c: At top level: > ./src/gdevl256.c:142: warning: non-static declaration for `lvga256_close'= follows static > ./src/gdevl256.c: In function `lvga256_close': > ./src/gdevl256.c:143: warning: function `vga_setmode' was previously decl= ared within a block > ./src/gdevl256.c:143: `TEXT' undeclared (first use in this function) > ./src/gdevl256.c: At top level: > ./src/gdevl256.c:154: warning: non-static declaration for `lvga256_map_rg= b_color' follows static > ./src/gdevl256.c: In function `lvga256_map_rgb_color': > ./src/gdevl256.c:193: warning: function `gl_setpalettecolor' was previous= ly declared within a block > ./src/gdevl256.c: At top level: > ./src/gdevl256.c:201: warning: non-static declaration for `lvga256_map_co= lor_rgb' follows static > ./src/gdevl256.c:216: warning: non-static declaration for `lvga256_copy_m= ono' follows static > ./src/gdevl256.c: In function `lvga256_copy_mono': > ./src/gdevl256.c:233: warning: implicit declaration of function `gl_fillb= ox' > ./src/gdevl256.c:244: warning: implicit declaration of function `gl_setpi= xel' > ./src/gdevl256.c: At top level: > ./src/gdevl256.c:262: warning: non-static declaration for `lvga256_copy_c= olor' follows static./src/gdevl256.c: In function `lvga256_copy_color': > ./src/gdevl256.c:267: warning: implicit declaration of function `gl_putbo= x' > ./src/gdevl256.c: At top level: > ./src/gdevl256.c:280: warning: non-static declaration for `lvga256_fill_r= ectangle' follows static > ./src/gdevl256.c: In function `lvga256_fill_rectangle': > ./src/gdevl256.c:282: warning: function `gl_fillbox' was previously decla= red within a block > ./src/gdevl256.c: At top level: > ./src/gdevl256.c:294: warning: non-static declaration for `lvga256_tile_r= ectangle' follows static > ./src/gdevl256.c:306: warning: non-static declaration for `lvga256_draw_l= ine' follows static > ./src/gdevl256.c: In function `lvga256_draw_line': > ./src/gdevl256.c:307: warning: implicit declaration of function `gl_line' > gmake: *** [obj/gdevl256.o] Error 1 > *** Error code 2 > =20 > Stop in /usr/ports/print/ghostscript-gnu. > ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade2048= 4.8 make > ** Fix the problem and try again. > ---> Skipping 'print/gnomeprint' (gnomeprint-0.37) because 'print/ghosts= cript-gnu' (ghostscript-gnu-7.06) failed > ---> Skipping 'devel/bonobo' (bonobo-1.0.22) because 'print/gnomeprint' = (gnomeprint-0.37) failed > ---> Skipping 'devel/bonobo-conf' (bonobo-conf-0.16) because 'devel/bono= bo' (bonobo-1.0.22) failed > ---> Skipping 'databases/libgda' (libgda-0.2.96_1) because 'devel/bonobo= ' (bonobo-1.0.22) failed > ---> Skipping 'databases/gnomedb' (gnomedb-0.2.96_1) because 'databases/= libgda' (libgda-0.2.96_1) failed > ---> Skipping 'devel/libglade' (libglade-0.17_2) because 'databases/libg= da' (libgda-0.2.96_1) failed > ---> Skipping 'x11-toolkits/gal' (gal-0.24) because 'databases/libgda' (= libgda-0.2.96_1) failed > ---> Skipping 'www/gtkhtml' (gtkhtml-1.1.10) because 'databases/libgda' = (libgda-0.2.96_1) failed > ---> Skipping 'textproc/gnomespell' (gnomespell-0.5) because 'databases/= libgda' (libgda-0.2.96_1) failed > ---> Skipping 'palm/gnomepilot' (gnomepilot-0.1.71) because 'databases/l= ibgda' (libgda-0.2.96_1) failed > ---> Skipping 'palm/gnomepilot-conduits' (gnomepilot-conduits-0.9) becau= se 'databases/libgda' (libgda-0.2.96_1) failed > ---> Skipping 'mail/evolution' (evolution-1.2.4) because 'x11-toolkits/g= al' (gal-0.24) failed > ** The following packages were not installed or upgraded (*:skipped / !:f= ailed) > ! print/ghostscript-gnu (ghostscript-gnu-7.06) (missing header) > * print/gnomeprint (gnomeprint-0.37) > * devel/bonobo (bonobo-1.0.22) > * devel/bonobo-conf (bonobo-conf-0.16) > * databases/libgda (libgda-0.2.96_1) > * databases/gnomedb (gnomedb-0.2.96_1) > * devel/libglade (libglade-0.17_2) > * x11-toolkits/gal (gal-0.24) > * www/gtkhtml (gtkhtml-1.1.10) > * textproc/gnomespell (gnomespell-0.5) > * palm/gnomepilot (gnomepilot-0.1.71) > * palm/gnomepilot-conduits (gnomepilot-conduits-0.9) > * mail/evolution (evolution-1.2.4) > # >=20 > >How-To-Repeat: > cvsup ports tree > Run portsupgrade -R evolution-1.2.4 >=20 > >Fix: > In understand that this is a problem with ghostscript-gnu-7.06, see ports= /53117. However, please forgive me for submitting this under a "Gnome" PR. = I've not seen any activity on that PR, and with ghostscript-gnu being a cri= tical component for Evolution, I'm hedging that *something* could get progr= essed this way. If there is anything I can do / information that I could pr= ovide, please ask. >=20 >=20 > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-YZUxsDCmplxyR7PNfwAM 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+55Xvb2iPiv4Uz4cRAghBAJ4/UIu6AVrzVHumWYrmQlt+g75MfQCfV4bD fzGO8n+/H/9bYKf+WTwMWaU= =43jv -----END PGP SIGNATURE----- --=-YZUxsDCmplxyR7PNfwAM-- From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 13:54:44 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD29537B401; Wed, 11 Jun 2003 13:54:44 -0700 (PDT) Received: from pengo.systems.pipex.net (pengo.systems.pipex.net [62.241.160.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83B4D43FCB; Wed, 11 Jun 2003 13:54:43 -0700 (PDT) (envelope-from stacey@vickiandstacey.com) Received: from [192.168.1.8] (81-86-129-77.dsl.pipex.com [81.86.129.77]) by pengo.systems.pipex.net (Postfix) with ESMTP id BC26F4C0033A; Wed, 11 Jun 2003 21:54:40 +0100 (BST) From: Stacey Roberts To: Joe Marcus Clarke In-Reply-To: <1055364591.308.0.camel@gyros> References: <200306112014.h5BKExOB029449@Demon.vickiandstacey.com> <1055364591.308.0.camel@gyros> Content-Type: text/plain Organization: Message-Id: <1055364884.29363.2.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.4 Date: 11 Jun 2003 21:54:45 +0100 Content-Transfer-Encoding: 7bit cc: FreeBSD GNOME Users cc: FreeBSD-gnats-submit@freebsd.org Subject: Re: portupgrade for evolution-1.2.4 fails after fresh cvsup of ports tree X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: stacey@vickiandstacey.com List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 20:54:45 -0000 Hello Joe, Still fiddling around here with this, and I've managed to get past the ghostscript problems (some creative configure selections), and now Evo appears happily building on my test box at the moment. Please close the PR (or let me know if/ how I can do so myself). Sorry for the noise - and the top post. Regards, Stacey On Wed, 2003-06-11 at 21:49, Joe Marcus Clarke wrote: > This has nothing to do with Evolution. Please notify the ghostscript > maintainer. > > Joe > > On Wed, 2003-06-11 at 16:14, Stacey Roberts wrote: > > >Submitter-Id: current-users > > >Originator: Stacey Roberts > > >Organization: > > >Confidential: no > > >Synopsis: portupgrade for evolution-1.2.4 fails after fresh cvsup of ports tree > > >Severity: critical > > >Priority: high > > >Category: ports > > >Class: sw-bug > > >Release: FreeBSD 4.8-RC i386 > > >Environment: > > System: FreeBSD Demon.vickiandstacey.com 4.8-RC FreeBSD 4.8-RC #0: Sat Mar 22 12:10:35 GMT 2003 root@Demon.vickiandstacey.com:/usr/obj/usr/src/sys/HAMMER i386 > > > > >Description: > > After cvsup of ports tree, attempts to portupgrade evolution-1.2.4 to latest port version fails with the following error: > > > > ./obj/echogs -e .dev -w- -l-obj ./obj/dpnxtlib ./obj/gsalphac.o > > ./obj/echogs -e .dev -w- -l-obj ./obj/dpsnext -include ./obj/dps ./obj/dpnxtlib > > ./obj/echogs -e .dev -a- ./obj/dpsnext -obj ./obj/zdpnext.o > > ./obj/echogs -e .dev -a- ./obj/dpsnext -oper zdpnext > > ./obj/echogs -e .dev -a- ./obj/dpsnext -ps gs_dpnxt > > ./obj/echogs -e .dev -w- -l-obj ./obj/epsf -ps gs_epsf > > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -o ./obj/gdevpipe.o -c ./src/gdevpipe.c > > In file included from ./src/gdevpipe.c:22: > > src/pipe_.h:44: warning: function declaration isn't a prototype > > ./src/gdevpipe.c: In function `pipe_fopen': > > ./src/gdevpipe.c:61: warning: cast discards qualifiers from pointer target type > > ./src/gdevpipe.c:61: warning: cast discards qualifiers from pointer target type > > ./obj/echogs -e .dev -w- -l-obj ./obj/pipe ./obj/gdevpipe.o > > ./obj/echogs -e .dev -a- ./obj/pipe -iodev pipe > > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevx.o -c ./src/gdevx.c > > ./src/gdevx.c: In function `x_copy_mono': > > ./src/gdevx.c:419: warning: cast discards qualifiers from pointer target type > > ./src/gdevx.c: In function `x_copy_image': > > ./src/gdevx.c:575: warning: cast discards qualifiers from pointer target type > > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxcmp.o -c ./src/gdevxcmp.c > > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxini.o -c ./src/gdevxini.c > > ./src/gdevxini.c: In function `gdev_x_open': > > ./src/gdevxini.c:101: warning: `xid_height' might be used uninitialized in this function > > ./src/gdevxini.c:101: warning: `xid_width' might be used uninitialized in this function > > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -Wno-cast-qual -Wno-traditional -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxres.o -c ./src/gdevxres.c > > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxxf.o -c ./src/gdevxxf.c > > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -o ./obj/gdevemap.o -c ./src/gdevemap.c > > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -o ./obj/gsparamx.o -c ./src/gsparamx.c > > ./obj/echogs -e .dev -w- -l-obj ./obj/x11_ ./obj/gdevx.o ./obj/gdevxcmp.o ./obj/gdevxini.o ./obj/gdevxres.o ./obj/gdevxxf.o ./obj/gdevemap.o ./obj/gsparamx.o > > ./obj/echogs -e .dev -a- ./obj/x11_ -link -L/usr/X11R6/lib > > ./obj/echogs -e .dev -a- ./obj/x11_ -lib Xt SM ICE Xext X11 > > ./obj/echogs -e .dev -a- ./obj/x11_ -include ./obj/bboxutil > > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11 -include ./obj/x11_ > > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -I/usr/X11R6/include -o ./obj/gdevxalt.o -c ./src/gdevxalt.c > > ./src/gdevxalt.c:772: warning: `x_alpha_map_color_rgb' defined but not used > > ./obj/echogs -e .dev -w- -l-obj ./obj/x11alt_ ./obj/gdevxalt.o > > ./obj/echogs -e .dev -a- ./obj/x11alt_ -include ./obj/x11_ > > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11alpha -include ./obj/x11alt_ > > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11cmyk -include ./obj/x11alt_ > > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11cmyk2 -include ./obj/x11alt_ > > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11cmyk4 -include ./obj/x11alt_ > > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11cmyk8 -include ./obj/x11alt_ > > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11gray2 -include ./obj/x11alt_ > > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11gray4 -include ./obj/x11alt_ > > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11mono -include ./obj/x11alt_ > > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11rg16x -include ./obj/x11alt_ > > ./obj/echogs -e .dev -w- -l-dev2 -b -s -l-obj ./obj/x11rg32x -include ./obj/x11alt_ > > cc `cat ./obj/cc.tr` -DHAVE_MKSTEMP -O -pipe -march=pentiumpro -Wall -Wstrict-prototypes -Wmissing-declarations -Wmissing-prototypes -Wtraditional -fno-builtin -fno-common -DUPD_SIGNAL=0 -I./gimp-print -I/usr/local/include -I./obj -I./src -o ./obj/gdevl256.o -c ./src/gdevl256.c > > ./src/gdevl256.c:39: vga.h: No such file or directory > > ./src/gdevl256.c:40: vgagl.h: No such file or directory > > ./src/gdevl256.c:107: warning: non-static declaration for `lvga256_open' follows static > > ./src/gdevl256.c: In function `lvga256_open': > > ./src/gdevl256.c:111: warning: implicit declaration of function `vga_init' > > ./src/gdevl256.c:112: warning: implicit declaration of function `vga_getdefaultmode' > > ./src/gdevl256.c:114: `G320x200x256' undeclared (first use in this function) > > ./src/gdevl256.c:114: (Each undeclared identifier is reported only once > > ./src/gdevl256.c:114: for each function it appears in.) > > ./src/gdevl256.c:115: warning: implicit declaration of function `vga_setmode' > > ./src/gdevl256.c:116: warning: implicit declaration of function `gl_setcontextvga' > > ./src/gdevl256.c:117: warning: implicit declaration of function `vga_getxdim' > > ./src/gdevl256.c:118: warning: implicit declaration of function `vga_getydim' > > ./src/gdevl256.c:129: warning: implicit declaration of function `gl_setpalettecolor' > > ./src/gdevl256.c: At top level: > > ./src/gdevl256.c:142: warning: non-static declaration for `lvga256_close' follows static > > ./src/gdevl256.c: In function `lvga256_close': > > ./src/gdevl256.c:143: warning: function `vga_setmode' was previously declared within a block > > ./src/gdevl256.c:143: `TEXT' undeclared (first use in this function) > > ./src/gdevl256.c: At top level: > > ./src/gdevl256.c:154: warning: non-static declaration for `lvga256_map_rgb_color' follows static > > ./src/gdevl256.c: In function `lvga256_map_rgb_color': > > ./src/gdevl256.c:193: warning: function `gl_setpalettecolor' was previously declared within a block > > ./src/gdevl256.c: At top level: > > ./src/gdevl256.c:201: warning: non-static declaration for `lvga256_map_color_rgb' follows static > > ./src/gdevl256.c:216: warning: non-static declaration for `lvga256_copy_mono' follows static > > ./src/gdevl256.c: In function `lvga256_copy_mono': > > ./src/gdevl256.c:233: warning: implicit declaration of function `gl_fillbox' > > ./src/gdevl256.c:244: warning: implicit declaration of function `gl_setpixel' > > ./src/gdevl256.c: At top level: > > ./src/gdevl256.c:262: warning: non-static declaration for `lvga256_copy_color' follows static./src/gdevl256.c: In function `lvga256_copy_color': > > ./src/gdevl256.c:267: warning: implicit declaration of function `gl_putbox' > > ./src/gdevl256.c: At top level: > > ./src/gdevl256.c:280: warning: non-static declaration for `lvga256_fill_rectangle' follows static > > ./src/gdevl256.c: In function `lvga256_fill_rectangle': > > ./src/gdevl256.c:282: warning: function `gl_fillbox' was previously declared within a block > > ./src/gdevl256.c: At top level: > > ./src/gdevl256.c:294: warning: non-static declaration for `lvga256_tile_rectangle' follows static > > ./src/gdevl256.c:306: warning: non-static declaration for `lvga256_draw_line' follows static > > ./src/gdevl256.c: In function `lvga256_draw_line': > > ./src/gdevl256.c:307: warning: implicit declaration of function `gl_line' > > gmake: *** [obj/gdevl256.o] Error 1 > > *** Error code 2 > > > > Stop in /usr/ports/print/ghostscript-gnu. > > ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade20484.8 make > > ** Fix the problem and try again. > > ---> Skipping 'print/gnomeprint' (gnomeprint-0.37) because 'print/ghostscript-gnu' (ghostscript-gnu-7.06) failed > > ---> Skipping 'devel/bonobo' (bonobo-1.0.22) because 'print/gnomeprint' (gnomeprint-0.37) failed > > ---> Skipping 'devel/bonobo-conf' (bonobo-conf-0.16) because 'devel/bonobo' (bonobo-1.0.22) failed > > ---> Skipping 'databases/libgda' (libgda-0.2.96_1) because 'devel/bonobo' (bonobo-1.0.22) failed > > ---> Skipping 'databases/gnomedb' (gnomedb-0.2.96_1) because 'databases/libgda' (libgda-0.2.96_1) failed > > ---> Skipping 'devel/libglade' (libglade-0.17_2) because 'databases/libgda' (libgda-0.2.96_1) failed > > ---> Skipping 'x11-toolkits/gal' (gal-0.24) because 'databases/libgda' (libgda-0.2.96_1) failed > > ---> Skipping 'www/gtkhtml' (gtkhtml-1.1.10) because 'databases/libgda' (libgda-0.2.96_1) failed > > ---> Skipping 'textproc/gnomespell' (gnomespell-0.5) because 'databases/libgda' (libgda-0.2.96_1) failed > > ---> Skipping 'palm/gnomepilot' (gnomepilot-0.1.71) because 'databases/libgda' (libgda-0.2.96_1) failed > > ---> Skipping 'palm/gnomepilot-conduits' (gnomepilot-conduits-0.9) because 'databases/libgda' (libgda-0.2.96_1) failed > > ---> Skipping 'mail/evolution' (evolution-1.2.4) because 'x11-toolkits/gal' (gal-0.24) failed > > ** The following packages were not installed or upgraded (*:skipped / !:failed) > > ! print/ghostscript-gnu (ghostscript-gnu-7.06) (missing header) > > * print/gnomeprint (gnomeprint-0.37) > > * devel/bonobo (bonobo-1.0.22) > > * devel/bonobo-conf (bonobo-conf-0.16) > > * databases/libgda (libgda-0.2.96_1) > > * databases/gnomedb (gnomedb-0.2.96_1) > > * devel/libglade (libglade-0.17_2) > > * x11-toolkits/gal (gal-0.24) > > * www/gtkhtml (gtkhtml-1.1.10) > > * textproc/gnomespell (gnomespell-0.5) > > * palm/gnomepilot (gnomepilot-0.1.71) > > * palm/gnomepilot-conduits (gnomepilot-conduits-0.9) > > * mail/evolution (evolution-1.2.4) > > # > > > > >How-To-Repeat: > > cvsup ports tree > > Run portsupgrade -R evolution-1.2.4 > > > > >Fix: > > In understand that this is a problem with ghostscript-gnu-7.06, see ports/53117. However, please forgive me for submitting this under a "Gnome" PR. I've not seen any activity on that PR, and with ghostscript-gnu being a critical component for Evolution, I'm hedging that *something* could get progressed this way. If there is anything I can do / information that I could provide, please ask. > > > > > > _______________________________________________ > > freebsd-gnome@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- Stacey Roberts B.Sc (HONS) Computer Science Web: www.vickiandstacey.com From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 14:52:37 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1352C37B401 for ; Wed, 11 Jun 2003 14:52:37 -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 037C343FD7 for ; Wed, 11 Jun 2003 14:52:36 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5BLnrUD021402; Wed, 11 Jun 2003 17:49:53 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5BLmsV8087473; Wed, 11 Jun 2003 17:48:54 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Franz Klammer In-Reply-To: <1055345875.71167.52.camel@sisko.webonaut.com> References: <20030611162528.273ea7cf.piero@poprostu.pl> <1055342901.306.2.camel@gyros> <1055343506.71167.16.camel@sisko.webonaut.com> <1055343774.306.10.camel@gyros> <1055345875.71167.52.camel@sisko.webonaut.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-jmSR+7jdjQ8fzwqPAZdP" Organization: MarcusCom, Inc. Message-Id: <1055368344.308.3.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 11 Jun 2003 17:52:24 -0400 X-Spam-Status: No, hits=-8.9 required=5.0 tests=BAYES_01,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: freebsd-gnome@freebsd.org Subject: Re: no calendar view in new evo X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 21:52:37 -0000 --=-jmSR+7jdjQ8fzwqPAZdP Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-06-11 at 11:37, Franz Klammer wrote: > Am Mi, 2003-06-11 um 15.02 schrieb Joe Marcus Clarke: > > On Wed, 2003-06-11 at 14:58, Franz Klammer wrote: > > > Am Mi, 2003-06-11 um 14.48 schrieb Joe Marcus Clarke: > > > > On Wed, 2003-06-11 at 14:25, Piero wrote: > > > > > Hi, > > > > >=20 > > > > > After portupgrading Evo to 1.4. I cannot get in it to the calenda= r view. > > > > > Todo list shows up instead. I noticed also some problems with loc= al > > > > > chars in fonts of the left modules switching panel. Screenshot: > > > > > http://beth.poprostu.pl/~smyru/screens/no-cal-in-evo.png > > > >=20 > > > > See if downgrading to pango-1.2.2 fixes the font problem. > > > >=20 > > >=20 > > > i don't think that's necessary. remove the shortcuts and=20 > > > create them new. i had (again ;) the samle problem with > > > german letters. i guess that's an iso8859/utf-8 conversion > > > problem. also you need only rename the group title. > >=20 > > Thanks, Franz. It occurred to me afterward that if it were a pango > > problem, Piero would be seeing this in other apps. > >=20 >=20 > you mean like the problem that i have now a longer time with gnumeric?: > http://webonaut.com/temp/gnumeric-1.png >=20 > but this problem i have since my gnome-2.2/pango-1.2.2 days (if not=20 > longer...?) and _only_ with gnumeric. i always hoped with the latest > version of gnumeric that's solved.=20 >=20 > but i think this thread is - at long last - a good reason to ask :-) Well, Gnumeric-1.1.19 has the same problem. In order to get it to build, I have to mangle the German translation. Apparently, gettext barfs trying to parse the .po file. Since you know German, can you give the de.po file a quick read through, and see if you can spot the bad characters? I've inquired about this with the Gnumeric developers, but so far, no luck. I've even tried gettext-0.12.1. Joe >=20 > franz. >=20 > > Joe > >=20 > > >=20 > > > franz. > > >=20 > > > > Joe > > > >=20 > > > > >=20 > > > > > BTW: After the upgrade with the recently commits and uninstalling= the > > > > > old obsolete Gnome stuff (unneeded by the new Evo) I am noticing = a huge > > > > > increase in the speed and responsiveness. Congratulations for you= r job > > > > > and thanks a lot. > > > > >=20 > > > > > --- > > > > > Piero > > > > > piero@poprostu.pl > > > > >=20 > > > > > _______________________________________________ > > > > > freebsd-gnome@freebsd.org mailing list > > > > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > > > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freeb= sd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-jmSR+7jdjQ8fzwqPAZdP 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+56SYb2iPiv4Uz4cRAvqKAJ40sUHCyH/9/uMMNdW0+z7Kwu8l3wCeKbJu lXo3V4dYZU0VK7KjeEJXwDY= =4TSl -----END PGP SIGNATURE----- --=-jmSR+7jdjQ8fzwqPAZdP-- From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 16:05:24 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FDA737B405 for ; Wed, 11 Jun 2003 16:05:24 -0700 (PDT) Received: from mx1.au.itouchnet.net (nat2.au.itouchnet.net [144.135.23.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71FC543FA3 for ; Wed, 11 Jun 2003 16:05:22 -0700 (PDT) (envelope-from ajthomson@optushome.com.au) Received: from nobody by mx1.au.itouchnet.net with scanned_ok (Exim 3.36 #1) id 19QEee-000JEi-00 for gnome@freebsd.org; Thu, 12 Jun 2003 09:05:20 +1000 X-TLS: TLSv1:DES-CBC3-SHA:168 athomson.prv.au.itouchnet.net -> mx1.au.itouchnet.net Received: from athomson.prv.au.itouchnet.net ([192.168.13.55]) by mx1.au.itouchnet.net with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 3.36 #1) id 19QEed-000JEb-00; Thu, 12 Jun 2003 09:05:19 +1000 Received: from localhost ([127.0.0.1] helo=athomson.prv.au.itouchnet.net) by athomson.prv.au.itouchnet.net with esmtp (Exim 4.20) id 19QEed-000Pc8-FQ; Thu, 12 Jun 2003 09:05:19 +1000 Received: (from ajt@localhost)h5BN5DXr098461; Thu, 12 Jun 2003 09:05:13 +1000 (EST) X-Authentication-Warning: athomson.prv.au.itouchnet.net: ajt set sender to ajthomson@optushome.com.au using -f Date: Thu, 12 Jun 2003 09:05:13 +1000 From: Andrew Thomson To: Joe Marcus Clarke Message-ID: <20030611230513.GD98070@athomson.prv.au.itouchnet.net> Mail-Followup-To: Joe Marcus Clarke , James Earl , FreeBSD GNOME Users References: <20030611163617.GA69701@comp4.ici.net> <1055349446.306.20.camel@gyros> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1055349446.306.20.camel@gyros> User-Agent: Mutt/1.4.1i X-Checked: Scanned for any viruses and unauthorized attachments at mx1.au.itouchnet.net X-iScan-ID: 73944-1055372719-89269@mx1.au.itouchnet.net version $Name: REL_2_0_2 $ cc: FreeBSD GNOME Users cc: James Earl Subject: Re: Evolution 1.4.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 23:05:25 -0000 I to have experienced problems. -Fresh install of 5.0-release. -Fresh install of gnome2 port -Fresh install of evolution Then when I try and check my mail, "Error while Storing foler... mbox: permission denied".. same for me. -r--r--r-- 1 ajt users 103 Jun 12 08:34 folder-metadata.xml -rw------- 1 ajt users 95 Jun 12 08:34 local-metadata.xml -r--r--r-- 1 ajt users 22371 Jun 12 08:34 mbox -rw------- 1 ajt users 166 Jun 12 08:34 mbox.ev-summary -rw------- 1 ajt users 10240 Jun 12 08:34 mbox.ibex.index -rw------- 1 ajt users 1388 Jun 12 08:34 mbox.ibex.index.data ajt. On Wed, Jun 11, 2003 at 04:37:26PM +0000, Joe Marcus Clarke wrote: > On Wed, 2003-06-11 at 16:36, James Earl wrote: > > I just installed your port of Evolution 1.4.0. Have you encountered any > > problems with Evolution setting up the ~/evolution directory contents with > > messed up permissions? > > > > Here's a sample of Inbox: > > -r--r--r-- 1 james staff 103 Jun 11 10:28 folder-metadata.xml > > -rw------- 1 james staff 95 Jun 11 10:28 local-metadata.xml > > -r--r--r-- 1 james staff 22371 Jun 11 10:28 mbox > > -rw------- 1 james staff 166 Jun 11 10:28 mbox.ev-summary > > -rw------- 1 james staff 10240 Jun 11 10:28 mbox.ibex.index > > -rw------- 1 james staff 1388 Jun 11 10:28 mbox.ibex.index.data > > > > It's like this in every directory, so it doesn't let me do alot of things > > related to e-mail (eg. send, recieve, read Welcome to Evolution, etc.) > > > > Just thought I'd pass this on to you and see if you had any ideas? > > The update worked fine for me. All my permissions checked out. I > haven't heard any other reports of this. > > Joe > > > _______________________________________________ > > freebsd-gnome@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" > -- > PGP Key : http://www.marcuscom.com/pgp.asc > > From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 16:08:29 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63C7F37B401 for ; Wed, 11 Jun 2003 16:08:29 -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 54B4F43F85 for ; Wed, 11 Jun 2003 16:08:28 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5BN2sTp029900; Wed, 11 Jun 2003 19:02:55 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5BN4kV8088076; Wed, 11 Jun 2003 19:04:46 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Andrew Thomson In-Reply-To: <20030611230513.GD98070@athomson.prv.au.itouchnet.net> References: <20030611163617.GA69701@comp4.ici.net> <1055349446.306.20.camel@gyros> <20030611230513.GD98070@athomson.prv.au.itouchnet.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-Dq6oeclyuy4h7zA6FiOf" Organization: MarcusCom, Inc. Message-Id: <1055372896.308.11.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 11 Jun 2003 19:08:17 -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: FreeBSD GNOME Users cc: James Earl Subject: Re: Evolution 1.4.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 23:08:29 -0000 --=-Dq6oeclyuy4h7zA6FiOf Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-06-11 at 19:05, Andrew Thomson wrote: > I to have experienced problems. >=20 > -Fresh install of 5.0-release. > -Fresh install of gnome2 port > -Fresh install of evolution >=20 > Then when I try and check my mail, "Error while Storing foler... mbox: > permission denied".. >=20 > same for me. What about your umask? Joe >=20 > -r--r--r-- 1 ajt users 103 Jun 12 08:34 folder-metadata.xml > -rw------- 1 ajt users 95 Jun 12 08:34 local-metadata.xml > -r--r--r-- 1 ajt users 22371 Jun 12 08:34 mbox > -rw------- 1 ajt users 166 Jun 12 08:34 mbox.ev-summary > -rw------- 1 ajt users 10240 Jun 12 08:34 mbox.ibex.index > -rw------- 1 ajt users 1388 Jun 12 08:34 mbox.ibex.index.data >=20 > ajt. >=20 > On Wed, Jun 11, 2003 at 04:37:26PM +0000, Joe Marcus Clarke wrote: > > On Wed, 2003-06-11 at 16:36, James Earl wrote: > > > I just installed your port of Evolution 1.4.0. Have you encountered = any=20 > > > problems with Evolution setting up the ~/evolution directory contents= with=20 > > > messed up permissions? > > >=20 > > > Here's a sample of Inbox: > > > -r--r--r-- 1 james staff 103 Jun 11 10:28 folder-metadata.xml > > > -rw------- 1 james staff 95 Jun 11 10:28 local-metadata.xml > > > -r--r--r-- 1 james staff 22371 Jun 11 10:28 mbox > > > -rw------- 1 james staff 166 Jun 11 10:28 mbox.ev-summary > > > -rw------- 1 james staff 10240 Jun 11 10:28 mbox.ibex.index > > > -rw------- 1 james staff 1388 Jun 11 10:28 mbox.ibex.index.data > > >=20 > > > It's like this in every directory, so it doesn't let me do alot of th= ings=20 > > > related to e-mail (eg. send, recieve, read Welcome to Evolution, etc.= ) > > >=20 > > > Just thought I'd pass this on to you and see if you had any ideas? > >=20 > > The update worked fine for me. All my permissions checked out. I > > haven't heard any other reports of this. > >=20 > > Joe > >=20 > > > _______________________________________________ > > > freebsd-gnome@freebsd.org mailing list > > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.o= rg" > > --=20 > > PGP Key : http://www.marcuscom.com/pgp.asc > >=20 > >=20 >=20 >=20 --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-Dq6oeclyuy4h7zA6FiOf 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+57Zgb2iPiv4Uz4cRAncfAJ9AG/eC2Bu5RWrpwaQ+Fmvbe0S43ACgomqt pIwTyE7aP78hA5jl+5j0gZc= =//yR -----END PGP SIGNATURE----- --=-Dq6oeclyuy4h7zA6FiOf-- From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 16:12:06 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2DBF37B401 for ; Wed, 11 Jun 2003 16:12:06 -0700 (PDT) Received: from mx1.au.itouchnet.net (nat2.au.itouchnet.net [144.135.23.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67FCB43F85 for ; Wed, 11 Jun 2003 16:12:05 -0700 (PDT) (envelope-from ajthomson@optushome.com.au) Received: from nobody by mx1.au.itouchnet.net with scanned_ok (Exim 3.36 #1) id 19QEl9-000JLV-00 for gnome@freebsd.org; Thu, 12 Jun 2003 09:12:03 +1000 X-TLS: TLSv1:DES-CBC3-SHA:168 athomson.prv.au.itouchnet.net -> mx1.au.itouchnet.net Received: from athomson.prv.au.itouchnet.net ([192.168.13.55]) by mx1.au.itouchnet.net with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 3.36 #1) id 19QEl8-000JLL-00; Thu, 12 Jun 2003 09:12:02 +1000 Received: from localhost ([127.0.0.1] helo=athomson.prv.au.itouchnet.net) by athomson.prv.au.itouchnet.net with esmtp (Exim 4.20) id 19QEl8-000Pdf-Hx; Thu, 12 Jun 2003 09:12:02 +1000 Received: (from ajt@localhost)h5BNC21o098558; Thu, 12 Jun 2003 09:12:02 +1000 (EST) X-Authentication-Warning: athomson.prv.au.itouchnet.net: ajt set sender to ajthomson@optushome.com.au using -f Date: Thu, 12 Jun 2003 09:12:02 +1000 From: Andrew Thomson To: Joe Marcus Clarke Message-ID: <20030611231202.GE98070@athomson.prv.au.itouchnet.net> Mail-Followup-To: Joe Marcus Clarke , James Earl , FreeBSD GNOME Users References: <20030611163617.GA69701@comp4.ici.net> <1055349446.306.20.camel@gyros> <20030611230513.GD98070@athomson.prv.au.itouchnet.net> <1055372896.308.11.camel@gyros> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1055372896.308.11.camel@gyros> User-Agent: Mutt/1.4.1i X-Checked: Scanned for any viruses and unauthorized attachments at mx1.au.itouchnet.net X-iScan-ID: 74363-1055373123-91081@mx1.au.itouchnet.net version $Name: REL_2_0_2 $ cc: FreeBSD GNOME Users cc: James Earl Subject: Re: Evolution 1.4.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 23:12:07 -0000 On Wed, Jun 11, 2003 at 07:08:17PM -0400, Joe Marcus Clarke wrote: > > What about your umask? > > Joe umask 022 ajt. > > > > > -r--r--r-- 1 ajt users 103 Jun 12 08:34 folder-metadata.xml > > -rw------- 1 ajt users 95 Jun 12 08:34 local-metadata.xml > > -r--r--r-- 1 ajt users 22371 Jun 12 08:34 mbox > > -rw------- 1 ajt users 166 Jun 12 08:34 mbox.ev-summary > > -rw------- 1 ajt users 10240 Jun 12 08:34 mbox.ibex.index > > -rw------- 1 ajt users 1388 Jun 12 08:34 mbox.ibex.index.data > > > > ajt. > > > > On Wed, Jun 11, 2003 at 04:37:26PM +0000, Joe Marcus Clarke wrote: > > > On Wed, 2003-06-11 at 16:36, James Earl wrote: > > > > I just installed your port of Evolution 1.4.0. Have you encountered any > > > > problems with Evolution setting up the ~/evolution directory contents with > > > > messed up permissions? > > > > > > > > Here's a sample of Inbox: > > > > -r--r--r-- 1 james staff 103 Jun 11 10:28 folder-metadata.xml > > > > -rw------- 1 james staff 95 Jun 11 10:28 local-metadata.xml > > > > -r--r--r-- 1 james staff 22371 Jun 11 10:28 mbox > > > > -rw------- 1 james staff 166 Jun 11 10:28 mbox.ev-summary > > > > -rw------- 1 james staff 10240 Jun 11 10:28 mbox.ibex.index > > > > -rw------- 1 james staff 1388 Jun 11 10:28 mbox.ibex.index.data > > > > > > > > It's like this in every directory, so it doesn't let me do alot of things > > > > related to e-mail (eg. send, recieve, read Welcome to Evolution, etc.) > > > > > > > > Just thought I'd pass this on to you and see if you had any ideas? > > > > > > The update worked fine for me. All my permissions checked out. I > > > haven't heard any other reports of this. > > > > > > Joe > > > > > > > _______________________________________________ > > > > freebsd-gnome@freebsd.org mailing list > > > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" > > > -- > > > PGP Key : http://www.marcuscom.com/pgp.asc > > > > > > > > > > > -- > PGP Key : http://www.marcuscom.com/pgp.asc > > From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 16:26:41 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C14E637B40F for ; Wed, 11 Jun 2003 16:26:40 -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 E5B2343FB1 for ; Wed, 11 Jun 2003 16:26:37 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5BNL5Tp014769; Wed, 11 Jun 2003 19:21:05 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5BNN1V8088305; Wed, 11 Jun 2003 19:23:01 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Andrew Thomson In-Reply-To: <20030611231202.GE98070@athomson.prv.au.itouchnet.net> References: <20030611163617.GA69701@comp4.ici.net> <1055349446.306.20.camel@gyros> <20030611230513.GD98070@athomson.prv.au.itouchnet.net> <1055372896.308.11.camel@gyros> <20030611231202.GE98070@athomson.prv.au.itouchnet.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-IbzKeNAQ13YfMwSCcbwc" Organization: MarcusCom, Inc. Message-Id: <1055373992.308.13.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 11 Jun 2003 19:26:32 -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: FreeBSD GNOME Users cc: James Earl Subject: Re: Evolution 1.4.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Jun 2003 23:26:41 -0000 --=-IbzKeNAQ13YfMwSCcbwc Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-06-11 at 19:12, Andrew Thomson wrote: > On Wed, Jun 11, 2003 at 07:08:17PM -0400, Joe Marcus Clarke wrote: > >=20 > > What about your umask? > >=20 > > Joe >=20 > umask=20 > 022 Update James' bug. http://bugzilla.ximian.com/show_bug.cgi?id=3D44541 Joe >=20 > ajt. >=20 > >=20 > > >=20 > > > -r--r--r-- 1 ajt users 103 Jun 12 08:34 folder-metadata.xml > > > -rw------- 1 ajt users 95 Jun 12 08:34 local-metadata.xml > > > -r--r--r-- 1 ajt users 22371 Jun 12 08:34 mbox > > > -rw------- 1 ajt users 166 Jun 12 08:34 mbox.ev-summary > > > -rw------- 1 ajt users 10240 Jun 12 08:34 mbox.ibex.index > > > -rw------- 1 ajt users 1388 Jun 12 08:34 mbox.ibex.index.data > > >=20 > > > ajt. > > >=20 > > > On Wed, Jun 11, 2003 at 04:37:26PM +0000, Joe Marcus Clarke wrote: > > > > On Wed, 2003-06-11 at 16:36, James Earl wrote: > > > > > I just installed your port of Evolution 1.4.0. Have you encounte= red any=20 > > > > > problems with Evolution setting up the ~/evolution directory cont= ents with=20 > > > > > messed up permissions? > > > > >=20 > > > > > Here's a sample of Inbox: > > > > > -r--r--r-- 1 james staff 103 Jun 11 10:28 folder-metadata.xm= l > > > > > -rw------- 1 james staff 95 Jun 11 10:28 local-metadata.xml > > > > > -r--r--r-- 1 james staff 22371 Jun 11 10:28 mbox > > > > > -rw------- 1 james staff 166 Jun 11 10:28 mbox.ev-summary > > > > > -rw------- 1 james staff 10240 Jun 11 10:28 mbox.ibex.index > > > > > -rw------- 1 james staff 1388 Jun 11 10:28 mbox.ibex.index.da= ta > > > > >=20 > > > > > It's like this in every directory, so it doesn't let me do alot o= f things=20 > > > > > related to e-mail (eg. send, recieve, read Welcome to Evolution, = etc.) > > > > >=20 > > > > > Just thought I'd pass this on to you and see if you had any ideas= ? > > > >=20 > > > > The update worked fine for me. All my permissions checked out. I > > > > haven't heard any other reports of this. > > > >=20 > > > > Joe > > > >=20 > > > > > _______________________________________________ > > > > > freebsd-gnome@freebsd.org mailing list > > > > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > > > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freeb= sd.org" > > > > --=20 > > > > PGP Key : http://www.marcuscom.com/pgp.asc > > > >=20 > > > >=20 > > >=20 > > >=20 > > --=20 > > PGP Key : http://www.marcuscom.com/pgp.asc > >=20 > >=20 >=20 >=20 --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-IbzKeNAQ13YfMwSCcbwc 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+57qnb2iPiv4Uz4cRAr6CAKCSCuGIyIU3Md4y/kU6D9CunWzoNwCfVbMu 4hAxEaBP45djEYnmIEQRsUw= =ToOY -----END PGP SIGNATURE----- --=-IbzKeNAQ13YfMwSCcbwc-- From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 18:01:41 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5483F37B401 for ; Wed, 11 Jun 2003 18:01:41 -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 49F9143FAF for ; Wed, 11 Jun 2003 18:01:40 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5C0u7Tp007645; Wed, 11 Jun 2003 20:56:07 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5C0vwV8089004; Wed, 11 Jun 2003 20:57:59 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Franz Klammer In-Reply-To: <1055345875.71167.52.camel@sisko.webonaut.com> References: <20030611162528.273ea7cf.piero@poprostu.pl> <1055342901.306.2.camel@gyros> <1055343506.71167.16.camel@sisko.webonaut.com> <1055343774.306.10.camel@gyros> <1055345875.71167.52.camel@sisko.webonaut.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-998JKRpuO//9G2LWrAgb" Organization: MarcusCom, Inc. Message-Id: <1055379691.343.8.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 11 Jun 2003 21:01:32 -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: freebsd-gnome@freebsd.org Subject: Re: no calendar view in new evo X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 01:01:41 -0000 --=-998JKRpuO//9G2LWrAgb Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-06-11 at 11:37, Franz Klammer wrote: > Am Mi, 2003-06-11 um 15.02 schrieb Joe Marcus Clarke: > > On Wed, 2003-06-11 at 14:58, Franz Klammer wrote: > > > Am Mi, 2003-06-11 um 14.48 schrieb Joe Marcus Clarke: > > > > On Wed, 2003-06-11 at 14:25, Piero wrote: > > > > > Hi, > > > > >=20 > > > > > After portupgrading Evo to 1.4. I cannot get in it to the calenda= r view. > > > > > Todo list shows up instead. I noticed also some problems with loc= al > > > > > chars in fonts of the left modules switching panel. Screenshot: > > > > > http://beth.poprostu.pl/~smyru/screens/no-cal-in-evo.png > > > >=20 > > > > See if downgrading to pango-1.2.2 fixes the font problem. > > > >=20 > > >=20 > > > i don't think that's necessary. remove the shortcuts and=20 > > > create them new. i had (again ;) the samle problem with > > > german letters. i guess that's an iso8859/utf-8 conversion > > > problem. also you need only rename the group title. > >=20 > > Thanks, Franz. It occurred to me afterward that if it were a pango > > problem, Piero would be seeing this in other apps. > >=20 >=20 > you mean like the problem that i have now a longer time with gnumeric?: > http://webonaut.com/temp/gnumeric-1.png >=20 > but this problem i have since my gnome-2.2/pango-1.2.2 days (if not=20 > longer...?) and _only_ with gnumeric. i always hoped with the latest > version of gnumeric that's solved.=20 >=20 > but i think this thread is - at long last - a good reason to ask :-) You maybe in luck, Franz. I think I got the German translation working. Joe >=20 > franz. >=20 > > Joe > >=20 > > >=20 > > > franz. > > >=20 > > > > Joe > > > >=20 > > > > >=20 > > > > > BTW: After the upgrade with the recently commits and uninstalling= the > > > > > old obsolete Gnome stuff (unneeded by the new Evo) I am noticing = a huge > > > > > increase in the speed and responsiveness. Congratulations for you= r job > > > > > and thanks a lot. > > > > >=20 > > > > > --- > > > > > Piero > > > > > piero@poprostu.pl > > > > >=20 > > > > > _______________________________________________ > > > > > freebsd-gnome@freebsd.org mailing list > > > > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > > > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freeb= sd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-998JKRpuO//9G2LWrAgb 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+59Drb2iPiv4Uz4cRAvZ/AJ9Z4+IcE9YVh6g0OOyd45qKuyUQNwCeMF02 1/yD4wI6Ppz3VBKczrVg8y4= =4FVs -----END PGP SIGNATURE----- --=-998JKRpuO//9G2LWrAgb-- From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 20:27:05 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C745237B401 for ; Wed, 11 Jun 2003 20:27:05 -0700 (PDT) Received: from fepZ.post.tele.dk (fepz.post.tele.dk [195.41.46.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF17343FAF for ; Wed, 11 Jun 2003 20:27:03 -0700 (PDT) (envelope-from l.j@pc.dk) Received: from [80.199.24.225] by fepZ.post.tele.dk (InterMail vM.5.01.05.17 201-253-122-126-117-20021021) with SMTP id <20030612032702.TOAZ9105.fepZ.post.tele.dk@[80.199.24.225]> for ; Thu, 12 Jun 2003 05:27:02 +0200 From: Lasse Vibe Jespersen To: freebsd-gnome@FreeBSD.org Content-Type: text/plain Organization: Message-Id: <1055387821.8594.0.camel@flamma.localnet.lan> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.2.2 Date: 12 Jun 2003 05:17:02 +0200 Content-Transfer-Encoding: 7bit Subject: freebsd gnome2.x themes X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 03:27:06 -0000 hi, i realize you are likely not the right person to ask, but it's been rather hard for me to find gnome themes for freebsd, do you have any ideas? thanks in advance, sincerely, lasse jespersen From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 20:35:10 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 349B437B401 for ; Wed, 11 Jun 2003 20:35:10 -0700 (PDT) Received: from lakemtao05.cox.net (lakemtao05.cox.net [68.1.17.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3693C43FA3 for ; Wed, 11 Jun 2003 20:35:09 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from sysinfo.mezzweb.com ([68.103.32.11]) by lakemtao05.cox.net ESMTP <20030612033507.MMYP28938.lakemtao05.cox.net@sysinfo.mezzweb.com>; Wed, 11 Jun 2003 23:35:07 -0400 Date: Wed, 11 Jun 2003 22:20:42 -0500 To: Lasse Vibe Jespersen Content-Type: text/plain; charset=utf-8; format=flowed References: <1055387821.8594.0.camel@flamma.localnet.lan> From: Jeremy Messenger MIME-Version: 1.0 Message-ID: In-Reply-To: <1055387821.8594.0.camel@flamma.localnet.lan> User-Agent: Opera7.11/Linux M2 build 406 cc: freebsd-gnome@freebsd.org Subject: Re: freebsd gnome2.x themes X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 03:35:10 -0000 On 12 Jun 2003 05:17:02 +0200, Lasse Vibe Jespersen wrote: > hi, > > i realize you are likely not the right person to ask, but it's been > rather hard for me to find gnome themes for freebsd, do you have any > ideas? What do you mean by for FreeBSD? Any themes will work on Linux, FreeBSD and other unices. Anyway, check... -> http://www.freebsd.org/gnome/docs/faq2.html#q7 Cheers, Mezz > thanks in advance, > > sincerely, > > lasse jespersen -- bsdforums.org 's moderator, mezz. From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 21:18:40 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D86337B401 for ; Wed, 11 Jun 2003 21:18:40 -0700 (PDT) Received: from shockwave.systems.pipex.net (shockwave.systems.pipex.net [62.241.160.9]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99CB043F3F for ; Wed, 11 Jun 2003 21:18:39 -0700 (PDT) (envelope-from stacey@vickiandstacey.com) Received: from [192.168.1.8] (81-86-129-77.dsl.pipex.com [81.86.129.77]) by shockwave.systems.pipex.net (Postfix) with ESMTP id 1D9C91600008E; Thu, 12 Jun 2003 05:18:36 +0100 (BST) From: Stacey Roberts To: Joe Marcus Clarke In-Reply-To: <1055379691.343.8.camel@gyros> References: <20030611162528.273ea7cf.piero@poprostu.pl> <1055342901.306.2.camel@gyros> <1055343506.71167.16.camel@sisko.webonaut.com> <1055343774.306.10.camel@gyros> <1055345875.71167.52.camel@sisko.webonaut.com> <1055379691.343.8.camel@gyros> Content-Type: text/plain Message-Id: <1055391522.61093.1.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 04:18:43 +0000 Content-Transfer-Encoding: 7bit cc: FreeBSD Gnome Subject: Re: no calendar view in new evo X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: stacey@vickiandstacey.com List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 04:18:40 -0000 Hello All, On Thu, 2003-06-12 at 01:01, Joe Marcus Clarke wrote: > On Wed, 2003-06-11 at 11:37, Franz Klammer wrote: > > Am Mi, 2003-06-11 um 15.02 schrieb Joe Marcus Clarke: > > > On Wed, 2003-06-11 at 14:58, Franz Klammer wrote: > > > > Am Mi, 2003-06-11 um 14.48 schrieb Joe Marcus Clarke: > > > > > On Wed, 2003-06-11 at 14:25, Piero wrote: > > > > > > Hi, > > > > > > > > > > > > After portupgrading Evo to 1.4. I cannot get in it to the calendar view. > > > > > > Todo list shows up instead. I noticed also some problems with local > > > > > > chars in fonts of the left modules switching panel. Screenshot: > > > > > > http://beth.poprostu.pl/~smyru/screens/no-cal-in-evo.png > > > > > > > > > > See if downgrading to pango-1.2.2 fixes the font problem. > > > > > > > > > Just a "me too" as far as the problem with the calendar view in Evolution 1.4. Has anyone actually found a fix for this as yet? Regards, Stacey > > > > i don't think that's necessary. remove the shortcuts and > > > > create them new. i had (again ;) the samle problem with > > > > german letters. i guess that's an iso8859/utf-8 conversion > > > > problem. also you need only rename the group title. > > > > > > Thanks, Franz. It occurred to me afterward that if it were a pango > > > problem, Piero would be seeing this in other apps. > > > > > > > you mean like the problem that i have now a longer time with gnumeric?: > > http://webonaut.com/temp/gnumeric-1.png > > > > but this problem i have since my gnome-2.2/pango-1.2.2 days (if not > > longer...?) and _only_ with gnumeric. i always hoped with the latest > > version of gnumeric that's solved. > > > > but i think this thread is - at long last - a good reason to ask :-) > > You maybe in luck, Franz. I think I got the German translation working. > > Joe > > > > > franz. > > > > > Joe > > > > > > > > > > > franz. > > > > > > > > > Joe > > > > > > > > > > > > > > > > > BTW: After the upgrade with the recently commits and uninstalling the > > > > > > old obsolete Gnome stuff (unneeded by the new Evo) I am noticing a huge > > > > > > increase in the speed and responsiveness. Congratulations for your job > > > > > > and thanks a lot. > > > > > > > > > > > > --- > > > > > > Piero > > > > > > piero@poprostu.pl > > > > > > > > > > > > _______________________________________________ > > > > > > freebsd-gnome@freebsd.org mailing list > > > > > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > > > > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- Stacey Roberts B.Sc (HONS) Computer Science Web: www.vickiandstacey.com From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 21:40:47 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBDFA37B401 for ; Wed, 11 Jun 2003 21:40:47 -0700 (PDT) Received: from pengo.systems.pipex.net (pengo.systems.pipex.net [62.241.160.193]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59E8E43FA3 for ; Wed, 11 Jun 2003 21:40:47 -0700 (PDT) (envelope-from stacey@vickiandstacey.com) Received: from [192.168.1.8] (81-86-129-77.dsl.pipex.com [81.86.129.77]) by pengo.systems.pipex.net (Postfix) with ESMTP id 3B54E4C0010C for ; Thu, 12 Jun 2003 05:40:45 +0100 (BST) From: Stacey Roberts To: FreeBSD Gnome Content-Type: text/plain Message-Id: <1055392852.61093.8.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 04:40:53 +0000 Content-Transfer-Encoding: 7bit Subject: Evolution-1.4.0 vs Gnome-2 Apps menu listing X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: stacey@vickiandstacey.com List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 04:40:48 -0000 Hello, Ever since I've portupgraded to Evolution-1.4.0, it no longer appears in the "Office" section of the Applications menu listing (next the Gnumeric & AbiWord). How do I get it back? For me to get into Evolution-1.4.0, I had to run the cmd: /usr/X11R6/bin/evolution from the "Actions" menu. Thanks for the time. Regards, Stacey -- Stacey Roberts B.Sc (HONS) Computer Science Web: www.vickiandstacey.com From owner-freebsd-gnome@FreeBSD.ORG Wed Jun 11 22:39:14 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47F4637B401 for ; Wed, 11 Jun 2003 22:39:14 -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 451FD43F75 for ; Wed, 11 Jun 2003 22:39:11 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5C5XaTp022525; Thu, 12 Jun 2003 01:33:37 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5C5ZUV8001131; Thu, 12 Jun 2003 01:35:31 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: stacey@vickiandstacey.com In-Reply-To: <1055392852.61093.8.camel@localhost> References: <1055392852.61093.8.camel@localhost> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-worqS+yfXRUottbe9AD1" Organization: MarcusCom, Inc. Message-Id: <1055396344.324.0.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 01:39:05 -0400 X-Spam-Status: No, hits=-8.9 required=5.0 tests=BAYES_01,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: FreeBSD Gnome Subject: Re: Evolution-1.4.0 vs Gnome-2 Apps menu listing X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 05:39:14 -0000 --=-worqS+yfXRUottbe9AD1 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-06-12 at 00:40, Stacey Roberts wrote: > Hello, > Ever since I've portupgraded to Evolution-1.4.0, it no longer > appears in the "Office" section of the Applications menu listing (next > the Gnumeric & AbiWord). How do I get it back? Restart gnome-panel, or logout, and log back in. It shows up just fine for me. Joe >=20 > For me to get into Evolution-1.4.0, I had to run the cmd: > /usr/X11R6/bin/evolution from the "Actions" menu. >=20 > Thanks for the time. >=20 > Regards, >=20 > Stacey --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-worqS+yfXRUottbe9AD1 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+6BH4b2iPiv4Uz4cRAuWkAJ4oVydEfHL3Dw3Ovfp44smqmh7yFACffbDV l8ejBo1Ozm/fld8OY8+pDFU= =IXkV -----END PGP SIGNATURE----- --=-worqS+yfXRUottbe9AD1-- From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 00:08:14 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6967A37B401 for ; Thu, 12 Jun 2003 00:08:14 -0700 (PDT) Received: from erols.com (208-59-124-178.s178.tnt1.frdr.md.dialup.rcn.com [208.59.124.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3774A43F93 for ; Thu, 12 Jun 2003 00:08:11 -0700 (PDT) (envelope-from momerath@erols.com) Received: from erols.com (localhost [127.0.0.1]) by momerath.erols.com (8.12.9/8.12.9) with ESMTP id h5C0XWVn037713 for ; Wed, 11 Jun 2003 20:33:34 -0400 (EDT) (envelope-from momerath@erols.com) Received: (from momerath@localhost) by erols.com (8.12.9/8.12.9/Submit) id h5C0XVxh037712 for gnome@freebsd.org; Wed, 11 Jun 2003 20:33:31 -0400 (EDT) Date: Wed, 11 Jun 2003 20:33:31 -0400 From: sle To: gnome@freebsd.org Message-ID: <20030611203330.A34368@erols.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i Subject: Xft X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 07:08:14 -0000 Appears to be broken. Fbsd 4.8-S, XF86 4.2. --- Script started on Wed Jun 11 20:08:13 2003 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel checking whether build environment is sane... yes checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether gmake sets $(MAKE)... yes checking for gcc... cc checking for C compiler default output... a.out checking whether the C compiler works... yes checking whether we are cross compiling... no checking for suffix of executables... checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether cc accepts -g... yes checking for cc option to accept ANSI C... none needed checking for style of include used by gmake... GNU checking dependency style of cc... gcc checking build system type... i386-portbld-freebsd4.8 checking host system type... i386-portbld-freebsd4.8 checking for ld used by GCC... /usr/libexec/elf/ld checking if the linker (/usr/libexec/elf/ld) is GNU ld... yes checking for /usr/libexec/elf/ld option to reload object files... -r checking for BSD-compatible nm... /usr/bin/nm -B checking for a sed that does not truncate output... /usr/bin/sed checking whether ln -s works... yes checking how to recognise dependent libraries... pass_all checking command to parse /usr/bin/nm -B output... ok checking how to run the C preprocessor... cc -E checking for egrep... grep -E checking for ANSI C header files... yes checking for sys/types.h... yes checking for sys/stat.h... yes checking for stdlib.h... yes checking for string.h... yes checking for memory.h... yes checking for strings.h... yes checking for inttypes.h... yes checking for stdint.h... no checking for unistd.h... yes checking dlfcn.h usability... yes checking dlfcn.h presence... yes checking for dlfcn.h... yes checking for ranlib... ranlib checking for strip... strip checking for objdir... .libs checking for cc option to produce PIC... -fPIC checking if cc PIC flag -fPIC works... yes checking if cc static flag -static works... yes checking if cc supports -c -o file.o... yes checking if cc supports -c -o file.lo... yes checking if cc supports -fno-rtti -fno-exceptions... yes checking whether the linker (/usr/libexec/elf/ld) supports shared libraries... yes checking how to hardcode library paths into programs... immediate checking whether stripping libraries is possible... yes checking dynamic linker characteristics... freebsd4.8 ld.so checking if libtool supports shared libraries... yes checking whether to build shared libraries... yes checking whether to build static libraries... yes checking whether -lc should be explicitly linked in... yes creating libtool checking for pkg-config... /usr/local/bin/pkg-config checking for xrender >= 0.8.2... Package xrender was not found in the pkg-config search path. Perhaps you should add the directory containing `xrender.pc' to the PKG_CONFIG_PATH environment variable No package 'xrender' found checking for xrender >= 0... Package xrender was not found in the pkg-config search path. Perhaps you should add the directory containing `xrender.pc' to the PKG_CONFIG_PATH environment variable No package 'xrender' found checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include checking X11/extensions/Xrender.h usability... yes checking X11/extensions/Xrender.h presence... yes checking for X11/extensions/Xrender.h... yes checking for XRenderQueryVersion... yes checking for freetype-config... freetype-config checking for fontconfig >= 1.0.1... yes checking FONTCONFIG_CFLAGS... -I/usr/X11R6/include checking FONTCONFIG_LIBS... -L/usr/X11R6/lib -lfontconfig configure: creating ./config.status config.status: creating Makefile config.status: creating xft.pc config.status: creating xft-config config.status: creating Xft.3 config.status: creating config.h config.status: executing depfiles commands ===> Building for Xft-2.1.2 gmake all-am gmake[1]: Entering directory `/usr/ports/x11-fonts/Xft/work/xft-2.1.2' source='xftcolor.c' object='xftcolor.lo' libtool=yes \ depfile='.deps/xftcolor.Plo' tmpdepfile='.deps/xftcolor.TPlo' \ depmode=gcc /bin/sh ./depcomp \ <...snip...> source='xftfreetype.c' object='xftfreetype.lo' libtool=yes \ depfile='.deps/xftfreetype.Plo' tmpdepfile='.deps/xftfreetype.TPlo' \ depmode=gcc /bin/sh ./depcomp \ /bin/sh ./libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I. -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -O -pipe -c -o xftfreetype.lo `test -f 'xftfreetype.c' || echo './'`xftfreetype.c cc -DHAVE_CONFIG_H -I. -I. -I. -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -O -pipe -c xftfreetype.c -Wp,-MD,.deps/xftfreetype.TPlo -fPIC -o .libs/xftfreetype.o xftfreetype.c: In function `XftFontOpenInfo': xftfreetype.c:705: `PictStandardARGB32' undeclared (first use in this function) xftfreetype.c:705: (Each undeclared identifier is reported only once xftfreetype.c:705: for each function it appears in.) xftfreetype.c:705: warning: assignment makes pointer from integer without a cast xftfreetype.c:708: `PictStandardA8' undeclared (first use in this function) xftfreetype.c:708: warning: assignment makes pointer from integer without a cast xftfreetype.c:714: `PictStandardA1' undeclared (first use in this function) xftfreetype.c:714: warning: assignment makes pointer from integer without a cast gmake[1]: *** [xftfreetype.lo] Error 1 gmake[1]: Leaving directory `/usr/ports/x11-fonts/Xft/work/xft-2.1.2' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/x11-fonts/Xft. Script done on Wed Jun 11 20:09:27 2003 From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 00:45:57 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A33937B401 for ; Thu, 12 Jun 2003 00:45:57 -0700 (PDT) Received: from sisko.webonaut.com (sisko.webonaut.com [212.41.243.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id C957443FD7 for ; Thu, 12 Jun 2003 00:45:55 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from [127.0.0.1] (localhost.webonaut.com [127.0.0.1]) by sisko.webonaut.com (Postfix) with ESMTP id 25D3328434; Thu, 12 Jun 2003 09:46:07 +0200 (CEST) From: Franz Klammer To: sle In-Reply-To: <20030611203330.A34368@erols.com> References: <20030611203330.A34368@erols.com> Content-Type: text/plain Message-Id: <1055403966.71167.93.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 07:46:06 +0000 Content-Transfer-Encoding: 7bit cc: FreeBSD-gnome Subject: Re: Xft X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 07:45:57 -0000 this question is already answered but unfortunately the mail is not in the list archive until the next update: ----- snip ----- You need XFree86-4.3.0 to build Xft-2.1.2. If you don't want to upgrade X, don't upgrade Xft. Joe ----- snap ----- franz. Am Do, 2003-06-12 um 00.33 schrieb sle: > Appears to be broken. Fbsd 4.8-S, XF86 4.2. > > --- > Script started on Wed Jun 11 20:08:13 2003 > checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel > checking whether build environment is sane... yes > checking for gawk... no > checking for mawk... no > checking for nawk... nawk > checking whether gmake sets $(MAKE)... yes > checking for gcc... cc > checking for C compiler default output... a.out > checking whether the C compiler works... yes > checking whether we are cross compiling... no > checking for suffix of executables... > checking for suffix of object files... o > checking whether we are using the GNU C compiler... yes > checking whether cc accepts -g... yes > checking for cc option to accept ANSI C... none needed > checking for style of include used by gmake... GNU > checking dependency style of cc... gcc > checking build system type... i386-portbld-freebsd4.8 > checking host system type... i386-portbld-freebsd4.8 > checking for ld used by GCC... /usr/libexec/elf/ld > checking if the linker (/usr/libexec/elf/ld) is GNU ld... yes > checking for /usr/libexec/elf/ld option to reload object files... -r > checking for BSD-compatible nm... /usr/bin/nm -B > checking for a sed that does not truncate output... /usr/bin/sed > checking whether ln -s works... yes > checking how to recognise dependent libraries... pass_all > checking command to parse /usr/bin/nm -B output... ok > checking how to run the C preprocessor... cc -E > checking for egrep... grep -E > checking for ANSI C header files... yes > checking for sys/types.h... yes > checking for sys/stat.h... yes > checking for stdlib.h... yes > checking for string.h... yes > checking for memory.h... yes > checking for strings.h... yes > checking for inttypes.h... yes > checking for stdint.h... no > checking for unistd.h... yes > checking dlfcn.h usability... yes > checking dlfcn.h presence... yes > checking for dlfcn.h... yes > checking for ranlib... ranlib > checking for strip... strip > checking for objdir... .libs > checking for cc option to produce PIC... -fPIC > checking if cc PIC flag -fPIC works... yes > checking if cc static flag -static works... yes > checking if cc supports -c -o file.o... yes > checking if cc supports -c -o file.lo... yes > checking if cc supports -fno-rtti -fno-exceptions... yes > checking whether the linker (/usr/libexec/elf/ld) supports shared libraries... yes > checking how to hardcode library paths into programs... immediate > checking whether stripping libraries is possible... yes > checking dynamic linker characteristics... freebsd4.8 ld.so > checking if libtool supports shared libraries... yes > checking whether to build shared libraries... yes > checking whether to build static libraries... yes > checking whether -lc should be explicitly linked in... yes > creating libtool > checking for pkg-config... /usr/local/bin/pkg-config > checking for xrender >= 0.8.2... Package xrender was not found in the pkg-config search path. > Perhaps you should add the directory containing `xrender.pc' > to the PKG_CONFIG_PATH environment variable > No package 'xrender' found > checking for xrender >= 0... Package xrender was not found in the pkg-config search path. > Perhaps you should add the directory containing `xrender.pc' > to the PKG_CONFIG_PATH environment variable > No package 'xrender' found > checking for X... libraries /usr/X11R6/lib, headers /usr/X11R6/include > checking X11/extensions/Xrender.h usability... yes > checking X11/extensions/Xrender.h presence... yes > checking for X11/extensions/Xrender.h... yes > checking for XRenderQueryVersion... yes > checking for freetype-config... freetype-config > checking for fontconfig >= 1.0.1... yes > checking FONTCONFIG_CFLAGS... -I/usr/X11R6/include > checking FONTCONFIG_LIBS... -L/usr/X11R6/lib -lfontconfig > configure: creating ./config.status > config.status: creating Makefile > config.status: creating xft.pc > config.status: creating xft-config > config.status: creating Xft.3 > config.status: creating config.h > config.status: executing depfiles commands > ===> Building for Xft-2.1.2 > gmake all-am > gmake[1]: Entering directory `/usr/ports/x11-fonts/Xft/work/xft-2.1.2' > source='xftcolor.c' object='xftcolor.lo' libtool=yes \ > depfile='.deps/xftcolor.Plo' tmpdepfile='.deps/xftcolor.TPlo' \ > depmode=gcc /bin/sh ./depcomp \ > > <...snip...> > > source='xftfreetype.c' object='xftfreetype.lo' libtool=yes \ > depfile='.deps/xftfreetype.Plo' tmpdepfile='.deps/xftfreetype.TPlo' \ > depmode=gcc /bin/sh ./depcomp \ > /bin/sh ./libtool --mode=compile cc -DHAVE_CONFIG_H -I. -I. -I. -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -O -pipe -c -o xftfreetype.lo `test -f 'xftfreetype.c' || echo './'`xftfreetype.c > cc -DHAVE_CONFIG_H -I. -I. -I. -I/usr/X11R6/include -I/usr/X11R6/include -I/usr/local/include/freetype2 -I/usr/local/include -I/usr/X11R6/include -O -pipe -c xftfreetype.c -Wp,-MD,.deps/xftfreetype.TPlo -fPIC -o .libs/xftfreetype.o > xftfreetype.c: In function `XftFontOpenInfo': > xftfreetype.c:705: `PictStandardARGB32' undeclared (first use in this function) > xftfreetype.c:705: (Each undeclared identifier is reported only once > xftfreetype.c:705: for each function it appears in.) > xftfreetype.c:705: warning: assignment makes pointer from integer without a cast > xftfreetype.c:708: `PictStandardA8' undeclared (first use in this function) > xftfreetype.c:708: warning: assignment makes pointer from integer without a cast > xftfreetype.c:714: `PictStandardA1' undeclared (first use in this function) > xftfreetype.c:714: warning: assignment makes pointer from integer without a cast > gmake[1]: *** [xftfreetype.lo] Error 1 > gmake[1]: Leaving directory `/usr/ports/x11-fonts/Xft/work/xft-2.1.2' > gmake: *** [all] Error 2 > *** Error code 2 > > Stop in /usr/ports/x11-fonts/Xft. > > Script done on Wed Jun 11 20:09:27 2003 > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 00:51:12 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9E3937B401 for ; Thu, 12 Jun 2003 00:51:12 -0700 (PDT) Received: from sisko.webonaut.com (sisko.webonaut.com [212.41.243.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2339543FCB for ; Thu, 12 Jun 2003 00:51:12 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from [127.0.0.1] (localhost.webonaut.com [127.0.0.1]) by sisko.webonaut.com (Postfix) with ESMTP id A7C1828434; Thu, 12 Jun 2003 09:51:24 +0200 (CEST) From: Franz Klammer To: Joe Marcus Clarke In-Reply-To: <1055379691.343.8.camel@gyros> References: <20030611162528.273ea7cf.piero@poprostu.pl> <1055342901.306.2.camel@gyros> <1055343506.71167.16.camel@sisko.webonaut.com> <1055343774.306.10.camel@gyros> <1055345875.71167.52.camel@sisko.webonaut.com> <1055379691.343.8.camel@gyros> Content-Type: text/plain Message-Id: <1055404284.71167.99.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 07:51:24 +0000 Content-Transfer-Encoding: 7bit cc: freebsd-gnome@freebsd.org Subject: Re: no calendar view in new evo X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 07:51:13 -0000 Am Do, 2003-06-12 um 01.01 schrieb Joe Marcus Clarke: > On Wed, 2003-06-11 at 11:37, Franz Klammer wrote: > > Am Mi, 2003-06-11 um 15.02 schrieb Joe Marcus Clarke: > > > On Wed, 2003-06-11 at 14:58, Franz Klammer wrote: > > > > Am Mi, 2003-06-11 um 14.48 schrieb Joe Marcus Clarke: > > > > > On Wed, 2003-06-11 at 14:25, Piero wrote: > > > > > > Hi, > > > > > > > > > > > > After portupgrading Evo to 1.4. I cannot get in it to the calendar view. > > > > > > Todo list shows up instead. I noticed also some problems with local > > > > > > chars in fonts of the left modules switching panel. Screenshot: > > > > > > http://beth.poprostu.pl/~smyru/screens/no-cal-in-evo.png > > > > > > > > > > See if downgrading to pango-1.2.2 fixes the font problem. > > > > > > > > > > > > > i don't think that's necessary. remove the shortcuts and > > > > create them new. i had (again ;) the samle problem with > > > > german letters. i guess that's an iso8859/utf-8 conversion > > > > problem. also you need only rename the group title. > > > > > > Thanks, Franz. It occurred to me afterward that if it were a pango > > > problem, Piero would be seeing this in other apps. > > > > > > > you mean like the problem that i have now a longer time with gnumeric?: > > http://webonaut.com/temp/gnumeric-1.png > > > > but this problem i have since my gnome-2.2/pango-1.2.2 days (if not > > longer...?) and _only_ with gnumeric. i always hoped with the latest > > version of gnumeric that's solved. > > > > but i think this thread is - at long last - a good reason to ask :-) > > You maybe in luck, Franz. I think I got the German translation working. > Yes, the translation works. Thanks! franz > Joe > -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 01:42:48 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7428D37B401 for ; Thu, 12 Jun 2003 01:42:48 -0700 (PDT) Received: from ocortes.net1.nerim.net (ocortes.net1.nerim.net [213.41.136.105]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96D2343FAF for ; Thu, 12 Jun 2003 01:42:47 -0700 (PDT) (envelope-from olive@deep-ocean.org) Received: from [192.168.0.23] (syrenna.deep-ocean.local [192.168.0.23]) by ocortes.net1.nerim.net (Postfix) with ESMTP id C8DDF5EF01 for ; Thu, 12 Jun 2003 10:37:37 +0200 (CEST) From: Olivier Cortes To: freebsd-gnome@freebsd.org Content-Type: text/plain Message-Id: <1055407042.3278.30.camel@syrenna.deep-ocean.local> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 08:37:23 +0000 Content-Transfer-Encoding: 7bit Subject: nautilus & gthumb crash on 5.1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 08:42:48 -0000 Hi, i run 5.1 on my notebook (siemens amilo el). yesterday it was running 5.1-RC1 with nautilus2 gotten from "pkg_add -r" and gthumb2 compiled with portupgrade, everything was ok. yesterday night i cvsuped, compiled and installed world & kernel. nautilus2 crashes *everytime* with "Bus Error" and gthumb2 whith segfault. i tried recompiling nautilus2, gthumb2, gnomevfs2, glib2 : no luck. i use gnome2. not all packages are in sync whith ports tree (oldest come from "pkg_add -r" packages-5.1-current on ftp.freebsd.org). galeon2, evolution-1.4 are running fine. gnome-panel crashes sometimes at login, but comes back short after. my kernel is custom. KERNEL, dmesg.boot, make.conf & backtrace can be found at: http://www.deep-ocean.net/~olive/freebsd/syrenna/ for now nothing is compiled with debug, it is my "production" machine. tell me if you need more info. i can't evaluate if the bug is gnome-related or CURRENT-related. regards, Olivier From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 03:02:39 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A362E37B404 for ; Thu, 12 Jun 2003 03:02:37 -0700 (PDT) Received: from alef.poprostu.pl (alef.poprostu.pl [195.116.86.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31BC743FBF for ; Thu, 12 Jun 2003 03:02:31 -0700 (PDT) (envelope-from piero@poprostu.pl) Received: from beth.poprostu.pl (beth.poprostu.pl [213.25.228.183]) by alef.poprostu.pl (8.12.6/8.12.6) with SMTP id h5CAUCak008016; Thu, 12 Jun 2003 12:30:14 +0200 (CEST) (envelope-from piero@poprostu.pl) Date: Thu, 12 Jun 2003 12:01:10 +0200 From: Piero To: stacey@vickiandstacey.com, freebsd-gnome@freebsd.org Message-Id: <20030612120110.1fb55d03.piero@poprostu.pl> In-Reply-To: <1055391522.61093.1.camel@localhost> References: <20030611162528.273ea7cf.piero@poprostu.pl> <1055342901.306.2.camel@gyros> <1055343506.71167.16.camel@sisko.webonaut.com> <1055343774.306.10.camel@gyros> <1055345875.71167.52.camel@sisko.webonaut.com> <1055379691.343.8.camel@gyros> <1055391522.61093.1.camel@localhost> Organization: Poprostu X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Subject: Re: no calendar view in new evo X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 10:02:39 -0000 W li=B6cie otrzymanym 12 Jun 2003 04:18:43 +0000 od Stacey Roberts : > Hello All, >=20 > On Thu, 2003-06-12 at 01:01, Joe Marcus Clarke wrote: > > On Wed, 2003-06-11 at 11:37, Franz Klammer wrote: > > > Am Mi, 2003-06-11 um 15.02 schrieb Joe Marcus Clarke: > > > > On Wed, 2003-06-11 at 14:58, Franz Klammer wrote: > > > > > Am Mi, 2003-06-11 um 14.48 schrieb Joe Marcus Clarke: > > > > > > On Wed, 2003-06-11 at 14:25, Piero wrote: > > > > > > > Hi, > > > > > > >=20 > > > > > > > After portupgrading Evo to 1.4. I cannot get in it to the > > > > > > > calendar view. Todo list shows up instead. I noticed also > > > > > > > some problems with local chars in fonts of the left > > > > > > > modules switching panel. Screenshot: > > > > > > > http://beth.poprostu.pl/~smyru/screens/no-cal-in-evo.png > > > > > >=20 > > > > > > See if downgrading to pango-1.2.2 fixes the font problem. > > > > > >=20 > > > > >=20 >=20 > Just a "me too" as far as the problem with the calendar view in > Evolution 1.4. >=20 > Has anyone actually found a fix for this as yet? The calendar actually is there. It is just hidden. Look at the doubled edge between the shortcuts on the left and TODO list and drug the right one of the doubled edges, this will make the calendar appear. --- Piero piero@poprostu.pl From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 05:49:26 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3446637B401; Thu, 12 Jun 2003 05:49:26 -0700 (PDT) Received: from orange.csi.cam.ac.uk (orange.csi.cam.ac.uk [131.111.8.77]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AD7C43FA3; Thu, 12 Jun 2003 05:49:25 -0700 (PDT) (envelope-from computer.officer@divinity.cam.ac.uk) Received: from localhost ([127.0.0.1] helo=dave.divinity.cam.ac.uk) by orange.csi.cam.ac.uk with esmtp (Exim 4.12) id 19QRW8-0001dt-00; Thu, 12 Jun 2003 13:49:24 +0100 From: Dave Goode Organization: Faculty of Divinity (University of Cambridge) To: gnome@FreeBSD.org Date: Thu, 12 Jun 2003 13:50:17 +0100 User-Agent: KMail/1.5 MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200306121350.17514.computer.officer@divinity.cam.ac.uk> cc: ports@FreeBSD.org Subject: FreeBSD Port: evolution-1.4.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 12:49:26 -0000 Joe, I get the following. How did you manage to build this version? Is there a knob to compile without the pilot stuff (which I don't want anyway)? Also, note the disparity between versions reported in the configure output and the error message at the end. ------------------------------------- ===> Patching for evolution-1.4.0 ===> Applying FreeBSD patches for evolution-1.4.0 ===> evolution-1.4.0 depends on executable: gmake - found ===> evolution-1.4.0 depends on executable: bison - found ===> evolution-1.4.0 depends on file: /usr/local/bin/sed_inplace - found ===> evolution-1.4.0 depends on shared library: soup-2.0.0 - found ===> evolution-1.4.0 depends on shared library: gtkhtml-3.0.2 - found ===> evolution-1.4.0 depends on shared library: gpilotdconduit.2 - not found ===> Verifying install for gpilotdconduit.2 in /usr/ports/palm/gnomepilot2 ===> gnomepilot2-2.0.9 is marked as broken: gnomepilot2 wants to use the GNOME 2 desktop, but you wish to use the GNOME 1 desktop.. *** Error code 1 Stop in /usr/ports/palm/gnomepilot2. *** Error code 1 Stop in /usr/ports/mail/evolution. ** Command failed [exit code 1]: /usr/bin/script -qa /tmp/portupgrade63590.0 make ** Fix the problem and try again. ** The following packages were not installed or upgraded (*:skipped / !:failed) ! mail/evolution (evolution-1.2.4) (unknown build error) ------------------------------------- Dave -- Dave Goode, Computer Officer, Faculty of Divinity University of Cambridge, West Road, Cambridge, CB3 9BS Telephone: office (7)63006, home (7)40641 [OpenPGP key: 0x67D20768] From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 06:06:37 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4029737B401; Thu, 12 Jun 2003 06:06:37 -0700 (PDT) Received: from inception.quiecom.com (inception.quiecom.com [216.127.82.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51FBB43FDF; Thu, 12 Jun 2003 06:06:34 -0700 (PDT) (envelope-from fish@fish-mail.com) X-ClientAddr: 208.44.60.32 Received: from [10.1.130.14] (internet-user.jwt.com [208.44.60.32]) (authenticated) by inception.quiecom.com (8.11.6/8.11.6) with ESMTP id h5CCvCA27806; Thu, 12 Jun 2003 08:57:13 -0400 From: Fish To: Dave Goode In-Reply-To: <200306121350.17514.computer.officer@divinity.cam.ac.uk> References: <200306121350.17514.computer.officer@divinity.cam.ac.uk> Content-Type: text/plain Message-Id: <1055422957.648.1.camel@current> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 13:02:37 +0000 Content-Transfer-Encoding: 7bit X-MailScanner-Information: Please contact the ISP for more information X-MailScanner: Found to be clean X-MailScanner-SpamCheck: not spam, SpamAssassin (timed out) cc: gnome@freebsd.org cc: ports@freebsd.org Subject: Re: FreeBSD Port: evolution-1.4.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 13:06:37 -0000 On Thu, 2003-06-12 at 12:50, Dave Goode wrote: > Joe, > > I get the following. How did you manage to build this version? Is there a > knob to compile without the pilot stuff (which I don't want anyway)? > Also, note the disparity between versions reported in the configure > output and the error message at the end. > > ------------------------------------- > ===> Patching for evolution-1.4.0 > ===> Applying FreeBSD patches for evolution-1.4.0 > ===> evolution-1.4.0 depends on executable: gmake - found > ===> evolution-1.4.0 depends on executable: bison - found > ===> evolution-1.4.0 depends on file: /usr/local/bin/sed_inplace - found > ===> evolution-1.4.0 depends on shared library: soup-2.0.0 - found > ===> evolution-1.4.0 depends on shared library: gtkhtml-3.0.2 - found > ===> evolution-1.4.0 depends on shared library: gpilotdconduit.2 - not > found > ===> Verifying install for gpilotdconduit.2 in > /usr/ports/palm/gnomepilot2 > ===> gnomepilot2-2.0.9 is marked as broken: gnomepilot2 wants to use the > GNOME 2 desktop, but you wish to use the GNOME 1 desktop.. > *** Error code 1 > > Stop in /usr/ports/palm/gnomepilot2. > *** Error code 1 > > Stop in /usr/ports/mail/evolution. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade63590.0 make > ** Fix the problem and try again. > ** The following packages were not installed or upgraded (*:skipped / > !:failed) > ! mail/evolution (evolution-1.2.4) (unknown build error) > ------------------------------------- > > Dave make -DWITHOUT_PILOT is what you want. Heh, you almost said it in your question. Hope that helps. Fish From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 06:26:16 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 544F037B407 for ; Thu, 12 Jun 2003 06:26:16 -0700 (PDT) Received: from alef.poprostu.pl (alef.poprostu.pl [195.116.86.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2E2643F85 for ; Thu, 12 Jun 2003 06:26:14 -0700 (PDT) (envelope-from piero@poprostu.pl) Received: from beth.poprostu.pl (beth.poprostu.pl [213.25.228.183]) by alef.poprostu.pl (8.12.6/8.12.6) with SMTP id h5CDrxak009694 for ; Thu, 12 Jun 2003 15:54:02 +0200 (CEST) (envelope-from piero@poprostu.pl) Date: Thu, 12 Jun 2003 15:24:21 +0200 From: Piero To: freebsd-gnome@freebsd.org Message-Id: <20030612152421.7cff1a49.piero@poprostu.pl> In-Reply-To: <200306121350.17514.computer.officer@divinity.cam.ac.uk> References: <200306121350.17514.computer.officer@divinity.cam.ac.uk> Organization: Poprostu X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Subject: Re: FreeBSD Port: evolution-1.4.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 13:26:16 -0000 W li=B6cie otrzymanym Thu, 12 Jun 2003 13:50:17 +0100 od Dave Goode : > I get the following. How did you manage to build this version? Is > there a knob to compile without the pilot stuff (which I don't want > anyway)? Also, note the disparity between versions reported in the > configure output and the error message at the end. It's a good practice to read the Makefile before building port. From the evo Makefile: .if !defined(WITHOUT_PILOT) LIB_DEPENDS+=3D gpilotdconduit.2:${PORTSDIR}/palm/gnomepilot2 .endif You can make this pemanent if you add line: WITHOUT_PILOT=3Dyes to your /etc/make.conf (remember it may affect other ports too - but if you don't need it anyway, that's OK), otherwise just=20 # make -DWITHOUT_PILOT install --- Piero piero@poprostu.pl From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 06:36:49 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4E9937B401; Thu, 12 Jun 2003 06:36:49 -0700 (PDT) Received: from sisko.webonaut.com (sisko.webonaut.com [212.41.243.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6A3E43FDD; Thu, 12 Jun 2003 06:36:48 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from [127.0.0.1] (localhost.webonaut.com [127.0.0.1]) by sisko.webonaut.com (Postfix) with ESMTP id ACAD028434; Thu, 12 Jun 2003 15:37:03 +0200 (CEST) From: Franz Klammer To: Dave Goode In-Reply-To: <200306121350.17514.computer.officer@divinity.cam.ac.uk> References: <200306121350.17514.computer.officer@divinity.cam.ac.uk> Content-Type: text/plain Message-Id: <1055425023.71167.116.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 13:37:03 +0000 Content-Transfer-Encoding: 7bit cc: FreeBSD-gnome cc: ports@FreeBSD.org Subject: Re: FreeBSD Port: evolution-1.4.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 13:36:50 -0000 Am Do, 2003-06-12 um 12.50 schrieb Dave Goode: > Joe, > > I get the following. How did you manage to build this version? Is there a > knob to compile without the pilot stuff (which I don't want anyway)? > Also, note the disparity between versions reported in the configure > output and the error message at the end. > another solution if you want resp. need palm-support: if installed, deinstall the old gnome1-versions of gnomepilot-conduits and gnomepilot then add WITH_GNOME_DESKTOP=2 to /etc/make.conf now you should be able to install evolution with palm-support. franz. > ------------------------------------- > ===> Patching for evolution-1.4.0 > ===> Applying FreeBSD patches for evolution-1.4.0 > ===> evolution-1.4.0 depends on executable: gmake - found > ===> evolution-1.4.0 depends on executable: bison - found > ===> evolution-1.4.0 depends on file: /usr/local/bin/sed_inplace - found > ===> evolution-1.4.0 depends on shared library: soup-2.0.0 - found > ===> evolution-1.4.0 depends on shared library: gtkhtml-3.0.2 - found > ===> evolution-1.4.0 depends on shared library: gpilotdconduit.2 - not > found > ===> Verifying install for gpilotdconduit.2 in > /usr/ports/palm/gnomepilot2 > ===> gnomepilot2-2.0.9 is marked as broken: gnomepilot2 wants to use the > GNOME 2 desktop, but you wish to use the GNOME 1 desktop.. > *** Error code 1 > > Stop in /usr/ports/palm/gnomepilot2. > *** Error code 1 > > Stop in /usr/ports/mail/evolution. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade63590.0 make > ** Fix the problem and try again. > ** The following packages were not installed or upgraded (*:skipped / > !:failed) > ! mail/evolution (evolution-1.2.4) (unknown build error) > ------------------------------------- > > Dave -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 06:41:24 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F92937B401 for ; Thu, 12 Jun 2003 06:41:24 -0700 (PDT) Received: from harrier.mail.pas.earthlink.net (harrier.mail.pas.earthlink.net [207.217.120.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFFFF43FCB for ; Thu, 12 Jun 2003 06:41:23 -0700 (PDT) (envelope-from mvh@ix.netcom.com) Received: from lsanca1-ar6-4-62-203-134.lsanca1.elnk.dsl.genuity.net ([4.62.203.134] helo=netcom1.netcom.com) by harrier.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 19QSKR-0002F9-00 for gnome@freebsd.org; Thu, 12 Jun 2003 06:41:23 -0700 Received: by netcom1.netcom.com (Postfix, from userid 1000) id 77EDE530E; Thu, 12 Jun 2003 06:41:22 -0700 (PDT) From: Mike Harding To: gnome@freebsd.org Message-Id: <20030612134122.77EDE530E@netcom1.netcom.com> Date: Thu, 12 Jun 2003 06:41:22 -0700 (PDT) Subject: evolution desktop/launcher data a bit messed up X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 13:41:24 -0000 I have this in /usr/X11R6/share/gnome/applications from a recent (last night) install of evolution 1.4: evolution.desktop:66:Exec=evolution-1.3 ./share/gnome/applications/evolution.desktop:67:Icon=evolution-1.3.png needless to say, this doesn't work, as there is no evolution-1.3 binary or png... - Mike H. From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 07:08:23 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1B7B37B405 for ; Thu, 12 Jun 2003 07:08:23 -0700 (PDT) Received: from sisko.webonaut.com (sisko.webonaut.com [212.41.243.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8E9043FD7 for ; Thu, 12 Jun 2003 07:08:21 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from [127.0.0.1] (localhost.webonaut.com [127.0.0.1]) by sisko.webonaut.com (Postfix) with ESMTP id CA3D128434; Thu, 12 Jun 2003 16:08:37 +0200 (CEST) From: Franz Klammer To: Mike Harding In-Reply-To: <20030612134122.77EDE530E@netcom1.netcom.com> References: <20030612134122.77EDE530E@netcom1.netcom.com> Content-Type: multipart/mixed; boundary="=-HgZF7ZBUaAGJNa17SwnN" Message-Id: <1055426916.71167.125.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 14:08:36 +0000 X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: FreeBSD-gnome Subject: Re: evolution desktop/launcher data a bit messed up X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 14:08:24 -0000 --=-HgZF7ZBUaAGJNa17SwnN Content-Type: text/plain Content-Transfer-Encoding: 7bit Am Do, 2003-06-12 um 13.41 schrieb Mike Harding: > I have this in /usr/X11R6/share/gnome/applications from a recent (last > night) install of evolution 1.4: > > evolution.desktop:66:Exec=evolution-1.3 > ./share/gnome/applications/evolution.desktop:67:Icon=evolution-1.3.png > > needless to say, this doesn't work, as there is no evolution-1.3 > binary or png... > it seems that the patched file evolution.desktop.in will not be used to generate evolution.desktop. attached a (unofficial) patch. franz. > - Mike H. > > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com --=-HgZF7ZBUaAGJNa17SwnN-- From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 07:15:39 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DCEB37B401 for ; Thu, 12 Jun 2003 07:15:39 -0700 (PDT) Received: from sisko.webonaut.com (sisko.webonaut.com [212.41.243.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82C1343F93 for ; Thu, 12 Jun 2003 07:15:38 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from [127.0.0.1] (localhost.webonaut.com [127.0.0.1]) by sisko.webonaut.com (Postfix) with ESMTP id 467DD28434; Thu, 12 Jun 2003 16:15:53 +0200 (CEST) From: Franz Klammer To: Mike Harding In-Reply-To: <1055426916.71167.125.camel@sisko.webonaut.com> References: <20030612134122.77EDE530E@netcom1.netcom.com> <1055426916.71167.125.camel@sisko.webonaut.com> Content-Type: text/plain Message-Id: <1055427352.71167.131.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 14:15:52 +0000 Content-Transfer-Encoding: 7bit cc: FreeBSD-gnome Subject: Re: evolution desktop/launcher data a bit messed up X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 14:15:39 -0000 Am Do, 2003-06-12 um 14.08 schrieb Franz Klammer: > Am Do, 2003-06-12 um 13.41 schrieb Mike Harding: > > I have this in /usr/X11R6/share/gnome/applications from a recent (last > > night) install of evolution 1.4: > > > > evolution.desktop:66:Exec=evolution-1.3 > > ./share/gnome/applications/evolution.desktop:67:Icon=evolution-1.3.png > > > > needless to say, this doesn't work, as there is no evolution-1.3 > > binary or png... > > > > it seems that the patched file evolution.desktop.in will > not be used to generate evolution.desktop. > > attached a (unofficial) patch. > i'm sure i've attached the file! where is the problem: evolution or mailmain? this is the second time that a attachment didn't reach the list. ok! take it from here: http://webonaut.com/temp/patch-data_evolution.desktop franz. > franz. > > > - Mike H. > > > > _______________________________________________ > > freebsd-gnome@freebsd.org mailing list > > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 08:37:10 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F75937B40A for ; Thu, 12 Jun 2003 08:37:10 -0700 (PDT) Received: from mail.gmx.net (imap.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 3236043FE3 for ; Thu, 12 Jun 2003 08:37:09 -0700 (PDT) (envelope-from blueeskimo@gmx.net) Received: (qmail 30244 invoked by uid 65534); 12 Jun 2003 15:37:07 -0000 Received: from dsl-cust-203.openweb.ca (EHLO [64.39.186.203]) (64.39.186.203) by mail.gmx.net (mp012) with SMTP; 12 Jun 2003 17:37:07 +0200 From: Adam To: freebsd-gnome@freebsd.org In-Reply-To: <200306121350.17514.computer.officer@divinity.cam.ac.uk> References: <200306121350.17514.computer.officer@divinity.cam.ac.uk> Content-Type: text/plain Message-Id: <1055432225.32534.12.camel@jake> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 11:37:06 -0400 Content-Transfer-Encoding: 7bit Subject: Re: FreeBSD Port: evolution-1.4.0 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 15:37:10 -0000 On Thu, 2003-06-12 at 08:50, Dave Goode wrote: > I get the following. How did you manage to build this version? Is there a > knob to compile without the pilot stuff (which I don't want anyway)? > Also, note the disparity between versions reported in the configure > output and the error message at the end. > > ------------------------------------- > ===> Patching for evolution-1.4.0 > ===> Applying FreeBSD patches for evolution-1.4.0 > ===> evolution-1.4.0 depends on executable: gmake - found > ===> evolution-1.4.0 depends on executable: bison - found > ===> evolution-1.4.0 depends on file: /usr/local/bin/sed_inplace - found > ===> evolution-1.4.0 depends on shared library: soup-2.0.0 - found > ===> evolution-1.4.0 depends on shared library: gtkhtml-3.0.2 - found > ===> evolution-1.4.0 depends on shared library: gpilotdconduit.2 - not > found > ===> Verifying install for gpilotdconduit.2 in > /usr/ports/palm/gnomepilot2 > ===> gnomepilot2-2.0.9 is marked as broken: gnomepilot2 wants to use the > GNOME 2 desktop, but you wish to use the GNOME 1 desktop.. > *** Error code 1 > > Stop in /usr/ports/palm/gnomepilot2. > *** Error code 1 > > Stop in /usr/ports/mail/evolution. > ** Command failed [exit code 1]: /usr/bin/script -qa > /tmp/portupgrade63590.0 make > ** Fix the problem and try again. > ** The following packages were not installed or upgraded (*:skipped / > !:failed) > ! mail/evolution (evolution-1.2.4) (unknown build error) > ------------------------------------- -$ make -V GNOME_DESKTOP_VERSION 2 To install Evo 1.4, the output of this command needs to be either nothing or 2. I'd be willing to bet that the output on your machine is 1. I'd also be willing to bet that the cause is an old GNOME1 core component (probably libpanel). Try forcibly deinstalling the component and anything that depends on it, then install Evo 1.4, then reinstall the apps that were dependent on the component (they shouldn't be dependent anymore). Hope this helps. -- Adam From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 08:40:13 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C58BC37B401 for ; Thu, 12 Jun 2003 08:40:13 -0700 (PDT) Received: from mailout08.sul.t-online.com (mailout08.sul.t-online.com [194.25.134.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id E482D43FEC for ; Thu, 12 Jun 2003 08:40:12 -0700 (PDT) (envelope-from Alexander@Leidinger.net) Received: from fwd03.aul.t-online.de by mailout08.sul.t-online.com with smtp id 19QUBQ-0004FT-02; Thu, 12 Jun 2003 17:40:12 +0200 Received: from Andro-Beta.Leidinger.net (E6MY80ZvZeX2ufnDyuOEhjNMxYvleBSdh9MLS-JrC93Q5GB+jov0rY@[217.83.20.176]) by fmrl03.sul.t-online.com with esmtp id 19QUBB-0TDJ9U0; Thu, 12 Jun 2003 17:39:57 +0200 Received: from Magelan.Leidinger.net (Magelan [192.168.1.1]) h5CFduoM068591 for ; Thu, 12 Jun 2003 17:39:56 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magelan.Leidinger.net (netchild@localhost [127.0.0.1]) by Magelan.Leidinger.net (8.12.9/8.12.9) with SMTP id h5CFduXP068121 for ; Thu, 12 Jun 2003 17:39:56 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Thu, 12 Jun 2003 17:39:55 +0200 From: Alexander Leidinger To: freebsd-gnome@freebsd.org Message-Id: <20030612173955.6f7c391b.Alexander@Leidinger.net> In-Reply-To: <1055427352.71167.131.camel@sisko.webonaut.com> References: <20030612134122.77EDE530E@netcom1.netcom.com> <1055426916.71167.125.camel@sisko.webonaut.com> <1055427352.71167.131.camel@sisko.webonaut.com> X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Seen: false X-ID: E6MY80ZvZeX2ufnDyuOEhjNMxYvleBSdh9MLS-JrC93Q5GB+jov0rY@t-dialin.net Subject: Re: evolution desktop/launcher data a bit messed up X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 15:40:14 -0000 On 12 Jun 2003 14:15:52 +0000 Franz Klammer wrote: > > attached a (unofficial) patch. > > > > i'm sure i've attached the file! > > where is the problem: evolution or mailmain? > this is the second time that a attachment didn't > reach the list. I think binary attachments get stripped per postmaster-policy. Try to send patches as text/plain. Bye, Alexander. -- Yes, I've heard of "decaf." What's your point? http://www.Leidinger.net Alexander @ Leidinger.net GPG fingerprint = C518 BC70 E67F 143F BE91 3365 79E2 9C60 B006 3FE7 From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 10:40:15 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C53937B401 for ; Thu, 12 Jun 2003 10:40:15 -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 EDF0843FCB for ; Thu, 12 Jun 2003 10:40:13 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5CHYcTp011121; Thu, 12 Jun 2003 13:34:38 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5CHaUV8006968; Thu, 12 Jun 2003 13:36:30 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Mike Harding In-Reply-To: <20030612134122.77EDE530E@netcom1.netcom.com> References: <20030612134122.77EDE530E@netcom1.netcom.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-XgiBoDwRakh/Ie2u3Bqr" Organization: MarcusCom, Inc. Message-Id: <1055439607.319.3.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 13:40:07 -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: FreeBSD GNOME Users Subject: Re: evolution desktop/launcher data a bit messed up X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 17:40:15 -0000 --=-XgiBoDwRakh/Ie2u3Bqr Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-06-12 at 09:41, Mike Harding wrote: > I have this in /usr/X11R6/share/gnome/applications from a recent (last > night) install of evolution 1.4: >=20 > evolution.desktop:66:Exec=3Devolution-1.3 > ./share/gnome/applications/evolution.desktop:67:Icon=3Devolution-1.3.png >=20 > needless to say, this doesn't work, as there is no evolution-1.3 > binary or png... I patched this in the port the same night I updated to 1.4.0. I thought I did it fast enough so a PORTREVISION bump wasn't necessary. However, if you cvsup your ports again, and do a forced update of Evo, this will be fixed. It's probably easier to just edit the .desktop file by hand, though. Joe >=20 > - Mike H. >=20 > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-XgiBoDwRakh/Ie2u3Bqr 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+6Lr3b2iPiv4Uz4cRAn2zAJ9HF6GhrFaOFbiumtwihCbRG7nQOgCbBI+S jmbTIv/rjQa51txXO2DfkFE= =MAhB -----END PGP SIGNATURE----- --=-XgiBoDwRakh/Ie2u3Bqr-- From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 11:45:10 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A80B837B401 for ; Thu, 12 Jun 2003 11:45:10 -0700 (PDT) Received: from colossus.systems.pipex.net (colossus.systems.pipex.net [62.241.160.73]) by mx1.FreeBSD.org (Postfix) with ESMTP id D022A43F93 for ; Thu, 12 Jun 2003 11:45:09 -0700 (PDT) (envelope-from stacey@vickiandstacey.com) Received: from [192.168.1.8] (81-86-129-77.dsl.pipex.com [81.86.129.77]) by colossus.systems.pipex.net (Postfix) with ESMTP id 37F8816000118; Thu, 12 Jun 2003 19:45:07 +0100 (BST) From: Stacey Roberts To: Joe Marcus Clarke In-Reply-To: <1055396344.324.0.camel@gyros> References: <1055392852.61093.8.camel@localhost> <1055396344.324.0.camel@gyros> Content-Type: text/plain Message-Id: <1055443509.89335.3.camel@localhost> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 19:45:10 +0100 Content-Transfer-Encoding: 7bit cc: FreeBSD Gnome Subject: Re: Evolution-1.4.0 vs Gnome-2 Apps menu listing X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: stacey@vickiandstacey.com List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 18:45:10 -0000 Hello, On Thu, 2003-06-12 at 06:39, Joe Marcus Clarke wrote: > On Thu, 2003-06-12 at 00:40, Stacey Roberts wrote: > > Hello, > > Ever since I've portupgraded to Evolution-1.4.0, it no longer > > appears in the "Office" section of the Applications menu listing (next > > the Gnumeric & AbiWord). How do I get it back? > > Restart gnome-panel, or logout, and log back in. It shows up just fine > for me. > I've logged off of X, logged out of the console, logged back in and whilst the "name" Evolution appears under the Office sub-menu of Applications, there is no Evolution icon next to the name. Also, clicking on the "word" Evolution in the Office menu returns an error: Can't launch entry. Details: Failed to execute child process "evolution-1.3" (No such file or directory) There is an "OK" button there that I click and the error box goes away. I can only launch Evolution from Actions > Run > (Tyeed in /usr/X11R6/bin/evolution) Also, that problem with "startx" taking almost 3 minutes to launch Gnome-2 :-( Let me know what other information I can get to you, please. Regards, Stacey > Joe > > > > > For me to get into Evolution-1.4.0, I had to run the cmd: > > /usr/X11R6/bin/evolution from the "Actions" menu. > > > > Thanks for the time. > > > > Regards, > > > > Stacey -- Stacey Roberts B.Sc (HONS) Computer Science Web: www.vickiandstacey.com From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 11:48:05 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85F8237B401 for ; Thu, 12 Jun 2003 11:48:03 -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 AB20A43FBD for ; Thu, 12 Jun 2003 11:48:02 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5CIkL8V026428; Thu, 12 Jun 2003 14:46:22 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5CIiKV8007446; Thu, 12 Jun 2003 14:44:20 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: stacey@vickiandstacey.com In-Reply-To: <1055443509.89335.3.camel@localhost> References: <1055392852.61093.8.camel@localhost> <1055396344.324.0.camel@gyros> <1055443509.89335.3.camel@localhost> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-+QL1SzZCOvxeJImZ/x1J" Organization: MarcusCom, Inc. Message-Id: <1055443678.319.29.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 14:47:58 -0400 X-Spam-Status: No, hits=-8.9 required=5.0 tests=BAYES_01,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: FreeBSD Gnome Subject: Re: Evolution-1.4.0 vs Gnome-2 Apps menu listing X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 18:48:05 -0000 --=-+QL1SzZCOvxeJImZ/x1J Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-06-12 at 14:45, Stacey Roberts wrote: > Hello, > =20 > On Thu, 2003-06-12 at 06:39, Joe Marcus Clarke wrote:=20 > > On Thu, 2003-06-12 at 00:40, Stacey Roberts wrote: > > > Hello, > > > Ever since I've portupgraded to Evolution-1.4.0, it no longer > > > appears in the "Office" section of the Applications menu listing (nex= t > > > the Gnumeric & AbiWord). How do I get it back? > >=20 > > Restart gnome-panel, or logout, and log back in. It shows up just fine > > for me. > >=20 > I've logged off of X, logged out of the console, logged back in and > whilst the "name" Evolution appears under the Office sub-menu of > Applications, there is no Evolution icon next to the name. >=20 > Also, clicking on the "word" Evolution in the Office menu returns an > error: >=20 > Can't launch entry. >=20 > Details: Failed to execute child process "evolution-1.3" (No such file > or directory) This was fixed the night of the Evo 1.4 upgrade. You can either edit the evolution.desktop file manually, or do a forced update of Evo. Joe >=20 > There is an "OK" button there that I click and the error box goes away. > I can only launch Evolution from Actions > Run > (Tyeed in > /usr/X11R6/bin/evolution) >=20 > Also, that problem with "startx" taking almost 3 minutes to launch > Gnome-2 :-( >=20 > Let me know what other information I can get to you, please. >=20 > Regards, >=20 > Stacey >=20 > > Joe > >=20 > > >=20 > > > For me to get into Evolution-1.4.0, I had to run the cmd: > > > /usr/X11R6/bin/evolution from the "Actions" menu. > > >=20 > > > Thanks for the time. > > >=20 > > > Regards, > > >=20 > > > Stacey --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-+QL1SzZCOvxeJImZ/x1J 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+6Mreb2iPiv4Uz4cRAuPzAJsEpONWLk9nKLRkVqgk5KXYFFfFDgCgpwDR PS5CL9E2jY7z1t1DUY93zKs= =Qn3B -----END PGP SIGNATURE----- --=-+QL1SzZCOvxeJImZ/x1J-- From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 11:53:31 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18FA737B401 for ; Thu, 12 Jun 2003 11:53:31 -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 2E31043FB1 for ; Thu, 12 Jun 2003 11:53:30 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5CIpl8V000849; Thu, 12 Jun 2003 14:51:47 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5CInjV8007488; Thu, 12 Jun 2003 14:49:45 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Olivier Cortes In-Reply-To: <1055407042.3278.30.camel@syrenna.deep-ocean.local> References: <1055407042.3278.30.camel@syrenna.deep-ocean.local> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-eh4rrn1qKLdX6ZREjrXF" Organization: MarcusCom, Inc. Message-Id: <1055444003.319.32.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 14:53:23 -0400 X-Spam-Status: No, hits=-8.9 required=5.0 tests=BAYES_01,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: freebsd-gnome@freebsd.org Subject: Re: nautilus & gthumb crash on 5.1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 18:53:31 -0000 --=-eh4rrn1qKLdX6ZREjrXF Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-06-12 at 04:37, Olivier Cortes wrote: > Hi, >=20 > i run 5.1 on my notebook (siemens amilo el). yesterday it was running > 5.1-RC1 with nautilus2 gotten from "pkg_add -r" and gthumb2 compiled > with portupgrade, everything was ok. > yesterday night i cvsuped, compiled and installed world & kernel. > nautilus2 crashes *everytime* with "Bus Error" and gthumb2 whith > segfault. >=20 > i tried recompiling nautilus2, gthumb2, gnomevfs2, glib2 : no luck. > i use gnome2. not all packages are in sync whith ports tree (oldest come > from "pkg_add -r" packages-5.1-current on ftp.freebsd.org). > galeon2, evolution-1.4 are running fine. gnome-panel crashes sometimes > at login, but comes back short after. >=20 > my kernel is custom. KERNEL, dmesg.boot, make.conf & backtrace can be > found at: > http://www.deep-ocean.net/~olive/freebsd/syrenna/ >=20 > for now nothing is compiled with debug, it is my "production" machine. > tell me if you need more info. i can't evaluate if the bug is > gnome-related or CURRENT-related. No one else is experiencing these problems to my knowledge. Without debugs enabled, these backtraces are not useful. Can you please rebuild with debug symbols, then resend the backtraces? Thanks. Joe >=20 > regards, >=20 > Olivier >=20 > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-eh4rrn1qKLdX6ZREjrXF 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+6Mwjb2iPiv4Uz4cRAraGAKCMfLNq7lWaz8IlNBqicTla/kk4DACgmLKC RSjAA5ECeZ5CE+BkQlJNCV4= =byjL -----END PGP SIGNATURE----- --=-eh4rrn1qKLdX6ZREjrXF-- From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 16:25:50 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0674437B401 for ; Thu, 12 Jun 2003 16:25:50 -0700 (PDT) Received: from grebe.mail.pas.earthlink.net (grebe.mail.pas.earthlink.net [207.217.120.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id A86E743F93 for ; Thu, 12 Jun 2003 16:25:49 -0700 (PDT) (envelope-from mvh@ix.netcom.com) Received: from lsanca1-ar6-4-62-203-134.lsanca1.elnk.dsl.genuity.net ([4.62.203.134] helo=netcom1.netcom.com) by grebe.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 19QbRy-0003Og-00 for gnome@freebsd.org; Thu, 12 Jun 2003 16:25:46 -0700 Received: by netcom1.netcom.com (Postfix, from userid 1000) id CA3A95331; Thu, 12 Jun 2003 16:25:45 -0700 (PDT) From: Mike Harding To: gnome@freebsd.org Message-Id: <20030612232545.CA3A95331@netcom1.netcom.com> Date: Thu, 12 Jun 2003 16:25:45 -0700 (PDT) Subject: Evo date time - o' lordy, not agin X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 23:25:50 -0000 I am getting my mail +7 hours in evolution 1.4, or displayed in GMT, which is confusing to me for some reason... - Mike H. From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 16:38:59 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83A6E37B401 for ; Thu, 12 Jun 2003 16:38:59 -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 82A0D43F75 for ; Thu, 12 Jun 2003 16:38:58 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5CNXNTp029259; Thu, 12 Jun 2003 19:33:24 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5CNZFV8009626; Thu, 12 Jun 2003 19:35:15 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Mike Harding In-Reply-To: <20030612232545.CA3A95331@netcom1.netcom.com> References: <20030612232545.CA3A95331@netcom1.netcom.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-bKORV3ly/Eqjelbr9DrE" Organization: MarcusCom, Inc. Message-Id: <1055461134.326.0.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 19:38: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: FreeBSD GNOME Users Subject: Re: Evo date time - o' lordy, not agin X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 23:38:59 -0000 --=-bKORV3ly/Eqjelbr9DrE Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-06-12 at 19:25, Mike Harding wrote: > I am getting my mail +7 hours in evolution 1.4, or displayed in GMT, > which is confusing to me for some reason... Dates look good to me. I'm seeing this mail from you in PDT (which I assume is correct). Joe >=20 > - Mike H. >=20 > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-bKORV3ly/Eqjelbr9DrE 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+6Q8Ob2iPiv4Uz4cRAlSfAKCJx1Gi6c414De01pAdYHZod2wdmQCgjEu2 KW42PRYOvr6e7MIjQkDfhCk= =dxWi -----END PGP SIGNATURE----- --=-bKORV3ly/Eqjelbr9DrE-- From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 16:59:09 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8412537B401 for ; Thu, 12 Jun 2003 16:59:09 -0700 (PDT) Received: from postal3.es.net (postal3.es.net [198.128.3.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB1FE43FD7 for ; Thu, 12 Jun 2003 16:59:08 -0700 (PDT) (envelope-from oberman@es.net) Received: from ptavv.es.net ([198.128.4.29]) by postal3.es.net (Postal Node 3) with ESMTP (SSL) id MUA74016; Thu, 12 Jun 2003 16:59:08 -0700 Received: from ptavv (localhost [127.0.0.1]) by ptavv.es.net (Tachyon Server) with ESMTP id 272975D04; Thu, 12 Jun 2003 16:59:07 -0700 (PDT) To: Joe Marcus Clarke In-Reply-To: Message from Joe Marcus Clarke of "12 Jun 2003 19:38:55 EDT." <1055461134.326.0.camel@gyros> Date: Thu, 12 Jun 2003 16:59:07 -0700 From: "Kevin Oberman" Message-Id: <20030612235907.272975D04@ptavv.es.net> cc: FreeBSD GNOME Users Subject: Re: Evo date time - o' lordy, not agin X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Jun 2003 23:59:09 -0000 I'm seeing the same thing here. All the dates are +9 from here. If it's relevant, this system is running with the hardware clock set tolocal time (/etc/wall_cmos_clock is present). Just a bit annoying, but Evo is only my backup mail system, so I was not worrying too much about it. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 19:24:05 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4BDAD37B401 for ; Thu, 12 Jun 2003 19:24:05 -0700 (PDT) Received: from harrier.mail.pas.earthlink.net (harrier.mail.pas.earthlink.net [207.217.120.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA09343F3F for ; Thu, 12 Jun 2003 19:24:04 -0700 (PDT) (envelope-from mvh@ix.netcom.com) Received: from lsanca1-ar6-4-62-200-048.lsanca1.elnk.dsl.genuity.net ([4.62.200.48] helo=netcom1.netcom.com) by harrier.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 19QeEU-0007Xx-00; Thu, 12 Jun 2003 19:24:02 -0700 Received: by netcom1.netcom.com (Postfix, from userid 1000) id 0D9125301; Thu, 12 Jun 2003 19:24:02 -0700 (PDT) From: Mike Harding To: oberman@es.net In-reply-to: <20030612235907.272975D04@ptavv.es.net> (oberman@es.net) References: <20030612235907.272975D04@ptavv.es.net> Message-Id: <20030613022402.0D9125301@netcom1.netcom.com> Date: Thu, 12 Jun 2003 19:24:02 -0700 (PDT) cc: gnome@freebsd.org Subject: Re: Evo date time - o' lordy, not agin X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 02:24:05 -0000 I'm also running wall clock as this machine is dual-boot... I have bad memories of this time offset, which had been patched at one point. X-Original-To: mvh@localhost Cc: Mike Harding , FreeBSD GNOME Users Date: Thu, 12 Jun 2003 16:59:07 -0700 From: "Kevin Oberman" X-Spam-Status: No, hits=-5.6 required=5.0 tests=AWL,BAYES_10,IN_REP_TO version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) I'm seeing the same thing here. All the dates are +9 from here. If it's relevant, this system is running with the hardware clock set tolocal time (/etc/wall_cmos_clock is present). Just a bit annoying, but Evo is only my backup mail system, so I was not worrying too much about it. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 19:30:15 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A68337B401 for ; Thu, 12 Jun 2003 19:30:15 -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 984C443F93 for ; Thu, 12 Jun 2003 19:30:14 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5D2OaTp003111; Thu, 12 Jun 2003 22:24:37 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5D2QQV8010727; Thu, 12 Jun 2003 22:26:26 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Mike Harding In-Reply-To: <20030613022402.0D9125301@netcom1.netcom.com> References: <20030612235907.272975D04@ptavv.es.net> <20030613022402.0D9125301@netcom1.netcom.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-uZw8qncBUhKiMzMRVmcM" Organization: MarcusCom, Inc. Message-Id: <1055471405.326.12.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 12 Jun 2003 22:30:06 -0400 X-Spam-Status: No, hits=-8.9 required=5.0 tests=BAYES_01,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: FreeBSD GNOME Users Subject: Re: Evo date time - o' lordy, not agin X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 02:30:15 -0000 --=-uZw8qncBUhKiMzMRVmcM Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-06-12 at 22:24, Mike Harding wrote: > I'm also running wall clock as this machine is dual-boot... I, too, run wall clock, and both my Evo 1.4 machines send and receive mail with the correct offset (EDT =3D=3D GMT -0400). I don't know why your= s would be different. I looked through gconf-editor for some hidden settings, but I didn't find anything. >=20 > I have bad memories of this time offset, which had been patched at one > point. The patch is still in there, and things have been working for me. What is the output of date on your machine? Joe >=20 > X-Original-To: mvh@localhost > Cc: Mike Harding , > FreeBSD GNOME Users > Date: Thu, 12 Jun 2003 16:59:07 -0700 > From: "Kevin Oberman" > X-Spam-Status: No, hits=3D-5.6 required=3D5.0 > tests=3DAWL,BAYES_10,IN_REP_TO > version=3D2.55 > X-Spam-Level:=20 > X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) >=20 > I'm seeing the same thing here. All the dates are +9 from here. If > it's relevant, this system is running with the hardware clock set > tolocal time (/etc/wall_cmos_clock is present). Just a bit annoying, > but Evo is only my backup mail system, so I was not worrying too much > about it. > --=20 > R. Kevin Oberman, Network Engineer > Energy Sciences Network (ESnet) > Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) > E-mail: oberman@es.net Phone: +1 510 486-8634 --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-uZw8qncBUhKiMzMRVmcM 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+6Tctb2iPiv4Uz4cRApxBAJ92zSA1+0dh8oTdHQdE35VSXGIbKACfQd67 KOZdVrPgzRtgzRmZ7vgWz5A= =6CIj -----END PGP SIGNATURE----- --=-uZw8qncBUhKiMzMRVmcM-- From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 19:35:58 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3244537B401 for ; Thu, 12 Jun 2003 19:35:58 -0700 (PDT) Received: from grebe.mail.pas.earthlink.net (grebe.mail.pas.earthlink.net [207.217.120.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id A557C43F93 for ; Thu, 12 Jun 2003 19:35:57 -0700 (PDT) (envelope-from mvh@ix.netcom.com) Received: from lsanca1-ar6-4-62-200-048.lsanca1.elnk.dsl.genuity.net ([4.62.200.48] helo=netcom1.netcom.com) by grebe.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 19QePy-0005zt-00; Thu, 12 Jun 2003 19:35:54 -0700 Received: by netcom1.netcom.com (Postfix, from userid 1000) id 7979D531C; Thu, 12 Jun 2003 19:35:51 -0700 (PDT) From: Mike Harding To: marcus@marcuscom.com In-reply-to: <1055471405.326.12.camel@gyros> (message from Joe Marcus Clarke on 12 Jun 2003 22:30:06 -0400) References: <20030612235907.272975D04@ptavv.es.net> <1055471405.326.12.camel@gyros> Message-Id: <20030613023551.7979D531C@netcom1.netcom.com> Date: Thu, 12 Jun 2003 19:35:51 -0700 (PDT) cc: gnome@freebsd.org Subject: Re: Evo date time - o' lordy, not agin X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 02:35:58 -0000 Date is spot on: bash-2.05b$ date Thu Jun 12 19:35:00 PDT 2003 Note that I sent my previous mail via emacs, so that may be why the time was correct. I'll send again via evolution once it's recompiled. - Mike H. X-Original-To: mvh@localhost From: Joe Marcus Clarke Cc: oberman@es.net, FreeBSD GNOME Users Organization: MarcusCom, Inc. Date: 12 Jun 2003 22:30:06 -0400 X-Spam-Status: No, hits=-23.4 required=5.0 tests=AWL,BAYES_01,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES, USER_AGENT_XIMIAN autolearn=ham version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) --=-uZw8qncBUhKiMzMRVmcM Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-06-12 at 22:24, Mike Harding wrote: > I'm also running wall clock as this machine is dual-boot... I, too, run wall clock, and both my Evo 1.4 machines send and receive mail with the correct offset (EDT =3D=3D GMT -0400). I don't know why your= s would be different. I looked through gconf-editor for some hidden settings, but I didn't find anything. >=20 > I have bad memories of this time offset, which had been patched at one > point. The patch is still in there, and things have been working for me. What is the output of date on your machine? Joe >=20 > X-Original-To: mvh@localhost > Cc: Mike Harding , > FreeBSD GNOME Users > Date: Thu, 12 Jun 2003 16:59:07 -0700 > From: "Kevin Oberman" > X-Spam-Status: No, hits=3D-5.6 required=3D5.0 > tests=3DAWL,BAYES_10,IN_REP_TO > version=3D2.55 > X-Spam-Level:=20 > X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) >=20 > I'm seeing the same thing here. All the dates are +9 from here. If > it's relevant, this system is running with the hardware clock set > tolocal time (/etc/wall_cmos_clock is present). Just a bit annoying, > but Evo is only my backup mail system, so I was not worrying too much > about it. > --=20 > R. Kevin Oberman, Network Engineer > Energy Sciences Network (ESnet) > Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) > E-mail: oberman@es.net Phone: +1 510 486-8634 --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-uZw8qncBUhKiMzMRVmcM 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+6Tctb2iPiv4Uz4cRApxBAJ92zSA1+0dh8oTdHQdE35VSXGIbKACfQd67 KOZdVrPgzRtgzRmZ7vgWz5A= =6CIj -----END PGP SIGNATURE----- --=-uZw8qncBUhKiMzMRVmcM-- From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 19:42:39 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9675437B401; Thu, 12 Jun 2003 19:42:39 -0700 (PDT) Received: from mail.halplant.com (ip68-98-167-210.nv.nv.cox.net [68.98.167.210]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6E3643F85; Thu, 12 Jun 2003 19:42:38 -0700 (PDT) (envelope-from A.J.Caines@halplant.com) Received: by mail.halplant.com (Postfix, from userid 1001) id 6AEC6E4; Thu, 12 Jun 2003 22:42:37 -0400 (EDT) Date: Thu, 12 Jun 2003 22:42:37 -0400 From: Andrew J Caines To: FreeBSD ports Message-ID: <20030613024237.GE59876@hal9000.halplant.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Organization: H.A.L. Plant X-PGP-Fingerprint: C59A 2F74 1139 9432 B457 0B61 DDF2 AA61 67C3 18A1 X-Powered-by: FreeBSD 4.8-STABLE X-URL: http://halplant.com:88/ X-Yahoo-Profile: AJ_Z0 Importance: Normal User-Agent: Mutt/1.5.4i cc: gnome@FreeBSD.org Subject: libiconv-1.9.1 tries to install in $PREFIX during build X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Andrew J Caines List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 02:42:40 -0000 >From build on up-to-date STABLE: ===> Building for libiconv-1.9.1 ... cd lib && make all cd lib && make install-lib libdir='/.disk/ports/converters/libiconv/work/libiconv-1.9.1/lib' includedir='/.disk/ports/converters/libiconv/work/libiconv-1.9.1/lib' /bin/sh ../autoconf/mkinstalldirs /.disk/ports/converters/libiconv/work/libiconv-1.9.1/lib /bin/sh ../autoconf/mkinstalldirs /usr/local/libdata /bin/sh ../libtool --mode=install install -c -m 444 libcharset.la /.disk/ports/converters/libiconv/work/libiconv-1.9.1/lib/libcharset.la install -c -m 444 .libs/libcharset.so.1 /.disk/ports/converters/libiconv/work/libiconv-1.9.1/lib/libcharset.so.1 (cd /.disk/ports/converters/libiconv/work/libiconv-1.9.1/lib && rm -f libcharset.so && ln -sf libcharset.so.1 libcharset.so) install -c -m 444 .libs/libcharset.a /.disk/ports/converters/libiconv/work/libiconv-1.9.1/lib/libcharset.a ranlib /.disk/ports/converters/libiconv/work/libiconv-1.9.1/lib/libcharset.a chmod 644 /.disk/ports/converters/libiconv/work/libiconv-1.9.1/lib/libcharset.a libtool: install: warning: remember to run `libtool --finish /usr/local/lib' test -f /usr/local/libdata/charset.alias && orig=/usr/local/libdata/charset.alias || orig=charset.alias; sed -f ref-add.sed $orig > /usr/local/libdata/t-charset.alias; install -c -m 444 /usr/local/libdata/t-charset.alias /usr/local/libdata/charset.alias; rm -f /usr/local/libdata/t-charset.alias cannot create /usr/local/libdata/t-charset.alias: permission denied *** Error code 2 -Andrew- -- _______________________________________________________________________ | -Andrew J. Caines- Unix Systems Engineer A.J.Caines@halplant.com | | "They that can give up essential liberty to obtain a little temporary | | safety deserve neither liberty nor safety" - Benjamin Franklin, 1759 | From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 20:38:09 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C268137B401 for ; Thu, 12 Jun 2003 20:38:09 -0700 (PDT) Received: from conure.mail.pas.earthlink.net (conure.mail.pas.earthlink.net [207.217.120.54]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70D6E43FA3 for ; Thu, 12 Jun 2003 20:38:09 -0700 (PDT) (envelope-from mvh@ix.netcom.com) Received: from lsanca1-ar6-4-62-201-078.lsanca1.elnk.dsl.genuity.net ([4.62.201.78] helo=netcom1.netcom.com) by conure.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 19QfOD-0002LB-00 for gnome@freebsd.org; Thu, 12 Jun 2003 20:38:09 -0700 Received: by netcom1.netcom.com (Postfix, from userid 1000) id ABB975301; Thu, 12 Jun 2003 20:38:08 -0700 (PDT) From: Mike Harding To: gnome@freebsd.org Message-Id: <20030613033808.ABB975301@netcom1.netcom.com> Date: Thu, 12 Jun 2003 20:38:08 -0700 (PDT) Subject: gnome2 jabber client? X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 03:38:10 -0000 Anybody have a favorite gnome2 jabber client? I have been using gabber but it pulls in half of gnome1... Mike H. From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 20:40:41 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9030037B401 for ; Thu, 12 Jun 2003 20:40:41 -0700 (PDT) Received: from psg.com (psg.com [147.28.0.62]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3769643F85 for ; Thu, 12 Jun 2003 20:40:41 -0700 (PDT) (envelope-from randy@psg.com) Received: from localhost ([127.0.0.1] helo=roam.psg.com) by psg.com with esmtp (Exim 3.36 #1) id 19QfQe-000GkP-00; Fri, 13 Jun 2003 03:40:40 +0000 Received: from localhost ([127.0.0.1] helo=roam.psg.com ident=randy) by roam.psg.com with esmtp (Exim 4.20) id 19QfQd-0000MC-TR; Thu, 12 Jun 2003 20:40:40 -0700 From: Randy Bush MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Thu, 12 Jun 2003 20:40:39 -0700 To: Mike Harding References: <20030613033808.ABB975301@netcom1.netcom.com> Message-Id: cc: gnome@freebsd.org Subject: Re: gnome2 jabber client? X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 03:40:41 -0000 > Anybody have a favorite gnome2 jabber client? I have been using > gabber but it pulls in half of gnome1... same here, sigh. and this week's update keeps putting up that pesky desktop icon :-( but it does do o end-to-end pgp crypt o ssl to server o chat and groups all of which are important to me randy From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 20:49:13 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C738637B401 for ; Thu, 12 Jun 2003 20:49:13 -0700 (PDT) Received: from hawk.mail.pas.earthlink.net (hawk.mail.pas.earthlink.net [207.217.120.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6195243F93 for ; Thu, 12 Jun 2003 20:49:13 -0700 (PDT) (envelope-from mvh@ix.netcom.com) Received: from lsanca1-ar6-4-62-201-078.lsanca1.elnk.dsl.genuity.net ([4.62.201.78] helo=netcom1.netcom.com) by hawk.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 19QfYu-0003ae-00; Thu, 12 Jun 2003 20:49:13 -0700 Received: by netcom1.netcom.com (Postfix, from userid 1000) id B3F9252A8; Thu, 12 Jun 2003 20:49:12 -0700 (PDT) From: Mike Harding To: randy@psg.com In-reply-to: (message from Randy Bush on Thu, 12 Jun 2003 20:40:39 -0700) References: <20030613033808.ABB975301@netcom1.netcom.com> Message-Id: <20030613034912.B3F9252A8@netcom1.netcom.com> Date: Thu, 12 Jun 2003 20:49:12 -0700 (PDT) cc: gnome@freebsd.org Subject: Re: gnome2 jabber client? X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 03:49:14 -0000 I just installed 'psi' which seems to have everything but pgp. ssl+PGP is overkill for me ( I am running a private server ). X-Original-To: mvh@localhost From: Randy Bush Date: Thu, 12 Jun 2003 20:40:39 -0700 Cc: gnome@freebsd.org X-Spam-Status: No, hits=-5.7 required=5.0 tests=AWL,BAYES_00,QUOTED_EMAIL_TEXT,REFERENCES version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) > Anybody have a favorite gnome2 jabber client? I have been using > gabber but it pulls in half of gnome1... same here, sigh. and this week's update keeps putting up that pesky desktop icon :-( but it does do o end-to-end pgp crypt o ssl to server o chat and groups all of which are important to me randy From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 20:52:53 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD6DF37B401 for ; Thu, 12 Jun 2003 20:52:52 -0700 (PDT) Received: from pintail.mail.pas.earthlink.net (pintail.mail.pas.earthlink.net [207.217.120.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A90043F93 for ; Thu, 12 Jun 2003 20:52:52 -0700 (PDT) (envelope-from mvh@ix.netcom.com) Received: from lsanca1-ar6-4-62-201-078.lsanca1.elnk.dsl.genuity.net ([4.62.201.78] helo=netcom1.netcom.com) by pintail.mail.pas.earthlink.net with esmtp (Exim 3.33 #1) id 19QfcP-00038T-00; Thu, 12 Jun 2003 20:52:49 -0700 Received: by netcom1.netcom.com (Postfix, from userid 1000) id 36AED52A8; Thu, 12 Jun 2003 20:52:49 -0700 (PDT) From: Mike Harding To: mvh@ix.netcom.com In-reply-to: <20030613023551.7979D531C@netcom1.netcom.com> (message from Mike Harding on Thu, 12 Jun 2003 19:35:51 -0700 (PDT)) References: <20030612235907.272975D04@ptavv.es.net> <20030613023551.7979D531C@netcom1.netcom.com> Message-Id: <20030613035249.36AED52A8@netcom1.netcom.com> Date: Thu, 12 Jun 2003 20:52:49 -0700 (PDT) cc: gnome@freebsd.org Subject: Re: Evo date time - o' lordy, not agin X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 03:52:53 -0000 Well, the date seems much better now... ? I'll shut up unless it happens again... X-Original-To: mvh@localhost From: Mike Harding Date: Thu, 12 Jun 2003 19:35:51 -0700 (PDT) Cc: gnome@freebsd.org Sender: owner-freebsd-gnome@freebsd.org X-Spam-Status: No, hits=-5.6 required=5.0 tests=AWL,BAYES_01,IN_REP_TO,REFERENCES version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) Date is spot on: bash-2.05b$ date Thu Jun 12 19:35:00 PDT 2003 Note that I sent my previous mail via emacs, so that may be why the time was correct. I'll send again via evolution once it's recompiled. - Mike H. X-Original-To: mvh@localhost From: Joe Marcus Clarke Cc: oberman@es.net, FreeBSD GNOME Users Organization: MarcusCom, Inc. Date: 12 Jun 2003 22:30:06 -0400 X-Spam-Status: No, hits=-23.4 required=5.0 tests=AWL,BAYES_01,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES, USER_AGENT_XIMIAN autolearn=ham version=2.55 X-Spam-Level: X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) --=-uZw8qncBUhKiMzMRVmcM Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-06-12 at 22:24, Mike Harding wrote: > I'm also running wall clock as this machine is dual-boot... I, too, run wall clock, and both my Evo 1.4 machines send and receive mail with the correct offset (EDT =3D=3D GMT -0400). I don't know why your= s would be different. I looked through gconf-editor for some hidden settings, but I didn't find anything. >=20 > I have bad memories of this time offset, which had been patched at one > point. The patch is still in there, and things have been working for me. What is the output of date on your machine? Joe >=20 > X-Original-To: mvh@localhost > Cc: Mike Harding , > FreeBSD GNOME Users > Date: Thu, 12 Jun 2003 16:59:07 -0700 > From: "Kevin Oberman" > X-Spam-Status: No, hits=3D-5.6 required=3D5.0 > tests=3DAWL,BAYES_10,IN_REP_TO > version=3D2.55 > X-Spam-Level:=20 > X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) >=20 > I'm seeing the same thing here. All the dates are +9 from here. If > it's relevant, this system is running with the hardware clock set > tolocal time (/etc/wall_cmos_clock is present). Just a bit annoying, > but Evo is only my backup mail system, so I was not worrying too much > about it. > --=20 > R. Kevin Oberman, Network Engineer > Energy Sciences Network (ESnet) > Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) > E-mail: oberman@es.net Phone: +1 510 486-8634 --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-uZw8qncBUhKiMzMRVmcM 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+6Tctb2iPiv4Uz4cRApxBAJ92zSA1+0dh8oTdHQdE35VSXGIbKACfQd67 KOZdVrPgzRtgzRmZ7vgWz5A= =6CIj -----END PGP SIGNATURE----- --=-uZw8qncBUhKiMzMRVmcM-- _______________________________________________ freebsd-gnome@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-gnome To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 23:37:31 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFC8937B401; Thu, 12 Jun 2003 23:37:31 -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 A95AF43FE5; Thu, 12 Jun 2003 23:37:30 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5D6VsTp003430; Fri, 13 Jun 2003 02:31:56 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5D6XgV8022017; Fri, 13 Jun 2003 02:33:43 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Andrew J Caines In-Reply-To: <20030613024237.GE59876@hal9000.halplant.com> References: <20030613024237.GE59876@hal9000.halplant.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-NJgHu7hhmFZx5/EZOUzK" Organization: MarcusCom, Inc. Message-Id: <1055486243.335.3.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 13 Jun 2003 02:37:24 -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: FreeBSD GNOME Users cc: FreeBSD ports Subject: Re: libiconv-1.9.1 tries to install in $PREFIX during build X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 06:37:32 -0000 --=-NJgHu7hhmFZx5/EZOUzK Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Thu, 2003-06-12 at 22:42, Andrew J Caines wrote: > >From build on up-to-date STABLE: Fixed, thanks for reporting. Joe >=20 > =3D=3D=3D> Building for libiconv-1.9.1 > ... > cd lib && make all > cd lib && make install-lib libdir=3D'/.disk/ports/converters/libiconv/wor= k/libiconv-1.9.1/lib' includedir=3D'/.disk/ports/converters/libiconv/work/l= ibiconv-1.9.1/lib' > /bin/sh ../autoconf/mkinstalldirs /.disk/ports/converters/libiconv/work/l= ibiconv-1.9.1/lib > /bin/sh ../autoconf/mkinstalldirs /usr/local/libdata > /bin/sh ../libtool --mode=3Dinstall install -c -m 444 libcharset.la /.di= sk/ports/converters/libiconv/work/libiconv-1.9.1/lib/libcharset.la > install -c -m 444 .libs/libcharset.so.1 /.disk/ports/converters/libiconv/= work/libiconv-1.9.1/lib/libcharset.so.1 > (cd /.disk/ports/converters/libiconv/work/libiconv-1.9.1/lib && rm -f lib= charset.so && ln -sf libcharset.so.1 libcharset.so) > install -c -m 444 .libs/libcharset.a /.disk/ports/converters/libiconv/wor= k/libiconv-1.9.1/lib/libcharset.a > ranlib /.disk/ports/converters/libiconv/work/libiconv-1.9.1/lib/libcharse= t.a > chmod 644 /.disk/ports/converters/libiconv/work/libiconv-1.9.1/lib/libcha= rset.a > libtool: install: warning: remember to run `libtool --finish /usr/local/l= ib' > test -f /usr/local/libdata/charset.alias && orig=3D/usr/local/libdata/cha= rset.alias || orig=3Dcharset.alias; sed -f ref-add.sed $orig > /usr/local= /libdata/t-charset.alias; install -c -m 444 /usr/local/libdata/t-charset.= alias /usr/local/libdata/charset.alias; rm -f /usr/local/libdata/t-charset= .alias > cannot create /usr/local/libdata/t-charset.alias: permission denied > *** Error code 2 >=20 >=20 >=20 > -Andrew- --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-NJgHu7hhmFZx5/EZOUzK 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+6XEjb2iPiv4Uz4cRAoZNAJ4kI4KA+xVMeJaOkoGdn9bugZDbTgCghRy/ pZZSKFEY/s1+dGAHkxisuBY= =sZsS -----END PGP SIGNATURE----- --=-NJgHu7hhmFZx5/EZOUzK-- From owner-freebsd-gnome@FreeBSD.ORG Thu Jun 12 23:38:36 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 64AE937B401 for ; Thu, 12 Jun 2003 23:38:36 -0700 (PDT) Received: from carebears.mine.nu (ti400720a080-2383.bb.online.no [80.212.169.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id A896D43FD7 for ; Thu, 12 Jun 2003 23:38:35 -0700 (PDT) (envelope-from dtun3z@online.no) Received: from [192.168.0.9] (funshine.carebears.net [192.168.0.9]) by carebears.mine.nu (Postfix) with ESMTP id 3CA43A1025; Fri, 13 Jun 2003 08:38:30 +0200 (CEST) From: Christer Gundersen To: Mike Harding In-Reply-To: <20030613033808.ABB975301@netcom1.netcom.com> References: <20030613033808.ABB975301@netcom1.netcom.com> Content-Type: text/plain Message-Id: <1055486309.614.2.camel@funshine.carebears.net> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 13 Jun 2003 08:38:29 +0200 Content-Transfer-Encoding: 7bit cc: gnome@freebsd.org Subject: Re: gnome2 jabber client? X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 06:38:36 -0000 On Fri, 2003-06-13 at 05:38, Mike Harding wrote: > Anybody have a favorite gnome2 jabber client? I have been using > gabber but it pulls in half of gnome1... What about Gaim? -- Med Vennlig Hilsen / Best regards Christer Gundersen / dizzy tun3Z http://dtz.cjb.net - http://carebears.mine.nu When you're up to your nose in shit, be sure to keep your mouth shut. From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 03:26:43 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E6C937B401 for ; Fri, 13 Jun 2003 03:26:43 -0700 (PDT) Received: from alef.poprostu.pl (alef.poprostu.pl [195.116.86.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDDA343F85 for ; Fri, 13 Jun 2003 03:26:37 -0700 (PDT) (envelope-from piero@poprostu.pl) Received: from beth.poprostu.pl (beth.poprostu.pl [213.25.228.183]) by alef.poprostu.pl (8.12.6/8.12.6) with SMTP id h5DAsUak019243 for ; Fri, 13 Jun 2003 12:54:34 +0200 (CEST) (envelope-from piero@poprostu.pl) Date: Fri, 13 Jun 2003 12:25:00 +0200 From: Piero To: freebsd-gnome@freebsd.org Message-Id: <20030613122500.72367a82.piero@poprostu.pl> Organization: Poprostu X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: problems in updated gucharmap X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 10:26:43 -0000 Hi, There are some problems with updated gucharmap port that break package creating. ===> Registering installation for gucharmap-gnome-0.8.0 ===> Building package for gucharmap-gnome-0.8.0 Creating package /usr/ports/packages/All/gucharmap-gnome-0.8.0.tgz Registering depends: libgnomeui-2.2.1_1 libbonoboui-2.2.2 gnome-icon-theme-1.0.5 libgnome-2.2.2 libgnomecanvas-2.2.1 gnomevfs2-2.2.5 libbonobo-2.2.3 cdparanoia-3.9.8_4 scrollkeeper-0.3.12_1,1 docbook-xsl-1.61.2 docbook-xml-4.2 esound-0.2.29 libglade2-2.0.1_1 fam-2.6.9_2 gnomemimedata-2.2.1 gconf2-2.2.1 bonobo-activation-2.2.2,1 ORBit2-2.6.2 gtk-2.2.2 pango-1.2.3 libIDL-0.8.2 XFree86-fontScalable-4.3.0 atk-1.2.4 Xft-2.1.2 startup-notification-0.5_1 intltool-0.26 tiff-3.5.7 linc-1.0.2 libart_lgpl2-2.3.12 libaudiofile-0.2.3 glib-2.2.2 XFree86-fontEncodings-4.3.0 gnomehier-1.0_8 XFree86-libraries-4.3.0_5 imake-4.3.0 popt-1.6.4 libgnugetopt-1.2 libxslt-1.0.30 libxml2-2.5.7_1 gettext-0.11.5_1 py22-expat-2.2.3_2 sdocbook-xml-4.1.2.5 fontconfig-2.2.0 pkgconfig-0.15.0 png-1.2.5_2 libiconv-1.9.1 expat-1.95.6_1 python-2.2.3 docbook-sk-4.1.2 mkcatalog-1.1 freetype2-2.1.4_1 jpeg-6b_1. Creating gzip'd tar ball in '/usr/ports/packages/All/gucharmap-gnome-0.8.0.tgz' tar: include/gucharmap/charmap.h: Cannot stat: No such file or directory tar: include/gucharmap/chartable.h: Cannot stat: No such file or directory tar: include/gucharmap/gucharmap_window.h: Cannot stat: No such file or directory tar: include/gucharmap/mini_fontsel.h: Cannot stat: No such file or directory tar: include/gucharmap/unicode_info.h: Cannot stat: No such file or directory tar: Error exit delayed from previous errors pkg_create: make_dist: tar command failed with code 512 *** Error code 1 Stop in /usr/ports/misc/gucharmap. Wrong plist? # pkg_info -L gucharmap\*|xargs ls -l ls: /usr/X11R6/include/gucharmap/charmap.h: No such file or directory ls: /usr/X11R6/include/gucharmap/chartable.h: No such file or directory ls: /usr/X11R6/include/gucharmap/gucharmap_window.h: No such file or directory ls: /usr/X11R6/include/gucharmap/mini_fontsel.h: No such file or directory ls: /usr/X11R6/include/gucharmap/unicode_info.h: No such file or directory ls: Files:: No such file or directory ls: Information: No such file or directory ls: for: No such file or directory ls: gucharmap-gnome-0.8.0:: No such file or directory --- Piero piero@poprostu.pl From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 03:45:14 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C393B37B401 for ; Fri, 13 Jun 2003 03:45:14 -0700 (PDT) Received: from alef.poprostu.pl (alef.poprostu.pl [195.116.86.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C31143FAF for ; Fri, 13 Jun 2003 03:45:13 -0700 (PDT) (envelope-from piero@poprostu.pl) Received: from beth.poprostu.pl (beth.poprostu.pl [213.25.228.183]) by alef.poprostu.pl (8.12.6/8.12.6) with SMTP id h5DBD3ak019465 for ; Fri, 13 Jun 2003 13:13:04 +0200 (CEST) (envelope-from piero@poprostu.pl) Date: Fri, 13 Jun 2003 12:43:35 +0200 From: Piero To: freebsd-gnome@freebsd.org Message-Id: <20030613124335.7fd8078c.piero@poprostu.pl> Organization: Poprostu X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable Subject: sticky notes problem at panel startup X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 10:45:15 -0000 HI, $ pi|grep sticky stickynotes_applet-1.2.0 Applet that adds sticky notes to your desktop After upgrading sticky-notes from recent ports, I got a message from the panel: ------- Panel napotka=B3 problem przy =B3adowaniu apletu "OAFIID:StickyNotesApplet" Szczeg=F3=B3y: Nie mo=BFna uaktywni=E6 "OAFIID:StickyNotesApplet" Czy chcesz usun=B1=E6 ten aplet ze swojej konfiguracji? ------- which stands in English for: ------- Panel encountered a problem loading an applet "OAFIID:StickyNotesApplet" Details: Cannot activate "OAFIID:StickyNotesApplet" Do you want to remove the applet from your configuration? ------- The applet icon was gone from the panle, but I could restore the applet manually (Add to panel) and my only note reappeared. The error message would pop up again after restarting X, but this time the applet icon was at the panel. --- Piero piero@poprostu.pl From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 04:33:04 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAB3837B401 for ; Fri, 13 Jun 2003 04:33:04 -0700 (PDT) Received: from e0-a3.b1.lan.prg.vol.cz (e0-a3.b1.lan.prg.vol.cz [195.122.204.155]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79D1243FD7 for ; Fri, 13 Jun 2003 04:33:03 -0700 (PDT) (envelope-from pav@oook.cz) Received: from pav.hide.vol.cz (localhost [127.0.0.1])h5DBWvS5022920; Fri, 13 Jun 2003 13:32:57 +0200 (CEST) (envelope-from pav@oook.cz) Received: (from pav@localhost) by pav.hide.vol.cz (8.12.9/8.12.9/Submit) id h5DBWuvh022919; Fri, 13 Jun 2003 13:32:56 +0200 (CEST) (envelope-from pav@oook.cz) X-Authentication-Warning: pav.hide.vol.cz: pav set sender to pav@oook.cz using -f From: Pav Lucistnik To: Piero In-Reply-To: <20030613122500.72367a82.piero@poprostu.pl> References: <20030613122500.72367a82.piero@poprostu.pl> Content-Type: text/plain Content-Transfer-Encoding: 7bit Message-Id: <1055503976.82974.13.camel@pav.hide.vol.cz> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 13 Jun 2003 13:32:56 +0200 cc: freebsd-gnome@freebsd.org Subject: Re: problems in updated gucharmap X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 11:33:05 -0000 V p? 13. 06. 2003 v 12:25, Piero napsal: > Hi, > > There are some problems with updated gucharmap port that break package > creating. > > ===> Registering installation for gucharmap-gnome-0.8.0 > ===> Building package for gucharmap-gnome-0.8.0 > Creating package /usr/ports/packages/All/gucharmap-gnome-0.8.0.tgz > Registering depends: libgnomeui-2.2.1_1 libbonoboui-2.2.2 > gnome-icon-theme-1.0.5 libgnome-2.2.2 libgnomecanvas-2.2.1 > gnomevfs2-2.2.5 libbonobo-2.2.3 cdparanoia-3.9.8_4 > scrollkeeper-0.3.12_1,1 docbook-xsl-1.61.2 docbook-xml-4.2 esound-0.2.29 > libglade2-2.0.1_1 fam-2.6.9_2 gnomemimedata-2.2.1 gconf2-2.2.1 > bonobo-activation-2.2.2,1 ORBit2-2.6.2 gtk-2.2.2 pango-1.2.3 > libIDL-0.8.2 XFree86-fontScalable-4.3.0 atk-1.2.4 Xft-2.1.2 > startup-notification-0.5_1 intltool-0.26 tiff-3.5.7 linc-1.0.2 > libart_lgpl2-2.3.12 libaudiofile-0.2.3 glib-2.2.2 > XFree86-fontEncodings-4.3.0 gnomehier-1.0_8 XFree86-libraries-4.3.0_5 > imake-4.3.0 popt-1.6.4 libgnugetopt-1.2 libxslt-1.0.30 libxml2-2.5.7_1 > gettext-0.11.5_1 py22-expat-2.2.3_2 sdocbook-xml-4.1.2.5 > fontconfig-2.2.0 pkgconfig-0.15.0 png-1.2.5_2 libiconv-1.9.1 > expat-1.95.6_1 python-2.2.3 docbook-sk-4.1.2 mkcatalog-1.1 > freetype2-2.1.4_1 jpeg-6b_1. > Creating gzip'd tar ball in > '/usr/ports/packages/All/gucharmap-gnome-0.8.0.tgz' > tar: include/gucharmap/charmap.h: Cannot stat: No such file or directory > tar: include/gucharmap/chartable.h: Cannot stat: No such file or > directory > tar: include/gucharmap/gucharmap_window.h: Cannot stat: No such file or > directory > tar: include/gucharmap/mini_fontsel.h: Cannot stat: No such file or > directory > tar: include/gucharmap/unicode_info.h: Cannot stat: No such file or > directory > tar: Error exit delayed from previous errors > pkg_create: make_dist: tar command failed with code 512 > *** Error code 1 > > Stop in /usr/ports/misc/gucharmap. > > Wrong plist? Yes, and it also breaks AbiWord2. I have a patch to make AbiWord2 compiles again, but it malfunction anyway. There is nothing in AbiWord CVS yet. -- Pav Lucistnik panic("CPU too expensive - making holiday in the ANDES!"); 2.2.16 /usr/src/linux/arch/mips/kernel/traps.c From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 04:40:27 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A382A37B401 for ; Fri, 13 Jun 2003 04:40:27 -0700 (PDT) Received: from virus-out-st.online.no (virus-out.ttyl.com [193.212.240.200]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5433B43FB1 for ; Fri, 13 Jun 2003 04:40:26 -0700 (PDT) (envelope-from Christer.Gundersen@telenor.com) Received: from [134.47.162.90] by virusscan.telenor.no with ESMTP for gnome@freebsd.org; Fri, 13 Jun 2003 13:40:22 +0200 Received: from tns-fbu-22-212.corp.telenor.no ([134.47.162.91]) by tns-fbu-22-208.corp.telenor.no with Microsoft SMTPSVC(5.0.2195.5329); Fri, 13 Jun 2003 13:37:46 +0200 Received: from tns-fbu-2e-004.corp.telenor.no ([134.47.163.65]) by tns-fbu-22-212.corp.telenor.no with Microsoft SMTPSVC(5.0.2195.5329); Fri, 13 Jun 2003 13:37:46 +0200 Content-Class: urn:content-classes:message X-MimeOLE: Produced By Microsoft Exchange V6.0.6410.0 Date: Fri, 13 Jun 2003 13:37:46 +0200 Message-Id: <544F1B1474E4004A8F08A85FC18783C20105889E@TNS-FBU-2E-004.corp.telenor.no> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: gstremer - freebsd 5.1 Thread-Index: AcMxoI7pUMTnp92kQ76290M0yqKjEQ== From: To: X-OriginalArrivalTime: 13 Jun 2003 11:37:46.0291 (UTC) FILETIME=[35C18830:01C331A0] MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: Quoted-Printable Subject: gstremer - freebsd 5.1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 11:40:27 -0000 A almost fresh install of FreeBSD 5.1-RELEASE cc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include -D_LARGEFILE_SOURCE= -D_F ILE_OFFSET_BITS=3D64 -I/usr/local/include/libxml2 -I/usr/local/include -D_T= HREAD_S AFE -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../..= -O2 -pipe -march=3Dpentium3 -c lex._gst_parse_yy.c -MT libgstparse_la-lex._gst_= parse_y y.lo -MD -MP -MF .deps/libgstparse_la-lex._gst_parse_yy.TPlo -fPIC -DPIC cc1: warning: *** *** -O2 converted to "-O1" due to optimizer bugs on this platform *** mv -f libgstparse_la-lex._gst_parse_yy.o .libs/libgstparse_la-lex._gst_pars= e_yy. lo mv: rename libgstparse_la-lex._gst_parse_yy.o to .libs/libgstparse_la-lex._= gst_p arse_yy.lo: No such file or directory gmake[5]: *** [libgstparse_la-lex._gst_parse_yy.lo] Error 1 gmake[5]: Leaving directory `/tmp/usr/ports/multimedia/gstreamer/work/gstre= amer- 0.6.2/gst/parse' gmake[4]: *** [all] Error 2 gmake[4]: Leaving directory `/tmp/usr/ports/multimedia/gstreamer/work/gstre= amer- 0.6.2/gst/parse' gmake[3]: *** [all-recursive] Error 1 gmake[3]: Leaving directory `/tmp/usr/ports/multimedia/gstreamer/work/gstre= amer- 0.6.2/gst' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/tmp/usr/ports/multimedia/gstreamer/work/gstre= amer- 0.6.2/gst' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/tmp/usr/ports/multimedia/gstreamer/work/gstre= amer- 0.6.2' gmake: *** [all] Error 2 *** Error code 2 Stop in /usr/ports/multimedia/gstreamer. Med vennlig hilsen Christer Gundersen Telenor Kundeservice - Top10/Pri1 Kontakt Kundeservice for henvendelser vedr=F8rende fasttelefoni p=E5 Dine S= ider o= g vedr=F8rende Internett p=E5 online.no . Du kan ogs=E5 kontakte oss p=E5 telefon 05000.=20 Denne meldingen er bare ment for mottakeren, og kan inneholde fortrolige op= plysninger eller annen privat informasjon. Hvis du mottar denne ved en feil= , v=E6r s=E5 vennlig =E5 melde fra til avsenderen og slett originalen. All = annen bruk av innholdet i e-posten er forbudt. This message is for the designated recipient only, and may contain privileg= ed proprietary, or otherwise private information. If you have received it i= n error, please notify the sender immediately and delete the original. Any = other use of the e-mail by you is prohibited. From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 07:32:16 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95A8937B401 for ; Fri, 13 Jun 2003 07:32:16 -0700 (PDT) Received: from pa-plum1b-166.pit.adelphia.net (pa-plum1b-217.pit.adelphia.net [24.53.161.217]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAA9143FB1 for ; Fri, 13 Jun 2003 07:32:15 -0700 (PDT) (envelope-from wmoran@potentialtech.com) Received: from potentialtech.com (working [172.16.0.95]) h5DEWFOg002874 for ; Fri, 13 Jun 2003 10:32:15 -0400 (EDT) (envelope-from wmoran@potentialtech.com) Message-ID: <3EE9E06F.2050608@potentialtech.com> Date: Fri, 13 Jun 2003 10:32:15 -0400 From: Bill Moran User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.3) Gecko/20030429 X-Accept-Language: en-us, en MIME-Version: 1.0 To: gnome@freebsd.org Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: xscreensaver not building X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 14:32:16 -0000 I'm noticing this because I'm building gnome2 from ports and xscreensaver-gnome is a dependency. This is on 5.1-RELEASE, although the problem doesn't look related to that. Ports tree updated right before I started the build yesterday afternoon. <<< script of build working# make ===> Extracting for xscreensaver-gnome-4.10 >> Checksum OK for xscreensaver-4.10.tar.gz. ===> Patching for xscreensaver-gnome-4.10 ===> Applying FreeBSD patches for xscreensaver-gnome-4.10 Ignoring previously applied (or reversed) patch. 1 out of 1 hunks ignored--saving rejects to po/Makefile.in.in.rej >> Patch patch-po::Makefile.in.in failed to apply cleanly. >> Patch(es) patch-ab patch-driver_Makefile.in patch-driver_xscreensaver-getimage-file patch-hacks_webcollage applied cleanly. *** Error code 1 Stop in /usr/ports/x11/xscreensaver-gnome. <<< end of script capture patch-po::Makefile.in.in seems to be trying to make a change that is already in the Makefile.in.in ... I removed it from the files directory and it builds successfully. Hope this information is helpful. -- Bill Moran Potential Technologies http://www.potentialtech.com From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 07:58:29 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9695F37B401 for ; Fri, 13 Jun 2003 07:58:29 -0700 (PDT) Received: from comrie.uwaterloo.ca (comrie.math.uwaterloo.ca [129.97.216.108]) by mx1.FreeBSD.org (Postfix) with ESMTP id A474243F85 for ; Fri, 13 Jun 2003 07:58:28 -0700 (PDT) (envelope-from mpatters@cs.uwaterloo.ca) Received: from comrie.uwaterloo.ca (localhost [127.0.0.1]) by comrie.uwaterloo.ca (8.12.9/8.12.9) with ESMTP id h5DEwRl8039758; Fri, 13 Jun 2003 10:58:27 -0400 (EDT) (envelope-from mpatters@cs.uwaterloo.ca) Received: (from mpatters@localhost) by comrie.uwaterloo.ca (8.12.9/8.12.9/Submit) id h5DEwRLJ039757; Fri, 13 Jun 2003 14:58:27 GMT X-Authentication-Warning: comrie.uwaterloo.ca: mpatters set sender to mpatters@cs.uwaterloo.ca using -f From: Mike Patterson To: Joe Marcus Clarke In-Reply-To: <1055471405.326.12.camel@gyros> References: <20030612235907.272975D04@ptavv.es.net> <20030613022402.0D9125301@netcom1.netcom.com> <1055471405.326.12.camel@gyros> Content-Type: text/plain Content-Transfer-Encoding: 7bit Organization: CSCF Message-Id: <1055516307.39665.24.camel@comrie> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 13 Jun 2003 14:58:27 +0000 cc: FreeBSD GNOME Users Subject: Calendar + Re: Evo date time - o' lordy, not agin X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 14:58:29 -0000 On Thu, 2003-06-12 at 22:30, Joe Marcus Clarke wrote: > On Thu, 2003-06-12 at 22:24, Mike Harding wrote: > > I'm also running wall clock as this machine is dual-boot... > > I, too, run wall clock, and both my Evo 1.4 machines send and receive > mail with the correct offset (EDT == GMT -0400). I don't know why yours > would be different. I looked through gconf-editor for some hidden > settings, but I didn't find anything. Oddly enough, last night when I first saw this thread, I noticed that it was displaying the times as being 4 hours in the future. I shut down X and rebooted before I went home, came in this morning and times are displaying fine. I run my system clock at GMT, system tz is EDT (same as Joe). I find it odd, but hey. To kill two birds with one email message, I'm still having problems with the Calendar thing too, I tried deleting the Calendar directory, removing & recreating the shortcut, selecting the calendar folder directly, creating a different calendar folder... no juice. I have yet to take the time to remove & reinstall the evo package and its dependencies though - has this worked for anybody else with the "calendar displays task list" problem? (Interestingly, under Summary, the Appointments section properly displays appointments. I just can't see appointments for any other date. :-) I can also create new appointments, and these appear to properly sync over to my Palm.) Mike From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 09:30:35 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A156937B404 for ; Fri, 13 Jun 2003 09:30:35 -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 77F1D43F3F for ; Fri, 13 Jun 2003 09:30:34 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5DGRmUD013951; Fri, 13 Jun 2003 12:27:48 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5DGQhV8026657; Fri, 13 Jun 2003 12:26:43 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Piero In-Reply-To: <20030613124335.7fd8078c.piero@poprostu.pl> References: <20030613124335.7fd8078c.piero@poprostu.pl> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-0h0sHkAQB6Gbdu+y0Arn" Organization: MarcusCom, Inc. Message-Id: <1055521827.331.0.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 13 Jun 2003 12:30:28 -0400 X-Spam-Status: No, hits=-8.9 required=5.0 tests=BAYES_01,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: freebsd-gnome@freebsd.org Subject: Re: sticky notes problem at panel startup X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 16:30:36 -0000 --=-0h0sHkAQB6Gbdu+y0Arn Content-Type: text/plain; charset=iso-8859-2 Content-Transfer-Encoding: quoted-printable On Fri, 2003-06-13 at 06:43, Piero wrote: > HI, >=20 > $ pi|grep sticky > stickynotes_applet-1.2.0 Applet that adds sticky notes to your desktop >=20 > After upgrading sticky-notes from recent ports, I got a message from the > panel: > ------- > Panel napotka=B3 problem przy =B3adowaniu apletu "OAFIID:StickyNotesApple= t" > Szczeg=F3=B3y: Nie mo=BFna uaktywni=E6 "OAFIID:StickyNotesApplet" >=20 > Czy chcesz usun=B1=E6 ten aplet ze swojej konfiguracji? > ------- >=20 > which stands in English for: > ------- > Panel encountered a problem loading an applet "OAFIID:StickyNotesApplet" > Details: Cannot activate "OAFIID:StickyNotesApplet" >=20 > Do you want to remove the applet from your configuration? > ------- >=20 > The applet icon was gone from the panle, but I could restore the applet > manually (Add to panel) and my only note reappeared. The error message > would pop up again after restarting X, but this time the applet icon was > at the panel. Log out, and log back in, then _re-add_ the applet. It will work. Joe >=20 > --- > Piero > piero@poprostu.pl > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-0h0sHkAQB6Gbdu+y0Arn 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+6fwjb2iPiv4Uz4cRAuJwAJ4s/MkUQi3f46kSkhT1skFK6DVO7QCfftVN k3UzasIO97n4sVPfPpGewv4= =owDn -----END PGP SIGNATURE----- --=-0h0sHkAQB6Gbdu+y0Arn-- From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 09:31:39 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2068E37B401 for ; Fri, 13 Jun 2003 09:31:39 -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 D2FE243FE1 for ; Fri, 13 Jun 2003 09:31:37 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5DGSqUD014716; Fri, 13 Jun 2003 12:28:52 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5DGRiV8026677; Fri, 13 Jun 2003 12:27:48 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Christer.Gundersen@telenor.com In-Reply-To: <544F1B1474E4004A8F08A85FC18783C20105889E@TNS-FBU-2E-004.corp.telenor.no> References: <544F1B1474E4004A8F08A85FC18783C20105889E@TNS-FBU-2E-004.corp.telenor.no> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-LjE8ZLiOY4KwCnh/RjUS" Organization: MarcusCom, Inc. Message-Id: <1055521889.331.2.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 13 Jun 2003 12:31:29 -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: FreeBSD GNOME Users Subject: Re: gstremer - freebsd 5.1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 16:31:39 -0000 --=-LjE8ZLiOY4KwCnh/RjUS Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable On Fri, 2003-06-13 at 07:37, Christer.Gundersen@telenor.com wrote: > A almost fresh install of FreeBSD 5.1-RELEASE Please contact the gstreamer about this. Joe >=20 > cc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include -D_LARGEFILE_SOUR= CE -D_F > ILE_OFFSET_BITS=3D64 -I/usr/local/include/libxml2 -I/usr/local/include -D= _THREAD_S > AFE -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I../= .. -O2 > -pipe -march=3Dpentium3 -c lex._gst_parse_yy.c -MT libgstparse_la-lex._gs= t_parse_y > y.lo -MD -MP -MF .deps/libgstparse_la-lex._gst_parse_yy.TPlo -fPIC -DPIC > cc1: warning: > *** > *** -O2 converted to "-O1" due to optimizer bugs on this platform > *** > mv -f libgstparse_la-lex._gst_parse_yy.o .libs/libgstparse_la-lex._gst_pa= rse_yy. > lo > mv: rename libgstparse_la-lex._gst_parse_yy.o to .libs/libgstparse_la-lex= ._gst_p > arse_yy.lo: No such file or directory > gmake[5]: *** [libgstparse_la-lex._gst_parse_yy.lo] Error 1 > gmake[5]: Leaving directory `/tmp/usr/ports/multimedia/gstreamer/work/gst= reamer- > 0.6.2/gst/parse' > gmake[4]: *** [all] Error 2 > gmake[4]: Leaving directory `/tmp/usr/ports/multimedia/gstreamer/work/gst= reamer- > 0.6.2/gst/parse' > gmake[3]: *** [all-recursive] Error 1 > gmake[3]: Leaving directory `/tmp/usr/ports/multimedia/gstreamer/work/gst= reamer- > 0.6.2/gst' > gmake[2]: *** [all] Error 2 > gmake[2]: Leaving directory `/tmp/usr/ports/multimedia/gstreamer/work/gst= reamer- > 0.6.2/gst' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory `/tmp/usr/ports/multimedia/gstreamer/work/gst= reamer- > 0.6.2' > gmake: *** [all] Error 2 > *** Error code 2 >=20 > Stop in /usr/ports/multimedia/gstreamer. >=20 >=20 >=20 > Med vennlig hilsen > Christer Gundersen > Telenor Kundeservice - Top10/Pri1 >=20 > Kontakt Kundeservice for henvendelser vedr=F8rende fasttelefoni p=E5 Dine= Sider = og vedr=F8rende Internett p=E5 online.no . Du kan ogs=E5 kontakte oss p=E5 telefon 05000.=20 >=20 > Denne meldingen er bare ment for mottakeren, og kan inneholde fortrolige = opplysninger eller annen privat informasjon. Hvis du mottar denne ved en fe= il, v=E6r s=E5 vennlig =E5 melde fra til avsenderen og slett originalen. Al= l annen bruk av innholdet i e-posten er forbudt. >=20 > This message is for the designated recipient only, and may contain privil= eged proprietary, or otherwise private information. If you have received it= in error, please notify the sender immediately and delete the original. An= y other use of the e-mail by you is prohibited. > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-LjE8ZLiOY4KwCnh/RjUS 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+6fxgb2iPiv4Uz4cRAjfaAKCerq7vXFkizuRFdA1ccUnHiTAH1QCcDhm+ LCLgwV5I8h+8BXBgpzNMN7c= =0TpZ -----END PGP SIGNATURE----- --=-LjE8ZLiOY4KwCnh/RjUS-- From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 10:49:02 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21F6737B401 for ; Fri, 13 Jun 2003 10:49:02 -0700 (PDT) Received: from lakemtao06.cox.net (lakemtao06.cox.net [68.1.17.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 370CC43FAF for ; Fri, 13 Jun 2003 10:49:01 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from sysinfo.mezzweb.com ([68.103.37.247]) by lakemtao06.cox.net ESMTP <20030613174900.CROA23505.lakemtao06.cox.net@sysinfo.mezzweb.com>; Fri, 13 Jun 2003 13:49:00 -0400 To: christer.gundersen@telenor.com, gnome@freebsd.org References: <544F1B1474E4004A8F08A85FC18783C20105889E@TNS-FBU-2E-004.corp.telenor.no> Message-ID: Content-Type: text/plain; charset=utf-8; format=flowed From: Jeremy Messenger MIME-Version: 1.0 Date: Fri, 13 Jun 2003 12:34:31 -0500 In-Reply-To: <544F1B1474E4004A8F08A85FC18783C20105889E@TNS-FBU-2E-004.corp.telenor.no> User-Agent: Opera7.11/Linux M2 build 406 Subject: Re: gstremer - freebsd 5.1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 17:49:02 -0000 On Fri, 13 Jun 2003 13:37:46 +0200, wrote: > A almost fresh install of FreeBSD 5.1-RELEASE > > cc -DHAVE_CONFIG_H -I. -I. -I../.. -I/usr/local/include - > D_LARGEFILE_SOURCE -D_F > ILE_OFFSET_BITS=64 -I/usr/local/include/libxml2 -I/usr/local/include - > D_THREAD_S > AFE -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include - > I../.. -O2 ^^^Let me quote from the /etc/make.conf: # CFLAGS controls the compiler settings used when compiling C code. # Note that optimization settings above -O (-O2, ...) are not recommended # or supported for compiling the world or the kernel - please revert any # nonstandard optimization settings to "-O" before submitting bug reports # to the developers. Which meaning you will have to recompile it with -O if you want to bug report in the FreeBSD maillist. Cheers, Mezz > -pipe -march=pentium3 -c lex._gst_parse_yy.c -MT libgstparse_la- > lex._gst_parse_y > y.lo -MD -MP -MF .deps/libgstparse_la-lex._gst_parse_yy.TPlo -fPIC -DPIC > cc1: warning: > *** > *** -O2 converted to "-O1" due to optimizer bugs on this platform > *** > mv -f libgstparse_la-lex._gst_parse_yy.o .libs/libgstparse_la- > lex._gst_parse_yy. > lo > mv: rename libgstparse_la-lex._gst_parse_yy.o to .libs/libgstparse_la- > lex._gst_p > arse_yy.lo: No such file or directory > gmake[5]: *** [libgstparse_la-lex._gst_parse_yy.lo] Error 1 > gmake[5]: Leaving directory > `/tmp/usr/ports/multimedia/gstreamer/work/gstreamer- > 0.6.2/gst/parse' > gmake[4]: *** [all] Error 2 > gmake[4]: Leaving directory > `/tmp/usr/ports/multimedia/gstreamer/work/gstreamer- > 0.6.2/gst/parse' > gmake[3]: *** [all-recursive] Error 1 > gmake[3]: Leaving directory > `/tmp/usr/ports/multimedia/gstreamer/work/gstreamer- > 0.6.2/gst' > gmake[2]: *** [all] Error 2 > gmake[2]: Leaving directory > `/tmp/usr/ports/multimedia/gstreamer/work/gstreamer- > 0.6.2/gst' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory > `/tmp/usr/ports/multimedia/gstreamer/work/gstreamer- > 0.6.2' > gmake: *** [all] Error 2 > *** Error code 2 > > Stop in /usr/ports/multimedia/gstreamer. > > > > Med vennlig hilsen > Christer Gundersen > Telenor Kundeservice - Top10/Pri1 -- bsdforums.org 's moderator, mezz. From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 11:54:50 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB3AF37B401 for ; Fri, 13 Jun 2003 11:54:50 -0700 (PDT) Received: from postal3.es.net (postal3.es.net [198.128.3.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BE6143F85 for ; Fri, 13 Jun 2003 11:54:50 -0700 (PDT) (envelope-from oberman@es.net) Received: from ptavv.es.net ([198.128.4.29]) by postal3.es.net (Postal Node 3) with ESMTP (SSL) id MUA74016; Fri, 13 Jun 2003 11:54:49 -0700 Received: from ptavv (localhost [127.0.0.1]) by ptavv.es.net (Tachyon Server) with ESMTP id 8CCFB5D08; Fri, 13 Jun 2003 11:54:48 -0700 (PDT) To: Mike Harding In-Reply-To: Message from Mike Harding <20030613035249.36AED52A8@netcom1.netcom.com> Date: Fri, 13 Jun 2003 11:54:48 -0700 From: "Kevin Oberman" Message-Id: <20030613185448.8CCFB5D08@ptavv.es.net> cc: gnome@freebsd.org Subject: Re: Evo date time - o' lordy, not agin X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 18:54:51 -0000 > From: Mike Harding > Date: Thu, 12 Jun 2003 20:52:49 -0700 (PDT) > Sender: owner-freebsd-gnome@freebsd.org > > > Well, the date seems much better now... ? I'll shut up unless it > happens again... Mine is unchanged. I rebuilt Evolution 1.4 and I still see all times +7 which is UTC. I did a fresh cvsup this morning before the build, but the evolution.desktop file was still referencing the 1.3 icons. (A quick edit fixed this.) I even down-loaded a new copy of the distro. Something really odd is happening here. I have compared my files to those in cvs and I have the latest versions and no stale patches in my ports tree. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 13:43:34 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E04E637B401 for ; Fri, 13 Jun 2003 13:43:34 -0700 (PDT) Received: from sisko.webonaut.com (sisko.webonaut.com [212.41.243.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4ED2443F85 for ; Fri, 13 Jun 2003 13:43:34 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from [127.0.0.1] (localhost.webonaut.com [127.0.0.1]) by sisko.webonaut.com (Postfix) with ESMTP id 1AD5A2840B for ; Fri, 13 Jun 2003 22:43:41 +0200 (CEST) From: Franz Klammer To: FreeBSD-gnome Content-Type: text/plain Message-Id: <1055537020.70924.2.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 13 Jun 2003 22:43:40 +0200 Content-Transfer-Encoding: 7bit Subject: libgnomedb didn't find gtksourceview X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 20:43:35 -0000 while the last update of libgnomedb i've seen that the configure-script didn't find gtksourceview. attached a updated patch-configure franz. ps: if the attachment didn't reach the list, please download patch-configure from here: http://webonaut.com/temp/ -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 15:03:44 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4719B37B404; Fri, 13 Jun 2003 15:03:44 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6D4F43FBF; Fri, 13 Jun 2003 15:03:43 -0700 (PDT) (envelope-from osa@FreeBSD.org) Received: from freefall.freebsd.org (osa@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h5DM3hUp014074; Fri, 13 Jun 2003 15:03:43 -0700 (PDT) (envelope-from osa@freefall.freebsd.org) Received: (from osa@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h5DM3h40014070; Fri, 13 Jun 2003 15:03:43 -0700 (PDT) Date: Fri, 13 Jun 2003 15:03:43 -0700 (PDT) From: "Sergey A. Osokin" Message-Id: <200306132203.h5DM3h40014070@freefall.freebsd.org> To: osa@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/53268: 5.1-RC1 mozilla-gtk2-1.4b,1 + flashplugin-mozilla-devel-0.4.10_2 bus error X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Jun 2003 22:03:44 -0000 Synopsis: 5.1-RC1 mozilla-gtk2-1.4b,1 + flashplugin-mozilla-devel-0.4.10_2 bus error Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: osa Responsible-Changed-When: Fri Jun 13 15:03:28 PDT 2003 Responsible-Changed-Why: Over to maintainer. http://www.freebsd.org/cgi/query-pr.cgi?pr=53268 From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 18:14:45 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 446FC37B401; Fri, 13 Jun 2003 18:14:45 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3B5F43F75; Fri, 13 Jun 2003 18:14:44 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (marcus@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h5E1EiUp035772; Fri, 13 Jun 2003 18:14:44 -0700 (PDT) (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h5E1EiCY035768; Fri, 13 Jun 2003 18:14:44 -0700 (PDT) Date: Fri, 13 Jun 2003 18:14:44 -0700 (PDT) From: Joe Marcus Clarke Message-Id: <200306140114.h5E1EiCY035768@freefall.freebsd.org> To: jimd@siu.edu, marcus@FreeBSD.org, gnome@FreeBSD.org Subject: Re: ports/53268: 5.1-RC1 mozilla-gtk2-1.4b,1 + flashplugin-mozilla-devel-0.4.10_2 bus error X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 01:14:45 -0000 Synopsis: 5.1-RC1 mozilla-gtk2-1.4b,1 + flashplugin-mozilla-devel-0.4.10_2 bus error State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Fri Jun 13 18:13:59 PDT 2003 State-Changed-Why: This port isn't maintained by GNOME, but is most likely broken anyway. Consider using www/flashpluginwrapper instead. It works much better. http://www.freebsd.org/cgi/query-pr.cgi?pr=53268 From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 18:36:09 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE64C37B401 for ; Fri, 13 Jun 2003 18:36:09 -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 EE0FF43FA3 for ; Fri, 13 Jun 2003 18:36:08 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5E1UXpM011822; Fri, 13 Jun 2003 21:30:33 -0400 (EDT) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) h5E1WHV8030600; Fri, 13 Jun 2003 21:32:18 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Franz Klammer In-Reply-To: <1055537020.70924.2.camel@sisko.webonaut.com> References: <1055537020.70924.2.camel@sisko.webonaut.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-B4hrv5ivtHHPMyjvHGb9" Organization: MarcusCom, Inc. Message-Id: <1055554564.346.4.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 13 Jun 2003 21:36:05 -0400 X-Spam-Status: No, hits=-8.3 required=5.0 tests=BAYES_00,EMAIL_ATTRIBUTION,IN_REP_TO,PGP_SIGNATURE_2, 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: FreeBSD GNOME Users Subject: Re: libgnomedb didn't find gtksourceview X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 01:36:10 -0000 --=-B4hrv5ivtHHPMyjvHGb9 Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2003-06-13 at 16:43, Franz Klammer wrote: > while the last update of libgnomedb i've seen that the > configure-script didn't find gtksourceview. >=20 > attached a updated patch-configure I assume this applies to libgnomedb? Joe >=20 > franz. >=20 > ps: if the attachment didn't reach the list, please > download patch-configure from here: > http://webonaut.com/temp/ --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-B4hrv5ivtHHPMyjvHGb9 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+6nwEb2iPiv4Uz4cRAuX/AJ97XXpdy8HB7LU1v5xB9CKrM3i6BACfZueM 2OoPgihonXQXOjU2krVvZIA= =/C4j -----END PGP SIGNATURE----- --=-B4hrv5ivtHHPMyjvHGb9-- From owner-freebsd-gnome@FreeBSD.ORG Fri Jun 13 20:02:32 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE70A37B401 for ; Fri, 13 Jun 2003 20:02:32 -0700 (PDT) Received: from rsmba.biz (evrtwa1-ar19-4-41-130-089.evrtwa1.dsl-verizon.net [4.41.130.89]) by mx1.FreeBSD.org (Postfix) with SMTP id 414BE43FDD for ; Fri, 13 Jun 2003 20:02:32 -0700 (PDT) (envelope-from rschi@rsmba.biz) Received: (qmail 16348 invoked from network); 14 Jun 2003 03:00:03 -0000 Received: from localhost (HELO foghorn.rsmba.biz) (127.0.0.1) by localhost with SMTP; 14 Jun 2003 03:00:03 -0000 Date: Fri, 13 Jun 2003 20:00:03 -0700 From: Richard Schilling To: gnome@freebsd.org Message-ID: <20030614030003.GQ16068@foghorn.rsmba.biz> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 1.4.4 Lines: 9 Subject: gnucash 1.8 crashing on startup X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 03:02:33 -0000 Don't know if I sent in this before, but I built gnucash 1.8 from the ports collection (after updating my ports collection with cvsup), and gnucash now crashes when it starts up. Doesn't even display a window. Any clues as to why? Thanks! --Richard Schilling From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 01:00:32 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE6B137B401 for ; Sat, 14 Jun 2003 01:00:32 -0700 (PDT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9433C43F75 for ; Sat, 14 Jun 2003 01:00:32 -0700 (PDT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.9/8.12.9) with ESMTP id h5E80WUp082898 for ; Sat, 14 Jun 2003 01:00:32 -0700 (PDT) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.9/8.12.9/Submit) id h5E80Wua082897; Sat, 14 Jun 2003 01:00:32 -0700 (PDT) Date: Sat, 14 Jun 2003 01:00:32 -0700 (PDT) Message-Id: <200306140800.h5E80Wua082897@freefall.freebsd.org> To: gnome@FreeBSD.org From: none Subject: Re: ports/53268: 5.1-RC1 mozilla-gtk2-1.4b,1 + flashplugin-mozilla-devel-0.4.10_2 bus error X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: none List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 08:00:33 -0000 The following reply was made to PR ports/53268; it has been noted by GNATS. From: none To: FreeBSD-gnats-submit@FreeBSD.org Cc: Subject: Re: ports/53268: 5.1-RC1 mozilla-gtk2-1.4b,1 + flashplugin-mozilla-devel-0.4.10_2 bus error Date: Sat, 14 Jun 2003 02:54:06 -0500 (CDT) Changing to /usr/ports/www/flashpluginwrapper has fixed the problem with the site in question. Perhaps something should be added to "flashplugin-mozilla-devel-0.4.10_2" to either mark it as 'broken', or include some other comment about encountered/likely problems. Thank you. On 13 Jun, Joe Marcus Clarke wrote: > Synopsis: 5.1-RC1 mozilla-gtk2-1.4b,1 + flashplugin-mozilla-devel-0.4.10_2 bus error > > State-Changed-From-To: open->closed > State-Changed-By: marcus > State-Changed-When: Fri Jun 13 18:13:59 PDT 2003 > State-Changed-Why: > This port isn't maintained by GNOME, but is most likely broken anyway. > Consider using www/flashpluginwrapper instead. It works much better. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=53268 From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 10:12:49 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 207E337B401 for ; Sat, 14 Jun 2003 10:12:49 -0700 (PDT) Received: from mta1.adelphia.net (mta1.adelphia.net [64.8.50.175]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C85343F93 for ; Sat, 14 Jun 2003 10:12:48 -0700 (PDT) (envelope-from pcalabrese@adelphia.net) Received: from prc1 ([68.70.144.85]) by mta1.adelphia.net (InterMail vM.5.01.05.32 201-253-122-126-132-20030307) with SMTP id <20030614171501.SECV25556.mta1.adelphia.net@prc1> for ; Sat, 14 Jun 2003 13:15:01 -0400 From: "Paul Calabrese" To: Date: Sat, 14 Jun 2003 13:18:21 -0400 Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2911.0) Importance: Normal X-MimeOLE: Produced By Microsoft MimeOLE V5.00.2919.6600 Subject: Startup message in GNOME X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 17:12:49 -0000 Hi I'm running FreeBSD Release 4.4. and trying to get GNOME working. When I start GNOME with xinit command I get the following start up message: Could not look up internet address for PRC.buf.adelphia.net. This will prevent GNOME from operating correctly. It may be possible to correct the problem by adding PRC.buf.adelphia.net to the file /etc/hosts. I looked at /etc/hosts with ee getting the following: L:1 C:1 ::1 127.0.0.1 localhost.buf.adelphia.net localhost 24:50:123:29 PRC.buf.adelphia.net also if I ping PRC.adelphia.net I get the response 64 bytes from 24.50.123.29 icmp_seq=0 ttl=255 time 35.64 ms . . . 64 bytes from 24.50.123.29 icmp_seq=4 ttl=255 time 223.78 ms 5 packets transmitted, 5 packets received, 0% packets lost Also, I have Windows NT 4.0 installed on the same machine and the internet connection works. I would appreciate any help, I can't seem to locate any detailed info that talks about this problem. Thanks Paul Calabrese pcalabrese@adelphia.net From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 10:49:11 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A45FD37B401 for ; Sat, 14 Jun 2003 10:49:11 -0700 (PDT) Received: from sisko.webonaut.com (sisko.webonaut.com [212.41.243.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7B8443FB1 for ; Sat, 14 Jun 2003 10:49:10 -0700 (PDT) (envelope-from klammer@webonaut.com) Received: from [127.0.0.1] (localhost.webonaut.com [127.0.0.1]) by sisko.webonaut.com (Postfix) with ESMTP id 2540528434; Sat, 14 Jun 2003 19:49:08 +0200 (CEST) From: Franz Klammer To: Joe Marcus Clarke In-Reply-To: <1055554564.346.4.camel@gyros> References: <1055537020.70924.2.camel@sisko.webonaut.com> <1055554564.346.4.camel@gyros> Content-Type: text/plain Message-Id: <1055612947.840.0.camel@sisko.webonaut.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.0 Date: 14 Jun 2003 17:49:07 +0000 Content-Transfer-Encoding: 7bit cc: FreeBSD GNOME Users Subject: Re: libgnomedb didn't find gtksourceview X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 17:49:11 -0000 Am Sa, 2003-06-14 um 01.36 schrieb Joe Marcus Clarke: > On Fri, 2003-06-13 at 16:43, Franz Klammer wrote: > > while the last update of libgnomedb i've seen that the > > configure-script didn't find gtksourceview. > > > > attached a updated patch-configure > > I assume this applies to libgnomedb? > yes. franz. > Joe > > > > > franz. > > > > ps: if the attachment didn't reach the list, please > > download patch-configure from here: > > http://webonaut.com/temp/ -- WEBONAUT.com http://webonaut.com mailto:klammer@webonaut.com From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 11:05:09 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D62A37B401 for ; Sat, 14 Jun 2003 11:05:09 -0700 (PDT) Received: from alef.poprostu.pl (alef.poprostu.pl [195.116.86.86]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5ABF43F85 for ; Sat, 14 Jun 2003 11:05:05 -0700 (PDT) (envelope-from piero@poprostu.pl) Received: from beth.poprostu.pl (beth.poprostu.pl [213.25.228.183]) by alef.poprostu.pl (8.12.6/8.12.6) with SMTP id h5EIXDak035503; Sat, 14 Jun 2003 20:33:13 +0200 (CEST) (envelope-from piero@poprostu.pl) Date: Sat, 14 Jun 2003 20:02:30 +0200 From: Piero To: "Paul Calabrese" Message-Id: <20030614200230.2cf8e0bc.piero@poprostu.pl> In-Reply-To: References: Organization: Poprostu X-Mailer: Sylpheed version 0.8.10claws (GTK+ 1.2.10; i386-portbld-freebsd4.8) Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-2 Content-Transfer-Encoding: quoted-printable cc: freebsd-gnome@freebsd.org Subject: Re: Startup message in GNOME X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 18:05:09 -0000 Hi, W li=B6cie otrzymanym Sat, 14 Jun 2003 13:18:21 -0400 od "Paul Calabrese" : > I'm running FreeBSD Release 4.4. and trying to get GNOME working. When > I start GNOME with xinit command I get the following start up message: You should probably upgrade to at least 4.6, see quote from http://www.freebsd.org/gnome: State of the port We currently support 4.x and 5-CURRENT FreeBSD systems for GNOME 1.4 and 2.2. Anything prior to FreeBSD 4.6 is not supported. --- Piero piero@poprostu.pl From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 11:12:34 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94C9537B401 for ; Sat, 14 Jun 2003 11:12:34 -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 BD5E143F93 for ; Sat, 14 Jun 2003 11:12:32 -0700 (PDT) (envelope-from martin.klaffenboeck@gmx.at) Received: (qmail 11879 invoked from network); 14 Jun 2003 18:12:30 -0000 Received: from unknown (HELO martin.kleinerdrache.org) (127.0.0.1) by loopback with SMTP; 14 Jun 2003 18:12:30 -0000 Date: Sat, 14 Jun 2003 20:12:30 +0200 From: Martin Klaffenboeck To: Joe Marcus Clarke , gnome freebsd Message-ID: <20030614181230.GA5967@martin.kleinerdrache.org> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 2.0.11 Lines: 42 Subject: marcusmerge ports not clean X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 18:12:34 -0000 Hello, The last days I tried the following: pkg_delete -r pkgconfig rm -r /usr/local/lib/compat marcusmerge -a cd /usr/ports/x11/gdm2 make install I could install gdm2 but I had some things to do. I also tried other things to install. Here I'll report things I could solve, I'll write another messages for every thing I could not solve. Solved things: 1. libglade2 told me in the configure script, that there is no gtk20 installed. The Makefile of libglade2 seemd to be correct, so I thought this could be a bug in the marcus bsd.gnome.mk file? Installing gtk20 by Hand did solve this problem. 2. gconf2 needs to install linc which wasn't done automatically. Installing linc by hand did solve this problem. 3. gconf2 needs a patch to work: See attached file: gconf2.diff 4. libgnomeui does not need the patch-libgnomeui_gnome-app.c file, it is allready done in the source. Thats all for now. 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 From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 12:02:37 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58F3737B401 for ; Sat, 14 Jun 2003 12:02:37 -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 3657E43FBD for ; Sat, 14 Jun 2003 12:02:31 -0700 (PDT) (envelope-from martin.klaffenboeck@gmx.at) Received: (qmail 42668 invoked from network); 14 Jun 2003 19:02:29 -0000 Received: from unknown (HELO martin.kleinerdrache.org) (127.0.0.1) by loopback with SMTP; 14 Jun 2003 19:02:29 -0000 Date: Sat, 14 Jun 2003 21:02:29 +0200 From: Martin Klaffenboeck To: Joe Marcus Clarke , gnome freebsd Message-ID: <20030614190229.GG5967@martin.kleinerdrache.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="envbJBWh7q8WU6mo" Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 2.0.11 Lines: 145 X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: marcus gnomemedia2 fails X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 19:02:37 -0000 --envbJBWh7q8WU6mo Content-Type: text/plain; format=flowed; charset=ISO-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit Hello, I'll start to report one problem per mail, because I have a few, maybe it's better to split different problems into different emails. the marcus gnomemedia2-2.2.3 fails. I attach the bzip2 log file (from script) because I cannot copy and paste the things, because my system is not so far right now. The main thing do know is, that we have a not defined reference to ORBIT_SERVANT_SET_CLASSINFO. 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 --envbJBWh7q8WU6mo-- From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 12:08:02 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0604D37B401 for ; Sat, 14 Jun 2003 12:08:02 -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 46CF443FDD for ; Sat, 14 Jun 2003 12:07:59 -0700 (PDT) (envelope-from martin.klaffenboeck@gmx.at) Received: (qmail 46041 invoked from network); 14 Jun 2003 19:07:58 -0000 Received: from unknown (HELO martin.kleinerdrache.org) (127.0.0.1) by loopback with SMTP; 14 Jun 2003 19:07:58 -0000 Date: Sat, 14 Jun 2003 21:07:57 +0200 From: Martin Klaffenboeck To: Joe Marcus Clarke , gnome freebsd Message-ID: <20030614190757.GI5967@martin.kleinerdrache.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="UHN/qo2QbUvPLonB" Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 2.0.11 Lines: 93 X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: marcus metacity fails X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 19:08:02 -0000 --UHN/qo2QbUvPLonB Content-Type: text/plain; format=flowed; charset=ISO-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit Hello, metacity-2.5.2_1 fails, I'll also attach a bzip2 output log. The main thing is that libgthread has an undefined reference to pthread. 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 --UHN/qo2QbUvPLonB-- From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 12:42:29 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 84A0337B401 for ; Sat, 14 Jun 2003 12:42:29 -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 139CB43F85 for ; Sat, 14 Jun 2003 12:42:27 -0700 (PDT) (envelope-from martin.klaffenboeck@gmx.at) Received: (qmail 71364 invoked from network); 14 Jun 2003 19:42:25 -0000 Received: from unknown (HELO martin.kleinerdrache.org) (127.0.0.1) by loopback with SMTP; 14 Jun 2003 19:42:25 -0000 Date: Sat, 14 Jun 2003 21:42:25 +0200 From: Martin Klaffenboeck To: Joe Marcus Clarke , gnome freebsd Message-ID: <20030614194225.GA66864@martin.kleinerdrache.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="0F1p//8PRICkK4MW" Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 2.0.11 Lines: 127 X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: marcus gnomesession X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 19:42:29 -0000 --0F1p//8PRICkK4MW Content-Type: text/plain; format=flowed; charset=ISO-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit Hello, gnomesession-2.3.2 from marcuscom fails. Log is attached. The thing is: We have some errors in a c file, where I don't know whats happening. The file is not compiled with -I/usr/local/include/linc-1.0 which would maybe help, if we include linc/linc.h - but I'm not really sure if that would solve the problem. I didn't know how to add the -I/usr/local/ include/linc-1.0 file into the programm. Maybe we have a wrong configure script? 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 --0F1p//8PRICkK4MW-- From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 12:53:32 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E7AC37B401 for ; Sat, 14 Jun 2003 12:53:32 -0700 (PDT) Received: from lakemtao05.cox.net (lakemtao05.cox.net [68.1.17.116]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0A5743FBD for ; Sat, 14 Jun 2003 12:53:31 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from sysinfo.mezzweb.com ([68.103.37.247]) by lakemtao05.cox.net ESMTP <20030614195331.DJLN28938.lakemtao05.cox.net@sysinfo.mezzweb.com>; Sat, 14 Jun 2003 15:53:31 -0400 To: Martin Klaffenboeck , Joe Marcus Clarke , gnome freebsd References: <20030614181230.GA5967@martin.kleinerdrache.org> Message-ID: Content-Type: text/plain; charset=utf-8; format=flowed From: Jeremy Messenger MIME-Version: 1.0 Date: Sat, 14 Jun 2003 14:38:51 -0500 In-Reply-To: <20030614181230.GA5967@martin.kleinerdrache.org> User-Agent: Opera7.11/Linux M2 build 406 Subject: Re: marcusmerge ports not clean X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 19:53:32 -0000 On Sat, 14 Jun 2003 20:12:30 +0200, Martin Klaffenboeck wrote: > Hello, All four of your email have no attach; it seems like you have forgotten to attach, something problem with your email client or maillist. Cheers, Mezz > The last days I tried the following: > > pkg_delete -r pkgconfig > rm -r /usr/local/lib/compat > > marcusmerge -a > > cd /usr/ports/x11/gdm2 > make install > > I could install gdm2 but I had some things to do. I also tried other > things to install. > > Here I'll report things I could solve, I'll write another messages for > every thing I could not solve. > > Solved things: > > 1. libglade2 told me in the configure script, that there is no gtk20 > installed. The Makefile of libglade2 seemd to be correct, so I thought > this could be a bug in the marcus bsd.gnome.mk file? Installing gtk20 by > Hand did solve this problem. > > 2. gconf2 needs to install linc which wasn't done automatically. > Installing linc by hand did solve this problem. > > 3. gconf2 needs a patch to work: See attached file: gconf2.diff > > 4. libgnomeui does not need the patch-libgnomeui_gnome-app.c file, it is > allready done in the source. > > Thats all for now. > > Martin > -- bsdforums.org 's moderator, mezz. From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 13:10:33 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CDB037B401 for ; Sat, 14 Jun 2003 13:10:33 -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 44ABD43FBD for ; Sat, 14 Jun 2003 13:10:20 -0700 (PDT) (envelope-from martin.klaffenboeck@gmx.at) Received: (qmail 68372 invoked from network); 14 Jun 2003 20:10:18 -0000 Received: from unknown (HELO martin.kleinerdrache.org) (127.0.0.1) by loopback with SMTP; 14 Jun 2003 20:10:18 -0000 Date: Sat, 14 Jun 2003 22:10:18 +0200 From: Martin Klaffenboeck To: Jeremy Messenger Message-ID: <20030614201018.GA68356@martin.kleinerdrache.org> References: <20030614181230.GA5967@martin.kleinerdrache.org> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="fdj2RfSjLxBAspz7" Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: ; from mezz7@cox.net on Sa, Jun 14, 2003 at 21:38:51 +0200 X-Mailer: Balsa 2.0.11 Lines: 364 X-Content-Filtered-By: Mailman/MimeDel 2.1.1 cc: gnome freebsd Subject: Re: marcusmerge ports not clean X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 20:10:33 -0000 --fdj2RfSjLxBAspz7 Content-Type: text/plain; format=flowed; charset=UTF-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit Am 2003.06.14 21:38 schrieb(en) Jeremy Messenger: > On Sat, 14 Jun 2003 20:12:30 +0200, Martin Klaffenboeck klaffenboeck@gmx.at> wrote: > >> Hello, > > All four of your email have no attach; it seems like you have > forgotten to attach, something problem with your email client or > maillist. Hm. I got my attachments via the mailling list. I'll send you the attachments here again. Please tell me if they dont come through? I've installed qmail new, maybe I have to configure there something? Martin > Cheers, > Mezz > >> The last days I tried the following: >> >> pkg_delete -r pkgconfig >> rm -r /usr/local/lib/compat >> >> marcusmerge -a >> >> cd /usr/ports/x11/gdm2 >> make install >> >> I could install gdm2 but I had some things to do. I also tried >> other things to install. >> >> Here I'll report things I could solve, I'll write another messages >> for every thing I could not solve. >> >> Solved things: >> >> 1. libglade2 told me in the configure script, that there is no gtk20 >> installed. The Makefile of libglade2 seemd to be correct, so I >> thought this could be a bug in the marcus bsd.gnome.mk file? >> Installing gtk20 by Hand did solve this problem. >> >> 2. gconf2 needs to install linc which wasn't done automatically. >> Installing linc by hand did solve this problem. >> >> 3. gconf2 needs a patch to work: See attached file: gconf2.diff >> >> 4. libgnomeui does not need the patch-libgnomeui_gnome-app.c file, >> it is allready done in the source. >> >> Thats all for now. >> >> Martin >> > > > >-- > bsdforums.org 's moderator, mezz. > > -- 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-- From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 13:31:46 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A4A637B401 for ; Sat, 14 Jun 2003 13:31:46 -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 C3EF643FCB for ; Sat, 14 Jun 2003 13:31:44 -0700 (PDT) (envelope-from martin.klaffenboeck@gmx.at) Received: (qmail 73539 invoked from network); 14 Jun 2003 20:31:43 -0000 Received: from unknown (HELO martin.kleinerdrache.org) (127.0.0.1) by loopback with SMTP; 14 Jun 2003 20:31:43 -0000 Date: Sat, 14 Jun 2003 22:31:43 +0200 From: Martin Klaffenboeck To: freebsd-gnome@freebsd.org Message-ID: <20030614203143.GA73517@martin.kleinerdrache.org> References: <20030614181230.GA5967@martin.kleinerdrache.org> <20030614201018.GA68356@martin.kleinerdrache.org> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=UTF-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 2.0.11 Lines: 40 Subject: Re: marcusmerge ports not clean X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 20:31:46 -0000 Am 2003.06.14 22:10 schrieb(en) Martin Klaffenboeck: > > Am 2003.06.14 21:38 schrieb(en) Jeremy Messenger: >> On Sat, 14 Jun 2003 20:12:30 +0200, Martin Klaffenboeck > klaffenboeck@gmx.at> wrote: >> >>> Hello, >> >> All four of your email have no attach; it seems like you have >> forgotten to attach, something problem with your email client or >> maillist. > > Hm. I got my attachments via the mailling list. I'll send you the > attachments here again. > > Please tell me if they dont come through? I've installed qmail new, > maybe I have to configure there something? Ok, I can see, the files are not here. But now they are here: http://www.sbg.ac.at/~0021250/errors/gnomemedia2.out 53k http://www.sbg.ac.at/~0021250/errors/gnomemedia2.out.bz2 5k http://www.sbg.ac.at/~0021250/errors/gnomesession.out 31k http://www.sbg.ac.at/~0021250/errors/gnomesession.out.bz2 4k http://www.sbg.ac.at/~0021250/errors/metacity.out 14k http://www.sbg.ac.at/~0021250/errors/metacity.out.bz2 3k Hope the links are working, I have no wm running now, so it's hard to copy and paste them. (So yes, metacity is the important thing right now.) 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 From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 13:46:57 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82C6C37B401 for ; Sat, 14 Jun 2003 13:46:57 -0700 (PDT) Received: from lakemtao07.cox.net (lakemtao07.cox.net [68.1.17.114]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CA0843FA3 for ; Sat, 14 Jun 2003 13:46:56 -0700 (PDT) (envelope-from mezz7@cox.net) Received: from sysinfo.mezzweb.com ([68.103.37.247]) by lakemtao07.cox.net (InterMail vM.5.01.04.05 201-253-122-122-105-20011231) with ESMTP id <20030614204656.IQTI4514.lakemtao07.cox.net@sysinfo.mezzweb.com>; Sat, 14 Jun 2003 16:46:56 -0400 Date: Sat, 14 Jun 2003 15:32:21 -0500 To: Martin Klaffenboeck , freebsd-gnome@freebsd.org Content-Type: text/plain; charset=utf-8; format=flowed References: <20030614181230.GA5967@martin.kleinerdrache.org> <20030614201018.GA68356@martin.kleinerdrache.org> <20030614203143.GA73517@martin.kleinerdrache.org> From: Jeremy Messenger MIME-Version: 1.0 Message-ID: In-Reply-To: <20030614203143.GA73517@martin.kleinerdrache.org> User-Agent: Opera7.11/Linux M2 build 406 Subject: Re: marcusmerge ports not clean X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 20:46:57 -0000 On Sat, 14 Jun 2003 22:31:43 +0200, Martin Klaffenboeck wrote: > > Am 2003.06.14 22:10 schrieb(en) Martin Klaffenboeck: >> >> Am 2003.06.14 21:38 schrieb(en) Jeremy Messenger: >>> On Sat, 14 Jun 2003 20:12:30 +0200, Martin Klaffenboeck >> klaffenboeck@gmx.at> wrote: >>> >>>> Hello, >>> >>> All four of your email have no attach; it seems like you have forgotten >>> to attach, something problem with your email client or maillist. >> >> Hm. I got my attachments via the mailling list. I'll send you the >> attachments here again. >> >> Please tell me if they dont come through? I've installed qmail new, >> maybe I have to configure there something? When, you add my email in the cc or to; I get them fine. Seem like it's maillist issue or something else, because I check at freebsd.org/mail/ and I see no attach that you re-send to me, which I have them. > Ok, I can see, the files are not here. But now they are here: > > http://www.sbg.ac.at/~0021250/errors/gnomemedia2.out 53k > http://www.sbg.ac.at/~0021250/errors/gnomemedia2.out.bz2 5k > http://www.sbg.ac.at/~0021250/errors/gnomesession.out 31k > http://www.sbg.ac.at/~0021250/errors/gnomesession.out.bz2 4k > http://www.sbg.ac.at/~0021250/errors/metacity.out 14k > http://www.sbg.ac.at/~0021250/errors/metacity.out.bz2 3k > > Hope the links are working, I have no wm running now, so it's hard to > copy and paste them. (So yes, metacity is the important thing right > now.) Ya, those links are work.. Ummm, maybe you should install some smaller WM such as Blackbox, Openbox, Fluxbox or whatever in case if you have the problem with the Gnome 2.3.x.. I always install Openbox and use it first, then install Gnome. It's a lot easier and faster to do the work when the Gnome 2.3.x failed or broke. I have Openbox installed, so just a suggest. :-) BTW: I just did installed fluxbox-devel; it was nice and will configure the menu by automatic.. Even add opera, mozilla, vim and etc by itself in the right place like internet, graphic and etc. But, I like Openbox better, because it works with Xft2 a lot better than Fluxbox does. Cheers, Mezz > Martin -- bsdforums.org 's moderator, mezz. From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 13:54:46 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A164637B401 for ; Sat, 14 Jun 2003 13:54:46 -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 B3DD143FB1 for ; Sat, 14 Jun 2003 13:54:42 -0700 (PDT) (envelope-from martin.klaffenboeck@gmx.at) Received: (qmail 8657 invoked from network); 14 Jun 2003 20:54:40 -0000 Received: from unknown (HELO martin.kleinerdrache.org) (127.0.0.1) by loopback with SMTP; 14 Jun 2003 20:54:40 -0000 Date: Sat, 14 Jun 2003 22:54:40 +0200 From: Martin Klaffenboeck To: Joe Marcus Clarke , gnome freebsd Message-ID: <20030614205440.GA8641@martin.kleinerdrache.org> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit X-Mailer: Balsa 2.0.11 Lines: 17 Subject: macus galeon2 fails X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 20:54:46 -0000 Hello, marcus galeon2 fails also. I dont know more about it, but there are the links to the output log: http://www.sbg.ac.at/~0021250/errors/galeon2.out 139k http://www.sbg.ac.at/~0021250/errors/galeon2.out.bz2 5k Thanks for help, 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 From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 13:57:21 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF08837B401 for ; Sat, 14 Jun 2003 13:57:21 -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 71D1143F85 for ; Sat, 14 Jun 2003 13:57:19 -0700 (PDT) (envelope-from martin.klaffenboeck@gmx.at) Received: (qmail 8664 invoked from network); 14 Jun 2003 20:57:18 -0000 Received: from unknown (HELO martin.kleinerdrache.org) (127.0.0.1) by loopback with SMTP; 14 Jun 2003 20:57:18 -0000 Date: Sat, 14 Jun 2003 22:57:18 +0200 From: Martin Klaffenboeck To: Jeremy Messenger Message-ID: <20030614205718.GC8641@martin.kleinerdrache.org> References: <20030614181230.GA5967@martin.kleinerdrache.org> <20030614201018.GA68356@martin.kleinerdrache.org> <20030614203143.GA73517@martin.kleinerdrache.org> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=UTF-8 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: ; from mezz7@cox.net on Sa, Jun 14, 2003 at 22:32:21 +0200 X-Mailer: Balsa 2.0.11 Lines: 62 cc: freebsd-gnome@freebsd.org Subject: Re: marcusmerge ports not clean X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Jun 2003 20:57:22 -0000 Am 2003.06.14 22:32 schrieb(en) Jeremy Messenger: > On Sat, 14 Jun 2003 22:31:43 +0200, Martin Klaffenboeck klaffenboeck@gmx.at> wrote: > >> >> Am 2003.06.14 22:10 schrieb(en) Martin Klaffenboeck: >>> >>> Am 2003.06.14 21:38 schrieb(en) Jeremy Messenger: >>>> On Sat, 14 Jun 2003 20:12:30 +0200, Martin Klaffenboeck >>> klaffenboeck@gmx.at> wrote: >>>> >>>>> Hello, >>>> >>>> All four of your email have no attach; it seems like you have >>>> forgotten to attach, something problem with your email client or >>>> maillist. >>> >>> Hm. I got my attachments via the mailling list. I'll send you the >>> attachments here again. >>> >>> Please tell me if they dont come through? I've installed qmail >>> new, maybe I have to configure there something? > > When, you add my email in the cc or to; I get them fine. Seem like > it's maillist issue or something else, because I check at freebsd. > org/mail/ and I see no attach that you re-send to me, which I have > them. > >> Ok, I can see, the files are not here. But now they are here: >> >> http://www.sbg.ac.at/~0021250/errors/gnomemedia2.out 53k >> http://www.sbg.ac.at/~0021250/errors/gnomemedia2.out.bz2 5k >> http://www.sbg.ac.at/~0021250/errors/gnomesession.out 31k >> http://www.sbg.ac.at/~0021250/errors/gnomesession.out.bz2 4k >> http://www.sbg.ac.at/~0021250/errors/metacity.out 14k >> http://www.sbg.ac.at/~0021250/errors/metacity.out.bz2 3k >> >> Hope the links are working, I have no wm running now, so it's hard >> to copy and paste them. (So yes, metacity is the important thing >> right now.) > > Ya, those links are work.. Ummm, maybe you should install some > smaller WM such as Blackbox, Openbox, Fluxbox or whatever in case if > you have the problem with the Gnome 2.3.x.. I always install Openbox > and use it first, then install Gnome. It's a lot easier and faster to > do the work when the Gnome 2.3.x failed or broke. I have Openbox > installed, so just a suggest. :-) Would be an Idea. Maybe I can try. I just want then gdm2 to let me in with different sessions, one for openbox and one for gnome, because I don't want to lose settings in gnome. I'll have a look at it, hope that works. 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 From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 19:39:08 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BD6137B401 for ; Sat, 14 Jun 2003 19:39:08 -0700 (PDT) Received: from rsmba.biz (evrtwa1-ar19-4-41-130-089.evrtwa1.dsl-verizon.net [4.41.130.89]) by mx1.FreeBSD.org (Postfix) with SMTP id C742B43F85 for ; Sat, 14 Jun 2003 19:39:07 -0700 (PDT) (envelope-from rschi@rsmba.biz) Received: (qmail 43180 invoked from network); 15 Jun 2003 02:36:33 -0000 Received: from localhost (HELO foghorn.rsmba.biz) (127.0.0.1) by localhost with SMTP; 15 Jun 2003 02:36:33 -0000 Date: Sat, 14 Jun 2003 19:36:33 -0700 From: Richard Schilling To: gnome@freebsd.org Message-ID: <20030615023633.GG43044@foghorn.rsmba.biz> References: <20030614030003.GQ16068@foghorn.rsmba.biz> Mime-Version: 1.0 Content-Type: text/plain; format=flowed; charset=ISO-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20030614030003.GQ16068@foghorn.rsmba.biz>; from rschi@rsmba.biz on Fri, Jun 13, 2003 at 20:00:03 -0700 X-Mailer: Balsa 1.4.4 Lines: 13 Subject: Re: gnucash 1.8 crashing on startup X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jun 2003 02:39:08 -0000 FYI: I upgraded to FreeBSD 4.8, and Gnucash now works just fine. On 2003.06.13 20:00 Richard Schilling wrote: > Don't know if I sent in this before, but I built gnucash 1.8 from the > ports collection (after updating my ports collection with cvsup), and > gnucash now crashes when it starts up. Doesn't even display a window. > > Any clues as to why? > > Thanks! > > --Richard Schilling From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 20:17:20 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A04C37B401 for ; Sat, 14 Jun 2003 20:17:20 -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 B0F1943F75 for ; Sat, 14 Jun 2003 20:17:19 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5F3Fd93005520 for ; Sat, 14 Jun 2003 23:15:40 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h5F3DMV8053015 for ; Sat, 14 Jun 2003 23:13:22 -0400 (EDT) (envelope-from marcus@FreeBSD.org) From: Joe Marcus Clarke To: FreeBSD GNOME Users Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-MSD8r0OBwEj8vssjpBfC" Organization: FreeBSD, Inc. Message-Id: <1055647028.81724.2.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 14 Jun 2003 23:17:08 -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: I'm home now X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jun 2003 03:17:20 -0000 --=-MSD8r0OBwEj8vssjpBfC Content-Type: text/plain Content-Transfer-Encoding: quoted-printable I'm back home, and I'm looking to catch up on any pending issues before I have to fly out again next weekend. If there's anything still outstanding, please send me an email. Joe --=20 Joe Marcus Clarke FreeBSD GNOME Team :: marcus@FreeBSD.org http://www.FreeBSD.org/gnome --=-MSD8r0OBwEj8vssjpBfC 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+6+U0b2iPiv4Uz4cRAh6sAJsEyVbPHgtIs3yYRHJBcswP/UWqMQCgkv1f 0iVlL/n73leG642Wd/2YsGA= =yqhm -----END PGP SIGNATURE----- --=-MSD8r0OBwEj8vssjpBfC-- From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 22:12:41 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5112E37B401 for ; Sat, 14 Jun 2003 22:12:41 -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 4DE0143F93 for ; Sat, 14 Jun 2003 22:12:35 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5F59XqP029464; Sun, 15 Jun 2003 01:09:51 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h5F58IV8063351; Sun, 15 Jun 2003 01:08:19 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Martin Klaffenboeck In-Reply-To: <20030614190229.GG5967@martin.kleinerdrache.org> References: <20030614190229.GG5967@martin.kleinerdrache.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-RXsMc+aPpeD5cTxGbZbD" Organization: MarcusCom, Inc. Message-Id: <1055653925.81724.26.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 15 Jun 2003 01:12:05 -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: gnome freebsd Subject: Re: marcus gnomemedia2 fails X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jun 2003 05:12:41 -0000 --=-RXsMc+aPpeD5cTxGbZbD Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2003-06-14 at 15:02, Martin Klaffenboeck wrote: > Hello, >=20 > I'll start to report one problem per mail, because I have a few, maybe=20 > it's better to split different problems into different emails. >=20 > the marcus gnomemedia2-2.2.3 fails. I attach the bzip2 log file (from=20 > script) because I cannot copy and paste the things, because my system=20 > is not so far right now. >=20 > The main thing do know is, that we have a not defined reference to=20 > ORBIT_SERVANT_SET_CLASSINFO. This should be fixed now. Joe >=20 > Martin --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-RXsMc+aPpeD5cTxGbZbD 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+7AAkb2iPiv4Uz4cRAjxUAJ0ffpNwMFxoBcguf8QHfJ6FqHfeNgCcC1nr nZxKNSeRBsFhohtJCGfIg6I= =vAeA -----END PGP SIGNATURE----- --=-RXsMc+aPpeD5cTxGbZbD-- From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 22:45:42 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 676A237B401 for ; Sat, 14 Jun 2003 22:45:42 -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 852D943FBD for ; Sat, 14 Jun 2003 22:45:41 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5F5i293011667; Sun, 15 Jun 2003 01:44:02 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h5F5fiV8063603; Sun, 15 Jun 2003 01:41:44 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Martin Klaffenboeck In-Reply-To: <20030614190757.GI5967@martin.kleinerdrache.org> References: <20030614190757.GI5967@martin.kleinerdrache.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-LReLAFZKyOEJoTy0BXlb" Organization: MarcusCom, Inc. Message-Id: <1055655930.81724.30.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 15 Jun 2003 01:45:30 -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: gnome freebsd Subject: Re: marcus metacity fails X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jun 2003 05:45:42 -0000 --=-LReLAFZKyOEJoTy0BXlb Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2003-06-14 at 15:07, Martin Klaffenboeck wrote: > Hello, >=20 > metacity-2.5.2_1 fails, I'll also attach a bzip2 output log. >=20 > The main thing is that libgthread has an undefined reference to pthread. This should now be fixed by updating ORBit2. Joe >=20 > Martin --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-LReLAFZKyOEJoTy0BXlb 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+7Af6b2iPiv4Uz4cRAlyRAJ0UujpFSC1g7wxWdPiaJsUK9ZW7ygCeIab3 mcxwLzMhuEpMBifJPd7cvbw= =NAzp -----END PGP SIGNATURE----- --=-LReLAFZKyOEJoTy0BXlb-- From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 23:01:24 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0DAC37B446 for ; Sat, 14 Jun 2003 23:01:23 -0700 (PDT) Received: from ms-smtp-02.southeast.rr.com (ms-smtp-02.southeast.rr.com [24.93.67.83]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F0C543F85 for ; Sat, 14 Jun 2003 23:01:23 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5F5wdqP022126; Sun, 15 Jun 2003 01:58:39 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h5F5vPV8063773; Sun, 15 Jun 2003 01:57:25 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Martin Klaffenboeck In-Reply-To: <20030614194225.GA66864@martin.kleinerdrache.org> References: <20030614194225.GA66864@martin.kleinerdrache.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-WZ5q6QYJTKKgJI1qbfLu" Organization: MarcusCom, Inc. Message-Id: <1055656871.81724.32.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 15 Jun 2003 02:01: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: gnome freebsd Subject: Re: marcus gnomesession X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jun 2003 06:01:24 -0000 --=-WZ5q6QYJTKKgJI1qbfLu Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2003-06-14 at 15:42, Martin Klaffenboeck wrote: > Hello, >=20 > gnomesession-2.3.2 from marcuscom fails. Log is attached. >=20 > The thing is: >=20 > We have some errors in a c file, where I don't know whats happening. =20 > The file is not compiled with -I/usr/local/include/linc-1.0 which would=20 > maybe help, if we include linc/linc.h - but I'm not really sure if that=20 > would solve the problem. I didn't know how to add the -I/usr/local/ > include/linc-1.0 file into the programm. Maybe we have a wrong=20 > configure script? This is fixed now with gnomesession-2.3.3. Joe >=20 > Martin --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-WZ5q6QYJTKKgJI1qbfLu 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+7Aunb2iPiv4Uz4cRAgMvAKCgUn8IrurDsWMH5ByYWfXA1lmyDwCfTRN2 UdT9Aw7jJmPYH/9JSr9Pq5c= =j9zI -----END PGP SIGNATURE----- --=-WZ5q6QYJTKKgJI1qbfLu-- From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 23:40:08 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21E7237B401 for ; Sat, 14 Jun 2003 23:40:08 -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 2BFEE43F85 for ; Sat, 14 Jun 2003 23:40:02 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5F6b8qP013723; Sun, 15 Jun 2003 02:37:13 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h5F6ZsV8064083; Sun, 15 Jun 2003 02:35:54 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Martin Klaffenboeck In-Reply-To: <20030614205440.GA8641@martin.kleinerdrache.org> References: <20030614205440.GA8641@martin.kleinerdrache.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-uzrNFw4aKelygqEgu5uX" Organization: MarcusCom, Inc. Message-Id: <1055659181.81724.40.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 15 Jun 2003 02:39:41 -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: gnome freebsd Subject: Re: macus galeon2 fails X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jun 2003 06:40:08 -0000 --=-uzrNFw4aKelygqEgu5uX Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Sat, 2003-06-14 at 16:54, Martin Klaffenboeck wrote: > Hello, >=20 > marcus galeon2 fails also. I dont know more about it, but there are=20 > the links to the output log: >=20 > http://www.sbg.ac.at/~0021250/errors/galeon2.out 139k > http://www.sbg.ac.at/~0021250/errors/galeon2.out.bz2 5k >=20 > Thanks for help, This should now be fixed, too. Joe >=20 > Martin --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-uzrNFw4aKelygqEgu5uX 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+7BSsb2iPiv4Uz4cRAhR3AJ9Tde9T208mvnRFpJSz6p/a9GirRwCgl1Tb tZLxJeYJfm9jjpBa1/HijNI= =ntWz -----END PGP SIGNATURE----- --=-uzrNFw4aKelygqEgu5uX-- From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 23:45:07 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A8DA37B401 for ; Sat, 14 Jun 2003 23:45:07 -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 4609243FB1 for ; Sat, 14 Jun 2003 23:45:06 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5F6d5pM011606; Sun, 15 Jun 2003 02:39:26 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h5F6ehV8064109; Sun, 15 Jun 2003 02:40:43 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Kevin Oberman In-Reply-To: <20030613185448.8CCFB5D08@ptavv.es.net> References: <20030613185448.8CCFB5D08@ptavv.es.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-pg9IdVr9qkSessCD32pE" Organization: MarcusCom, Inc. Message-Id: <1055659469.81724.42.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 15 Jun 2003 02:44:29 -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: FreeBSD GNOME Users Subject: Re: Evo date time - o' lordy, not agin X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jun 2003 06:45:07 -0000 --=-pg9IdVr9qkSessCD32pE Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Fri, 2003-06-13 at 14:54, Kevin Oberman wrote: > > From: Mike Harding > > Date: Thu, 12 Jun 2003 20:52:49 -0700 (PDT) > > Sender: owner-freebsd-gnome@freebsd.org > >=20 > >=20 > > Well, the date seems much better now... ? I'll shut up unless it > > happens again... >=20 > Mine is unchanged. I rebuilt Evolution 1.4 and I still see all times > +7 which is UTC. >=20 > I did a fresh cvsup this morning before the build, but the > evolution.desktop file was still referencing the 1.3 icons. (A quick > edit fixed this.) I even down-loaded a new copy of the distro. >=20 > Something really odd is happening here. I have compared my files to > those in cvs and I have the latest versions and no stale patches in my > ports tree. Try re-cvsup'ing and rebuilding again, and verify your timezone is accurately set. I've seen issues where the time is correct, but the timezone is wrong. This could throw off Evo. Joe --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-pg9IdVr9qkSessCD32pE 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+7BXNb2iPiv4Uz4cRAuMDAKCdfrB7t7Kf7A0y52OE4q/FjLXB8ACeMxlu oUpbighTXT6sJ0WAfhmUUaM= =eDom -----END PGP SIGNATURE----- --=-pg9IdVr9qkSessCD32pE-- From owner-freebsd-gnome@FreeBSD.ORG Sat Jun 14 23:45:36 2003 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE92C37B401 for ; Sat, 14 Jun 2003 23:45:36 -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 12F0143F3F for ; Sat, 14 Jun 2003 23:45:36 -0700 (PDT) (envelope-from marcus@marcuscom.com) Received: from creme-brulee.marcuscom.com (rdu57-17-158.nc.rr.com [66.57.17.158])h5F6hr93012884; Sun, 15 Jun 2003 02:43:54 -0400 (EDT) Received: from [192.168.1.4] (shumai.marcuscom.com [192.168.1.4]) h5F6faV8064115; Sun, 15 Jun 2003 02:41:36 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Roman Mora In-Reply-To: <13901.1055315570@www7.gmx.net> References: <13901.1055315570@www7.gmx.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-aioeM3mR/mSMw6Y9xzRb" Organization: MarcusCom, Inc. Message-Id: <1055659522.81724.44.camel@shumai.marcuscom.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.3.92 (Preview Release) Date: 15 Jun 2003 02:45:22 -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: FreeBSD GNOME Users Subject: Re: Script "configure" failed unexpectedly while compiling gnome2-fifth-toe X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Jun 2003 06:45:37 -0000 --=-aioeM3mR/mSMw6Y9xzRb Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2003-06-11 at 03:12, Roman Mora wrote: > I try to build gnome2-fifth-toe from the ports (portstree has been update= d > with cvsup), but I get this This sounds like -CURRENT. Make sure you have math/libgmp-freebsd installed. Joe > error: >=20 > -------------------------------------------------------------------------= ------------------------ >=20 > configure: error: Can't find GMP (--without-gmp for cut-down non-GMP buil= d) > =3D=3D=3D> Script "configure" failed unexpectedly. > Please report the problem to gnome@FreeBSD.org [maintainer] and att= ach > the "/usr/ports/lang/librep/work/librep-0.16.2/config.log" includin= g > 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 > =20 > Stop in /usr/ports/lang/librep. > *** Error code 1 > =20 > Stop in /usr/ports/x11-toolkits/rep-gtk2. > *** Error code 1 > =20 > Stop in /usr/ports/x11-wm/sawfish2. > *** Error code 1 > =20 > Stop in > /usr/ports/x11/gnome2-fifth-toe. >=20 > -------------------------------------------------------------------------= ------------------------ >=20 > /usr/ports/lang/librep/work/librep-0.16.2/config.log is attachted to this > mail as well as pkg.txt (an overview of the packages installed on my syst= em). --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-aioeM3mR/mSMw6Y9xzRb 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+7BYCb2iPiv4Uz4cRAgV1AJ9GK8iRYlWgME4NlmzcpOyUgvfNogCgrrZ8 gWk9aYoT0+bH+3QSPeN7eNE= =QVFb -----END PGP SIGNATURE----- --=-aioeM3mR/mSMw6Y9xzRb--