From mike@milibyte.co.uk  Thu May 14 11:16:14 2009
Return-Path: <mike@milibyte.co.uk>
Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34])
	by hub.freebsd.org (Postfix) with ESMTP id 5B0A5106564A
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 14 May 2009 11:16:14 +0000 (UTC)
	(envelope-from mike@milibyte.co.uk)
Received: from relay.pcl-ipout01.plus.net (relay.pcl-ipout01.plus.net [212.159.7.99])
	by mx1.freebsd.org (Postfix) with ESMTP id E9B5E8FC0C
	for <FreeBSD-gnats-submit@freebsd.org>; Thu, 14 May 2009 11:16:12 +0000 (UTC)
	(envelope-from mike@milibyte.co.uk)
Received: from pih-relay08.plus.net ([212.159.14.20])
  by relay.pcl-ipout01.plus.net with ESMTP; 14 May 2009 11:46:39 +0100
Received: from [84.92.153.232] (helo=curlew.milibyte.co.uk)
	 by pih-relay08.plus.net with esmtp (Exim) id 1M4YSV-0002Rb-3f
	for FreeBSD-gnats-submit@freebsd.org; Thu, 14 May 2009 11:46:39 +0100
Received: by curlew.milibyte.co.uk with local (Exim 4.69)
	(envelope-from <mike@milibyte.co.uk>)
	id 1M4YSU-00014D-Tt
	for FreeBSD-gnats-submit@freebsd.org; Thu, 14 May 2009 11:46:38 +0100
Message-Id: <E1M4YSU-00014D-Tt@curlew.milibyte.co.uk>
Date: Thu, 14 May 2009 11:46:38 +0100
From: Mike Clarke <jmc-fbsdpr@milibyte.co.uk>
Reply-To: Mike Clarke <jmc-fbsdpr@milibyte.co.uk>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: [patch] Gimp 2.6.6 fails to open URI's
X-Send-Pr-Version: 3.113
X-GNATS-Notify:

>Number:         134536
>Category:       ports
>Synopsis:       [patch] graphics/gimp: Gimp 2.6.6 fails to open URI's
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    gnome
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          sw-bug
>Submitter-Id:   current-users
>Arrival-Date:   Thu May 14 11:20:04 UTC 2009
>Closed-Date:    Sun Dec 06 23:19:14 UTC 2009
>Last-Modified:  Sun Dec 06 23:19:14 UTC 2009
>Originator:     Mike Clarke
>Release:        FreeBSD 6.4-RELEASE-p3 i386
>Organization:
>Environment:
System: FreeBSD curlew.lan 6.4-RELEASE-p3 FreeBSD 6.4-RELEASE-p3 #2: Mon Feb 16 11:27:38 GMT 2009 root@curlew.lan:/usr/obj/usr/src/sys/CURLEW i386

pkg_info -Ix gimp vfs

gimp-2.6.6,2        The "meta-port" for The Gimp
gimp-app-2.6.6_1,1  A GNU Image Manipulation Program
gimp-gutenprint-5.1.7_1 GutenPrint Printer Driver
gimp-help-2.4.2     GIMP user's manual
gnome-vfs-2.24.1    GNOME Virtual File System
gstreamer-plugins-gnomevfs-0.10.22_1,3 Gstreamer gnomevfs plugin
gvfs-1.2.2          GNOME virtual file system

All ports are up to date with the ports tree dated 11 May 2009

>Description:
Gimp cannot open URI's. A typical error message is "Could not open 'http://www.freebsd.org/layout/images/beastie.png' for reading: No such file or directory"
This looks like a return of the symptoms reported in PR ports/129023
>How-To-Repeat:
Either use File > Open Location from the menu or drag an image from a browser window.
I've tried this with GVFS=off and GVFS=on but get the same results with each.
>Fix:
After raising this matter in freebsd-questions <http://lists.freebsd.org/pipermail/freebsd-questions/2009-May/197993.html> two alternative patches for gimp-app/Makefile were suggested. Either of these cures the problem for me but only with "GVFS=off"

--- gimp-app.Makefile.diff begins here ---
--- Makefile.orig	2009-05-10 17:53:17.000000000 +0200
+++ Makefile	2009-05-10 17:56:17.000000000 +0200
@@ -132,12 +132,14 @@
 CONFIGURE_ARGS+=	--without-dbus
 .endif
 
-.if defined(WITH_GVFS) || ${HAVE_GNOME:Mgvfs}!=""
+.if defined(WITH_GVFS)
 LIB_DEPENDS+=	gnome-keyring.0:${PORTSDIR}/security/gnome-keyring
 USE_GNOME+=	gvfs
 .  if ${HAVE_GNOME:Mlibgnomeui}!=""
 USE_GNOME+=	libgnomeui
 .  endif
+.else
+CONFIGURE_ARGS+=        --without-gvfs
 .endif
 
 .endif
--- gimp-app.Makefile.diff ends here ---

--- gimp-app2.Makefile.diff begins here ---
--- Makefile.orig	2009-05-10 17:53:17.000000000 +0200
+++ Makefile	2009-05-10 18:00:20.000000000 +0200
@@ -55,8 +55,7 @@
 		--disable-python \
 		--with-desktop-dir=${PREFIX}/share \
 		--docdir=${PREFIX}/share/doc/gimp \
-		--enable-default-binary \
-		--without-gnomevfs
+		--enable-default-binary
 CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" \
 		LDFLAGS="-L${LOCALBASE}/lib" \
 		GIMP_THREAD_LIBS=${PTHREAD_LIBS}
@@ -132,12 +131,15 @@
 CONFIGURE_ARGS+=	--without-dbus
 .endif
 
-.if defined(WITH_GVFS) || ${HAVE_GNOME:Mgvfs}!=""
+.if defined(WITH_GVFS)
+CONFIGURE_ARGS+=	--without-gnomevfs
 LIB_DEPENDS+=	gnome-keyring.0:${PORTSDIR}/security/gnome-keyring
 USE_GNOME+=	gvfs
 .  if ${HAVE_GNOME:Mlibgnomeui}!=""
 USE_GNOME+=	libgnomeui
 .  endif
+.else
+CONFIGURE_ARGS+=        --without-gvfs --with-gnomevfs
 .endif
 
 .endif
--- gimp-app2.Makefile.diff ends here ---


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->gnome 
Responsible-Changed-By: pav 
Responsible-Changed-When: Thu May 14 11:46:14 UTC 2009 
Responsible-Changed-Why:  
Assign 

http://www.freebsd.org/cgi/query-pr.cgi?pr=134536 
State-Changed-From-To: open->feedback 
State-Changed-By: marcus 
State-Changed-When: Sat Jun 6 19:08:34 UTC 2009 
State-Changed-Why:  
I cannot reproduce.  I can open HTTP URLs in gimp just fine with gvfs 
support enabled.  I imagine there is a problem with your libsoup 
installation.  Try reinstalling libsoup and gvfs, then see if Gimp works 
properly. 

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

From: jmc-fbsdpr@milibyte.co.uk
To: bug-followup@freebsd.org,
 marcus@freebsd.org
Cc:  
Subject: Re: ports/134536: [patch] graphics/gimp: Gimp 2.6.6 fails to open URI's
Date: Sat, 6 Jun 2009 21:59:12 +0100

 I've re-installed libsoup, gvfs and gimp-app, in that order but still 
 see the same problem. I've tried this with GVFS turned on in config and 
 also turned off and see the same error each time.
 
 curlew:/home/mike% pkg_info -Ex libsoup gvfs gimp-app
 gimp-app-2.6.6_1,1
 gvfs-1.2.3
 libsoup-2.26.2
 
 -- 
 Mike Clarke

From: Joe Marcus Clarke <marcus@FreeBSD.org>
To: jmc-fbsdpr@milibyte.co.uk
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/134536: [patch] graphics/gimp: Gimp 2.6.6 fails to open
 URI's
Date: Sun, 07 Jun 2009 15:34:34 -0400

 --=-vSBCYZEc1L+7Z/3hrI2v
 Content-Type: text/plain
 Content-Transfer-Encoding: quoted-printable
 
 On Sat, 2009-06-06 at 21:59 +0100, jmc-fbsdpr@milibyte.co.uk wrote:
 > I've re-installed libsoup, gvfs and gimp-app, in that order but still=20
 > see the same problem. I've tried this with GVFS turned on in config and=20
 > also turned off and see the same error each time.
 >=20
 > curlew:/home/mike% pkg_info -Ex libsoup gvfs gimp-app
 > gimp-app-2.6.6_1,1
 > gvfs-1.2.3
 > libsoup-2.26.2
 
 What does the output of make configure look like for libsoup?
 
 Joe
 
 --=20
 Joe Marcus Clarke
 FreeBSD GNOME Team      ::      gnome@FreeBSD.org
 FreeNode / #freebsd-gnome
 http://www.FreeBSD.org/gnome
 
 --=-vSBCYZEc1L+7Z/3hrI2v
 Content-Type: application/pgp-signature; name="signature.asc"
 Content-Description: This is a digitally signed message part
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.9 (FreeBSD)
 
 iEYEABECAAYFAkosFkkACgkQb2iPiv4Uz4eJiQCfdQPFst89aPFhPfijQW9Wdm5V
 i4MAniq50PEtvetrIILL64B1BlAS/Y8Y
 =mZwG
 -----END PGP SIGNATURE-----
 
 --=-vSBCYZEc1L+7Z/3hrI2v--
 

From: Mike Clarke <jmc-fbsdpr@milibyte.co.uk>
To: Joe Marcus Clarke <marcus@freebsd.org>
Cc: bug-followup@freebsd.org
Subject: Re: ports/134536: [patch] graphics/gimp: Gimp 2.6.6 fails to open URI's
Date: Sun, 7 Jun 2009 21:41:11 +0100

 On Sunday 07 June 2009, Joe Marcus Clarke wrote:
 
 > What does the output of make configure look like for libsoup?
 
 Script started on Sun Jun  7 20:46:33 2009
 curlew:/usr/ports/devel/libsoup# make configure
 
 
 libsoup has the following configurable option(s):
 	WITHOUT_SSL	Disable GnuTLS SSL support
 
 ===>  Extracting for libsoup-2.26.2
 => MD5 Checksum OK for gnome2/libsoup-2.26.2.tar.bz2.
 => SHA256 Checksum OK for gnome2/libsoup-2.26.2.tar.bz2.
 ===>  Patching for libsoup-2.26.2
 ===>   libsoup-2.26.2 depends on file: /usr/local/bin/libtool - found
 ===>   libsoup-2.26.2 depends on executable: gmake - found
 ===>   libsoup-2.26.2 depends on file: /usr/local/bin/libtool - found
 ===>   libsoup-2.26.2 depends on file: /usr/local/bin/intltool-extract - found
 ===>   libsoup-2.26.2 depends on executable: pkg-config - found
 ===>   libsoup-2.26.2 depends on shared library: popt.0 - found
 ===>   libsoup-2.26.2 depends on shared library: proxy.0 - found
 ===>   libsoup-2.26.2 depends on shared library: sqlite3.8 - found
 ===>   libsoup-2.26.2 depends on shared library: gnutls.26 - found
 ===>   libsoup-2.26.2 depends on shared library: atk-1.0.0 - found
 ===>   libsoup-2.26.2 depends on shared library: gconf-2.4 - found
 ===>   libsoup-2.26.2 depends on shared library: glib-2.0.0 - found
 ===>   libsoup-2.26.2 depends on shared library: gtk-x11-2.0.0 - found
 ===>   libsoup-2.26.2 depends on shared library: IDL-2.0 - found
 ===>   libsoup-2.26.2 depends on shared library: xml2.5 - found
 ===>   libsoup-2.26.2 depends on shared library: ORBit-2.0 - found
 ===>   libsoup-2.26.2 depends on shared library: pango-1.0.0 - found
 ===>  Configuring for libsoup-2.26.2
 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel
 checking whether build environment is sane... yes
 checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p
 checking for gawk... gawk
 checking whether gmake sets $(MAKE)... yes
 checking whether to enable maintainer-specific portions of Makefiles... no
 checking whether gmake sets $(MAKE)... (cached) yes
 checking for gcc... cc
 checking for C compiler default output file name... a.out
 checking whether the C compiler works... yes
 checking whether we are cross compiling... no
 checking for suffix of executables...
 checking for suffix of object files... o
 checking whether we are using the GNU C compiler... yes
 checking whether cc accepts -g... yes
 checking for cc option to accept ISO C89... none needed
 checking for style of include used by gmake... GNU
 checking dependency style of cc... gcc3
 checking for gcc... (cached) cc
 checking whether we are using the GNU C compiler... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking for cc option to accept ISO C89... (cached) none needed
 checking dependency style of cc... (cached) gcc3
 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel
 checking how to run the C preprocessor... cc -E
 checking for grep that handles long lines and -e... /usr/bin/grep
 checking for egrep... /usr/bin/grep -E
 checking for ANSI C header files... yes
 checking build system type... i386-portbld-freebsd6.4
 checking host system type... i386-portbld-freebsd6.4
 checking for a sed that does not truncate output... /usr/bin/sed
 checking for ld used by cc... /usr/bin/ld
 checking if the linker (/usr/bin/ld) is GNU ld... yes
 checking for /usr/bin/ld option to reload object files... -r
 checking for BSD-compatible nm... /usr/bin/nm -B
 checking whether ln -s works... yes
 checking how to recognize dependent libraries... pass_all
 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... yes
 checking for unistd.h... yes
 checking dlfcn.h usability... yes
 checking dlfcn.h presence... yes
 checking for dlfcn.h... yes
 checking whether we are using the GNU C++ compiler... yes
 checking whether c++ accepts -g... yes
 checking dependency style of c++... gcc3
 checking how to run the C++ preprocessor... c++ -E
 checking for g77... no
 checking for xlf... no
 checking for f77... f77
 checking whether we are using the GNU Fortran 77 compiler... yes
 checking whether f77 accepts -g... yes
 checking the maximum length of command line arguments... (cached) 262144
 checking command to parse /usr/bin/nm -B output from cc object... ok
 checking for objdir... .libs
 checking for ar... ar
 checking for ranlib... ranlib
 checking for strip... strip
 checking if cc supports -fno-rtti -fno-exceptions... no
 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 whether the cc linker (/usr/bin/ld) supports shared libraries... yes
 checking whether -lc should be explicitly linked in... yes
 checking dynamic linker characteristics... freebsd6.4 ld.so
 checking how to hardcode library paths into programs... immediate
 checking whether stripping libraries is possible... yes
 checking if libtool supports shared libraries... yes
 checking whether to build shared libraries... yes
 checking whether to build static libraries... yes
 configure: creating libtool
 appending configuration tag "CXX" to libtool
 checking for ld used by c++... /usr/bin/ld
 checking if the linker (/usr/bin/ld) is GNU ld... yes
 checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes
 checking for c++ option to produce PIC... -fPIC
 checking if c++ PIC flag -fPIC works... yes
 checking if c++ static flag -static works... yes
 checking if c++ supports -c -o file.o... yes
 checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes
 checking dynamic linker characteristics... freebsd6.4 ld.so
 (cached) (cached) checking how to hardcode library paths into programs... immediate
 appending configuration tag "F77" to libtool
 checking if libtool supports shared libraries... yes
 checking whether to build shared libraries... yes
 checking whether to build static libraries... yes
 checking for f77 option to produce PIC... -fPIC
 checking if f77 PIC flag -fPIC works... yes
 checking if f77 static flag -static works... yes
 checking if f77 supports -c -o file.o... yes
 checking whether the f77 linker (/usr/bin/ld) supports shared libraries... yes
 checking dynamic linker characteristics... freebsd6.4 ld.so
 (cached) (cached) checking how to hardcode library paths into programs... immediate
 checking for working alloca.h... no
 checking for alloca... yes
 checking for pkg-config... /usr/local/bin/pkg-config
 checking pkg-config is at least version 0.16... yes
 checking for GLIB - version >= 2.15.3... yes (version 2.20.3)
 checking for XML... yes
 checking for Win32... no
 checking for gmtime_r... yes
 checking for mmap... yes
 checking for socket... yes
 checking for gethostbyname... yes
 checking for inet_pton... yes
 checking for inet_ntop... yes
 checking for inet_aton... yes
 checking for getaddrinfo... yes
 checking for getnameinfo... yes
 checking IPv6 support... yes
 checking for LIBGNUTLS... yes
 checking for libgcrypt-config... /usr/local/bin/libgcrypt-config
 checking for LIBGCRYPT - version >= 1.2.0... yes (1.4.4)
 checking LIBGCRYPT API version... okay
 checking whether to build libsoup-gnome... yes
 checking for LIBPROXY... yes
 checking for GCONF... yes
 checking for SQLITE... yes
 gnome-config: not found
 checking whether gcc understands -Wundef... yes
 configure: checking for programs needed for regression tests
 checking for httpd2... no
 checking for httpd... /usr/local/sbin/httpd
 checking Apache version... 2.2.11 (FreeBSD) (ok)
 checking for Apache module directory...
 test: /usr/local/sbin/httpd: unexpected operator
 checking for curl... /usr/local/bin/curl
 configure: Some regression tests will not be run due to missing packages: mod_ssl
 configure: creating ./config.status
 config.status: creating libsoup-2.4.pc
 config.status: creating libsoup-gnome-2.4.pc
 config.status: creating Makefile
 config.status: creating libsoup-zip
 config.status: creating libsoup/Makefile
 config.status: creating tests/Makefile
 config.status: creating tests/httpd.conf
 config.status: creating docs/Makefile
 config.status: creating docs/reference/Makefile
 config.status: creating config.h
 config.status: executing depfiles commands
 curlew:/usr/ports/devel/libsoup# ^Dexit
 
 Script done on Sun Jun  7 21:22:43 2009
 
 -- 
 Mike Clarke

From: Joe Marcus Clarke <marcus@FreeBSD.org>
To: Mike Clarke <jmc-fbsdpr@milibyte.co.uk>
Cc: bug-followup@FreeBSD.org
Subject: Re: ports/134536: [patch] graphics/gimp: Gimp 2.6.6 fails to open
 URI's
Date: Mon, 15 Jun 2009 01:09:59 -0400

 --=-uoAJo/0FnmH1/Zz5WZBC
 Content-Type: text/plain
 Content-Transfer-Encoding: quoted-printable
 
 On Sun, 2009-06-07 at 21:41 +0100, Mike Clarke wrote:
 > On Sunday 07 June 2009, Joe Marcus Clarke wrote:
 >=20
 > > What does the output of make configure look like for libsoup?
 >=20
 > Script started on Sun Jun  7 20:46:33 2009
 > curlew:/usr/ports/devel/libsoup# make configure
 
 How about the output for devel/gvfs?
 
 Joe
 
 >=20
 >=20
 > libsoup has the following configurable option(s):
 > 	WITHOUT_SSL	Disable GnuTLS SSL support
 >=20
 > =3D=3D=3D>  Extracting for libsoup-2.26.2
 > =3D> MD5 Checksum OK for gnome2/libsoup-2.26.2.tar.bz2.
 > =3D> SHA256 Checksum OK for gnome2/libsoup-2.26.2.tar.bz2.
 > =3D=3D=3D>  Patching for libsoup-2.26.2
 > =3D=3D=3D>   libsoup-2.26.2 depends on file: /usr/local/bin/libtool - fou=
 nd
 > =3D=3D=3D>   libsoup-2.26.2 depends on executable: gmake - found
 > =3D=3D=3D>   libsoup-2.26.2 depends on file: /usr/local/bin/libtool - fou=
 nd
 > =3D=3D=3D>   libsoup-2.26.2 depends on file: /usr/local/bin/intltool-extr=
 act - found
 > =3D=3D=3D>   libsoup-2.26.2 depends on executable: pkg-config - found
 > =3D=3D=3D>   libsoup-2.26.2 depends on shared library: popt.0 - found
 > =3D=3D=3D>   libsoup-2.26.2 depends on shared library: proxy.0 - found
 > =3D=3D=3D>   libsoup-2.26.2 depends on shared library: sqlite3.8 - found
 > =3D=3D=3D>   libsoup-2.26.2 depends on shared library: gnutls.26 - found
 > =3D=3D=3D>   libsoup-2.26.2 depends on shared library: atk-1.0.0 - found
 > =3D=3D=3D>   libsoup-2.26.2 depends on shared library: gconf-2.4 - found
 > =3D=3D=3D>   libsoup-2.26.2 depends on shared library: glib-2.0.0 - found
 > =3D=3D=3D>   libsoup-2.26.2 depends on shared library: gtk-x11-2.0.0 - fo=
 und
 > =3D=3D=3D>   libsoup-2.26.2 depends on shared library: IDL-2.0 - found
 > =3D=3D=3D>   libsoup-2.26.2 depends on shared library: xml2.5 - found
 > =3D=3D=3D>   libsoup-2.26.2 depends on shared library: ORBit-2.0 - found
 > =3D=3D=3D>   libsoup-2.26.2 depends on shared library: pango-1.0.0 - foun=
 d
 > =3D=3D=3D>  Configuring for libsoup-2.26.2
 > checking for a BSD-compatible install... /usr/bin/install -c -o root -g w=
 heel
 > checking whether build environment is sane... yes
 > checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p
 > checking for gawk... gawk
 > checking whether gmake sets $(MAKE)... yes
 > checking whether to enable maintainer-specific portions of Makefiles... n=
 o
 > checking whether gmake sets $(MAKE)... (cached) yes
 > checking for gcc... cc
 > checking for C compiler default output file name... a.out
 > checking whether the C compiler works... yes
 > checking whether we are cross compiling... no
 > checking for suffix of executables...
 > checking for suffix of object files... o
 > checking whether we are using the GNU C compiler... yes
 > checking whether cc accepts -g... yes
 > checking for cc option to accept ISO C89... none needed
 > checking for style of include used by gmake... GNU
 > checking dependency style of cc... gcc3
 > checking for gcc... (cached) cc
 > checking whether we are using the GNU C compiler... (cached) yes
 > checking whether cc accepts -g... (cached) yes
 > checking for cc option to accept ISO C89... (cached) none needed
 > checking dependency style of cc... (cached) gcc3
 > checking for a BSD-compatible install... /usr/bin/install -c -o root -g w=
 heel
 > checking how to run the C preprocessor... cc -E
 > checking for grep that handles long lines and -e... /usr/bin/grep
 > checking for egrep... /usr/bin/grep -E
 > checking for ANSI C header files... yes
 > checking build system type... i386-portbld-freebsd6.4
 > checking host system type... i386-portbld-freebsd6.4
 > checking for a sed that does not truncate output... /usr/bin/sed
 > checking for ld used by cc... /usr/bin/ld
 > checking if the linker (/usr/bin/ld) is GNU ld... yes
 > checking for /usr/bin/ld option to reload object files... -r
 > checking for BSD-compatible nm... /usr/bin/nm -B
 > checking whether ln -s works... yes
 > checking how to recognize dependent libraries... pass_all
 > 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... yes
 > checking for unistd.h... yes
 > checking dlfcn.h usability... yes
 > checking dlfcn.h presence... yes
 > checking for dlfcn.h... yes
 > checking whether we are using the GNU C++ compiler... yes
 > checking whether c++ accepts -g... yes
 > checking dependency style of c++... gcc3
 > checking how to run the C++ preprocessor... c++ -E
 > checking for g77... no
 > checking for xlf... no
 > checking for f77... f77
 > checking whether we are using the GNU Fortran 77 compiler... yes
 > checking whether f77 accepts -g... yes
 > checking the maximum length of command line arguments... (cached) 262144
 > checking command to parse /usr/bin/nm -B output from cc object... ok
 > checking for objdir... .libs
 > checking for ar... ar
 > checking for ranlib... ranlib
 > checking for strip... strip
 > checking if cc supports -fno-rtti -fno-exceptions... no
 > 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 whether the cc linker (/usr/bin/ld) supports shared libraries...=
  yes
 > checking whether -lc should be explicitly linked in... yes
 > checking dynamic linker characteristics... freebsd6.4 ld.so
 > checking how to hardcode library paths into programs... immediate
 > checking whether stripping libraries is possible... yes
 > checking if libtool supports shared libraries... yes
 > checking whether to build shared libraries... yes
 > checking whether to build static libraries... yes
 > configure: creating libtool
 > appending configuration tag "CXX" to libtool
 > checking for ld used by c++... /usr/bin/ld
 > checking if the linker (/usr/bin/ld) is GNU ld... yes
 > checking whether the c++ linker (/usr/bin/ld) supports shared libraries..=
 . yes
 > checking for c++ option to produce PIC... -fPIC
 > checking if c++ PIC flag -fPIC works... yes
 > checking if c++ static flag -static works... yes
 > checking if c++ supports -c -o file.o... yes
 > checking whether the c++ linker (/usr/bin/ld) supports shared libraries..=
 . yes
 > checking dynamic linker characteristics... freebsd6.4 ld.so
 > (cached) (cached) checking how to hardcode library paths into programs...=
  immediate
 > appending configuration tag "F77" to libtool
 > checking if libtool supports shared libraries... yes
 > checking whether to build shared libraries... yes
 > checking whether to build static libraries... yes
 > checking for f77 option to produce PIC... -fPIC
 > checking if f77 PIC flag -fPIC works... yes
 > checking if f77 static flag -static works... yes
 > checking if f77 supports -c -o file.o... yes
 > checking whether the f77 linker (/usr/bin/ld) supports shared libraries..=
 . yes
 > checking dynamic linker characteristics... freebsd6.4 ld.so
 > (cached) (cached) checking how to hardcode library paths into programs...=
  immediate
 > checking for working alloca.h... no
 > checking for alloca... yes
 > checking for pkg-config... /usr/local/bin/pkg-config
 > checking pkg-config is at least version 0.16... yes
 > checking for GLIB - version >=3D 2.15.3... yes (version 2.20.3)
 > checking for XML... yes
 > checking for Win32... no
 > checking for gmtime_r... yes
 > checking for mmap... yes
 > checking for socket... yes
 > checking for gethostbyname... yes
 > checking for inet_pton... yes
 > checking for inet_ntop... yes
 > checking for inet_aton... yes
 > checking for getaddrinfo... yes
 > checking for getnameinfo... yes
 > checking IPv6 support... yes
 > checking for LIBGNUTLS... yes
 > checking for libgcrypt-config... /usr/local/bin/libgcrypt-config
 > checking for LIBGCRYPT - version >=3D 1.2.0... yes (1.4.4)
 > checking LIBGCRYPT API version... okay
 > checking whether to build libsoup-gnome... yes
 > checking for LIBPROXY... yes
 > checking for GCONF... yes
 > checking for SQLITE... yes
 > gnome-config: not found
 > checking whether gcc understands -Wundef... yes
 > configure: checking for programs needed for regression tests
 > checking for httpd2... no
 > checking for httpd... /usr/local/sbin/httpd
 > checking Apache version... 2.2.11 (FreeBSD) (ok)
 > checking for Apache module directory...
 > test: /usr/local/sbin/httpd: unexpected operator
 > checking for curl... /usr/local/bin/curl
 > configure: Some regression tests will not be run due to missing packages:=
  mod_ssl
 > configure: creating ./config.status
 > config.status: creating libsoup-2.4.pc
 > config.status: creating libsoup-gnome-2.4.pc
 > config.status: creating Makefile
 > config.status: creating libsoup-zip
 > config.status: creating libsoup/Makefile
 > config.status: creating tests/Makefile
 > config.status: creating tests/httpd.conf
 > config.status: creating docs/Makefile
 > config.status: creating docs/reference/Makefile
 > config.status: creating config.h
 > config.status: executing depfiles commands
 > curlew:/usr/ports/devel/libsoup# ^D=08=08exit
 >=20
 > Script done on Sun Jun  7 21:22:43 2009
 >=20
 --=20
 Joe Marcus Clarke
 FreeBSD GNOME Team      ::      gnome@FreeBSD.org
 FreeNode / #freebsd-gnome
 http://www.FreeBSD.org/gnome
 
 --=-uoAJo/0FnmH1/Zz5WZBC
 Content-Type: application/pgp-signature; name="signature.asc"
 Content-Description: This is a digitally signed message part
 
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.9 (FreeBSD)
 
 iEYEABECAAYFAko116YACgkQb2iPiv4Uz4eEPwCgr792Uw8ZDNiJJ2m1D5ctMY4D
 vUMAnAwhUf1l0tkqIkz9Bgt3tIFpTVTn
 =qtRE
 -----END PGP SIGNATURE-----
 
 --=-uoAJo/0FnmH1/Zz5WZBC--
 

From: Mike Clarke <jmc-fbsdpr@milibyte.co.uk>
To: Joe Marcus Clarke <marcus@freebsd.org>
Cc: bug-followup@freebsd.org
Subject: Re: ports/134536: [patch] graphics/gimp: Gimp 2.6.6 fails to open URI's
Date: Mon, 15 Jun 2009 10:14:19 +0100

 On Monday 15 June 2009, Joe Marcus Clarke wrote:
 
 > How about the output for devel/gvfs?
 
 Could it be relevant that it's picking up a configuration file for
 gvfs-0.2.3_3 instead of the current 1.2.3 version?
 
 curlew:/root# cat /var/db/ports/gvfs/options
 # This file is auto-generated by 'make config'.
 # No user-servicable parts inside!
 # Options for gvfs-0.2.3_3
 _OPTIONS_READ=gvfs-0.2.3_3
 WITH_FUSE=true
 WITH_SAMBA=true
 WITH_GPHOTO2=true
 
 Here's output from make config
 
 Script started on Mon Jun 15 09:25:58 2009
 curlew:/usr/ports/devel/gvfs# make clean
 ===>  Cleaning for libsoup-2.26.2
 ===>  Cleaning for gvfs-1.2.3
 curlew:/usr/ports/devel/gvfs# make configure
 ===>  Found saved configuration for gvfs-0.2.3_3
 ===>  Extracting for gvfs-1.2.3
 => MD5 Checksum OK for gnome2/gvfs-1.2.3.tar.bz2.
 => SHA256 Checksum OK for gnome2/gvfs-1.2.3.tar.bz2.
 ===>  Patching for gvfs-1.2.3
 ===>  Applying FreeBSD patches for gvfs-1.2.3
 ===>   gvfs-1.2.3 depends on executable: gmake - found
 ===>   gvfs-1.2.3 depends on file: /usr/local/bin/intltool-extract - found
 ===>   gvfs-1.2.3 depends on executable: pkg-config - found
 ===>   gvfs-1.2.3 depends on shared library: dbus-1.3 - found
 ===>   gvfs-1.2.3 depends on shared library: hal.1 - found
 ===>   gvfs-1.2.3 depends on shared library: soup-2.4.1 - found
 ===>   gvfs-1.2.3 depends on shared library: gnome-keyring - found
 ===>   gvfs-1.2.3 depends on shared library: avahi-client.3 - found
 ===>   gvfs-1.2.3 depends on shared library: fuse.2 - found
 ===>   gvfs-1.2.3 depends on shared library: smbclient.0 - found
 ===>   gvfs-1.2.3 depends on shared library: cdio_paranoia.0 - found
 ===>   gvfs-1.2.3 depends on shared library: gphoto2.2 - found
 ===>   gvfs-1.2.3 depends on shared library: intl - found
 ===>   gvfs-1.2.3 depends on shared library: atk-1.0.0 - found
 ===>   gvfs-1.2.3 depends on shared library: gconf-2.4 - found
 ===>   gvfs-1.2.3 depends on shared library: glib-2.0.0 - found
 ===>   gvfs-1.2.3 depends on shared library: gtk-x11-2.0.0 - found
 ===>   gvfs-1.2.3 depends on shared library: IDL-2.0 - found
 ===>   gvfs-1.2.3 depends on shared library: xml2.5 - found
 ===>   gvfs-1.2.3 depends on shared library: ORBit-2.0 - found
 ===>   gvfs-1.2.3 depends on shared library: pango-1.0.0 - found
 ===>  Configuring for gvfs-1.2.3
 configure: WARNING: unrecognized options: --with-gconf-source
 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel
 checking whether build environment is sane... yes
 checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p
 checking for gawk... gawk
 checking whether gmake sets $(MAKE)... yes
 checking whether build environment is sane... yes
 checking for style of include used by gmake... GNU
 checking for gcc... cc
 checking for C compiler default output file name... a.out
 checking whether the C compiler works... yes
 checking whether we are cross compiling... no
 checking for suffix of executables... 
 checking for suffix of object files... o
 checking whether we are using the GNU C compiler... yes
 checking whether cc accepts -g... yes
 checking for cc option to accept ISO C89... none needed
 checking dependency style of cc... gcc3
 checking for an ANSI C-conforming const... yes
 checking for library containing strerror... none required
 checking for gcc... (cached) cc
 checking whether we are using the GNU C compiler... (cached) yes
 checking whether cc accepts -g... (cached) yes
 checking for cc option to accept ISO C89... (cached) none needed
 checking dependency style of cc... (cached) gcc3
 checking how to run the C preprocessor... cc -E
 checking for a BSD-compatible install... /usr/bin/install -c -o root -g wheel
 checking whether ln -s works... yes
 checking whether gmake sets $(MAKE)... (cached) yes
 checking build system type... i386-portbld-freebsd6.4
 checking host system type... i386-portbld-freebsd6.4
 checking for a sed that does not truncate output... /usr/bin/sed
 checking for grep that handles long lines and -e... /usr/bin/grep
 checking for egrep... /usr/bin/grep -E
 checking for ld used by cc... /usr/bin/ld
 checking if the linker (/usr/bin/ld) is GNU ld... yes
 checking for /usr/bin/ld option to reload object files... -r
 checking for BSD-compatible nm... /usr/bin/nm -B
 checking how to recognize dependent libraries... pass_all
 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... yes
 checking for unistd.h... yes
 checking dlfcn.h usability... yes
 checking dlfcn.h presence... yes
 checking for dlfcn.h... yes
 checking whether we are using the GNU C++ compiler... yes
 checking whether c++ accepts -g... yes
 checking dependency style of c++... gcc3
 checking how to run the C++ preprocessor... c++ -E
 checking for g77... no
 checking for xlf... no
 checking for f77... f77
 checking whether we are using the GNU Fortran 77 compiler... yes
 checking whether f77 accepts -g... yes
 checking the maximum length of command line arguments... (cached) 262144
 checking command to parse /usr/bin/nm -B output from cc object... ok
 checking for objdir... .libs
 checking for ar... ar
 checking for ranlib... ranlib
 checking for strip... strip
 checking if cc supports -fno-rtti -fno-exceptions... no
 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 whether the cc linker (/usr/bin/ld) supports shared libraries... yes
 checking whether -lc should be explicitly linked in... yes
 checking dynamic linker characteristics... freebsd6.4 ld.so
 checking how to hardcode library paths into programs... immediate
 checking whether stripping libraries is possible... yes
 checking if libtool supports shared libraries... yes
 checking whether to build shared libraries... yes
 checking whether to build static libraries... no
 configure: creating libtool
 appending configuration tag "CXX" to libtool
 checking for ld used by c++... /usr/bin/ld
 checking if the linker (/usr/bin/ld) is GNU ld... yes
 checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes
 checking for c++ option to produce PIC... -fPIC
 checking if c++ PIC flag -fPIC works... yes
 checking if c++ static flag -static works... yes
 checking if c++ supports -c -o file.o... yes
 checking whether the c++ linker (/usr/bin/ld) supports shared libraries... yes
 checking dynamic linker characteristics... freebsd6.4 ld.so
 (cached) (cached) checking how to hardcode library paths into programs... immediate
 appending configuration tag "F77" to libtool
 checking if libtool supports shared libraries... yes
 checking whether to build shared libraries... yes
 checking whether to build static libraries... no
 checking for f77 option to produce PIC... -fPIC
 checking if f77 PIC flag -fPIC works... yes
 checking if f77 static flag -static works... yes
 checking if f77 supports -c -o file.o... yes
 checking whether the f77 linker (/usr/bin/ld) supports shared libraries... yes
 checking dynamic linker characteristics... freebsd6.4 ld.so
 (cached) (cached) checking how to hardcode library paths into programs... immediate
 checking for pkg-config... /usr/local/bin/pkg-config
 checking whether cc understands -c and -o together... yes
 checking for pid_t... yes
 checking return type of signal handlers... void
 checking for size_t... yes
 checking for uid_t in sys/types.h... yes
 checking for struct stat.st_mtimensec... no
 checking for struct stat.st_mtim.tv_nsec... no
 checking for struct stat.st_atimensec... no
 checking for struct stat.st_atim.tv_nsec... no
 checking for struct stat.st_ctimensec... no
 checking for struct stat.st_ctim.tv_nsec... no
 checking pkg-config is at least version 0.9.0... yes
 checking for gtkdoc-check... no
 checking for gtkdoc-rebase... no
 checking for gtkdoc-mkpdf... no
 checking whether to build gtk-doc documentation... no
 checking for GLIB... yes
 checking for DBUS... yes
 checking whether NLS is requested... yes
 checking for intltool >= 0.35.0... 0.40.6 found
 checking for intltool-update... /usr/local/bin/intltool-update
 checking for intltool-merge... /usr/local/bin/intltool-merge
 checking for intltool-extract... /usr/local/bin/intltool-extract
 checking for xgettext... /usr/local/bin/xgettext
 checking for msgmerge... /usr/local/bin/msgmerge
 checking for msgfmt... /usr/local/bin/msgfmt
 checking for gmsgfmt... /usr/local/bin/msgfmt
 checking for perl... /usr/bin/perl
 checking for XML::Parser... ok
 checking locale.h usability... yes
 checking locale.h presence... yes
 checking for locale.h... yes
 checking for LC_MESSAGES... yes
 checking libintl.h usability... yes
 checking libintl.h presence... yes
 checking for libintl.h... yes
 checking for ngettext in libc... no
 checking for bindtextdomain in -lintl... yes
 checking for ngettext in -lintl... yes
 checking for dgettext in -lintl... yes
 checking for bind_textdomain_codeset... yes
 checking for msgfmt... (cached) /usr/local/bin/msgfmt
 checking for dcgettext... yes
 checking if msgfmt accepts -c... yes
 checking for gmsgfmt... (cached) /usr/local/bin/msgfmt
 checking for xgettext... (cached) /usr/local/bin/xgettext
 checking for ssh... /usr/bin/ssh
 checking sys/un.h usability... yes
 checking sys/un.h presence... yes
 checking for sys/un.h... yes
 checking stropts.h usability... no
 checking stropts.h presence... no
 checking for stropts.h... no
 checking termios.h usability... yes
 checking termios.h presence... yes
 checking for termios.h... yes
 checking utmp.h usability... yes
 checking utmp.h presence... yes
 checking for utmp.h... yes
 checking sys/uio.h usability... yes
 checking sys/uio.h presence... yes
 checking for sys/uio.h... yes
 checking sys/param.h usability... yes
 checking sys/param.h presence... yes
 checking for sys/param.h... yes
 checking for getpt... no
 checking for posix_openpt... yes
 checking for grantpt... yes
 checking for unlockpt... yes
 checking for ptsname... yes
 checking for ptsname_r... no
 checking for socketpair... yes
 checking for library containing login_tty... -lutil
 checking for HTTP... yes
 checking for AVAHI... yes
 checking for FUSE... yes
 checking for GCONF... yes
 checking for HAL... yes
 checking for libhal_get_all_devices_with_properties in -lhal... no
 checking for CDDA... yes
 checking for GPHOTO2... yes
 checking for KEYRING... yes
 checking libsmbclient.h usability... yes
 checking libsmbclient.h presence... yes
 checking for libsmbclient.h... yes
 checking for SMBCCTX.flags... yes
 checking for SMBCCTX.close... no
 checking for smbc_option_get in -lsmbclient... yes
 checking for Samba 3.0 libraries... yes
 checking archive.h usability... yes
 checking archive.h presence... yes
 checking for archive.h... yes
 checking for archive_entry_filetype in -larchive... yes
 checking for Archive 3.libraries... yes
 checking for glib-genmarshal... /usr/local/bin/glib-genmarshal
 checking for more warnings... no
 configure: creating ./config.status
 config.status: creating Makefile
 config.status: creating common/Makefile
 config.status: creating client/Makefile
 config.status: creating daemon/trashlib/Makefile
 config.status: creating daemon/Makefile
 config.status: creating monitor/Makefile
 config.status: creating monitor/proxy/Makefile
 config.status: creating monitor/hal/Makefile
 config.status: creating monitor/gphoto2/Makefile
 config.status: creating gconf/Makefile
 config.status: creating programs/Makefile
 config.status: creating test/Makefile
 config.status: creating po/Makefile.in
 config.status: creating config.h
 config.status: executing depfiles commands
 config.status: executing default-1 commands
 config.status: executing po/stamp-it commands
 # INTLTOOL_MAKEFILE
 configure: WARNING: unrecognized options: --with-gconf-source
 
 gvfs configuration summary:
 
         gio module directory : /usr/local/lib/gio/modules
 
         FTP/HTTP/WebDAV support       yes
         ObexFTP support               no
 	Samba support:	              yes
 	FUSE support:                 yes
         CDDA support:                 yes
         Gphoto2 support:              yes
 	archive support:	      yes
         GConf support:                yes
         DNS-SD support:               yes
 	Use HAL for volume monitor:   yes (with fast init path: no)
 	GNOME Keyring support:        yes
 	Bash-completion support:      yes
 
 curlew:/usr/ports/devel/gvfs# ^Dexit
 
 Script done on Mon Jun 15 09:27:10 2009
 
 
 -- 
 Mike Clarke
State-Changed-From-To: feedback->closed 
State-Changed-By: marcus 
State-Changed-When: Sun Dec 6 23:18:05 UTC 2009 
State-Changed-Why:  
This is believed to be fixed with gimp-2.6.7 and gvfs 1.4.  If this is still 
occurring, a new PR can be opened with updated version info. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=134536 
>Unformatted:
