From owner-freebsd-gnome@FreeBSD.ORG Sun Aug 8 07:51:38 2010 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C259D106564A; Sun, 8 Aug 2010 07:51:38 +0000 (UTC) (envelope-from hrs@FreeBSD.org) Received: from mail.allbsd.org (gatekeeper-int.allbsd.org [IPv6:2001:2f0:104:e002::2]) by mx1.freebsd.org (Postfix) with ESMTP id 09F9F8FC15; Sun, 8 Aug 2010 07:51:37 +0000 (UTC) Received: from alph.d.allbsd.org (p2176-ipbf406funabasi.chiba.ocn.ne.jp [124.86.72.176]) (authenticated bits=128) by mail.allbsd.org (8.14.4/8.14.3) with ESMTP id o787pHAK099875; Sun, 8 Aug 2010 16:51:27 +0900 (JST) (envelope-from hrs@FreeBSD.org) Received: from localhost (localhost [IPv6:::1]) (authenticated bits=0) by alph.d.allbsd.org (8.14.4/8.14.4) with ESMTP id o787pFjK044827; Sun, 8 Aug 2010 16:51:17 +0900 (JST) (envelope-from hrs@FreeBSD.org) Date: Sun, 08 Aug 2010 16:50:52 +0900 (JST) Message-Id: <20100808.165052.64910211.hrs@allbsd.org> To: gnome@FreeBSD.org From: Hiroki Sato X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 6.3 on Emacs 23.1 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart0(Sun_Aug__8_16_50_52_2010_881)--" Content-Transfer-Encoding: 7bit X-Virus-Scanned: clamav-milter 0.95.3 at gatekeeper.allbsd.org X-Virus-Status: Clean X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.3 (mail.allbsd.org [133.31.130.32]); Sun, 08 Aug 2010 16:51:30 +0900 (JST) X-Spam-Status: No, score=-99.3 required=13.0 tests=AWL,CONTENT_TYPE_PRESENT, QENCPTR1,RCVD_IN_CHINA,RCVD_IN_CHINA_KR,RCVD_IN_PBL,RCVD_IN_TAIWAN, SPF_SOFTFAIL, USER_IN_WHITELIST, X_MAILER_PRESENT autolearn=no version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on gatekeeper.allbsd.org Cc: hrs@FreeBSD.org Subject: print/ghostscript8 gtk support X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 07:51:38 -0000 ----Security_Multipart0(Sun_Aug__8_16_50_52_2010_881)-- Content-Type: Multipart/Mixed; boundary="--Next_Part(Sun_Aug__8_16_50_52_2010_068)--" Content-Transfer-Encoding: 7bit ----Next_Part(Sun_Aug__8_16_50_52_2010_068)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi, Can anyone try the attached patch for print/ghostscript8 and let me know if there is something wrong in your desktop? This patch removes GTK+ dependency from GhostScript by default. The difference before and after applying the patch is that "gsx -sDEVICE=display" no longer generates display window (via GTK). I guess this is not directly related to GNOME itself, but I am interested in whether this change is safe in standard GNOME environment; some applications may use the "display" device as a backend for postscript rendering. Thank you. -- Hiroki ----Next_Part(Sun_Aug__8_16_50_52_2010_068)-- Content-Type: Text/X-Patch; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="ghostscript8_nogtk_20100808.diff" Index: Makefile =================================================================== RCS file: /home/ncvs/ports/print/ghostscript8/Makefile,v retrieving revision 1.200 diff -d -u -I \$FreeBSD:.*\$ -I \$NetBSD:.*\$ -I \$OpenBSD:.*\$ -I \$DragonFly:.*\$ -I \$Id:.*\$ -I \$Translation:.*\$ -I \$hrs:.*\$ -r1.200 Makefile --- Makefile 3 Aug 2010 15:39:45 -0000 1.200 +++ Makefile 8 Aug 2010 07:02:07 -0000 @@ -7,7 +7,7 @@ PORTNAME= ghostscript8 PORTVERSION= 8.71 -PORTREVISION= 4 +PORTREVISION= 5 CATEGORIES= print MASTER_SITES= http://ghostscript.com/releases/:gs_srcs \ SF/ghostscript/files/GPL%20Ghostscript/${PORTVERSION}:gs_srcs \ @@ -71,7 +71,8 @@ CUPS "Enable CUPS support" on \ FONTCONFIG "fontconfig support" on \ FT_BRIDGE "FreeType bridge" off \ - X11 "X11 support" on + X11 "X11 support" on \ + GTK "GTK frontend" off MAN1= dvipdf.1 font2c.1 gs.1 gslp.1 gsnd.1 \ pdf2dsc.1 pdf2ps.1 pdfopt.1 pf2afm.1 pfbtopfa.1 printafm.1 \ Index: files/Makefile.drivers_post =================================================================== RCS file: /home/ncvs/ports/print/ghostscript8/files/Makefile.drivers_post,v retrieving revision 1.3 diff -d -u -I \$FreeBSD:.*\$ -I \$NetBSD:.*\$ -I \$OpenBSD:.*\$ -I \$DragonFly:.*\$ -I \$Id:.*\$ -I \$Translation:.*\$ -I \$hrs:.*\$ -r1.3 Makefile.drivers_post --- files/Makefile.drivers_post 2 Aug 2010 06:15:08 -0000 1.3 +++ files/Makefile.drivers_post 8 Aug 2010 07:06:37 -0000 @@ -9,7 +9,7 @@ OPTIONS_${D}_DEFAULT= off .endif .endfor -.for D in SVGALIB CAIRO CUPS +.for D in SVGALIB CAIRO CUPS GTK .if !defined(WITH_${D}) OPTIONS_${D}_DEFAULT= off .else @@ -20,6 +20,7 @@ # makesum needs lowest common multiple .if make(makesum) OPTIONS_X11_DEFAULT= on +OPTIONS_GTK_DEFAULT= on OPTIONS_SVGALIB_DEFAULT=on OPTIONS_ICONV_DEFAULT= on OPTIONS_CAIRO_DEFAULT= on @@ -91,7 +92,7 @@ # x11 specific X11_DEVS= x11 x11alpha x11cmyk x11cmyk2 x11cmyk4 x11cmyk8 x11gray2 \ - x11gray4 x11mono x11rg16x x11rg32x + x11gray4 x11mono x11rg16x x11rg32x display .undef _X11_DEVS .for D in ${X11_DEVS} @@ -108,12 +109,20 @@ --x-includes=${X11BASE}/include \ --x-libraries=${X11BASE}/lib CONFLICTS+= ghostscript8-nox11-[0-9]* -.else -CONFIGURE_ARGS+=--without-x +.if defined(WITH_GTK) +PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-gtk +USE_GNOME= atk gdkpixbuf glib20 gtk20 +CONFIGURE_ARGS+=--enable-gtk CONFLICTS+= ghostscript8-[0-9]* +.else +CONFIGURE_ARGS+=--disable-gtk +CONFLICTS+= ghostscript8-gtk-[0-9]* .endif -.if defined(WITHOUT_X11) +.else PKGNAMESUFFIX:= ${PKGNAMESUFFIX}-nox11 +CONFIGURE_ARGS+=--without-x \ + --disable-gtk +CONFLICTS+= ghostscript8-[0-9]* .endif # iconv specific ----Next_Part(Sun_Aug__8_16_50_52_2010_068)---- ----Security_Multipart0(Sun_Aug__8_16_50_52_2010_881)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEABECAAYFAkxeYdwACgkQTyzT2CeTzy2o2wCeIA/lXvqsuq7yISqZ/p/GjoDE djUAoNOu9nyWmifq+94GC9wNmzQze58s =1d1M -----END PGP SIGNATURE----- ----Security_Multipart0(Sun_Aug__8_16_50_52_2010_881)---- From owner-freebsd-gnome@FreeBSD.ORG Sun Aug 8 15:10:17 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 888311065689; Sun, 8 Aug 2010 15:10:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5F8388FC14; Sun, 8 Aug 2010 15:10:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o78FAH3L036059; Sun, 8 Aug 2010 15:10:17 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o78FAHSW036055; Sun, 8 Aug 2010 15:10:17 GMT (envelope-from edwin) Date: Sun, 8 Aug 2010 15:10:17 GMT Message-Id: <201008081510.o78FAHSW036055@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/149431: [patch] databases/libgda4 mark MAKE_JOBS_UNSAFE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 15:10:17 -0000 Synopsis: [patch] databases/libgda4 mark MAKE_JOBS_UNSAFE Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sun Aug 8 15:10:16 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=149431 From owner-freebsd-gnome@FreeBSD.ORG Mon Aug 9 11:07:18 2010 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CC9FA1065673 for ; Mon, 9 Aug 2010 11:07:18 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A0D6B8FC21 for ; Mon, 9 Aug 2010 11:07:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o79B7Iva049348 for ; Mon, 9 Aug 2010 11:07:18 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o79B7IGP049346 for gnome@FreeBSD.org; Mon, 9 Aug 2010 11:07:18 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 9 Aug 2010 11:07:18 GMT Message-Id: <201008091107.o79B7IGP049346@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: gnome@FreeBSD.org Cc: Subject: Current problem reports assigned to gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 11:07:18 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/149431 gnome [patch] databases/libgda4 mark MAKE_JOBS_UNSAFE o ports/149134 gnome x11/gnome2 unable to unmount UFS file system o ports/149067 gnome graphics/gimp-app miss dependency on x11/babl o ports/148907 gnome deskutils/planner does not build with WITH_EVO=true f ports/148272 gnome polkit-gnome-authen core dumps when starting gnome o ports/148244 gnome x11/gnome2: gnome desktop and HAL prevent umount witho f ports/146544 gnome graphics/inkscape crashes when locale is enabled o ports/146422 gnome [patch] x11-toolkits/gtk20: experimental DIRECTFB targ o ports/146421 gnome [patch] graphics/cairo: add DIRECTFB knob s ports/145301 gnome [patch] sysutils/hal: /usr/local/etc/rc.d/hald startup o ports/144894 gnome [PATCH] finance/gnucash: Chase finance/aqbanking shlib o ports/143260 gnome devel/gobject-introspection writes files in $HOME o ports/142549 gnome sysutils/hal: hald cannot find DVD/CS anymore p ports/141033 gnome [PATCH] allow to build devel/libsoup without gnome o ports/140533 gnome bsd.gnome.mk - mtree may get parameters w/o space s ports/140216 gnome [patch] devel/nspr does not check POLLHUP in PR_Connec o ports/138410 gnome finance/gnucash quote price editor adds price data as s ports/137367 gnome net/libproxy: add menu option to configure dependence o ports/132304 gnome ports/devel/dbus misses /var/db/dbus/machine-id in dis 19 problems total. From owner-freebsd-gnome@FreeBSD.ORG Mon Aug 9 22:42:18 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 977FE1065670; Mon, 9 Aug 2010 22:42:18 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6E62F8FC16; Mon, 9 Aug 2010 22:42:18 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o79MgI0t040472; Mon, 9 Aug 2010 22:42:18 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o79MgIrD040468; Mon, 9 Aug 2010 22:42:18 GMT (envelope-from linimon) Date: Mon, 9 Aug 2010 22:42:18 GMT Message-Id: <201008092242.o79MgIrD040468@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, gnome@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: ports/149471: gconf error ? and Workspace switcher - only 1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 22:42:18 -0000 Synopsis: gconf error ? and Workspace switcher - only 1 Responsible-Changed-From-To: freebsd-bugs->gnome Responsible-Changed-By: linimon Responsible-Changed-When: Mon Aug 9 22:41:50 UTC 2010 Responsible-Changed-Why: I don't know which port this applies to, but it appears to be part of gnome. http://www.freebsd.org/cgi/query-pr.cgi?pr=149471 From owner-freebsd-gnome@FreeBSD.ORG Tue Aug 10 16:22:28 2010 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D4C04106566B for ; Tue, 10 Aug 2010 16:22:28 +0000 (UTC) (envelope-from ulrich@pukruppa.de) Received: from pukruppa.de (pd95cabe3.dip0.t-ipconnect.de [217.92.171.227]) by mx1.freebsd.org (Postfix) with ESMTP id 452948FC15 for ; Tue, 10 Aug 2010 16:22:27 +0000 (UTC) Received: from pukruppa.de (localhost [127.0.0.1]) by pukruppa.de (8.14.4/8.14.4) with ESMTP id o7AGBBsn010026 for ; Tue, 10 Aug 2010 18:11:11 +0200 (CEST) (envelope-from ulrich@pukruppa.de) Received: from localhost (ulrich@localhost) by pukruppa.de (8.14.4/8.14.4/Submit) with ESMTP id o7AGBBfa010023 for ; Tue, 10 Aug 2010 18:11:11 +0200 (CEST) (envelope-from ulrich@pukruppa.de) Date: Tue, 10 Aug 2010 18:11:10 +0200 (CEST) From: Peter Ulrich Kruppa To: freebsd-gnome@freebsd.org Message-ID: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII Subject: (Old) Configure roblem with Kerberos 5 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 16:22:28 -0000 Hi, when I try to make evolution-2.30.1.2_3 it fails with ----------------------------------------- [...] checking for regexec... yes checking for GTKHTML... yes checking for Kerberos 5... configure: error: You specified with krb5, but it was not found. ===> Script "configure" failed unexpectedly. ----------------------------------------- This problem has been seen before http://permalink.gmane.org/gmane.os.freebsd.devel.gnome/29878 but I can't find a solution. What can be done? Greetings Peter. | Peter Ulrich Kruppa | Wuppertal | Germany From owner-freebsd-gnome@FreeBSD.ORG Tue Aug 10 17:23:00 2010 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 83346106564A for ; Tue, 10 Aug 2010 17:23:00 +0000 (UTC) (envelope-from marcus@freebsd.org) Received: from av-tac-rtp.cisco.com (hen.cisco.com [64.102.19.198]) by mx1.freebsd.org (Postfix) with ESMTP id 3EB788FC1F for ; Tue, 10 Aug 2010 17:22:59 +0000 (UTC) X-TACSUNS: Virus Scanned Received: from rooster.cisco.com (localhost.cisco.com [127.0.0.1]) by av-tac-rtp.cisco.com (8.13.8+Sun/8.13.8) with ESMTP id o7AHMxt4016361; Tue, 10 Aug 2010 13:22:59 -0400 (EDT) Received: from dhcp-64-102-220-140.cisco.com (dhcp-64-102-220-140.cisco.com [64.102.220.140]) by rooster.cisco.com (8.13.8+Sun/8.13.8) with ESMTP id o7AHMws7004815; Tue, 10 Aug 2010 13:22:59 -0400 (EDT) Message-ID: <4C618AF2.2050903@freebsd.org> Date: Tue, 10 Aug 2010 13:22:58 -0400 From: Joe Marcus Clarke Organization: FreeBSD, Inc. User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.8) Gecko/20100802 Thunderbird/3.1.2 MIME-Version: 1.0 To: Peter Ulrich Kruppa References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-gnome@freebsd.org Subject: Re: (Old) Configure roblem with Kerberos 5 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 17:23:00 -0000 On 8/10/10 12:11 PM, Peter Ulrich Kruppa wrote: > Hi, > > when I try to make evolution-2.30.1.2_3 it fails with > ----------------------------------------- > [...] > checking for regexec... yes > checking for GTKHTML... yes > checking for Kerberos 5... configure: error: You specified with krb5, > but it was not found. > ===> Script "configure" failed unexpectedly. > ----------------------------------------- > > This problem has been seen before > > http://permalink.gmane.org/gmane.os.freebsd.devel.gnome/29878 > > but I can't find a solution. > > What can be done? Make sure you're building Kerberos in the base OS. The ports KRB is not supported (as it hasn't been tested). Joe -- Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome From owner-freebsd-gnome@FreeBSD.ORG Tue Aug 10 19:39:25 2010 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A9E211065679 for ; Tue, 10 Aug 2010 19:39:25 +0000 (UTC) (envelope-from ulrich@pukruppa.de) Received: from pukruppa.de (pd95cabe3.dip0.t-ipconnect.de [217.92.171.227]) by mx1.freebsd.org (Postfix) with ESMTP id 337398FC28 for ; Tue, 10 Aug 2010 19:39:24 +0000 (UTC) Received: from pukruppa.de (localhost [127.0.0.1]) by pukruppa.de (8.14.4/8.14.4) with ESMTP id o7AJfsYb047640; Tue, 10 Aug 2010 21:41:54 +0200 (CEST) (envelope-from ulrich@pukruppa.de) Received: from localhost (ulrich@localhost) by pukruppa.de (8.14.4/8.14.4/Submit) with ESMTP id o7AJfsv2047637; Tue, 10 Aug 2010 21:41:54 +0200 (CEST) (envelope-from ulrich@pukruppa.de) Date: Tue, 10 Aug 2010 21:41:53 +0200 (CEST) From: Peter Ulrich Kruppa To: Joe Marcus Clarke In-Reply-To: <4C618AF2.2050903@freebsd.org> Message-ID: References: <4C618AF2.2050903@freebsd.org> User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-gnome@freebsd.org Subject: Re: (Old) Configure roblem with Kerberos 5 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 19:39:25 -0000 On Tue, 10 Aug 2010, Joe Marcus Clarke wrote: > On 8/10/10 12:11 PM, Peter Ulrich Kruppa wrote: >> Hi, >> >> when I try to make evolution-2.30.1.2_3 it fails with >> ----------------------------------------- >> [...] >> checking for regexec... yes >> checking for GTKHTML... yes >> checking for Kerberos 5... configure: error: You specified with krb5, >> but it was not found. >> ===> Script "configure" failed unexpectedly. >> ----------------------------------------- >> >> This problem has been seen before >> >> http://permalink.gmane.org/gmane.os.freebsd.devel.gnome/29878 >> >> but I can't find a solution. >> >> What can be done? > > Make sure you're building Kerberos in the base OS. The ports KRB is not > supported (as it hasn't been tested). There is no port nor package called krb5* installed on my system. How do I make sure Kerberos was build in the base system? Do I need to enable anything in /etc/rc.conf or any other config file? Greetings Peter. > > Joe > > -- > Joe Marcus Clarke > FreeBSD GNOME Team :: gnome@FreeBSD.org > FreeNode / #freebsd-gnome > http://www.FreeBSD.org/gnome > | Peter Ulrich Kruppa | Wuppertal | Germany From owner-freebsd-gnome@FreeBSD.ORG Wed Aug 11 18:29:23 2010 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 11732106580E for ; Wed, 11 Aug 2010 18:29:23 +0000 (UTC) (envelope-from marcus@freebsd.org) Received: from av-tac-rtp.cisco.com (hen.cisco.com [64.102.19.198]) by mx1.freebsd.org (Postfix) with ESMTP id BDA5B8FC1E for ; Wed, 11 Aug 2010 18:29:22 +0000 (UTC) X-TACSUNS: Virus Scanned Received: from rooster.cisco.com (localhost.cisco.com [127.0.0.1]) by av-tac-rtp.cisco.com (8.13.8+Sun/8.13.8) with ESMTP id o7BITLFO008043; Wed, 11 Aug 2010 14:29:21 -0400 (EDT) Received: from dhcp-64-102-220-194.cisco.com (dhcp-64-102-220-194.cisco.com [64.102.220.194]) by rooster.cisco.com (8.13.8+Sun/8.13.8) with ESMTP id o7BITJWI011541; Wed, 11 Aug 2010 14:29:20 -0400 (EDT) Message-ID: <4C62EBFF.1040206@freebsd.org> Date: Wed, 11 Aug 2010 14:29:19 -0400 From: Joe Marcus Clarke Organization: FreeBSD, Inc. User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.8) Gecko/20100802 Thunderbird/3.1.2 MIME-Version: 1.0 To: Peter Ulrich Kruppa References: <4C618AF2.2050903@freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: freebsd-gnome@freebsd.org Subject: Re: (Old) Configure roblem with Kerberos 5 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 18:29:23 -0000 On 8/10/10 3:41 PM, Peter Ulrich Kruppa wrote: > On Tue, 10 Aug 2010, Joe Marcus Clarke wrote: > >> On 8/10/10 12:11 PM, Peter Ulrich Kruppa wrote: >>> Hi, >>> >>> when I try to make evolution-2.30.1.2_3 it fails with >>> ----------------------------------------- >>> [...] >>> checking for regexec... yes >>> checking for GTKHTML... yes >>> checking for Kerberos 5... configure: error: You specified with krb5, >>> but it was not found. >>> ===> Script "configure" failed unexpectedly. >>> ----------------------------------------- >>> >>> This problem has been seen before >>> >>> http://permalink.gmane.org/gmane.os.freebsd.devel.gnome/29878 >>> >>> but I can't find a solution. >>> >>> What can be done? >> >> Make sure you're building Kerberos in the base OS. The ports KRB is not >> supported (as it hasn't been tested). > There is no port nor package called krb5* installed on my system. How do > I make sure Kerberos was build in the base system? > Do I need to enable anything in /etc/rc.conf or any other config file? KRB5 is built by default. If you define NO_KERBEROS, it will not be built. You should be using this base version as opposed to the ports krb5 or heimdal. Joe -- Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome From owner-freebsd-gnome@FreeBSD.ORG Wed Aug 11 18:31:11 2010 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BD8B2106592D; Wed, 11 Aug 2010 18:31:11 +0000 (UTC) (envelope-from william.dinoia@gmail.com) Received: from mail-qw0-f54.google.com (mail-qw0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 56D048FC08; Wed, 11 Aug 2010 18:31:11 +0000 (UTC) Received: by qwg5 with SMTP id 5so505458qwg.13 for ; Wed, 11 Aug 2010 11:31:10 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from :user-agent:mime-version:to:cc:subject:content-type :content-transfer-encoding; bh=wgXbm/X7OEUP/GO+yPT55C97+w5+5E2YS+oI0C13MCM=; b=PkGjZWpPC+4pU8Q9qjIfbPZ3Z2DPZq+4y1u+d635rn0+Kckz4J8PLf/cuti+JtSZg4 xD6KejmYEHmllZY5uU/1sfj5NuzXXCT7kzwYEmWezHBPp5ifdtpfZnvZpe6/d5NQt3dX 6c3u749JFx4wun91Cj31+IvxlO+nkG/fOqUsM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :content-type:content-transfer-encoding; b=YNg0wj8J9RbCC+ZXtAaBWseQJLhisDmi1NPhvckVOMWrKCCRej3e9KnbibaR28BWGa kn3wA26c5Ny0xhvyf9DMZS7vLZXiL9ZTME6Mhaj+qyigsMb1obcOMAiQfsbcQE9H9jQt mTnqZPqAOkoGa14vY3sSBcA7b2POjyOzhnUDE= Received: by 10.224.37.134 with SMTP id x6mr9592230qad.145.1281550138030; Wed, 11 Aug 2010 11:08:58 -0700 (PDT) Received: from M57p.229 (c-174-55-35-141.hsd1.pa.comcast.net [174.55.35.141]) by mx.google.com with ESMTPS id q8sm492357qcs.24.2010.08.11.11.08.56 (version=SSLv3 cipher=RC4-MD5); Wed, 11 Aug 2010 11:08:57 -0700 (PDT) Message-ID: <4C62E736.6060004@gmail.com> Date: Wed, 11 Aug 2010 14:08:54 -0400 From: William DiNoia User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.9.2.8) Gecko/20100810 Lightning/1.0b2 Thunderbird/3.1.2 MIME-Version: 1.0 To: gnome@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Mailman-Approved-At: Wed, 11 Aug 2010 18:49:26 +0000 Cc: ports@FreeBSD.org Subject: FreeBSD Port: gcalctool-5.30.2,2 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 18:31:11 -0000 I was wondering if gcalctool needs all of the listed gnome requirements to build. The Debian stable package of gcalctool 5.22-3, which is a little dated, only requires gconf2, gnome-icon-theme, libatk, libc6, libc6.1, libgconf2, libglade2, libglib2, libgtk, libpango, and libxml. From owner-freebsd-gnome@FreeBSD.ORG Wed Aug 11 18:52:42 2010 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 992C91065676; Wed, 11 Aug 2010 18:52:42 +0000 (UTC) (envelope-from marcus@freebsd.org) Received: from av-tac-rtp.cisco.com (hen.cisco.com [64.102.19.198]) by mx1.freebsd.org (Postfix) with ESMTP id 557838FC26; Wed, 11 Aug 2010 18:52:41 +0000 (UTC) X-TACSUNS: Virus Scanned Received: from rooster.cisco.com (localhost.cisco.com [127.0.0.1]) by av-tac-rtp.cisco.com (8.13.8+Sun/8.13.8) with ESMTP id o7BIqfs7009868; Wed, 11 Aug 2010 14:52:41 -0400 (EDT) Received: from dhcp-64-102-220-194.cisco.com (dhcp-64-102-220-194.cisco.com [64.102.220.194]) by rooster.cisco.com (8.13.8+Sun/8.13.8) with ESMTP id o7BIqfSb006826; Wed, 11 Aug 2010 14:52:41 -0400 (EDT) Message-ID: <4C62F179.2000800@freebsd.org> Date: Wed, 11 Aug 2010 14:52:41 -0400 From: Joe Marcus Clarke Organization: FreeBSD, Inc. User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.8) Gecko/20100802 Thunderbird/3.1.2 MIME-Version: 1.0 To: William DiNoia References: <4C62E736.6060004@gmail.com> In-Reply-To: <4C62E736.6060004@gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: gnome@freebsd.org, ports@freebsd.org Subject: Re: FreeBSD Port: gcalctool-5.30.2,2 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 18:52:42 -0000 On 8/11/10 2:08 PM, William DiNoia wrote: > I was wondering if gcalctool needs all of the listed gnome requirements > to build. The Debian stable package of gcalctool 5.22-3, which is a > little dated, only requires gconf2, gnome-icon-theme, libatk, libc6, > libc6.1, libgconf2, libglade2, libglib2, libgtk, libpango, and libxml. The requirements are the same for FreeBSD. Joe -- Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome From owner-freebsd-gnome@FreeBSD.ORG Fri Aug 13 09:12:01 2010 Return-Path: Delivered-To: freebsd-gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id A1E2410656A7 for ; Fri, 13 Aug 2010 09:12:01 +0000 (UTC) (envelope-from jdsouza.gorai@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id 60E658FC12 for ; Fri, 13 Aug 2010 09:12:01 +0000 (UTC) Received: by ywk9 with SMTP id 9so1002428ywk.13 for ; Fri, 13 Aug 2010 02:12:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:date:message-id :subject:from:to:content-type; bh=zEzUd80KAmMQMI2BT6Fpi1eMSK7zlbiuEP9Krt/n7FY=; b=BqA6qri3PpEL/mvhuz/6wKbyOnXJmjx73EFFTk16YscByDr0iEqYTl0mGcDZsqD/SX +w5KSsQGmGfS6bOVyiH5gZE/LafVACN9kvIdTIewKjkBWn8ZpEDHuicU9E2iwfrNttgt fFUw94pgFrLEqUWY8YyHbObfSnhg1dt9+Scc8= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=wCye0RlYG2byHviPLgC3dYYEmYg5VMw5UkOUvDCmp2fXGc/5vjP1Yndvzy1zL37n76 grjMN5aAj/IsOFJdySXh/oLWTffkEiJg++sbTox0ru7+8sTumR3nLadsVK+3ISLG1LDE 5cDRRsf6a3NeCUuemRKNrE+YCrOilzxdBsFO0= MIME-Version: 1.0 Received: by 10.90.69.17 with SMTP id r17mr980996aga.29.1281688876802; Fri, 13 Aug 2010 01:41:16 -0700 (PDT) Received: by 10.90.98.6 with HTTP; Fri, 13 Aug 2010 01:41:16 -0700 (PDT) Date: Fri, 13 Aug 2010 14:11:16 +0530 Message-ID: From: J Dsouza To: freebsd-gnome@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 X-Mailman-Approved-At: Fri, 13 Aug 2010 11:11:03 +0000 Cc: Subject: keyboard locked X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 09:12:01 -0000 I was upgrading to gnome-2.30.2 when after reboot I could not use my keyboard in the desktop. I can login to my account from gdm but cannot use the keyboard after that in the desktop. How to solve this? From owner-freebsd-gnome@FreeBSD.ORG Fri Aug 13 18:22:15 2010 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1906F1065679; Fri, 13 Aug 2010 18:22:15 +0000 (UTC) (envelope-from linpct@gmail.com) Received: from mail-pv0-f182.google.com (mail-pv0-f182.google.com [74.125.83.182]) by mx1.freebsd.org (Postfix) with ESMTP id A25628FC13; Fri, 13 Aug 2010 18:22:14 +0000 (UTC) Received: by pvg4 with SMTP id 4so1086092pvg.13 for ; Fri, 13 Aug 2010 11:22:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:received:date:to :subject:from:cc:x-send-pr-version:x-gnats-notify; bh=N9G7BHYN37SL/rD+OXu/a0xJ0vhzxWQehV8zFV4aO+g=; b=X6QpNSNSSSkTTjwoKDEgsC4rMTsxr4OgmgHTZVE1+gWkR3ihZI1znyTCwkmyL/nfZA 2TNC9+vTlvGdAaN3eQNUXnTUbcAw2utNSQRaPZY5M7mPRfaWXKRt/oGgXQQjUgkOeLLW 9cR7D4R87NAip2LykVNUCd8Wexz6pz7fU6iDE= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:to:subject:from:cc:x-send-pr-version:x-gnats-notify; b=ertkyWBJFV0H7tNE7G5uIu+NQ3sy9ocANC7/5Go/m2WrZ2XV6lK4fiVg750hH8M9Ei cdrdB6KcEG4YrIyJuiB9pYGiCIq5x9KYo8nKg96HnDQZE0X80DPKQ3gf8VxAw4z/W4LG 0faPOZBqGlEN2LC4ZL682l7XlnudHlyhc4Rpc= Received: by 10.142.140.19 with SMTP id n19mr1518173wfd.347.1281723734138; Fri, 13 Aug 2010 11:22:14 -0700 (PDT) Received: from _HOSTNAME_ (118-165-81-196.dynamic.hinet.net [118.165.81.196]) by mx.google.com with ESMTPS id v13sm1053757wfv.5.2010.08.13.11.22.11 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 13 Aug 2010 11:22:13 -0700 (PDT) Message-ID: <4c658d55.0d308e0a.6ced.3e67@mx.google.com> Received: by _HOSTNAME_ (sSMTP sendmail emulation); Sat, 14 Aug 2010 02:30:28 +0800 Date: Sat, 14 Aug 2010 02:30:28 +0800 To: FreeBSD-gnats-submit@freebsd.org From: Jin-Sih Lin X-send-pr-version: 3.113 X-GNATS-Notify: Cc: gnome@FreeBSD.org Subject: PATCH lang/gjs: update to 0.7 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 18:22:15 -0000 >Submitter-Id: current-users >Originator: Jin-Sih Lin >Organization: FreeBSD @ Taiwan >Confidential: no >Synopsis: PATCH lang/gjs: update to 0.7 >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 8.1-STABLE i386 >Environment: System: FreeBSD X200s.notebook 8.1-STABLE FreeBSD 8.1-STABLE #3: Fri Jul 30 23:08:27 CST 2010 >Description: - Update to 0.7 Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- gjs-0.7.patch begins here --- diff -ruN --exclude=CVS /usr/ports/lang/gjs.orig/Makefile /usr/ports/lang/gjs/Makefile --- /usr/ports/lang/gjs.orig/Makefile 2010-08-08 16:56:39.000000000 +0800 +++ /usr/ports/lang/gjs/Makefile 2010-08-13 23:19:11.000000000 +0800 @@ -7,8 +7,7 @@ # PORTNAME= gjs -PORTVERSION= 0.6 -PORTREVISION= 2 +PORTVERSION= 0.7 CATEGORIES= lang gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff -ruN --exclude=CVS /usr/ports/lang/gjs.orig/distinfo /usr/ports/lang/gjs/distinfo --- /usr/ports/lang/gjs.orig/distinfo 2010-05-11 05:18:19.000000000 +0800 +++ /usr/ports/lang/gjs/distinfo 2010-08-13 23:19:28.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (gnome2/gjs-0.6.tar.bz2) = 0667ee25bc89eeea2fede223be82df81 -SHA256 (gnome2/gjs-0.6.tar.bz2) = 5c5a54bbb819bfaea1e0e76f0508467e8d5690360ab550e1284951d905a56e5d -SIZE (gnome2/gjs-0.6.tar.bz2) = 436575 +MD5 (gnome2/gjs-0.7.tar.bz2) = e4362407d5df0422fc526893d7f0097a +SHA256 (gnome2/gjs-0.7.tar.bz2) = 6eb9b3a26e98b524a455ae53f6af32599a8265bc8fc5122e4c806cbca1e91a44 +SIZE (gnome2/gjs-0.7.tar.bz2) = 475023 diff -ruN --exclude=CVS /usr/ports/lang/gjs.orig/pkg-plist /usr/ports/lang/gjs/pkg-plist --- /usr/ports/lang/gjs.orig/pkg-plist 2010-05-11 05:18:19.000000000 +0800 +++ /usr/ports/lang/gjs/pkg-plist 2010-08-13 23:27:14.000000000 +0800 @@ -7,6 +7,7 @@ include/gjs-1.0/gjs/gi/boxed.h include/gjs-1.0/gjs/gi/closure.h include/gjs-1.0/gjs/gi/enumeration.h +include/gjs-1.0/gjs/gi/foreign.h include/gjs-1.0/gjs/gi/function.h include/gjs-1.0/gjs/gi/keep-alive.h include/gjs-1.0/gjs/gi/ns.h @@ -59,19 +60,19 @@ libdata/pkgconfig/gjs-1.0.pc libdata/pkgconfig/gjs-dbus-1.0.pc libdata/pkgconfig/gjs-gi-1.0.pc -share/gjs-1.0/cairo.js -share/gjs-1.0/dbus.js -share/gjs-1.0/gettext.js -share/gjs-1.0/jsUnit.js -share/gjs-1.0/lang.js -share/gjs-1.0/signals.js -share/gjs-1.0/tweener/equations.js -share/gjs-1.0/tweener/tweenList.js -share/gjs-1.0/tweener/tweener.js +%%DATADIR%%-1.0/cairo.js +%%DATADIR%%-1.0/dbus.js +%%DATADIR%%-1.0/gettext.js +%%DATADIR%%-1.0/jsUnit.js +%%DATADIR%%-1.0/lang.js +%%DATADIR%%-1.0/signals.js +%%DATADIR%%-1.0/tweener/equations.js +%%DATADIR%%-1.0/tweener/tweenList.js +%%DATADIR%%-1.0/tweener/tweener.js @dirrm share/gjs-1.0/tweener @dirrm share/gjs-1.0 @dirrm lib/gjs-1.0 @dirrm include/gjs-1.0/gjs/gi -@dirrm include/gjs-1.0/gjs @dirrm include/gjs-1.0/gjs-dbus +@dirrm include/gjs-1.0/gjs @dirrm include/gjs-1.0 --- gjs-0.7.patch ends here --- From owner-freebsd-gnome@FreeBSD.ORG Fri Aug 13 18:29:42 2010 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 337791065679; Fri, 13 Aug 2010 18:29:42 +0000 (UTC) (envelope-from linpct@gmail.com) Received: from mail-pv0-f182.google.com (mail-pv0-f182.google.com [74.125.83.182]) by mx1.freebsd.org (Postfix) with ESMTP id 013798FC19; Fri, 13 Aug 2010 18:29:41 +0000 (UTC) Received: by pvg4 with SMTP id 4so1088947pvg.13 for ; Fri, 13 Aug 2010 11:29:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:received:date:to :subject:from:cc:x-send-pr-version:x-gnats-notify; bh=ADNsOtpCnvrbwLscVq4kNuURZB8r8tjLGlw6waJvhlg=; b=XqXPKXjKh7U/z5IJYa8MJ7JAR/52GGqKiynTm+oPp4pVi29BrdUeJpP7ViybqAtUMS /5hY4QBcTWF9sw+cEP6HDZ/VHRF2/P/aa9EZYyHB0foIdhOBREw7Wkou1POd+AH+Dh4M 87ebVMYqUkxxC5b4TqKhPH9e2i2gjYFJFgntQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:to:subject:from:cc:x-send-pr-version:x-gnats-notify; b=VxNWUz9U91Wd5z99meibZ7nc6nFrn5i5CVLYsY5ooFBgExz/gkZ9BkpHTG7noeIIIg TXcAueKz3EmERgZY5KuRhIT1/QD7j236zwCSFccY33ioecoByEaAY7cncrQ3ScXbZIze jnZ9DNxAYfP0lpttmWnxh1jst9J1Dovu0noyg= Received: by 10.115.58.4 with SMTP id l4mr2143149wak.16.1281722416897; Fri, 13 Aug 2010 11:00:16 -0700 (PDT) Received: from _HOSTNAME_ (118-165-81-196.dynamic.hinet.net [118.165.81.196]) by mx.google.com with ESMTPS id d38sm5007997wam.20.2010.08.13.11.00.13 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 13 Aug 2010 11:00:15 -0700 (PDT) Message-ID: <4c65882f.2665730a.3064.ffffc09b@mx.google.com> Received: by _HOSTNAME_ (sSMTP sendmail emulation); Sat, 14 Aug 2010 02:08:30 +0800 Date: Sat, 14 Aug 2010 02:08:30 +0800 To: FreeBSD-gnats-submit@freebsd.org From: Jin-Sih Lin X-send-pr-version: 3.113 X-GNATS-Notify: Cc: gnome@FreeBSD.org Subject: [PATCH] lang/gjs: update to 0.7 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 18:29:42 -0000 >Submitter-Id: current-users >Originator: Jin-Sih Lin >Organization: FreeBSD @ Taiwan >Confidential: no >Synopsis: [PATCH] lang/gjs: update to 0.7 >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 8.1-STABLE i386 >Environment: System: FreeBSD X200s.notebook 8.1-STABLE FreeBSD 8.1-STABLE #3: Fri Jul 30 23:08:27 CST 2010 >Description: - Update to 0.7 Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- gjs-0.7.patch begins here --- diff -ruN --exclude=CVS /usr/ports/lang/gjs.orig/Makefile /usr/ports/lang/gjs/Makefile --- /usr/ports/lang/gjs.orig/Makefile 2010-08-08 16:56:39.000000000 +0800 +++ /usr/ports/lang/gjs/Makefile 2010-08-13 23:19:11.000000000 +0800 @@ -7,8 +7,7 @@ # PORTNAME= gjs -PORTVERSION= 0.6 -PORTREVISION= 2 +PORTVERSION= 0.7 CATEGORIES= lang gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 diff -ruN --exclude=CVS /usr/ports/lang/gjs.orig/distinfo /usr/ports/lang/gjs/distinfo --- /usr/ports/lang/gjs.orig/distinfo 2010-05-11 05:18:19.000000000 +0800 +++ /usr/ports/lang/gjs/distinfo 2010-08-13 23:19:28.000000000 +0800 @@ -1,3 +1,3 @@ -MD5 (gnome2/gjs-0.6.tar.bz2) = 0667ee25bc89eeea2fede223be82df81 -SHA256 (gnome2/gjs-0.6.tar.bz2) = 5c5a54bbb819bfaea1e0e76f0508467e8d5690360ab550e1284951d905a56e5d -SIZE (gnome2/gjs-0.6.tar.bz2) = 436575 +MD5 (gnome2/gjs-0.7.tar.bz2) = e4362407d5df0422fc526893d7f0097a +SHA256 (gnome2/gjs-0.7.tar.bz2) = 6eb9b3a26e98b524a455ae53f6af32599a8265bc8fc5122e4c806cbca1e91a44 +SIZE (gnome2/gjs-0.7.tar.bz2) = 475023 diff -ruN --exclude=CVS /usr/ports/lang/gjs.orig/pkg-plist /usr/ports/lang/gjs/pkg-plist --- /usr/ports/lang/gjs.orig/pkg-plist 2010-05-11 05:18:19.000000000 +0800 +++ /usr/ports/lang/gjs/pkg-plist 2010-08-13 23:27:14.000000000 +0800 @@ -7,6 +7,7 @@ include/gjs-1.0/gjs/gi/boxed.h include/gjs-1.0/gjs/gi/closure.h include/gjs-1.0/gjs/gi/enumeration.h +include/gjs-1.0/gjs/gi/foreign.h include/gjs-1.0/gjs/gi/function.h include/gjs-1.0/gjs/gi/keep-alive.h include/gjs-1.0/gjs/gi/ns.h @@ -59,19 +60,19 @@ libdata/pkgconfig/gjs-1.0.pc libdata/pkgconfig/gjs-dbus-1.0.pc libdata/pkgconfig/gjs-gi-1.0.pc -share/gjs-1.0/cairo.js -share/gjs-1.0/dbus.js -share/gjs-1.0/gettext.js -share/gjs-1.0/jsUnit.js -share/gjs-1.0/lang.js -share/gjs-1.0/signals.js -share/gjs-1.0/tweener/equations.js -share/gjs-1.0/tweener/tweenList.js -share/gjs-1.0/tweener/tweener.js +%%DATADIR%%-1.0/cairo.js +%%DATADIR%%-1.0/dbus.js +%%DATADIR%%-1.0/gettext.js +%%DATADIR%%-1.0/jsUnit.js +%%DATADIR%%-1.0/lang.js +%%DATADIR%%-1.0/signals.js +%%DATADIR%%-1.0/tweener/equations.js +%%DATADIR%%-1.0/tweener/tweenList.js +%%DATADIR%%-1.0/tweener/tweener.js @dirrm share/gjs-1.0/tweener @dirrm share/gjs-1.0 @dirrm lib/gjs-1.0 @dirrm include/gjs-1.0/gjs/gi -@dirrm include/gjs-1.0/gjs @dirrm include/gjs-1.0/gjs-dbus +@dirrm include/gjs-1.0/gjs @dirrm include/gjs-1.0 --- gjs-0.7.patch ends here --- From owner-freebsd-gnome@FreeBSD.ORG Fri Aug 13 18:30:26 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 20C8110656A8; Fri, 13 Aug 2010 18:30:26 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id EB4188FC08; Fri, 13 Aug 2010 18:30:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7DIUP3P062254; Fri, 13 Aug 2010 18:30:25 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7DIUPB0062250; Fri, 13 Aug 2010 18:30:25 GMT (envelope-from edwin) Date: Fri, 13 Aug 2010 18:30:25 GMT Message-Id: <201008131830.o7DIUPB0062250@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/149628: PATCH lang/gjs: update to 0.7 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 18:30:26 -0000 Synopsis: PATCH lang/gjs: update to 0.7 Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Fri Aug 13 18:30:25 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=149628 From owner-freebsd-gnome@FreeBSD.ORG Fri Aug 13 18:30:33 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 14F3F10656A3; Fri, 13 Aug 2010 18:30:33 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DEFD28FC0C; Fri, 13 Aug 2010 18:30:32 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7DIUWNq062877; Fri, 13 Aug 2010 18:30:32 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7DIUW0A062873; Fri, 13 Aug 2010 18:30:32 GMT (envelope-from edwin) Date: Fri, 13 Aug 2010 18:30:32 GMT Message-Id: <201008131830.o7DIUW0A062873@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/149629: [PATCH] lang/gjs: update to 0.7 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 18:30:33 -0000 Synopsis: [PATCH] lang/gjs: update to 0.7 Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Fri Aug 13 18:30:32 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=149629 From owner-freebsd-gnome@FreeBSD.ORG Fri Aug 13 18:50:04 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB5C110656A7 for ; Fri, 13 Aug 2010 18:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9FF0E8FC1B for ; Fri, 13 Aug 2010 18:50:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7DIo4r1080874 for ; Fri, 13 Aug 2010 18:50:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7DIo4mK080873; Fri, 13 Aug 2010 18:50:04 GMT (envelope-from gnats) Date: Fri, 13 Aug 2010 18:50:04 GMT Message-Id: <201008131850.o7DIo4mK080873@freefall.freebsd.org> To: gnome@FreeBSD.org From: Daniel Lin Cc: Subject: Re: ports/149628: PATCH lang/gjs: update to 0.7 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Daniel Lin List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2010 18:50:04 -0000 The following reply was made to PR ports/149628; it has been noted by GNATS. From: Daniel Lin To: FreeBSD-gnats-submit@freebsd.org, freebsd-ports-bugs@freebsd.org Cc: Subject: Re: ports/149628: PATCH lang/gjs: update to 0.7 Date: Sat, 14 Aug 2010 02:46:07 +0800 --0016e64ec1ac5489c2048db8e544 Content-Type: text/plain; charset=ISO-8859-1 Dear All, This PR is same with http://www.freebsd.org/cgi/query-pr.cgi?pr=149629 Please skip this PR. Thanks. :-) On Sat, Aug 14, 2010 at 2:30 AM, wrote: > Thank you very much for your problem report. > It has the internal identification `ports/149628'. > The individual assigned to look at your > report is: freebsd-ports-bugs. > > You can access the state of your problem report at any time > via this link: > > http://www.freebsd.org/cgi/query-pr.cgi?pr=149628 > > >Category: ports > >Responsible: freebsd-ports-bugs > >Synopsis: PATCH lang/gjs: update to 0.7 > >Arrival-Date: Fri Aug 13 18:30:04 UTC 2010 > -- Daniel Lin (pct) --0016e64ec1ac5489c2048db8e544 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Dear All,

=A0=A0 =A0Please skip this PR. Th= anks. :-)

On Sat, Aug 14, 2010 at 2:30 AM, <FreeBSD-gnats-s= ubmit@freebsd.org> wrote:
Thank you very much for your problem report.
It has the internal identification `ports/149628'.
The individual assigned to look at your
report is: freebsd-ports-bugs.

You can access the state of your problem report at any time
via this link:

http://www.freebsd.org/cgi/query-pr.cgi?pr=3D149628

>Category: =A0 =A0 =A0 ports
>Responsible: =A0 =A0freebsd-ports-bugs
>Synopsis: =A0 =A0 =A0 PATCH lang/gjs: update to 0.7
>Arrival-Date: =A0 Fri Aug 13 18:30:04 UTC 2010



--
Daniel Lin (pct)
--0016e64ec1ac5489c2048db8e544-- From owner-freebsd-gnome@FreeBSD.ORG Fri Aug 13 19:47:53 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 86D8710656A3; Fri, 13 Aug 2010 19:47:53 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5D4078FC22; Fri, 13 Aug 2010 19:47:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7DJlrv4038966; Fri, 13 Aug 2010 19:47:53 GMT (envelope-from kwm@freefall.freebsd.org) Received: (from kwm@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7DJlrbg038962; Fri, 13 Aug 2010 19:47:53 GMT (envelope-from kwm) Date: Fri, 13 Aug 2010 19:47:53 GMT Message-Id: <201008131947.o7DJlrbg038962@freefall.freebsd.org> To: linpct@gmail.com, kwm@FreeBSD.org, gnome@FreeBSD.org From: kwm@FreeBSD.org Cc: Subject: Re: ports/149628: PATCH lang/gjs: update to 0.7 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 19:47:53 -0000 Synopsis: PATCH lang/gjs: update to 0.7 State-Changed-From-To: open->closed State-Changed-By: kwm State-Changed-When: Fri Aug 13 19:46:48 UTC 2010 State-Changed-Why: Duplicate of 149629, closing. http://www.freebsd.org/cgi/query-pr.cgi?pr=149628 From owner-freebsd-gnome@FreeBSD.ORG Sat Aug 14 14:10:27 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFF741065673; Sat, 14 Aug 2010 14:10:27 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 975C78FC12; Sat, 14 Aug 2010 14:10:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7EEAR2i049217; Sat, 14 Aug 2010 14:10:27 GMT (envelope-from kwm@freefall.freebsd.org) Received: (from kwm@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7EEARQf049203; Sat, 14 Aug 2010 14:10:27 GMT (envelope-from kwm) Date: Sat, 14 Aug 2010 14:10:27 GMT Message-Id: <201008141410.o7EEARQf049203@freefall.freebsd.org> To: linpct@gmail.com, kwm@FreeBSD.org, gnome@FreeBSD.org From: kwm@FreeBSD.org Cc: Subject: Re: ports/149629: [PATCH] lang/gjs: update to 0.7 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 14:10:27 -0000 Synopsis: [PATCH] lang/gjs: update to 0.7 State-Changed-From-To: open->patched State-Changed-By: kwm State-Changed-When: Sat Aug 14 14:09:36 UTC 2010 State-Changed-Why: We currently have 0.7.1. in our development ports tree. And will be committed with the next big gnome update. http://www.freebsd.org/cgi/query-pr.cgi?pr=149629 From owner-freebsd-gnome@FreeBSD.ORG Sat Aug 14 17:44:20 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9324C1065697; Sat, 14 Aug 2010 17:44:20 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 69F4F8FC0C; Sat, 14 Aug 2010 17:44:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7EHiKeB061324; Sat, 14 Aug 2010 17:44:20 GMT (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7EHiKXV061320; Sat, 14 Aug 2010 17:44:20 GMT (envelope-from marcus) Date: Sat, 14 Aug 2010 17:44:20 GMT Message-Id: <201008141744.o7EHiKXV061320@freefall.freebsd.org> To: yampresss@gmail.com, marcus@FreeBSD.org, gnome@FreeBSD.org From: marcus@FreeBSD.org Cc: Subject: Re: ports/149471: gconf error ? and Workspace switcher - only 1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 17:44:20 -0000 Synopsis: gconf error ? and Workspace switcher - only 1 State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Sat Aug 14 17:43:07 UTC 2010 State-Changed-Why: You need to update your installed packages _from ports_. There was a bad 8.1 metacity package. If you use portmaster or portupgrade to upgrade your installed packages using an up-to-date ports tree, you will end up with GNOME 2.30.2 and metacity-2.30.1_3, and this problem will go away. http://www.freebsd.org/cgi/query-pr.cgi?pr=149471 From owner-freebsd-gnome@FreeBSD.ORG Sat Aug 14 17:48:58 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3B52210656A6; Sat, 14 Aug 2010 17:48:58 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 11C148FC15; Sat, 14 Aug 2010 17:48:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7EHmvFJ061460; Sat, 14 Aug 2010 17:48:57 GMT (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7EHmvt0061456; Sat, 14 Aug 2010 17:48:57 GMT (envelope-from marcus) Date: Sat, 14 Aug 2010 17:48:57 GMT Message-Id: <201008141748.o7EHmvt0061456@freefall.freebsd.org> To: regex@bk.ru, marcus@FreeBSD.org, gnome@FreeBSD.org From: marcus@FreeBSD.org Cc: Subject: Re: ports/149067: graphics/gimp-app miss dependency on x11/babl X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 17:48:58 -0000 Synopsis: graphics/gimp-app miss dependency on x11/babl State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Sat Aug 14 17:48:16 UTC 2010 State-Changed-Why: Gimp already depended on babl via gegl. However, an explicit dependency has been added. However, you will still need to reinstall gegl as your packages database is not consistent. http://www.freebsd.org/cgi/query-pr.cgi?pr=149067 From owner-freebsd-gnome@FreeBSD.ORG Sat Aug 14 17:50:05 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F7E41065696 for ; Sat, 14 Aug 2010 17:50:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3F0208FC17 for ; Sat, 14 Aug 2010 17:50:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7EHo5Yu061586 for ; Sat, 14 Aug 2010 17:50:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7EHo5eG061585; Sat, 14 Aug 2010 17:50:05 GMT (envelope-from gnats) Date: Sat, 14 Aug 2010 17:50:05 GMT Message-Id: <201008141750.o7EHo5eG061585@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/149431: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2010 17:50:05 -0000 The following reply was made to PR ports/149431; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/149431: commit references a PR Date: Sat, 14 Aug 2010 17:45:49 +0000 (UTC) marcus 2010-08-14 17:45:40 UTC FreeBSD ports repository Modified files: databases/libgda4 Makefile Log: Mark as MAKE_JOBS_UNSAFE. PR: 149431 Submitted by: Ivan Klymenko Revision Changes Path 1.29 +1 -0 ports/databases/libgda4/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Sat Aug 14 17:50:07 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F9611065675 for ; Sat, 14 Aug 2010 17:50:07 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2F6D58FC18 for ; Sat, 14 Aug 2010 17:50:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7EHo73L061730 for ; Sat, 14 Aug 2010 17:50:07 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7EHo7CH061721; Sat, 14 Aug 2010 17:50:07 GMT (envelope-from gnats) Date: Sat, 14 Aug 2010 17:50:07 GMT Message-Id: <201008141750.o7EHo7CH061721@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/149067: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2010 17:50:07 -0000 The following reply was made to PR ports/149067; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/149067: commit references a PR Date: Sat, 14 Aug 2010 17:48:18 +0000 (UTC) marcus 2010-08-14 17:48:11 UTC FreeBSD ports repository Modified files: graphics/gimp-app Makefile Log: Add an explicit dependency on babl. PR: 149067 Revision Changes Path 1.249 +2 -1 ports/graphics/gimp-app/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Sat Aug 14 17:50:48 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 726151065694; Sat, 14 Aug 2010 17:50:48 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 492478FC1E; Sat, 14 Aug 2010 17:50:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7EHomUp067948; Sat, 14 Aug 2010 17:50:48 GMT (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7EHom2g067934; Sat, 14 Aug 2010 17:50:48 GMT (envelope-from marcus) Date: Sat, 14 Aug 2010 17:50:48 GMT Message-Id: <201008141750.o7EHom2g067934@freefall.freebsd.org> To: oberman@es.net, marcus@FreeBSD.org, gnome@FreeBSD.org From: marcus@FreeBSD.org Cc: Subject: Re: ports/149134: x11/gnome2 unable to unmount UFS file system X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 17:50:48 -0000 Synopsis: x11/gnome2 unable to unmount UFS file system State-Changed-From-To: open->feedback State-Changed-By: marcus State-Changed-When: Sat Aug 14 17:49:34 UTC 2010 State-Changed-Why: You need to provide everything documented at http://www.freebsd.org/gnome/docs/halfaq.html#q4 for proper troubleshooting. In particular the kern.geom.conftxt output will be useful here. http://www.freebsd.org/cgi/query-pr.cgi?pr=149134 From owner-freebsd-gnome@FreeBSD.ORG Sat Aug 14 17:52:55 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7CBEE1065670; Sat, 14 Aug 2010 17:52:55 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 537E58FC12; Sat, 14 Aug 2010 17:52:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7EHqtJ1070730; Sat, 14 Aug 2010 17:52:55 GMT (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7EHqtZH070726; Sat, 14 Aug 2010 17:52:55 GMT (envelope-from marcus) Date: Sat, 14 Aug 2010 17:52:55 GMT Message-Id: <201008141752.o7EHqtZH070726@freefall.freebsd.org> To: anatoly.borodin@gmail.com, marcus@FreeBSD.org, gnome@FreeBSD.org From: marcus@FreeBSD.org Cc: Subject: Re: ports/148907: deskutils/planner does not build with WITH_EVO=true X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 17:52:55 -0000 Synopsis: deskutils/planner does not build with WITH_EVO=true State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Sat Aug 14 17:52:24 UTC 2010 State-Changed-Why: Support for Evolution is currently broken as planner needs an upstream update to work with modern versions of Evolution. I have disabled Evo support for now in planner. http://www.freebsd.org/cgi/query-pr.cgi?pr=148907 From owner-freebsd-gnome@FreeBSD.ORG Sat Aug 14 17:54:41 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7311510656A4; Sat, 14 Aug 2010 17:54:41 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 49D438FC20; Sat, 14 Aug 2010 17:54:41 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7EHsfWi070812; Sat, 14 Aug 2010 17:54:41 GMT (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7EHsfgf070808; Sat, 14 Aug 2010 17:54:41 GMT (envelope-from marcus) Date: Sat, 14 Aug 2010 17:54:41 GMT Message-Id: <201008141754.o7EHsfgf070808@freefall.freebsd.org> To: bsdkaffee@gmail.com, marcus@FreeBSD.org, gnome@FreeBSD.org From: marcus@FreeBSD.org Cc: Subject: Re: ports/144894: [PATCH] finance/gnucash: Chase finance/aqbanking shlib bump X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 17:54:41 -0000 Synopsis: [PATCH] finance/gnucash: Chase finance/aqbanking shlib bump State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Sat Aug 14 17:54:32 UTC 2010 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=144894 From owner-freebsd-gnome@FreeBSD.ORG Sat Aug 14 17:57:12 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BBA51065673; Sat, 14 Aug 2010 17:57:12 +0000 (UTC) (envelope-from marcus@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D69198FC0A; Sat, 14 Aug 2010 17:57:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7EHvB3i070893; Sat, 14 Aug 2010 17:57:11 GMT (envelope-from marcus@freefall.freebsd.org) Received: (from marcus@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7EHvBmh070889; Sat, 14 Aug 2010 17:57:11 GMT (envelope-from marcus) Date: Sat, 14 Aug 2010 17:57:11 GMT Message-Id: <201008141757.o7EHvBmh070889@freefall.freebsd.org> To: fidaj@ukr.net, marcus@FreeBSD.org, gnome@FreeBSD.org From: marcus@FreeBSD.org Cc: Subject: Re: ports/149431: [patch] databases/libgda4 mark MAKE_JOBS_UNSAFE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 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 Aug 2010 17:57:12 -0000 Synopsis: [patch] databases/libgda4 mark MAKE_JOBS_UNSAFE State-Changed-From-To: open->closed State-Changed-By: marcus State-Changed-When: Sat Aug 14 17:57:02 UTC 2010 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=149431 From owner-freebsd-gnome@FreeBSD.ORG Sat Aug 14 18:00:16 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4DC0C106566C for ; Sat, 14 Aug 2010 18:00:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3DAB38FC19 for ; Sat, 14 Aug 2010 18:00:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7EI0Gd7071073 for ; Sat, 14 Aug 2010 18:00:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7EI0G0p071066; Sat, 14 Aug 2010 18:00:16 GMT (envelope-from gnats) Date: Sat, 14 Aug 2010 18:00:16 GMT Message-Id: <201008141800.o7EI0G0p071066@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/148907: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2010 18:00:16 -0000 The following reply was made to PR ports/148907; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/148907: commit references a PR Date: Sat, 14 Aug 2010 17:52:36 +0000 (UTC) marcus 2010-08-14 17:52:22 UTC FreeBSD ports repository Modified files: deskutils/planner Makefile Log: Planner no longer builds with modern Evolution. PR: 148907 Revision Changes Path 1.56 +8 -8 ports/deskutils/planner/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Sat Aug 14 18:00:18 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 03789106564A for ; Sat, 14 Aug 2010 18:00:18 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E7ABE8FC17 for ; Sat, 14 Aug 2010 18:00:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o7EI0HAu071115 for ; Sat, 14 Aug 2010 18:00:17 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o7EI0HBc071109; Sat, 14 Aug 2010 18:00:17 GMT (envelope-from gnats) Date: Sat, 14 Aug 2010 18:00:17 GMT Message-Id: <201008141800.o7EI0HBc071109@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/144894: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2010 18:00:18 -0000 The following reply was made to PR ports/144894; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/144894: commit references a PR Date: Sat, 14 Aug 2010 17:54:36 +0000 (UTC) marcus 2010-08-14 17:54:25 UTC FreeBSD ports repository Modified files: finance/gnucash Makefile Log: Chase the aqbanking shared lib version. PR: 144894 Submitted by: Jason E. Hale Revision Changes Path 1.146 +1 -1 ports/finance/gnucash/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"