From owner-freebsd-gnome@FreeBSD.ORG Sun Mar 17 03:40:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A309E7D0 for ; Sun, 17 Mar 2013 03:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 823DAF1B for ; Sun, 17 Mar 2013 03:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2H3e18S094928 for ; Sun, 17 Mar 2013 03:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2H3e0oU094927; Sun, 17 Mar 2013 03:40:00 GMT (envelope-from gnats) Date: Sun, 17 Mar 2013 03:40:00 GMT Message-Id: <201303170340.r2H3e0oU094927@freefall.freebsd.org> To: gnome@FreeBSD.org From: "John W. O'Brien" Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order problem X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: "John W. O'Brien" List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Mar 2013 03:40:01 -0000 The following reply was made to PR ports/175276; it has been noted by GNATS. From: "John W. O'Brien" To: bug-followup@FreeBSD.org, jhein@symmetricom.com Cc: freebsd-python@freebsd.org Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order problem Date: Sat, 16 Mar 2013 23:26:39 -0400 This is a multi-part message in MIME format. --------------080709000504060405060108 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 When applied together, the two attached patches implement a very rough example of the "B" option I described in my 2013-02-23 response to ports/175276. I have smoke tested this patch by building and installing from scratch some representative ports that might be affected by it. For example: math/py-pandas and many of its dependencies don't use OptionsNG; devel/py-bison and devel/py-gobject use OptionsNG and are currently broken as described in this PR; while graphics/py-blockdiag and devel/py-mock use OptionsNG but implement one of the workarounds. # pkg_delete -x py27- python27 # portmaster -Dg \ math/py-pandas \ devel/py-bison \ devel/py-gobject \ graphics/py-blockdiag \ devel/py-mock Everything builds, installs, and packages without apparent error. This shows that approach "B" is viable, though these patches would need work to improve the quality to a sufficient level. I suspect that approach "B" will not gain much traction, though, given that the maintainers of so many of the affected ports (74%) have elected to use the following workaround, or a variation of it, omitting ${PYTHON_SUFFIX}. OPTIONSFILE= ${PORT_DBDIR}/py-${PORTNAME}/options Nevertheless, I welcome slings, arrows, and outrageous suggestions. PS: gnome@, please decide: commit the original patch to fix devel/py-gobject via OPTIONSFILE, close this PR, and I will file a new PR for the larger scope issue; or consider assigning this to python@ for resolution and closure. -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.11 (GNU/Linux) iQEcBAEBAgAGBQJRRTfvAAoJEBRzAKlhyP/FYCsIAIkzfSnuvHAOfxdwCxjgimOq vYgsTPE65UNjjsXIWOUMC9Tpg684lFfxwJ4brxvmtpKWnSCKHwSEHOD9cXPaNAwj yufLuGMB4FYZLahJpxqKek+g1cI6g01E3OXvM2c0VT9rfiJplrE58DlBHSkNwqH/ X0lg8e/U5Ikrma7HtoZxy94SM+CgRhUU5leQzP2jjI8GUP2XWuBhAzbdLYCd7obE mU4Y1M8hk4jZfxWwWD5TK1GLE9Zu2gweLfnbEEML9fPGNPp5sY0wF8Jx/cBjXzPC RyjvzgirOdNykaVdqg/hWU/j7MjBHDc8wANfsUzn89hZSssU4PNJf/HMRgfiUCU= =3B7a -----END PGP SIGNATURE----- --------------080709000504060405060108 Content-Type: text/plain; charset=UTF-8; name="patch-usr__ports__Mk__bsd.port.mk.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-usr__ports__Mk__bsd.port.mk.txt" Index: Mk/bsd.port.mk =================================================================== --- Mk/bsd.port.mk (revision 314388) +++ Mk/bsd.port.mk (working copy) @@ -1308,6 +1308,11 @@ STRIP= #none .endif +# Latest possible point to correctly influence location of OPTIONSFILE +INEARLYMK= +.include "${PORTSDIR}/Mk/bsd.python.mk" +.undef INEARLYMK + .include "${PORTSDIR}/Mk/bsd.options.mk" # Start of pre-makefile section. --------------080709000504060405060108 Content-Type: text/plain; charset=UTF-8; name="patch-usr__ports__Mk__bsd.python.mk.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-usr__ports__Mk__bsd.python.mk.txt" Index: Mk/bsd.python.mk =================================================================== --- Mk/bsd.python.mk (revision 314388) +++ Mk/bsd.python.mk (working copy) @@ -4,10 +4,9 @@ # $FreeBSD$ # -.if !defined(_POSTMKINCLUDED) && !defined(Python_Pre_Include) +.if defined(INEARLYMK) && !defined(Python_Early_Include) -Python_Pre_Include= bsd.python.mk -Python_Include_MAINTAINER= python@FreeBSD.org +Python_Early_Include= # This file contains some variable definitions that are supposed to # make your life easier when dealing with ports related to the Python @@ -458,6 +457,14 @@ PYTHONPREFIX_LIBDIR= ${PYTHON_LIBDIR:S;${PYTHONBASE};${PREFIX};} PYTHONPREFIX_SITELIBDIR= ${PYTHON_SITELIBDIR:S;${PYTHONBASE};${PREFIX};} +.endif # Python_Early_Include + + +.if !defined(_POSTMKINCLUDED) && !defined(Python_Pre_Include) && !defined(INEARLYMK) + +Python_Pre_Include= bsd.python.mk +Python_Include_MAINTAINER= python@FreeBSD.org + # setuptools support .if defined(USE_PYDISTUTILS) && ${USE_PYDISTUTILS} == "easy_install" BUILD_DEPENDS+= ${PYEASYINSTALL_CMD}:${PORTSDIR}/devel/py-distribute --------------080709000504060405060108 Content-Type: application/octet-stream; name="patch-usr__ports__Mk__bsd.port.mk.txt.sig" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-usr__ports__Mk__bsd.port.mk.txt.sig" iQEcBAABAgAGBQJRRTfvAAoJEBRzAKlhyP/FU08IAMCsM10/Jk5ffZnEMsduEKvxhQDmF9pd mXrLzdToc3Gm6+NtKPkmrAqv5hY6zOl56Hs7TnIxSWqs65jG2RqjIabZaU3J931bx14EOQr0 O0P1fy2CKm65ODFcrt5T0QhfdKnnmNSNqzHEoI3vi8DIJDI/Z22GBJb6HAjQwlNNoHfI7wPI c5KLzINi+Nh6lfLJ/xL2RzHJHLalPjtI9EDF70QDn0Y4tmT2hpkmEzxz0jUPWZNqa+dV1TYn hgYq6ILnkKqYrf5XtIQkcVJ5N/IdrPYd5wK5tgCmLWSrvzotFh72l2WEXI1VXR97qpzI+Dy8 i/cZd5N1PqKGLN7rxcaQzqs= --------------080709000504060405060108 Content-Type: application/octet-stream; name="patch-usr__ports__Mk__bsd.python.mk.txt.sig" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="patch-usr__ports__Mk__bsd.python.mk.txt.sig" iQEcBAABAgAGBQJRRTfvAAoJEBRzAKlhyP/Fk7MIAIj+m5/5VTHQnqcxAHBNFPL9R7BNcfvG XDp/bNb9AdxCtIWvzuvy02GJji0GvyZMeUYXRcxnR17j9LEUfW35rTi1nyH0s3mL8S3SL5YB oV1FY1rcD7j9fXJMkoVSX7hR7/7L/XOOhDUMo6Ya0PKDUv6dkRjdTkWttxQ5Ihu5cWWomjHn gV5rABZy1Kz4sUAtUH7kplHtZI5XIUX/Oeq3AmgvgLWc2xdvLVWtzJf6n+H5VYoS+3dYlUxf uXd1V3Bq4TuAjFY2XBo35uOaaVPCaWUhh3Ci4U1DhJRYnemR0+jUgD+ulQiqOFFKmhHhCOdb dqhlrdt6+Q0A5KyKlJmVH8s= --------------080709000504060405060108-- From owner-freebsd-gnome@FreeBSD.ORG Sun Mar 17 03:52:12 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B73F78D2 for ; Sun, 17 Mar 2013 03:52:12 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-ob0-x231.google.com (mail-ob0-x231.google.com [IPv6:2607:f8b0:4003:c01::231]) by mx1.freebsd.org (Postfix) with ESMTP id 652E7F5F for ; Sun, 17 Mar 2013 03:52:12 +0000 (UTC) Received: by mail-ob0-f177.google.com with SMTP id eh20so4459787obb.36 for ; Sat, 16 Mar 2013 20:52:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type; bh=hZJCIVP9tQXuGk7iFB0vZJpDLWFEdZB6jpzRQf0HDM0=; b=Y9XL22MRjFFh+fDTikVmgr9tzVHC1OtROkIob9Pf29kLmeG4WBBiH0mDlVXv8+0Swh S9juRSD1Gysn/cSYACsKtaX3/67vyeKEgg3KSgclgbwO+uhzedHVa43jNoHWen27EXnA RVD8GkWvRkjDOEKIH3v92wfX9Y9QIaV/5EWmq3CmizCV24WVFrFW+ZCwNGZfEetNENa2 EumCxlF/uebCxBNl9D5r5345Zz4Ra5Q3c+g3+0qBjGEV3Hz5glfIRd5HwhaHs2OYJtcz nk/QxuUedDcQr+8qr/vCFeFY/MivkwI19YZ3uvlvX+gt4kGz7jzQZCuCTdGp/WX6brnW 4qOA== MIME-Version: 1.0 X-Received: by 10.182.64.74 with SMTP id m10mr4989247obs.61.1363492331943; Sat, 16 Mar 2013 20:52:11 -0700 (PDT) Sender: kob6558@gmail.com Received: by 10.76.11.165 with HTTP; Sat, 16 Mar 2013 20:52:11 -0700 (PDT) In-Reply-To: References: Date: Sat, 16 Mar 2013 20:52:11 -0700 X-Google-Sender-Auth: kK_HxRwB3PdZLoxqq5G5FnxMq6I Message-ID: Subject: Re: Upgrade of x11-fm/nautilus fails From: Kevin Oberman To: FreeBSD GNOME Users Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 17 Mar 2013 03:52:12 -0000 On Thu, Mar 14, 2013 at 10:22 PM, Kevin Oberman wrote: > I am unable to build nautilus-2.32.2.1_3. I previously build 2.32.2.1_2 > without issues, but I get the following error: > > gmake[4]: Entering directory > `/usr/ports/x11-fm/nautilus/work/nautilus-2.32.2.1/src' > CC nautilus-application.o > In file included from /usr/local/include/unique-1.0/unique/uniqueapp.h:26, > from /usr/local/include/unique-1.0/unique/unique.h:24, > from nautilus-application.h:32, > from nautilus-application.c:29: > /usr/local/include/unique-1.0/unique/uniquemessage.h:51: error: expected > '=', ',', ';', 'asm' or '__attribute__' before 'guchar' > /usr/local/include/unique-1.0/unique/uniquemessage.h:66: error: expected > '=', ',', ';', 'asm' or '__attribute__' before 'gchar' > In file included from /usr/local/include/unique-1.0/unique/unique.h:25, > from nautilus-application.h:32, > from nautilus-application.c:29: > /usr/local/include/unique-1.0/unique/uniquebackend.h:97: error: expected > '=', ',', ';', 'asm' or '__attribute__' before 'gchar' > /usr/local/include/unique-1.0/unique/uniquebackend.h:100: error: expected > '=', ',', ';', 'asm' or '__attribute__' before 'gchar' > nautilus-application.c: In function 'message_received_cb': > nautilus-application.c:843: warning: passing argument 2 of 'open_windows' > makes pointer from integer without a cast > gmake[4]: *** [nautilus-application.o] Error 1 > gmake[4]: Leaving directory > `/usr/ports/x11-fm/nautilus/work/nautilus-2.32.2.1/src' > gmake[3]: *** [all-recursive] Error 1 > gmake[3]: Leaving directory > `/usr/ports/x11-fm/nautilus/work/nautilus-2.32.2.1/src' > gmake[2]: *** [all] Error 2 > gmake[2]: Leaving directory > `/usr/ports/x11-fm/nautilus/work/nautilus-2.32.2.1/src' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory > `/usr/ports/x11-fm/nautilus/work/nautilus-2.32.2.1' > gmake: *** [all] Error 2 > *** [do-build] Error code 1 > > This happens on multiple systems running 9.1-Stable, both i386 and amd64. > Tried with both base gcc and 4.6 with the same results. I have not tried > with clang. All systems have unique-1.1.6_3 installed. > > Any ideas? > -- > R. Kevin Oberman, Network Engineer > E-mail: rkoberman@gmail.com > Found the problem. Koop updated unique to replace all instances of 'G_CONST_RETURN' to 'const'. Somehow, on multiple systems, I had the replacement only in the file uniqueapp.c. I'm unsure how this could happen as the change was a single commit of Makefile. I had assumed that it was two separate commits and that there was no PORTREVISION bump, but now I'm just confused. I still believe that this probably should have had a PORTREVISION bump, but I'm not sure any longer. I had uniqueapp.c and uniquebackend.c that had 'G_CONST_RETURN' replaced by 'const' but both uniquebackend.h and uniquemessage.h still has 'G_CONST_RETURN. I'm totally confused about this.. In any case, the problem appears to have been 'unique' to my systems. -- R. Kevin Oberman, Network Engineer E-mail: rkoberman@gmail.com From owner-freebsd-gnome@FreeBSD.ORG Sun Mar 17 15:05:09 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 26F6C719; Sun, 17 Mar 2013 15:05:09 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id E0DB7658; Sun, 17 Mar 2013 15:05:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2HF58dv030076; Sun, 17 Mar 2013 15:05:08 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2HF58fk030075; Sun, 17 Mar 2013 15:05:08 GMT (envelope-from linimon) Date: Sun, 17 Mar 2013 15:05:08 GMT Message-Id: <201303171505.r2HF58fk030075@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: linimon@FreeBSD.org Subject: Re: ports/176879: Abiword, Gnumeric, Shotwell and Equinox engine don't compile X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 17 Mar 2013 15:05:09 -0000 Synopsis: Abiword, Gnumeric, Shotwell and Equinox engine don't compile Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: linimon Responsible-Changed-When: Sun Mar 17 15:04:24 UTC 2013 Responsible-Changed-Why: over to abiword maintainers. http://www.freebsd.org/cgi/query-pr.cgi?pr=176879 From owner-freebsd-gnome@FreeBSD.ORG Sun Mar 17 16:50:02 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C6B6F37D for ; Sun, 17 Mar 2013 16:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id B97019A6 for ; Sun, 17 Mar 2013 16:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2HGo2dn048613 for ; Sun, 17 Mar 2013 16:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2HGo2UN048612; Sun, 17 Mar 2013 16:50:02 GMT (envelope-from gnats) Date: Sun, 17 Mar 2013 16:50:02 GMT Message-Id: <201303171650.r2HGo2UN048612@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/176879: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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: Sun, 17 Mar 2013 16:50:02 -0000 The following reply was made to PR ports/176879; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/176879: commit references a PR Date: Sun, 17 Mar 2013 16:45:13 +0000 (UTC) Author: kwm Date: Sun Mar 17 16:45:03 2013 New Revision: 314462 URL: http://svnweb.freebsd.org/changeset/ports/314462 Log: Fix build with glib-2.34. PR: ports/176879 Submitted by: Piotr Kubaj Modified: head/x11-themes/gtk-equinox-engine/Makefile Modified: head/x11-themes/gtk-equinox-engine/Makefile ============================================================================== --- head/x11-themes/gtk-equinox-engine/Makefile Sun Mar 17 16:44:33 2013 (r314461) +++ head/x11-themes/gtk-equinox-engine/Makefile Sun Mar 17 16:45:03 2013 (r314462) @@ -45,6 +45,8 @@ post-patch: @${FIND} ${WRKDIR} -name 'gtkrc' -exec \ ${REINPLACE_CMD} -e 's!^include "apps/nautilus\.rc"!#&!' {} + @${FIND} ${WRKDIR} -type f -name 'gtkrc.bak' -exec ${RM} -f {} + + @${REINPLACE_CMD} -e 's|glib/.*\.h>|glib.h>|g' \ + ${WRKSRC}/src/animation.c post-install: @${MKDIR} ${DATADIR} _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Sun Mar 17 16:52:40 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 425883B4; Sun, 17 Mar 2013 16:52:40 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from fep11.mx.upcmail.net (fep11.mx.upcmail.net [62.179.121.31]) by mx1.freebsd.org (Postfix) with ESMTP id 531629B4; Sun, 17 Mar 2013 16:52:38 +0000 (UTC) Received: from edge01.upcmail.net ([192.168.13.236]) by viefep11-int.chello.at (InterMail vM.8.01.05.05 201-2260-151-110-20120111) with ESMTP id <20130317165232.QFQI21781.viefep11-int.chello.at@edge01.upcmail.net>; Sun, 17 Mar 2013 17:52:32 +0100 Received: from [127.0.0.1] ([178.84.132.32]) by edge01.upcmail.net with edge id CgsX1l00j0i5fp601gsXDs; Sun, 17 Mar 2013 17:52:32 +0100 X-SourceIP: 178.84.132.32 Message-ID: <5145F4D0.1060608@rainbow-runner.nl> Date: Sun, 17 Mar 2013 17:52:32 +0100 From: Koop Mast User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130307 Thunderbird/17.0.4 MIME-Version: 1.0 To: David Thiel Subject: Re: shotwell References: <20130311185107.GB91604@redundancy.redundancy.org> In-Reply-To: <20130311185107.GB91604@redundancy.redundancy.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 130317-0, 17-03-2013), Outbound message X-Antivirus-Status: Clean Cc: gnome@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 17 Mar 2013 16:52:40 -0000 On 11-3-2013 19:51, David Thiel wrote: > Hello gnome, > > I currently maintain the shotwell port, but don't really have the > resources to keep it up to date right now. I think it should probably > belong to gnome@ anyway, as it depends on a lot of gnome stuff being up > to date, like vala. Any objection to me changing the maintainership to > you guys? > > Thanks, > David Well as far as I know it isn't officaly part of the GNOME desktop. Also since we already short on man power, I rather not add to it. Could you try and see if someone on ports@ is willing? -Koop From owner-freebsd-gnome@FreeBSD.ORG Sun Mar 17 17:00:02 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 18DEB506 for ; Sun, 17 Mar 2013 17:00:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id E76B89DC for ; Sun, 17 Mar 2013 17:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2HH01Vq050234 for ; Sun, 17 Mar 2013 17:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2HH01NC050233; Sun, 17 Mar 2013 17:00:01 GMT (envelope-from gnats) Date: Sun, 17 Mar 2013 17:00:01 GMT Message-Id: <201303171700.r2HH01NC050233@freefall.freebsd.org> To: gnome@FreeBSD.org From: Koop Mast Subject: Re: ports/176879: Abiword, Gnumeric, Shotwell and Equinox engine don't compile X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Koop Mast List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 17 Mar 2013 17:00:02 -0000 The following reply was made to PR ports/176879; it has been noted by GNATS. From: Koop Mast To: bug-followup@FreeBSD.org, pkubaj@gmail.com Cc: Subject: Re: ports/176879: Abiword, Gnumeric, Shotwell and Equinox engine don't compile Date: Sun, 17 Mar 2013 17:51:12 +0100 Please update your ports. Goffice was fixed on 13th of March. And I just successfully rebuild abiword and gnumeric. Shotwell probably needs a update. I patched gtk-equinox-engine just now, thanks. Let me know if you still have problems. From owner-freebsd-gnome@FreeBSD.ORG Sun Mar 17 22:18:21 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id EC3F81F5 for ; Sun, 17 Mar 2013 22:18:21 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from fep34.mx.upcmail.net (fep34.mx.upcmail.net [62.179.121.52]) by mx1.freebsd.org (Postfix) with ESMTP id 68CB668F for ; Sun, 17 Mar 2013 22:18:20 +0000 (UTC) Received: from edge04.upcmail.net ([192.168.13.239]) by viefep34-int.chello.at (InterMail vM.8.01.05.05 201-2260-151-110-20120111) with ESMTP id <20130317221813.DPFM6461.viefep34-int.chello.at@edge04.upcmail.net>; Sun, 17 Mar 2013 23:18:13 +0100 Received: from [127.0.0.1] ([178.84.132.32]) by edge04.upcmail.net with edge id CmJC1l01E0i5fp604mJC7D; Sun, 17 Mar 2013 23:18:13 +0100 X-SourceIP: 178.84.132.32 Message-ID: <51464125.7060502@rainbow-runner.nl> Date: Sun, 17 Mar 2013 23:18:13 +0100 From: Koop Mast User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130307 Thunderbird/17.0.4 MIME-Version: 1.0 To: Kevin Oberman Subject: Re: Upgrade of x11-fm/nautilus fails References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 130317-0, 17-03-2013), Outbound message X-Antivirus-Status: Clean Cc: FreeBSD GNOME Users X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 17 Mar 2013 22:18:22 -0000 On 17-3-2013 4:52, Kevin Oberman wrote: > On Thu, Mar 14, 2013 at 10:22 PM, Kevin Oberman wrote: > >> I am unable to build nautilus-2.32.2.1_3. I previously build 2.32.2.1_2 >> without issues, but I get the following error: >> >> gmake[4]: Entering directory >> `/usr/ports/x11-fm/nautilus/work/nautilus-2.32.2.1/src' >> CC nautilus-application.o >> In file included from /usr/local/include/unique-1.0/unique/uniqueapp.h:26, >> from /usr/local/include/unique-1.0/unique/unique.h:24, >> from nautilus-application.h:32, >> from nautilus-application.c:29: >> /usr/local/include/unique-1.0/unique/uniquemessage.h:51: error: expected >> '=', ',', ';', 'asm' or '__attribute__' before 'guchar' >> /usr/local/include/unique-1.0/unique/uniquemessage.h:66: error: expected >> '=', ',', ';', 'asm' or '__attribute__' before 'gchar' >> In file included from /usr/local/include/unique-1.0/unique/unique.h:25, >> from nautilus-application.h:32, >> from nautilus-application.c:29: >> /usr/local/include/unique-1.0/unique/uniquebackend.h:97: error: expected >> '=', ',', ';', 'asm' or '__attribute__' before 'gchar' >> /usr/local/include/unique-1.0/unique/uniquebackend.h:100: error: expected >> '=', ',', ';', 'asm' or '__attribute__' before 'gchar' >> nautilus-application.c: In function 'message_received_cb': >> nautilus-application.c:843: warning: passing argument 2 of 'open_windows' >> makes pointer from integer without a cast >> gmake[4]: *** [nautilus-application.o] Error 1 >> gmake[4]: Leaving directory >> `/usr/ports/x11-fm/nautilus/work/nautilus-2.32.2.1/src' >> gmake[3]: *** [all-recursive] Error 1 >> gmake[3]: Leaving directory >> `/usr/ports/x11-fm/nautilus/work/nautilus-2.32.2.1/src' >> gmake[2]: *** [all] Error 2 >> gmake[2]: Leaving directory >> `/usr/ports/x11-fm/nautilus/work/nautilus-2.32.2.1/src' >> gmake[1]: *** [all-recursive] Error 1 >> gmake[1]: Leaving directory >> `/usr/ports/x11-fm/nautilus/work/nautilus-2.32.2.1' >> gmake: *** [all] Error 2 >> *** [do-build] Error code 1 >> >> This happens on multiple systems running 9.1-Stable, both i386 and amd64. >> Tried with both base gcc and 4.6 with the same results. I have not tried >> with clang. All systems have unique-1.1.6_3 installed. >> >> Any ideas? >> -- >> R. Kevin Oberman, Network Engineer >> E-mail: rkoberman@gmail.com >> > Found the problem. Koop updated unique to replace all instances of > 'G_CONST_RETURN' to 'const'. Somehow, on multiple systems, I had the > replacement only in the file uniqueapp.c. I'm unsure how this could happen > as the change was a single commit of Makefile. I had assumed that it was > two separate commits and that there was no PORTREVISION bump, but now I'm > just confused. I still believe that this probably should have had a > PORTREVISION bump, but I'm not sure any longer. > > I had uniqueapp.c and uniquebackend.c that had 'G_CONST_RETURN' replaced by > 'const' but both uniquebackend.h and uniquemessage.h still has > 'G_CONST_RETURN. I'm totally confused about this.. > > In any case, the problem appears to have been 'unique' to my systems. My bad. I did a portrevision bump just in case there are more cases out there like this. -Koop From owner-freebsd-gnome@FreeBSD.ORG Mon Mar 18 11:07:02 2013 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7B8E6D5 for ; Mon, 18 Mar 2013 11:07:02 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 97A75AEA for ; Mon, 18 Mar 2013 11:07:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2IB70VN002537 for ; Mon, 18 Mar 2013 11:07:00 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2IB70Eb002534 for gnome@FreeBSD.org; Mon, 18 Mar 2013 11:07:00 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 18 Mar 2013 11:07:00 GMT Message-Id: <201303181107.r2IB70Eb002534@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 Subject: Current problem reports assigned to gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 18 Mar 2013 11:07:02 -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/176982 gnome graphics/gegl: fix pkg-plist o ports/176903 gnome [patch] fix graphics/gegl plist with jasper=off o ports/176879 gnome Abiword, Gnumeric, Shotwell and Equinox engine don't o ports/176858 gnome Downgrade or upgrade devel/libsoup o ports/176801 gnome [PATCH] x11-fonts/libXft: update to 2.3.1 o ports/176799 gnome [PATCH] print/freetype2: convert to optionsNG, use USE o ports/176657 gnome graphics/gimp: read-only menurc o ports/176619 gnome x11-toolkits/pango has bogus dependencies on icu and f o ports/176494 gnome devel/py-gobject ignores port options o ports/176467 gnome [PATCH] devel/gobject-introspection: configure fails w o ports/176235 gnome [patch] Fix devel/dconf build with gcc 4.6.3 o ports/176203 gnome [patch] devel/gamin: Drop privileges to effective user o ports/176183 gnome devel/libical doesn't pick up python2.7 header files o ports/175973 gnome multimedia/totem broken with clang o ports/175970 gnome x11/libxklavier missing dependency o ports/175858 gnome graphics/dia update to 0.97.2 [patch] o ports/175640 gnome [patch] print/freetype2: convert to optionsNG o ports/175603 gnome graphics/gegl: ./tools/create-reference.rb:331:in `blo o ports/175276 gnome [patch] devel/py-gobject OPTIONSFILE eval order proble o ports/175161 gnome misc/shared-mime-info: Missing build dependency o ports/175128 gnome build of misc/shared-mime-info fails if glib is built o ports/175125 gnome net/avahi-app fails to rebuild against devel/icu-50.1 o ports/175062 gnome net/opal3 needs zrtpcpp shared library dependency vers o ports/174900 gnome devel/gvfs: process gvfs* take 100% of CPU o ports/174493 gnome Fix sysutils/gnome-system-tools compliing with clang o ports/174492 gnome Fix devel/glibmm compliing with clang o ports/173577 gnome devel/devhelp doesn't recognize GTK+ reference documen o ports/170410 gnome devel/gvfs: gvfs-hal-volume-monitor crashes when new m o ports/167645 gnome x11/gnome2: Cannot see KDE software on GNOME applicati o ports/167199 gnome x11-fm/nautilus 2.32.2.1 Gnome2.32 Doesn't auto mount s ports/165227 gnome [UPDATE] libgsf-1.14.22, goffice-0.9.1, gnumeric-1.11. o ports/164222 gnome switching users in gnome3 invokes sanity check p ports/162227 gnome [patch] devel/glade3: update to 3.8.0 p ports/161676 gnome databases/libgda4: [UPDATE] to 4.2.9; improvements p ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 p ports/159928 gnome Updates graphics/clutter to 1.6.16 a ports/159613 gnome [PATCH] misc/gnomehier: use dirrmtry for PREFIX/share/ f ports/148244 gnome x11/gnome2: gnome desktop and HAL prevent umount witho s ports/145301 gnome [patch] sysutils/hal: /usr/local/etc/rc.d/hald startup 39 problems total. From owner-freebsd-gnome@FreeBSD.ORG Mon Mar 18 11:50:02 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6CB2AE0E for ; Mon, 18 Mar 2013 11:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 5E91A35A for ; Mon, 18 Mar 2013 11:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2IBo1di013331 for ; Mon, 18 Mar 2013 11:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2IBo1JX013330; Mon, 18 Mar 2013 11:50:01 GMT (envelope-from gnats) Date: Mon, 18 Mar 2013 11:50:01 GMT Message-Id: <201303181150.r2IBo1JX013330@freefall.freebsd.org> To: gnome@FreeBSD.org From: Piotr Kubaj Subject: Re: ports/176879: Abiword, Gnumeric, Shotwell and Equinox engine don't compile X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Piotr Kubaj List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Mar 2013 11:50:02 -0000 The following reply was made to PR ports/176879; it has been noted by GNATS. From: Piotr Kubaj To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/176879: Abiword, Gnumeric, Shotwell and Equinox engine don't compile Date: Mon, 18 Mar 2013 08:29:16 +0100 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On 03/17/2013 17:51, Koop Mast wrote: > Please update your ports. Goffice was fixed on 13th of March. And I > just successfully rebuild abiword and gnumeric. Shotwell probably > needs a update. I patched gtk-equinox-engine just now, thanks. Let > me know if you still have problems. Yes, I know about Goffice. Thanks. -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) Comment: Using GnuPG with Thunderbird - http://www.enigmail.net/ iQIcBAEBAgAGBQJRRsJMAAoJEC9nKukRsfY+YJgP/RpNY99N5+dn1q73h4AWDuyE gZ+ptGcNKiXtgYYOvquopn51RDBIhULrfDKaSY/hBjB5bRAqAwRm9VDv9MRhX9VP tfjZf67bk+aLqvrdQQtqy1PnBsYBW8U9AKAOJloZVBMDlSf5Mi6tSg1sdIGds0Qx +1Cm+i+a/aGBqgRT34NlAwUC+vYzn1cI/z8ez0irXtRyVzjZwt8xD6q6+i43N/p2 E2ug/kvOyd2qzBoesJ5My1LcynSgaHGyp34e2ogb9yAV683fjVMRKpdN3J3Uwxfp u1JDMctj+JjjbVgXr59F9pyKMxyD5z+nIGQJ56zv/jL44AUcg/Y5AZSQE4QM9+Zi c9I57iDl/rpan1fvzPf1HC0MwMZigtjSYwYQhH9yaBeBK7G5HJPpSisTmC6VC3XS WIsrbGNbbmlrMSOtrNW+s+vlTQOfwgLBsdFXQbi/NZoAouGYkMxAcbE+Z7l4cinm qeCl2WObxJBh3AK6V/O5kDTO4asHhKxi4Aby5W/y7kHOgWy5A8owvP0B99Ddmw7N fCgklDrsBEbuuT91xFutkwX4khSDdkdA1HsdlfKFHnLAhweu22Jg2FaEc/XvGBe9 7Uf0foHfK0hgbcXTb9fP3DVt0KeAxktJrCsI1ephE/8fnMqXv1GmOzyvgPcIJ2Zf pp1s1qaBM3Knaz5p+kmT =YuaM -----END PGP SIGNATURE----- From owner-freebsd-gnome@FreeBSD.ORG Mon Mar 18 17:40:14 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 32E144CF; Mon, 18 Mar 2013 17:40:14 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 0ED86CC0; Mon, 18 Mar 2013 17:40:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2IHeDJj077521; Mon, 18 Mar 2013 17:40:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2IHeDBU077520; Mon, 18 Mar 2013 17:40:13 GMT (envelope-from edwin) Date: Mon, 18 Mar 2013 17:40:13 GMT Message-Id: <201303181740.r2IHeDBU077520@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 18 Mar 2013 17:40:14 -0000 Synopsis: devel/glibmm does not compile: Unknown component libsigc++20 Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Mon Mar 18 17:40:13 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=177077 From owner-freebsd-gnome@FreeBSD.ORG Mon Mar 18 20:30:10 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8EC619F5; Mon, 18 Mar 2013 20:30:10 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 060B48CC; Mon, 18 Mar 2013 20:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2IKU9Jk009476; Mon, 18 Mar 2013 20:30:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2IKU9HY009475; Mon, 18 Mar 2013 20:30:09 GMT (envelope-from edwin) Date: Mon, 18 Mar 2013 20:30:09 GMT Message-Id: <201303182030.r2IKU9HY009475@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/177085: converters/libiconv, devel/gettext install files in the same place X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 18 Mar 2013 20:30:10 -0000 Synopsis: converters/libiconv, devel/gettext install files in the same place Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Mon Mar 18 20:30:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=177085 From owner-freebsd-gnome@FreeBSD.ORG Mon Mar 18 20:40:09 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 4DF16D74; Mon, 18 Mar 2013 20:40:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 2A09494C; Mon, 18 Mar 2013 20:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2IKe9sD012557; Mon, 18 Mar 2013 20:40:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2IKe9Lh012556; Mon, 18 Mar 2013 20:40:09 GMT (envelope-from edwin) Date: Mon, 18 Mar 2013 20:40:09 GMT Message-Id: <201303182040.r2IKe9Lh012556@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/177086: www/webkit-gtk3 does not build X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 18 Mar 2013 20:40:09 -0000 Synopsis: www/webkit-gtk3 does not build Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Mon Mar 18 20:40:08 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=177086 From owner-freebsd-gnome@FreeBSD.ORG Mon Mar 18 20:49:00 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9F515245; Mon, 18 Mar 2013 20:49:00 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 7B65E9D1; Mon, 18 Mar 2013 20:49:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2IKn0RJ012715; Mon, 18 Mar 2013 20:49:00 GMT (envelope-from kwm@freefall.freebsd.org) Received: (from kwm@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2IKn0iF012714; Mon, 18 Mar 2013 20:49:00 GMT (envelope-from kwm) Date: Mon, 18 Mar 2013 20:49:00 GMT Message-Id: <201303182049.r2IKn0iF012714@freefall.freebsd.org> To: mexas@bristol.ac.uk, kwm@FreeBSD.org, gnome@FreeBSD.org From: kwm@FreeBSD.org Subject: Re: ports/177085: converters/libiconv, devel/gettext install files in the same place X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 18 Mar 2013 20:49:00 -0000 Synopsis: converters/libiconv, devel/gettext install files in the same place State-Changed-From-To: open->closed State-Changed-By: kwm State-Changed-When: Mon Mar 18 20:47:16 UTC 2013 State-Changed-Why: This was already reported and instructions where place in ports/UPDATING entry 20130316 how to correct this problem. http://www.freebsd.org/cgi/query-pr.cgi?pr=177085 From owner-freebsd-gnome@FreeBSD.ORG Mon Mar 18 20:54:27 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 57DA1612; Mon, 18 Mar 2013 20:54:27 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 1DE04A39; Mon, 18 Mar 2013 20:54:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2IKsQL4014290; Mon, 18 Mar 2013 20:54:26 GMT (envelope-from kwm@freefall.freebsd.org) Received: (from kwm@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2IKsQ8N014289; Mon, 18 Mar 2013 20:54:26 GMT (envelope-from kwm) Date: Mon, 18 Mar 2013 20:54:26 GMT Message-Id: <201303182054.r2IKsQ8N014289@freefall.freebsd.org> To: zaphod@berentweb.com, kwm@FreeBSD.org, gnome@FreeBSD.org From: kwm@FreeBSD.org Subject: Re: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 18 Mar 2013 20:54:27 -0000 Synopsis: devel/glibmm does not compile: Unknown component libsigc++20 State-Changed-From-To: open->closed State-Changed-By: kwm State-Changed-When: Mon Mar 18 20:52:43 UTC 2013 State-Changed-Why: Please update your ports tree, the libsigc++20 USE_GNOME component was added on March 8th together with glib and gtk updates. I suspect your ports tree isn't in a consistent state. http://www.freebsd.org/cgi/query-pr.cgi?pr=177077 From owner-freebsd-gnome@FreeBSD.ORG Mon Mar 18 21:30:03 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 1C3E5678 for ; Mon, 18 Mar 2013 21:30:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id EB1C9CE0 for ; Mon, 18 Mar 2013 21:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2ILU28q020437 for ; Mon, 18 Mar 2013 21:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2ILU2Z0020436; Mon, 18 Mar 2013 21:30:02 GMT (envelope-from gnats) Date: Mon, 18 Mar 2013 21:30:02 GMT Message-Id: <201303182130.r2ILU2Z0020436@freefall.freebsd.org> To: gnome@FreeBSD.org From: Koop Mast Subject: Re: ports/177086: www/webkit-gtk3 does not build X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Koop Mast List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Mar 2013 21:30:03 -0000 The following reply was made to PR ports/177086; it has been noted by GNATS. From: Koop Mast To: bug-followup@FreeBSD.org, zaphod@berentweb.com Cc: Subject: Re: ports/177086: www/webkit-gtk3 does not build Date: Mon, 18 Mar 2013 22:21:01 +0100 webkit-gtk3 should build normaly, can you post your make.conf? It probably custom CFLAGS that are causing problems. From owner-freebsd-gnome@FreeBSD.ORG Mon Mar 18 22:25:06 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 31DC83BA for ; Mon, 18 Mar 2013 22:25:06 +0000 (UTC) (envelope-from nemysis@gmx.ch) Received: from mout.gmx.net (mout.gmx.net [212.227.15.15]) by mx1.freebsd.org (Postfix) with ESMTP id ABCB4149 for ; Mon, 18 Mar 2013 22:25:05 +0000 (UTC) Received: from mailout-de.gmx.net ([10.1.76.29]) by mrigmx.server.lan (mrigmx001) with ESMTP (Nemesis) id 0Lkmks-1UpfnL0Q4a-00aZPX for ; Mon, 18 Mar 2013 23:24:59 +0100 Received: (qmail invoked by alias); 18 Mar 2013 22:24:57 -0000 Received: from 38-21.104-92.cust.bluewin.ch (EHLO something.email.com) [92.104.21.38] by mail.gmx.net (mp029) with SMTP; 18 Mar 2013 23:24:57 +0100 X-Authenticated: #134568197 X-Provags-ID: V01U2FsdGVkX19O0517LNBOj8Z5mlX5LZs6JZmUOJ7ZLwef2vIIRY uLzSoGazH1dnLL Received: by something.email.com (sSMTP sendmail emulation); Mon, 18 Mar 2013 23:24:58 +0100 Date: Mon, 18 Mar 2013 23:24:58 +0100 To: FreeBSD-gnats-submit@freebsd.org Subject: [PATCH] graphics/evince: Convert to OptionsNG From: nemysis X-send-pr-version: 3.113 X-GNATS-Notify: X-Y-GMX-Trusted: 0 Message-Id: <20130318222506.31DC83BA@hub.freebsd.org> Cc: gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 18 Mar 2013 22:25:06 -0000 >Submitter-Id: current-users >Originator: nemysis >Organization: >Confidential: no >Synopsis: [PATCH] graphics/evince: Convert to OptionsNG >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 9.1-RELEASE amd64 >Environment: System: FreeBSD FreeBSD_Ports 9.1-RELEASE FreeBSD 9.1-RELEASE #0 r243825: Tue Dec 4 09:23:10 >Description: Remove DOCS from pkg-plist. Port maintainer (gnome@FreeBSD.org) is cc'd. Generated and tested manually, tested with port test, sent with FreeBSD Port Tools 0.99_6 (mode: change, diff: ports) >How-To-Repeat: portlint -A looks usual. port test: clean >Fix: --- evince-2.32.0_10.patch begins here --- diff -ruN --exclude=CVS /usr/ports/graphics/evince/Makefile ./Makefile --- /usr/ports/graphics/evince/Makefile 2013-01-14 17:56:59.000000000 +0100 +++ ./Makefile 2013-03-18 22:51:43.000000000 +0100 @@ -1,14 +1,10 @@ -# New ports collection makefile for: evince -# Date created: 09 January 2005 -# Whom: Adam Weinberger -# +# Created by: Adam Weinberger # $FreeBSD: head/graphics/evince/Makefile 300896 2012-07-14 13:54:48Z beat $ # $MCom: ports/graphics/evince/Makefile,v 1.147 2010/09/28 07:27:12 kwm Exp $ -# PORTNAME= evince PORTVERSION= 2.32.0 -PORTREVISION= 9 +PORTREVISION= 10 CATEGORIES= graphics print gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome2 @@ -17,7 +13,7 @@ COMMENT= GNOME 2 multi-format document viewer BUILD_DEPENDS= ${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme -LIB_DEPENDS= poppler-glib.8:${PORTSDIR}/graphics/poppler-glib \ +LIB_DEPENDS= poppler-glib:${PORTSDIR}/graphics/poppler-glib \ spectre.1:${PORTSDIR}/print/libspectre RUN_DEPENDS= ${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme \ yelp:${PORTSDIR}/x11/yelp @@ -26,7 +22,6 @@ USE_BZIP2= yes USE_AUTOTOOLS= libtool INSTALLS_ICONS= yes -USE_GETTEXT= yes USE_GMAKE= yes INSTALLS_OMF= yes USE_GNOME= gnomehack intlhack gnomeprefix desktopfileutils \ @@ -43,29 +38,43 @@ MAN1= evince.1 -OPTIONS= DVI "Enable DVI viewer support" off \ - T1LIB "Enable T1LIB for TYPE1 fonts to DVI (Enables DVI)" off \ - NAUTILUS "Enable Nautilus plugin" on \ - KEYRING "Enable Gnome-Keyring without Nautilus" on \ - DBUS "Enable D-BUS support" on \ - COMICS "Enable comic book archives support" on \ - IMPRESS "Enable Impress presentations support" off \ - DJVU "Enable DJVU support" off +PORTDOCS= * + +OPTIONS_DEFINE= NLS DVI T1LIB NAUTILUS KEYRING DBUS COMICS IMPRESS DJVU + +DVI_DESC= Enable DVI viewer support +T1LIB_DESC= Enable T1LIB for TYPE1 fonts to DVI (Enables DVI) +NAUTILUS_DESC= Enable Nautilus plugin +KEYRING_DESC= Enable Gnome-Keyring without Nautilus +COMICS_DESC= Enable comic book archives support +IMPRESS_DESC= Enable Impress presentations support +DJVU_DESC= Enable DJVU support + +OPTIONS_DEFAULT= NAUTILUS KEYRING DBUS COMICS .include +.include + +.if ${PORT_OPTIONS:MNLS} +USE_GETTEXT= yes +PLIST_SUB+= NLS="" +.else +CONFIGURE_ARGS+= --disable-nls +PLIST_SUB+= NLS="@comment " +.endif .if defined(PACKAGE_BUILDING) || exists(${LOCALBASE}/lib/libdbus-glib-1.so) WITH_DBUS= yes .endif -.if defined(WITH_DVI) || defined(WITH_T1LIB) || exists(${LOCALBASE}/lib/libkpathsea.a) +.if ${PORT_OPTIONS:MDVI} || ${PORT_OPTIONS:MT1LIB} || exists(${LOCALBASE}/lib/libkpathsea.a) BUILD_DEPENDS+= tex:${PORTSDIR}/print/teTeX-base RUN_DEPENDS+= tex:${PORTSDIR}/print/teTeX-base CONFIGURE_ARGS+= --enable-dvi GCONF_SCHEMAS+= evince-thumbnailer-dvi.schemas PLIST_SUB+= DVI="" -. if defined(WITH_T1LIB) +. if${PORT_OPTIONS:MT1LIB} LIB_DEPENDS+= t1.5:${PORTSDIR}/devel/t1lib CONFIGURE_ARGS+= --enable-t1lib @@ -74,15 +83,15 @@ PLIST_SUB+= DVI="@comment " .endif -.if !defined(WITHOUT_NAUTILUS) +.if ${PORT_OPTIONS:MNAUTILUS} USE_GNOME+= nautilus2 CONFIGURE_ARGS+= --enable-nautilus PLIST_SUB+= NAUTILUS="" .else BUILD_DEPENDS+= ${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme RUN_DEPENDS+= ${LOCALBASE}/share/icons/gnome/index.theme:${PORTSDIR}/misc/gnome-icon-theme -.if !defined(WITHOUT_KEYRING) -LIB_DEPENDS+= gnome-keyring.0:${PORTSDIR}/security/libgnome-keyring +.if ${PORT_OPTIONS:MKEYRING} +LIB_DEPENDS+= gnome-keyring:${PORTSDIR}/security/libgnome-keyring .else CONFIGURE_ARGS+= --without-keyring .endif @@ -90,7 +99,7 @@ PLIST_SUB+= NAUTILUS="@comment " .endif -.if defined(WITH_IMPRESS) +.if ${PORT_OPTIONS:MIMPRESS} CONFIGURE_ARGS+= --enable-impress PLIST_SUB+= IMPRESS="" .else @@ -98,7 +107,7 @@ PLIST_SUB+= IMPRESS="@comment " .endif -.if defined(WITH_DJVU) +.if ${PORT_OPTIONS:MDJVU} LIB_DEPENDS+= djvulibre:${PORTSDIR}/graphics/djvulibre CONFIGURE_ARGS+= --enable-djvu GCONF_SCHEMAS+= evince-thumbnailer-djvu.schemas @@ -108,11 +117,11 @@ PLIST_SUB+= DJVU="@comment " .endif -.if !defined(WITHOUT_DBUS) -LIB_DEPENDS+= dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib +.if ${PORT_OPTIONS:MDBUS} +LIB_DEPENDS+= dbus-glib:${PORTSDIR}/devel/dbus-glib .endif -.if !defined(WITHOUT_COMICS) +.if ${PORT_OPTIONS:MCOMICS} RUN_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip CONFIGURE_ARGS+= --enable-comics GCONF_SCHEMAS+= evince-thumbnailer-comics.schemas @@ -131,6 +140,6 @@ ${WRKSRC}/help/reference/libview/Makefile.in post-install: - @-update-desktop-database + @-update-desktop-database -q .include diff -ruN --exclude=CVS /usr/ports/graphics/evince/pkg-plist ./pkg-plist --- /usr/ports/graphics/evince/pkg-plist 2013-01-14 17:56:59.000000000 +0100 +++ ./pkg-plist 2013-03-18 23:15:28.000000000 +0100 @@ -94,46 +94,6 @@ share/GConf/gsettings/evince.convert share/applications/evince.desktop share/dbus-1/services/org.gnome.evince.Daemon.service -%%DOCSDIR%%/EggFindBar.html -%%DOCSDIR%%/EvFileMonitor.html -%%DOCSDIR%%/EvHistory.html -%%DOCSDIR%%/EvMessageArea.html -%%DOCSDIR%%/EvNavigationAction.html -%%DOCSDIR%%/EvNavigationActionWidget.html -%%DOCSDIR%%/EvOpenRecentAction.html -%%DOCSDIR%%/EvPageAction.html -%%DOCSDIR%%/EvPageActionWidget.html -%%DOCSDIR%%/EvPasswordView.html -%%DOCSDIR%%/EvProgressMessageArea.html -%%DOCSDIR%%/EvSidebar.html -%%DOCSDIR%%/EvSidebarAttachments.html -%%DOCSDIR%%/EvSidebarLayers.html -%%DOCSDIR%%/EvSidebarLinks.html -%%DOCSDIR%%/EvSidebarPage.html -%%DOCSDIR%%/EvSidebarThumbnails.html -%%DOCSDIR%%/EvWindow.html -%%DOCSDIR%%/api-index-full.html -%%DOCSDIR%%/evince-ev-application.html -%%DOCSDIR%%/evince-ev-keyring.html -%%DOCSDIR%%/evince-ev-media-player-keys.html -%%DOCSDIR%%/evince-ev-metadata.html -%%DOCSDIR%%/evince-ev-properties-dialog.html -%%DOCSDIR%%/evince-ev-properties-fonts.html -%%DOCSDIR%%/evince-ev-properties-license.html -%%DOCSDIR%%/evince-ev-utils.html -%%DOCSDIR%%/evince-ev-window-title.html -%%DOCSDIR%%/evince-frontend.html -%%DOCSDIR%%/evince.devhelp -%%DOCSDIR%%/evince.devhelp2 -%%DOCSDIR%%/home.png -%%DOCSDIR%%/index.html -%%DOCSDIR%%/index.sgml -%%DOCSDIR%%/left.png -%%DOCSDIR%%/licence.html -%%DOCSDIR%%/object-tree.html -%%DOCSDIR%%/right.png -%%DOCSDIR%%/style.css -%%DOCSDIR%%/up.png share/doc/libevdocument/EvAnnotation.html share/doc/libevdocument/EvAsyncRenderer.html share/doc/libevdocument/EvAttachment.html @@ -149,6 +109,7 @@ share/doc/libevdocument/EvDocumentPrint.html share/doc/libevdocument/EvDocumentSecurity.html share/doc/libevdocument/EvDocumentThumbnails.html +share/doc/libevdocument/up.png share/doc/libevdocument/EvDocumentTransition.html share/doc/libevdocument/EvFileExporter.html share/doc/libevdocument/EvFormField.html @@ -179,11 +140,10 @@ share/doc/libevdocument/libevdocument-ev-transition-effect.html share/doc/libevdocument/libevdocument.devhelp share/doc/libevdocument/libevdocument.devhelp2 +share/doc/libevdocument/right.png share/doc/libevdocument/licence.html share/doc/libevdocument/object-tree.html -share/doc/libevdocument/right.png share/doc/libevdocument/style.css -share/doc/libevdocument/up.png share/doc/libevview/EvJob.html share/doc/libevview/api-index-full.html share/doc/libevview/home.png @@ -198,11 +158,11 @@ share/doc/libevview/libevview-ev-stock-icons.html share/doc/libevview/libevview-ev-view-cursor.html share/doc/libevview/libevview-ev-view-presentation.html +share/doc/libevview/licence.html share/doc/libevview/libevview-ev-view-type-builtins.html share/doc/libevview/libevview-ev-view.html share/doc/libevview/libevview.devhelp share/doc/libevview/libevview.devhelp2 -share/doc/libevview/licence.html share/doc/libevview/object-tree.html share/doc/libevview/right.png share/doc/libevview/style.css @@ -303,90 +263,90 @@ share/icons/hicolor/24x24/apps/evince.png share/icons/hicolor/48x48/apps/evince.png share/icons/hicolor/scalable/apps/evince.svg -share/locale/af/LC_MESSAGES/evince.mo -share/locale/ar/LC_MESSAGES/evince.mo -share/locale/as/LC_MESSAGES/evince.mo -share/locale/ast/LC_MESSAGES/evince.mo -share/locale/be/LC_MESSAGES/evince.mo -share/locale/be@latin/LC_MESSAGES/evince.mo -share/locale/bg/LC_MESSAGES/evince.mo -share/locale/bn/LC_MESSAGES/evince.mo -share/locale/bn_IN/LC_MESSAGES/evince.mo -share/locale/br/LC_MESSAGES/evince.mo -share/locale/ca/LC_MESSAGES/evince.mo -share/locale/ca@valencia/LC_MESSAGES/evince.mo -share/locale/cs/LC_MESSAGES/evince.mo -share/locale/cy/LC_MESSAGES/evince.mo -share/locale/da/LC_MESSAGES/evince.mo -share/locale/de/LC_MESSAGES/evince.mo -share/locale/dz/LC_MESSAGES/evince.mo -share/locale/el/LC_MESSAGES/evince.mo -share/locale/eo/LC_MESSAGES/evince.mo -share/locale/en@shaw/LC_MESSAGES/evince.mo -share/locale/en_CA/LC_MESSAGES/evince.mo -share/locale/en_GB/LC_MESSAGES/evince.mo -share/locale/es/LC_MESSAGES/evince.mo -share/locale/et/LC_MESSAGES/evince.mo -share/locale/eu/LC_MESSAGES/evince.mo -share/locale/fa/LC_MESSAGES/evince.mo -share/locale/fi/LC_MESSAGES/evince.mo -share/locale/fr/LC_MESSAGES/evince.mo -share/locale/ga/LC_MESSAGES/evince.mo -share/locale/gl/LC_MESSAGES/evince.mo -share/locale/gu/LC_MESSAGES/evince.mo -share/locale/he/LC_MESSAGES/evince.mo -share/locale/hi/LC_MESSAGES/evince.mo -share/locale/hu/LC_MESSAGES/evince.mo -share/locale/id/LC_MESSAGES/evince.mo -share/locale/it/LC_MESSAGES/evince.mo -share/locale/ja/LC_MESSAGES/evince.mo -share/locale/ka/LC_MESSAGES/evince.mo -share/locale/kk/LC_MESSAGES/evince.mo -share/locale/kn/LC_MESSAGES/evince.mo -share/locale/ko/LC_MESSAGES/evince.mo -share/locale/ks/LC_MESSAGES/evince.mo -share/locale/ku/LC_MESSAGES/evince.mo -share/locale/lt/LC_MESSAGES/evince.mo -share/locale/lv/LC_MESSAGES/evince.mo -share/locale/mai/LC_MESSAGES/evince.mo -share/locale/mg/LC_MESSAGES/evince.mo -share/locale/mk/LC_MESSAGES/evince.mo -share/locale/ml/LC_MESSAGES/evince.mo -share/locale/mn/LC_MESSAGES/evince.mo -share/locale/mr/LC_MESSAGES/evince.mo -share/locale/ms/LC_MESSAGES/evince.mo -share/locale/nb/LC_MESSAGES/evince.mo -share/locale/nds/LC_MESSAGES/evince.mo -share/locale/ne/LC_MESSAGES/evince.mo -share/locale/nl/LC_MESSAGES/evince.mo -share/locale/nn/LC_MESSAGES/evince.mo -share/locale/oc/LC_MESSAGES/evince.mo -share/locale/or/LC_MESSAGES/evince.mo -share/locale/pa/LC_MESSAGES/evince.mo -share/locale/pl/LC_MESSAGES/evince.mo -share/locale/ps/LC_MESSAGES/evince.mo -share/locale/pt/LC_MESSAGES/evince.mo -share/locale/pt_BR/LC_MESSAGES/evince.mo -share/locale/ro/LC_MESSAGES/evince.mo -share/locale/ru/LC_MESSAGES/evince.mo -share/locale/rw/LC_MESSAGES/evince.mo -share/locale/si/LC_MESSAGES/evince.mo -share/locale/sk/LC_MESSAGES/evince.mo -share/locale/sl/LC_MESSAGES/evince.mo -share/locale/sq/LC_MESSAGES/evince.mo -share/locale/sr/LC_MESSAGES/evince.mo -share/locale/sr@latin/LC_MESSAGES/evince.mo -share/locale/sv/LC_MESSAGES/evince.mo -share/locale/ta/LC_MESSAGES/evince.mo -share/locale/te/LC_MESSAGES/evince.mo -share/locale/th/LC_MESSAGES/evince.mo -share/locale/tr/LC_MESSAGES/evince.mo -share/locale/uk/LC_MESSAGES/evince.mo -share/locale/vi/LC_MESSAGES/evince.mo -share/locale/wa/LC_MESSAGES/evince.mo -share/locale/zh_CN/LC_MESSAGES/evince.mo -share/locale/zh_HK/LC_MESSAGES/evince.mo -share/locale/zh_TW/LC_MESSAGES/evince.mo +%%NLS%%share/locale/af/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ar/LC_MESSAGES/evince.mo +%%NLS%%share/locale/as/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ast/LC_MESSAGES/evince.mo +%%NLS%%share/locale/be/LC_MESSAGES/evince.mo +%%NLS%%share/locale/be@latin/LC_MESSAGES/evince.mo +%%NLS%%share/locale/bg/LC_MESSAGES/evince.mo +%%NLS%%share/locale/bn/LC_MESSAGES/evince.mo +%%NLS%%share/locale/bn_IN/LC_MESSAGES/evince.mo +%%NLS%%share/locale/br/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ca/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ca@valencia/LC_MESSAGES/evince.mo +%%NLS%%share/locale/cs/LC_MESSAGES/evince.mo +%%NLS%%share/locale/cy/LC_MESSAGES/evince.mo +%%NLS%%share/locale/da/LC_MESSAGES/evince.mo +%%NLS%%share/locale/de/LC_MESSAGES/evince.mo +%%NLS%%share/locale/dz/LC_MESSAGES/evince.mo +%%NLS%%share/locale/el/LC_MESSAGES/evince.mo +%%NLS%%share/locale/en@shaw/LC_MESSAGES/evince.mo +%%NLS%%share/locale/en_CA/LC_MESSAGES/evince.mo +%%NLS%%share/locale/en_GB/LC_MESSAGES/evince.mo +%%NLS%%share/locale/eo/LC_MESSAGES/evince.mo +%%NLS%%share/locale/es/LC_MESSAGES/evince.mo +%%NLS%%share/locale/et/LC_MESSAGES/evince.mo +%%NLS%%share/locale/eu/LC_MESSAGES/evince.mo +%%NLS%%share/locale/fa/LC_MESSAGES/evince.mo +%%NLS%%share/locale/fi/LC_MESSAGES/evince.mo +%%NLS%%share/locale/fr/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ga/LC_MESSAGES/evince.mo +%%NLS%%share/locale/gl/LC_MESSAGES/evince.mo +%%NLS%%share/locale/gu/LC_MESSAGES/evince.mo +%%NLS%%share/locale/he/LC_MESSAGES/evince.mo +%%NLS%%share/locale/hi/LC_MESSAGES/evince.mo +%%NLS%%share/locale/hu/LC_MESSAGES/evince.mo +%%NLS%%share/locale/id/LC_MESSAGES/evince.mo +%%NLS%%share/locale/it/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ja/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ka/LC_MESSAGES/evince.mo +%%NLS%%share/locale/kk/LC_MESSAGES/evince.mo +%%NLS%%share/locale/kn/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ko/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ks/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ku/LC_MESSAGES/evince.mo +%%NLS%%share/locale/lt/LC_MESSAGES/evince.mo +%%NLS%%share/locale/lv/LC_MESSAGES/evince.mo +%%NLS%%share/locale/mai/LC_MESSAGES/evince.mo +%%NLS%%share/locale/mg/LC_MESSAGES/evince.mo +%%NLS%%share/locale/mk/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ml/LC_MESSAGES/evince.mo +%%NLS%%share/locale/mn/LC_MESSAGES/evince.mo +%%NLS%%share/locale/mr/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ms/LC_MESSAGES/evince.mo +%%NLS%%share/locale/nb/LC_MESSAGES/evince.mo +%%NLS%%share/locale/nds/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ne/LC_MESSAGES/evince.mo +%%NLS%%share/locale/nl/LC_MESSAGES/evince.mo +%%NLS%%share/locale/nn/LC_MESSAGES/evince.mo +%%NLS%%share/locale/oc/LC_MESSAGES/evince.mo +%%NLS%%share/locale/or/LC_MESSAGES/evince.mo +%%NLS%%share/locale/pa/LC_MESSAGES/evince.mo +%%NLS%%share/locale/pl/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ps/LC_MESSAGES/evince.mo +%%NLS%%share/locale/pt/LC_MESSAGES/evince.mo +%%NLS%%share/locale/pt_BR/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ro/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ru/LC_MESSAGES/evince.mo +%%NLS%%share/locale/rw/LC_MESSAGES/evince.mo +%%NLS%%share/locale/si/LC_MESSAGES/evince.mo +%%NLS%%share/locale/sk/LC_MESSAGES/evince.mo +%%NLS%%share/locale/sl/LC_MESSAGES/evince.mo +%%NLS%%share/locale/sq/LC_MESSAGES/evince.mo +%%NLS%%share/locale/sr/LC_MESSAGES/evince.mo +%%NLS%%share/locale/sr@latin/LC_MESSAGES/evince.mo +%%NLS%%share/locale/sv/LC_MESSAGES/evince.mo +%%NLS%%share/locale/ta/LC_MESSAGES/evince.mo +%%NLS%%share/locale/te/LC_MESSAGES/evince.mo +%%NLS%%share/locale/th/LC_MESSAGES/evince.mo +%%NLS%%share/locale/tr/LC_MESSAGES/evince.mo +%%NLS%%share/locale/uk/LC_MESSAGES/evince.mo +%%NLS%%share/locale/vi/LC_MESSAGES/evince.mo +%%NLS%%share/locale/wa/LC_MESSAGES/evince.mo +%%NLS%%share/locale/zh_CN/LC_MESSAGES/evince.mo +%%NLS%%share/locale/zh_HK/LC_MESSAGES/evince.mo +%%NLS%%share/locale/zh_TW/LC_MESSAGES/evince.mo share/omf/evince/evince-C.omf share/omf/evince/evince-bg.omf share/omf/evince/evince-ca.omf @@ -480,7 +440,6 @@ @dirrm %%DATADIR%% @dirrm share/doc/libevview @dirrm share/doc/libevdocument -@dirrm %%DOCSDIR%% @dirrmtry share/applications @dirrm lib/evince/3/backends @dirrm lib/evince/3 @@ -489,47 +448,5 @@ @dirrm include/evince/%%VERSION%%/libdocument @dirrm include/evince/%%VERSION%% @dirrm include/evince -@exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/te/LC_MESSAGES -@dirrmtry share/locale/te -@dirrmtry share/locale/sr@latin/LC_MESSAGES -@dirrmtry share/locale/sr@latin -@dirrmtry share/locale/si/LC_MESSAGES -@dirrmtry share/locale/si -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/ps/LC_MESSAGES -@dirrmtry share/locale/ps -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/nds/LC_MESSAGES -@dirrmtry share/locale/nds -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/mg/LC_MESSAGES -@dirrmtry share/locale/mg -@dirrmtry share/locale/mai/LC_MESSAGES -@dirrmtry share/locale/mai -@dirrmtry share/locale/ku/LC_MESSAGES -@dirrmtry share/locale/ku -@dirrmtry share/locale/ks/LC_MESSAGES -@dirrmtry share/locale/ks -@dirrmtry share/locale/kk/LC_MESSAGES -@dirrmtry share/locale/kk -@dirrmtry share/locale/en@shaw/LC_MESSAGES -@dirrmtry share/locale/en@shaw -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/locale/ca@valencia/LC_MESSAGES -@dirrmtry share/locale/ca@valencia -@dirrmtry share/locale/bn_IN/LC_MESSAGES -@dirrmtry share/locale/bn_IN -@dirrmtry share/locale/be@latin/LC_MESSAGES -@dirrmtry share/locale/be@latin -@dirrmtry share/locale/ast/LC_MESSAGES -@dirrmtry share/locale/ast -@dirrmtry share/locale/as/LC_MESSAGES -@dirrmtry share/locale/as +@exec %%LOCALBASE%%/bin/update-desktop-database -q || /usr/bin/true +@unexec %%LOCALBASE%%/bin/update-desktop-database -q || /usr/bin/true --- evince-2.32.0_10.patch ends here --- From owner-freebsd-gnome@FreeBSD.ORG Mon Mar 18 22:30:10 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id CF26153E; Mon, 18 Mar 2013 22:30:10 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id AB47417F; Mon, 18 Mar 2013 22:30:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2IMUAIX031599; Mon, 18 Mar 2013 22:30:10 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2IMUAd1031598; Mon, 18 Mar 2013 22:30:10 GMT (envelope-from edwin) Date: Mon, 18 Mar 2013 22:30:10 GMT Message-Id: <201303182230.r2IMUAd1031598@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/177090: [PATCH] graphics/evince: Convert to OptionsNG X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 18 Mar 2013 22:30:10 -0000 Synopsis: [PATCH] graphics/evince: Convert to OptionsNG Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Mon Mar 18 22:30:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=177090 From owner-freebsd-gnome@FreeBSD.ORG Mon Mar 18 23:00:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D2C75AB8 for ; Mon, 18 Mar 2013 23:00:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id AD42A281 for ; Mon, 18 Mar 2013 23:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2IN00tf036835 for ; Mon, 18 Mar 2013 23:00:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2IN00Pb036833; Mon, 18 Mar 2013 23:00:00 GMT (envelope-from gnats) Date: Mon, 18 Mar 2013 23:00:00 GMT Message-Id: <201303182300.r2IN00Pb036833@freefall.freebsd.org> To: gnome@FreeBSD.org From: Anton Shterenlikht Subject: Re: ports/177085: converters/libiconv, devel/gettext install files in the same place X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Anton Shterenlikht List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Mar 2013 23:00:01 -0000 The following reply was made to PR ports/177085; it has been noted by GNATS. From: Anton Shterenlikht To: bug-followup@freebsd.org Cc: Subject: Re: ports/177085: converters/libiconv, devel/gettext install files in the same place Date: Mon, 18 Mar 2013 22:53:33 GMT sorry, forgot to check UPDATING. Please close this PR Anton From owner-freebsd-gnome@FreeBSD.ORG Mon Mar 18 23:30:02 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A118CF55 for ; Mon, 18 Mar 2013 23:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 72299375 for ; Mon, 18 Mar 2013 23:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2INU2oc054978 for ; Mon, 18 Mar 2013 23:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2INU2Ft054964; Mon, 18 Mar 2013 23:30:02 GMT (envelope-from gnats) Date: Mon, 18 Mar 2013 23:30:02 GMT Message-Id: <201303182330.r2INU2Ft054964@freefall.freebsd.org> To: gnome@FreeBSD.org From: Koop Mast Subject: Re: ports/177090: [PATCH] graphics/evince: Convert to OptionsNG X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Koop Mast List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 18 Mar 2013 23:30:02 -0000 The following reply was made to PR ports/177090; it has been noted by GNATS. From: Koop Mast To: bug-followup@FreeBSD.org, nemysis@gmx.ch Cc: Subject: Re: ports/177090: [PATCH] graphics/evince: Convert to OptionsNG Date: Tue, 19 Mar 2013 00:27:16 +0100 I'm already working on converting all the gnome@ ports to Options. So please hold off. Also Options conversion doesn't need a portrevision bumps. From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 09:40:02 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 29D2C34C for ; Tue, 19 Mar 2013 09:40:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 03E3B347 for ; Tue, 19 Mar 2013 09:40:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2J9e1Ad077323 for ; Tue, 19 Mar 2013 09:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2J9e1UF077322; Tue, 19 Mar 2013 09:40:01 GMT (envelope-from gnats) Date: Tue, 19 Mar 2013 09:40:01 GMT Message-Id: <201303190940.r2J9e1UF077322@freefall.freebsd.org> To: gnome@FreeBSD.org From: Koop Mast Subject: Re: ports/177086: www/webkit-gtk3 does not build X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Koop Mast List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Mar 2013 09:40:02 -0000 The following reply was made to PR ports/177086; it has been noted by GNATS. From: Koop Mast To: Beeblebrox , bug-followup@FreeBSD.org Cc: Subject: Re: ports/177086: www/webkit-gtk3 does not build Date: Tue, 19 Mar 2013 10:31:16 +0100 On 19-3-2013 7:33, Beeblebrox wrote: > Koop Mast wrote: >> webkit-gtk3 should build normaly, can you post your make.conf? It >> probably custom CFLAGS that are causing problems. Please keep the bug-followup@FreeBSD.org address in the CC so that comments will be saved to the problem report. > AS YOU REQUESTED: > > CPUTYPE?= k8 #native > > # Disable spam warnings in clang > .if ${CC:T} == "clang" > CFLAGS+= -Qunused-arguments > .endif > > #WITH_CCACHE_BUILD=yes > > #------------------------------------------------------------ > #_PORTS_SETTINGS > .if ${.CURDIR:M/usr/ports} || ${.CURDIR:M/usr/ports/*} || > ${.CURDIR:M/asp/ports} || ${.CURDIR:M/asp/ports/*} > #FORCE_MAKE_JOBS=yes > MAKE_JOBS_NUMBER=9 > WITH_CPUFLAGS=yes > BUILD_OPTIMIZED=yes > BATCH=yes > #CC=gcc46 > #CXX=g++46 > #CPP=cpp46 > #USE_GCC=any > #CC:=${CC:C,^gcc46,/usr/local/libexec/ccache/world/gcc46,1} > #CXX:=${CXX:C,^g\+\+\46,/usr/local/libexec/ccache/world/g++46,1} > .include "/etc/make/portset.conf" > .endif > > # added by use.perl 2013-03-18 19:47:31 > PERL_VERSION=5.16.2 > > > AND /ETC/MAKE/PORTSET.CONF: > > #_PORT_WITH_WITHOUT > WITHOUT_NOUVEAU=yes > NO_PROFILE=yes > WITH_PKGNG=yes > WITHOUT_NLS=yes > WITHOUT_ARTS=yes > WITHOUT_IPV6=yes > WITH_GTK2=yes > GNUSTEP_WITH_GCC46=yes > > #_PREFERRED_PORTS > QT4_OPTIONS= CUPS QGTKSTYL > MYSQL_VERSION= 55 > MYSQL_DEFAULT_VERSION= 55 > BDB_VERSION= 48 > WANT_BDB_VER= 48 > LIBIODBC_PORT= databases/unixODBC > #LUA_VER= 5.2 > #WITH_LUA_VER= 5.2 > > WITH_MOZILLA= firefox > WITH_GECKO= xulrunner > > JAVA_OS= native > JAVA_VENDOR= openjdk > OVERRIDE_LINUX_BASE_PORT= f10 > OVERRIDE_LINUX_NOBASE_PORTS= f10 > DIRAC_PORT= multimedia/schroedinger > APACHE_PORT= www/nginx > LIBUNGIF_PORT= graphics/giflib > QT33_PORT= x11-toolkits/qt4-gui > XML-COMMONS_PORT= textproc/xerces-j > > > When building on host I get this warning as well: > WARNING: `automake-1.11' is missing on your system. You should only > need it if you modified `Makefile.am', `acinclude.m4' or `configure.ac'. > You might want to install the `Automake' and `Perl' packages. Grab them > from any GNU archive site. > From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 10:27:07 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E58D6CA3 for ; Tue, 19 Mar 2013 10:27:07 +0000 (UTC) (envelope-from javier_cepa@optenet.com) Received: from kolab1.optenet.com (kolab1-pri.optenet.com [5.9.115.82]) by mx1.freebsd.org (Postfix) with ESMTP id AEBCA7C5 for ; Tue, 19 Mar 2013 10:27:07 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by kolab1.optenet.com (Postfix) with ESMTP id 5C6799F0805A for ; Tue, 19 Mar 2013 11:21:44 +0100 (CET) Received: from [192.168.0.34] (156.82-130-195.static.clientes.euskaltel.es [82.130.195.156]) (Authenticated sender: javier_cepa) by kolab1.optenet.com (Postfix) with ESMTPSA id 366DD9F08055 for ; Tue, 19 Mar 2013 11:21:44 +0100 (CET) Message-ID: <51483C1B.70502@optenet.com> Date: Tue, 19 Mar 2013 11:21:15 +0100 From: Javier Cepa Iglesias Organization: OPTENET S.A. User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130221 Thunderbird/17.0.3 MIME-Version: 1.0 To: gnome@freebsd.org Subject: intool for owncloud Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 10:27:08 -0000 ===> owncloud-4.5.7 depends on executable: mp3info - not found ===> Verifying install for mp3info in /usr/ports/audio/mp3info ===> mp3info-gtk-0.8.5 depends on file: /usr/local/bin/intltool-extract - not found ===> Verifying install for /usr/local/bin/intltool-extract in /usr/ports/textproc/intltool ===> intltool-0.41.1 depends on package: p5-XML-Parser>=0 - found ===> intltool-0.41.1 depends on executable: gmake - found ===> intltool-0.41.1 depends on file: /usr/local/bin/perl5.8.9 - found ===> intltool-0.41.1 depends on shared library: iconv.3 - found ===> Configuring for intltool-0.41.1 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... ./install-sh -c -d checking for gawk... no checking for mawk... no checking for nawk... nawk checking whether gmake sets $(MAKE)... yes checking for perl... /usr/bin/perl checking for perl >= 5.8.1... configure: error: perl 5.8.1 is required for intltool ===> Script "configure" failed unexpectedly. Please report the problem to gnome@FreeBSD.org [maintainer] and attach the "/usr/ports/textproc/intltool/work/intltool-0.41.1/config.log" including the output of the failure of your make command. Also, it might be a good idea to provide an overview of all packages installed on your system (e.g. a /usr/sbin/pkg_info -Ea). *** [do-configure] Error code 1 Stop in /usr/ports/textproc/intltool. *** [build-depends] Error code 1 Stop in /usr/ports/audio/mp3info. *** [install] Error code 1 Stop in /usr/ports/audio/mp3info. *** [build-depends] Error code 1 From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 10:27:20 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CF938CC6; Tue, 19 Mar 2013 10:27:20 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id AB8107CA; Tue, 19 Mar 2013 10:27:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JARKfD086609; Tue, 19 Mar 2013 10:27:20 GMT (envelope-from kwm@freefall.freebsd.org) Received: (from kwm@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JARKuL086608; Tue, 19 Mar 2013 10:27:20 GMT (envelope-from kwm) Date: Tue, 19 Mar 2013 10:27:20 GMT Message-Id: <201303191027.r2JARKuL086608@freefall.freebsd.org> To: lichray@gmail.com, kwm@FreeBSD.org, gnome@FreeBSD.org From: kwm@FreeBSD.org Subject: Re: ports/161676: databases/libgda4: [UPDATE] to 4.2.9; improvements X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 10:27:20 -0000 Synopsis: databases/libgda4: [UPDATE] to 4.2.9; improvements State-Changed-From-To: patched->closed State-Changed-By: kwm State-Changed-When: Tue Mar 19 10:26:53 UTC 2013 State-Changed-Why: Committed as part of a update to 4.2.12. http://www.freebsd.org/cgi/query-pr.cgi?pr=161676 From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 10:30:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 63F29DA2 for ; Tue, 19 Mar 2013 10:30:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 56BB97FE for ; Tue, 19 Mar 2013 10:30:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JAU1WN086734 for ; Tue, 19 Mar 2013 10:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JAU1Lt086733; Tue, 19 Mar 2013 10:30:01 GMT (envelope-from gnats) Date: Tue, 19 Mar 2013 10:30:01 GMT Message-Id: <201303191030.r2JAU1Lt086733@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/161676: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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: Tue, 19 Mar 2013 10:30:01 -0000 The following reply was made to PR ports/161676; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/161676: commit references a PR Date: Tue, 19 Mar 2013 10:27:12 +0000 (UTC) Author: kwm Date: Tue Mar 19 10:26:51 2013 New Revision: 314630 URL: http://svnweb.freebsd.org/changeset/ports/314630 Log: Update to 4.2.12. Convert to OptionsNG. pet portlint, remove obsolete OSVERSION check Tweak comment in slaves if needed, add a ldap backend. PR: ports/161676 (based on update to 4.2.9) Submitted by: Zhihao Yuan Added: head/databases/libgda4-ldap/ head/databases/libgda4-ldap/Makefile (contents, props changed) head/databases/libgda4-ldap/pkg-plist (contents, props changed) Modified: head/databases/Makefile head/databases/libgda4-bdb/Makefile (contents, props changed) head/databases/libgda4-jdbc/Makefile (contents, props changed) head/databases/libgda4-mdb/Makefile (contents, props changed) head/databases/libgda4-mysql/Makefile (contents, props changed) head/databases/libgda4-postgresql/Makefile (contents, props changed) head/databases/libgda4-reference/Makefile (contents, props changed) head/databases/libgda4/Makefile (contents, props changed) head/databases/libgda4/distinfo (contents, props changed) head/databases/libgda4/pkg-plist (contents, props changed) Modified: head/databases/Makefile ============================================================================== --- head/databases/Makefile Tue Mar 19 09:39:43 2013 (r314629) +++ head/databases/Makefile Tue Mar 19 10:26:51 2013 (r314630) @@ -157,6 +157,7 @@ SUBDIR += libgda4 SUBDIR += libgda4-bdb SUBDIR += libgda4-jdbc + SUBDIR += libgda4-ldap SUBDIR += libgda4-mdb SUBDIR += libgda4-mysql SUBDIR += libgda4-postgresql Modified: head/databases/libgda4-bdb/Makefile ============================================================================== --- head/databases/libgda4-bdb/Makefile Tue Mar 19 09:39:43 2013 (r314629) +++ head/databases/libgda4-bdb/Makefile Tue Mar 19 10:26:51 2013 (r314630) @@ -1,13 +1,9 @@ -# New ports collection makefile for: libgda4-bdb -# Date created: 28 February 2009 -# Whom: Joe Marcus Clarke -# +# Created by: Joe Marcus Clarke # $FreeBSD$ -# -PORTREVISION?= 1 +PORTREVISION= 0 CATEGORIES= databases gnome -PKGNAMESUFFIX?= -bdb +PKGNAMESUFFIX= 4-bdb MAINTAINER= gnome@FreeBSD.org COMMENT= Provides Berkeley DB backend for the libgda4 library Modified: head/databases/libgda4-jdbc/Makefile ============================================================================== --- head/databases/libgda4-jdbc/Makefile Tue Mar 19 09:39:43 2013 (r314629) +++ head/databases/libgda4-jdbc/Makefile Tue Mar 19 10:26:51 2013 (r314630) @@ -1,16 +1,12 @@ -# New ports collection makefile for: libgda4-java -# Date created: 10 Mar 2009 -# Whom: Koop Mast -# +# Created by: Koop Mast # $FreeBSD$ -# -PORTREVISION?= 1 +PORTREVISION= 0 CATEGORIES= databases gnome -PKGNAMESUFFIX?= -jdbc +PKGNAMESUFFIX= 4-jdbc MAINTAINER= gnome@FreeBSD.org -COMMENT= Provides Berkeley DB backend for the libgda4 library +COMMENT= Provides Java database Connector backend for the libgda4 library MASTERDIR= ${.CURDIR}/../libgda4 BUILD_WRKSRC= ${WRKSRC}/providers/jdbc Added: head/databases/libgda4-ldap/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libgda4-ldap/Makefile Tue Mar 19 10:26:51 2013 (r314630) @@ -0,0 +1,19 @@ +# Created by: Joe Marcus Clarke +# $FreeBSD$ +# $MCom: ports/databases/libgda4-ldap/Makefile,v 1.3 2011/10/15 15:18:35 kwm Exp $ + +PORTREVISION= 0 +CATEGORIES= databases gnome +PKGNAMESUFFIX= 4-ldap + +MAINTAINER= gnome@FreeBSD.org +COMMENT= Provides ldap access for the libgda4 library + +MASTERDIR= ${.CURDIR}/../libgda4 +BUILD_WRKSRC= ${WRKSRC}/providers/ldap/ +INSTALL_WRKSRC= ${BUILD_WRKSRC} +PLIST= ${.CURDIR}/pkg-plist + +LIBGDA4_SLAVE= ldap + +.include "${MASTERDIR}/Makefile" Added: head/databases/libgda4-ldap/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/databases/libgda4-ldap/pkg-plist Tue Mar 19 10:26:51 2013 (r314630) @@ -0,0 +1,6 @@ +lib/libgda-%%VERSION%%/providers/libgda-ldap.a +lib/libgda-%%VERSION%%/providers/libgda-ldap.la +lib/libgda-%%VERSION%%/providers/libgda-ldap.so +libdata/pkgconfig/libgda-ldap-%%VERSION%%.pc +share/libgda-%%VERSION%%/ldap_specs_auth.xml +share/libgda-%%VERSION%%/ldap_specs_dsn.xml Modified: head/databases/libgda4-mdb/Makefile ============================================================================== --- head/databases/libgda4-mdb/Makefile Tue Mar 19 09:39:43 2013 (r314629) +++ head/databases/libgda4-mdb/Makefile Tue Mar 19 10:26:51 2013 (r314630) @@ -1,14 +1,10 @@ -# New ports collection makefile for: libgda2 -# Date created: 02 June 2002 -# Whom: Joe Marcus Clarke -# +# Created by: Joe Marcus Clarke # $FreeBSD$ -# $MCom: ports/databases/libgda4-mdb/Makefile,v 1.1 2008/08/18 23:53:35 kwm Exp $ -# +# $MCom: ports/databases/libgda4-mdb/Makefile,v 1.5 2012/03/13 01:34:31 mezz Exp $ -PORTREVISION?= 1 +PORTREVISION= 0 CATEGORIES= databases gnome -PKGNAMESUFFIX?= -mdb +PKGNAMESUFFIX= 4-mdb MAINTAINER= gnome@FreeBSD.org COMMENT= Provides mdb backend for the libgda4 library Modified: head/databases/libgda4-mysql/Makefile ============================================================================== --- head/databases/libgda4-mysql/Makefile Tue Mar 19 09:39:43 2013 (r314629) +++ head/databases/libgda4-mysql/Makefile Tue Mar 19 10:26:51 2013 (r314630) @@ -1,14 +1,10 @@ -# New ports collection makefile for: libgda2 -# Date created: 02 June 2002 -# Whom: Joe Marcus Clarke -# +# Created by: Joe Marcus Clarke # $FreeBSD$ -# $MCom: ports/databases/libgda4-mysql/Makefile,v 1.3 2010/10/18 12:47:12 kwm Exp $ -# +# $MCom: ports/databases/libgda4-mysql/Makefile,v 1.7 2011/10/15 15:18:36 kwm Exp $ -PORTREVISION?= 2 +PORTREVISION= 0 CATEGORIES= databases gnome -PKGNAMESUFFIX?= -mysql +PKGNAMESUFFIX= 4-mysql MAINTAINER= gnome@FreeBSD.org COMMENT= Provides MySQL backend for the libgda4 library Modified: head/databases/libgda4-postgresql/Makefile ============================================================================== --- head/databases/libgda4-postgresql/Makefile Tue Mar 19 09:39:43 2013 (r314629) +++ head/databases/libgda4-postgresql/Makefile Tue Mar 19 10:26:51 2013 (r314630) @@ -1,17 +1,13 @@ -# New ports collection makefile for: libgda2 -# Date created: 02 June 2002 -# Whom: Joe Marcus Clarke -# +# Created by: Joe Marcus Clarke # $FreeBSD$ -# $MCom: ports/databases/libgda4-postgresql/Makefile,v 1.3 2010/10/18 12:47:12 kwm Exp $ -# +# $MCom: ports/databases/libgda4-postgresql/Makefile,v 1.7 2012/03/13 01:34:31 mezz Exp $ -PORTREVISION?= 1 +PORTREVISION= 0 CATEGORIES= databases gnome -PKGNAMESUFFIX?= -postgresql +PKGNAMESUFFIX= 4-postgresql MAINTAINER= gnome@FreeBSD.org -COMMENT= Provides postgresql access for the libgda4 library +COMMENT= Provides PostgreSQL access for the libgda4 library MASTERDIR= ${.CURDIR}/../libgda4 BUILD_WRKSRC= ${WRKSRC}/providers/postgres/ Modified: head/databases/libgda4-reference/Makefile ============================================================================== --- head/databases/libgda4-reference/Makefile Tue Mar 19 09:39:43 2013 (r314629) +++ head/databases/libgda4-reference/Makefile Tue Mar 19 10:26:51 2013 (r314630) @@ -1,9 +1,5 @@ -# New ports collection makefile for: libgda3-reference -# Date created: 09 May 2006 -# Whom: Jean-Yves Lefort -# +# Created by: Jean-Yves Lefort # $FreeBSD$ -# $MCOM$ PORTREVISION= 0 Modified: head/databases/libgda4/Makefile ============================================================================== --- head/databases/libgda4/Makefile Tue Mar 19 09:39:43 2013 (r314629) +++ head/databases/libgda4/Makefile Tue Mar 19 10:26:51 2013 (r314630) @@ -1,69 +1,83 @@ # Created by: Joe Marcus Clarke # $FreeBSD$ -# $MCom: ports/databases/libgda4/Makefile,v 1.14 2010/11/14 20:57:58 kwm Exp $ +# $MCom: ports/databases/libgda4/Makefile,v 1.27 2012/09/01 23:02:08 mezz Exp $ -PORTNAME= libgda4 -PORTVERSION?= 4.2.5 -PORTREVISION?= 2 +PORTNAME= libgda +PORTVERSION= 4.2.12 +PORTREVISION?= 0 CATEGORIES= databases gnome MASTER_SITES= GNOME -MASTER_SITE_SUBDIR= sources/${PORTNAME:S/4$//}/${PORTVERSION:R} -DISTNAME= libgda-${PORTVERSION} +PKGNAMESUFFIX?= 4 DIST_SUBDIR= gnome2 -MAINTAINER?= gnome@FreeBSD.org +MAINTAINER= gnome@FreeBSD.org COMMENT?= Provides uniform access to different kinds of data sources -USE_BZIP2= yes +CONFLICTS= libgda5-ui-[0-9]* + +USE_XZ= yes LIBGDA4_SLAVE?= no .if !defined(REFERENCE_PORT) -BUILD_DEPENDS= g-ir-scanner:${PORTSDIR}/devel/gobject-introspection -LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ - gcrypt.18:${PORTSDIR}/security/libgcrypt \ - soup-2.4.1:${PORTSDIR}/devel/libsoup \ - json-glib-1.0.0:${PORTSDIR}/devel/json-glib -RUN_DEPENDS= ${LOCALBASE}/lib/girepository-1.0/GObject-2.0.typelib:${PORTSDIR}/devel/gobject-introspection +LIB_DEPENDS= gcrypt:${PORTSDIR}/security/libgcrypt \ + json-glib-1.0:${PORTSDIR}/devel/json-glib USE_AUTOTOOLS= libtool USE_GETTEXT= yes USE_GMAKE= yes -USE_GNOME= gnomeprefix gnomehack glib20 libxslt intlhack referencehack +USES= pathfix +USE_GNOME= gnomeprefix glib20 libxslt intlhack referencehack USE_LDCONFIG= yes GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE=yes CONFIGURE_ARGS= --without-oracle \ --disable-crypto \ --enable-introspection=no -CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -lintl" CPPFLAGS+= -I${LOCALBASE}/include +LDDFLAGS+= -L${LOCALBASE}/lib .if ${LIBGDA4_SLAVE}=="no" -OPTIONS= UI "Build UI tools" on -.endif - -.if defined(WITH_UI) -INSTALLS_ICONS= yes +OPTIONS_DEFINE= UI SOUP KEYRING +OPTIONS_DEFAULT=UI +UI_DESC= Build UI tools +SOUP_DESC= Web provider +KEYRING_DESC= Support gnome-keyring .endif .include -#VERSION= ${PORTVERSION:R} VERSION= 4.0 PLIST_SUB= VERSION=${VERSION} .if ${LIBGDA4_SLAVE}=="no" -.if defined(WITH_UI) +.if ${PORT_OPTIONS:MUI} CONFIGURE_ARGS+=--with-ui BUILD_DEPENDS+= xml2po:${PORTSDIR}/textproc/gnome-doc-utils USE_GNOME+= gtk20 +INSTALLS_ICONS= yes PLIST_SUB+= UI="" .else CONFIGURE_ARGS+=--without-ui PLIST_SUB+= UI="@comment " .endif +.if ${PORT_OPTIONS:MSOUP} +CONFIGURE_ARGS+=--with-libsoup +LIB_DEPENDS+= soup-2.4:${PORTSDIR}/devel/libsoup +PLIST_SUB+= WEB="" +.else +CONFIGURE_ARGS+=--without-libsoup +PLIST_SUB+= WEB="@comment " +.endif + +.if ${PORT_OPTIONS:MKEYRING} +CONFIGURE_ARGS+=--with-gnome-keyring +LIB_DEPENDS+= gnome-keyring:${PORTSDIR}/security/libgnome-keyring +.else +CONFIGURE_ARGS+=--without-gnome-keyring +.endif + MAN1= gda-sql.1 gda-sql-4.0.1 .else USE_GNOME+= libgda4 @@ -76,6 +90,13 @@ CONFIGURE_ARGS+= --with-bdb=${LOCALBASE} CONFIGURE_ARGS+= --without-bdb .endif +.if ${LIBGDA4_SLAVE}=="ldap" +USE_OPENLDAP= yes +CONFIGURE_ARGS+= --with-ldap=${LOCALBASE} +.else +CONFIGURE_ARGS+= --without-ldap +.endif + .if ${LIBGDA4_SLAVE}=="mysql" USE_MYSQL= yes CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} @@ -90,16 +111,9 @@ CONFIGURE_ARGS+= --with-postgres=${LOCAL CONFIGURE_ARGS+= --without-postgres .endif -.if ${LIBGDA4_SLAVE}=="firebird" -LIB_DEPENDS+= gds.2:${PORTSDIR}/databases/firebird2-client -CONFIGURE_ARGS+= --with-firebird=${LOCALBASE} -.else -CONFIGURE_ARGS+= --without-firebird -.endif - # MDB (MS Access) .if ${LIBGDA4_SLAVE}=="mdb" -LIB_DEPENDS+= mdbsql.0:${PORTSDIR}/databases/mdbtools +LIB_DEPENDS+= mdbsql:${PORTSDIR}/databases/mdbtools CONFIGURE_ARGS+= --with-mdb=${LOCALBASE} .else CONFIGURE_ARGS+= --without-mdb @@ -125,7 +139,7 @@ post-patch: ${WRKSRC}/providers/bdb/gda-bdb-test.c .if ${LIBGDA4_SLAVE}!="no" #. for d in msql firebird odbc freetds mdb ldap mysql sqlite postgres -. for d in bdb jdbc mdb mysql postgres reuseable/postgres reuseable/mysql +. for d in bdb jdbc mdb mysql postgres reuseable/postgres reuseable/mysql ldap @${REINPLACE_CMD} -e 's|$$(top_builddir)/libgda/libgda-4.0.la|${LOCALBASE}/lib/libgda-4.0.la|g' \ ${WRKSRC}/providers/${d}/Makefile.in . endfor @@ -146,11 +160,6 @@ post-install: ${PREFIX}/etc/libgda-${VERSION}/config.default .endif -.include - -.if ${LIBGDA4_SLAVE}=="jdbc" && ${OSVERSION} < 800000 -BROKEN= does not compile on 7.x -.endif +.include -.include .endif Modified: head/databases/libgda4/distinfo ============================================================================== --- head/databases/libgda4/distinfo Tue Mar 19 09:39:43 2013 (r314629) +++ head/databases/libgda4/distinfo Tue Mar 19 10:26:51 2013 (r314630) @@ -1,2 +1,2 @@ -SHA256 (gnome2/libgda-4.2.5.tar.bz2) = b98d6063469a1ba8226d94800732544be629c55132516de741c937e8bf175f13 -SIZE (gnome2/libgda-4.2.5.tar.bz2) = 15196398 +SHA256 (gnome2/libgda-4.2.12.tar.xz) = 636c17d0a7380d77eb89c19426dc62580f900a86b9dd93cb0b03210ff77769f9 +SIZE (gnome2/libgda-4.2.12.tar.xz) = 11238088 Modified: head/databases/libgda4/pkg-plist ============================================================================== --- head/databases/libgda4/pkg-plist Tue Mar 19 09:39:43 2013 (r314629) +++ head/databases/libgda4/pkg-plist Tue Mar 19 10:26:51 2013 (r314630) @@ -7,13 +7,6 @@ bin/gda-list-server-op-%%VERSION%% bin/gda-sql bin/gda-sql-%%VERSION%% bin/gda-test-connection-%%VERSION%% -bin/gda_trml2html/__init__.py -bin/gda_trml2html/trml2html.py -bin/gda_trml2html/utils.py -bin/gda_trml2pdf/__init__.py -bin/gda_trml2pdf/color.py -bin/gda_trml2pdf/trml2pdf.py -bin/gda_trml2pdf/utils.py %%UI%%bin/gdaui-demo-%%VERSION%% @unexec if cmp -s %D/etc/libgda-%%VERSION%%/config %D/etc/libgda-%%VERSION%%/config.default; then rm -f %D/etc/libgda-%%VERSION%%/config; fi etc/libgda-%%VERSION%%/config.default @@ -36,6 +29,8 @@ include/libgda-%%VERSION%%/libgda-report %%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-data-store.h %%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-decl.h %%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-easy.h +%%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-entry-shell.h +%%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-entry-wrapper.h %%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-enum-types.h %%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-enums.h %%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-form.h @@ -155,9 +150,9 @@ lib/libgda-%%VERSION%%.so.5 %%UI%%lib/libgda-%%VERSION%%/plugins/libgda-ui-plugins.a %%UI%%lib/libgda-%%VERSION%%/plugins/libgda-ui-plugins.la %%UI%%lib/libgda-%%VERSION%%/plugins/libgda-ui-plugins.so -lib/libgda-%%VERSION%%/providers/libgda-web.a -lib/libgda-%%VERSION%%/providers/libgda-web.la -lib/libgda-%%VERSION%%/providers/libgda-web.so +%%WEB%%lib/libgda-%%VERSION%%/providers/libgda-web.a +%%WEB%%lib/libgda-%%VERSION%%/providers/libgda-web.la +%%WEB%%lib/libgda-%%VERSION%%/providers/libgda-web.so lib/libgda-%%VERSION%%/providers/libgda-sqlite.a lib/libgda-%%VERSION%%/providers/libgda-sqlite.la lib/libgda-%%VERSION%%/providers/libgda-sqlite.so @@ -177,10 +172,354 @@ libdata/pkgconfig/libgda-%%VERSION%%.pc libdata/pkgconfig/libgda-report-%%VERSION%%.pc libdata/pkgconfig/libgda-sqlite-%%VERSION%%.pc %%UI%%libdata/pkgconfig/libgda-ui-%%VERSION%%.pc -libdata/pkgconfig/libgda-web-%%VERSION%%.pc +%%WEB%%libdata/pkgconfig/libgda-web-%%VERSION%%.pc libdata/pkgconfig/libgda-xslt-%%VERSION%%.pc %%UI%%share/applications/gda-browser-%%VERSION%%.desktop %%UI%%share/applications/gda-control-center-%%VERSION%%.desktop +%%UI%%share/doc/gda-browser/UILayout.png +%%UI%%share/doc/gda-browser/code_orga.html +%%UI%%share/doc/gda-browser/core.html +%%UI%%share/doc/gda-browser/extrawidgets.html +%%UI%%share/doc/gda-browser/fdl-section1.html +%%UI%%share/doc/gda-browser/fdl-section10.html +%%UI%%share/doc/gda-browser/fdl-section2.html +%%UI%%share/doc/gda-browser/fdl-section3.html +%%UI%%share/doc/gda-browser/fdl-section4.html +%%UI%%share/doc/gda-browser/fdl-section5.html +%%UI%%share/doc/gda-browser/fdl-section6.html +%%UI%%share/doc/gda-browser/fdl-section7.html +%%UI%%share/doc/gda-browser/fdl-section8.html +%%UI%%share/doc/gda-browser/fdl-section9.html +%%UI%%share/doc/gda-browser/fdl-using.html +%%UI%%share/doc/gda-browser/fdl.html +%%UI%%share/doc/gda-browser/gda-browser-Support-functions.html +%%UI%%share/doc/gda-browser/gda-browser-browser-connection.html +%%UI%%share/doc/gda-browser/gda-browser-browser-core.html +%%UI%%share/doc/gda-browser/gda-browser-browser-favorites.html +%%UI%%share/doc/gda-browser/gda-browser-browser-page.html +%%UI%%share/doc/gda-browser/gda-browser-browser-perspective.html +%%UI%%share/doc/gda-browser/gda-browser-browser-window.html +%%UI%%share/doc/gda-browser/gda-browser-cc-gray-bar.html +%%UI%%share/doc/gda-browser/gda-browser-data-manager-perspective.html +%%UI%%share/doc/gda-browser/gda-browser-mgr-favorites.html +%%UI%%share/doc/gda-browser/gda-browser-popup-container.html +%%UI%%share/doc/gda-browser/gda-browser-query-exec-perspective.html +%%UI%%share/doc/gda-browser/gda-browser-schema-browser-perspective.html +%%UI%%share/doc/gda-browser/gda-browser-ui-formgrid.html +%%UI%%share/doc/gda-browser/gda-browser.devhelp2 +%%UI%%share/doc/gda-browser/home.png +%%UI%%share/doc/gda-browser/index.html +%%UI%%share/doc/gda-browser/index.sgml +%%UI%%share/doc/gda-browser/left.png +%%UI%%share/doc/gda-browser/part_api.html +%%UI%%share/doc/gda-browser/part_begin.html +%%UI%%share/doc/gda-browser/part_index.html +%%UI%%share/doc/gda-browser/perspectives.html +%%UI%%share/doc/gda-browser/prog_struct.html +%%UI%%share/doc/gda-browser/right.png +%%UI%%share/doc/gda-browser/style.css +%%UI%%share/doc/gda-browser/up.png +%%UI%%share/doc/gda-browser/why.html +%%UI%%share/doc/gda-browser/windows.html +share/doc/libgda-%%VERSION%%/DataModels.png +share/doc/libgda-%%VERSION%%/GdaBatch.html +share/doc/libgda-%%VERSION%%/GdaBlobOp.html +share/doc/libgda-%%VERSION%%/GdaColumn.html +share/doc/libgda-%%VERSION%%/GdaConnection.html +share/doc/libgda-%%VERSION%%/GdaConnectionEvent.html +share/doc/libgda-%%VERSION%%/GdaDataAccessWrapper.html +share/doc/libgda-%%VERSION%%/GdaDataModel.html +share/doc/libgda-%%VERSION%%/GdaDataModelArray.html +share/doc/libgda-%%VERSION%%/GdaDataModelBdb.html +share/doc/libgda-%%VERSION%%/GdaDataModelDir.html +share/doc/libgda-%%VERSION%%/GdaDataModelImport.html +share/doc/libgda-%%VERSION%%/GdaDataModelIter.html +share/doc/libgda-%%VERSION%%/GdaDataModelIter.png +share/doc/libgda-%%VERSION%%/GdaDataProxy.html +share/doc/libgda-%%VERSION%%/GdaDataSelect.html +share/doc/libgda-%%VERSION%%/GdaHandlerBin.html +share/doc/libgda-%%VERSION%%/GdaHandlerBoolean.html +share/doc/libgda-%%VERSION%%/GdaHandlerNumerical.html +share/doc/libgda-%%VERSION%%/GdaHandlerString.html +share/doc/libgda-%%VERSION%%/GdaHandlerTime.html +share/doc/libgda-%%VERSION%%/GdaHandlerType.html +share/doc/libgda-%%VERSION%%/GdaHolder.html +share/doc/libgda-%%VERSION%%/GdaLockable.html +share/doc/libgda-%%VERSION%%/GdaMetaStore.html +share/doc/libgda-%%VERSION%%/GdaMetaStoreCustomData.html +share/doc/libgda-%%VERSION%%/GdaMetaStruct.html +share/doc/libgda-%%VERSION%%/GdaPStmt.html +share/doc/libgda-%%VERSION%%/GdaReportDocbookDocument.html +share/doc/libgda-%%VERSION%%/GdaReportDocument.html +share/doc/libgda-%%VERSION%%/GdaReportEngine.html +share/doc/libgda-%%VERSION%%/GdaReportRmlDocument.html +share/doc/libgda-%%VERSION%%/GdaRow.html +share/doc/libgda-%%VERSION%%/GdaServerOperation.html +share/doc/libgda-%%VERSION%%/GdaServerProvider.html +share/doc/libgda-%%VERSION%%/GdaSet.html +share/doc/libgda-%%VERSION%%/GdaSqlBuilder.html +share/doc/libgda-%%VERSION%%/GdaSqlParser.html +share/doc/libgda-%%VERSION%%/GdaStatement.html +share/doc/libgda-%%VERSION%%/GdaStatement.png +share/doc/libgda-%%VERSION%%/GdaThreadWrapper.html +share/doc/libgda-%%VERSION%%/GdaTransactionStatus.html +share/doc/libgda-%%VERSION%%/GdaTree.html +share/doc/libgda-%%VERSION%%/GdaTreeManager.html +share/doc/libgda-%%VERSION%%/GdaTreeMgrColumns.html +share/doc/libgda-%%VERSION%%/GdaTreeMgrLabel.html +share/doc/libgda-%%VERSION%%/GdaTreeMgrSchemas.html +share/doc/libgda-%%VERSION%%/GdaTreeMgrSelect.html +share/doc/libgda-%%VERSION%%/GdaTreeMgrTables.html +share/doc/libgda-%%VERSION%%/GdaTreeNode.html +share/doc/libgda-%%VERSION%%/GdaVconnectionDataModel.html +share/doc/libgda-%%VERSION%%/GdaVconnectionHub.html +share/doc/libgda-%%VERSION%%/GdaVirtualConnection.html +share/doc/libgda-%%VERSION%%/GdaVirtualProvider.html +share/doc/libgda-%%VERSION%%/GdaVproviderDataModel.html +share/doc/libgda-%%VERSION%%/GdaVproviderHub.html +share/doc/libgda-%%VERSION%%/GdauiBasicForm.html +share/doc/libgda-%%VERSION%%/GdauiCloud.html +share/doc/libgda-%%VERSION%%/GdauiCombo.html +share/doc/libgda-%%VERSION%%/GdauiDataEntry.html +share/doc/libgda-%%VERSION%%/GdauiDataFilter.html +share/doc/libgda-%%VERSION%%/GdauiDataProxy.html +share/doc/libgda-%%VERSION%%/GdauiDataProxyInfo.html +share/doc/libgda-%%VERSION%%/GdauiDataSelector.html +share/doc/libgda-%%VERSION%%/GdauiDataStore.html +share/doc/libgda-%%VERSION%%/GdauiForm.html +share/doc/libgda-%%VERSION%%/GdauiGrid.html +share/doc/libgda-%%VERSION%%/GdauiLogin.html +share/doc/libgda-%%VERSION%%/GdauiProviderSelector.html +share/doc/libgda-%%VERSION%%/GdauiRawForm.html +share/doc/libgda-%%VERSION%%/GdauiRawGrid.html +share/doc/libgda-%%VERSION%%/GdauiRtEditor.html +share/doc/libgda-%%VERSION%%/GdauiServerOperation.html +share/doc/libgda-%%VERSION%%/GdauiTreeStore.html +share/doc/libgda-%%VERSION%%/MetaStore1.png +share/doc/libgda-%%VERSION%%/MetaStore2.png +share/doc/libgda-%%VERSION%%/SqlIdentifiers.png +share/doc/libgda-%%VERSION%%/architecture.html +share/doc/libgda-%%VERSION%%/architecture.png +share/doc/libgda-%%VERSION%%/blobs_example.html +share/doc/libgda-%%VERSION%%/ch04.html +share/doc/libgda-%%VERSION%%/ch06s03.html +share/doc/libgda-%%VERSION%%/ch07s02.html +share/doc/libgda-%%VERSION%%/ch07s03.html +share/doc/libgda-%%VERSION%%/ch08s02.html +share/doc/libgda-%%VERSION%%/ch08s03.html +share/doc/libgda-%%VERSION%%/ch08s07.html +share/doc/libgda-%%VERSION%%/ch11s02.html +share/doc/libgda-%%VERSION%%/ch11s07.html +share/doc/libgda-%%VERSION%%/ch11s08.html +share/doc/libgda-%%VERSION%%/ch11s11.html +share/doc/libgda-%%VERSION%%/ch11s12.html +share/doc/libgda-%%VERSION%%/ch11s13.html +share/doc/libgda-%%VERSION%%/ch12.html +share/doc/libgda-%%VERSION%%/ch20.html +share/doc/libgda-%%VERSION%%/ch21.html +share/doc/libgda-%%VERSION%%/ch32.html +share/doc/libgda-%%VERSION%%/ch35.html +share/doc/libgda-%%VERSION%%/ch36s02.html +share/doc/libgda-%%VERSION%%/ch36s03.html +share/doc/libgda-%%VERSION%%/ch38s02.html +share/doc/libgda-%%VERSION%%/ch39s02.html +share/doc/libgda-%%VERSION%%/ch39s03.html +share/doc/libgda-%%VERSION%%/ch39s04.html +share/doc/libgda-%%VERSION%%/ch41s02.html +share/doc/libgda-%%VERSION%%/ch41s03.html +share/doc/libgda-%%VERSION%%/ch41s04.html +share/doc/libgda-%%VERSION%%/ch41s05.html +share/doc/libgda-%%VERSION%%/ch41s06.html +share/doc/libgda-%%VERSION%%/ch41s07.html +share/doc/libgda-%%VERSION%%/ch41s08.html +share/doc/libgda-%%VERSION%%/ch41s10.html +share/doc/libgda-%%VERSION%%/ch44s02.html +share/doc/libgda-%%VERSION%%/ch46s02.html +share/doc/libgda-%%VERSION%%/ch46s03.html +share/doc/libgda-%%VERSION%%/ch46s04.html +share/doc/libgda-%%VERSION%%/ch46s05.html +share/doc/libgda-%%VERSION%%/ch46s06.html +share/doc/libgda-%%VERSION%%/ch46s07.html +share/doc/libgda-%%VERSION%%/ch46s08.html +share/doc/libgda-%%VERSION%%/ch47s02.html +share/doc/libgda-%%VERSION%%/ch47s03.html +share/doc/libgda-%%VERSION%%/ch47s04.html +share/doc/libgda-%%VERSION%%/ch47s05.html +share/doc/libgda-%%VERSION%%/compiling.html +share/doc/libgda-%%VERSION%%/connection.html +share/doc/libgda-%%VERSION%%/connections.html +share/doc/libgda-%%VERSION%%/data-model.html +share/doc/libgda-%%VERSION%%/data-select.html +share/doc/libgda-%%VERSION%%/data_conv.html +share/doc/libgda-%%VERSION%%/data_models.html +share/doc/libgda-%%VERSION%%/data_proxy1.png +share/doc/libgda-%%VERSION%%/data_proxy2.png +share/doc/libgda-%%VERSION%%/data_proxy3.png +share/doc/libgda-%%VERSION%%/data_proxy4.png +share/doc/libgda-%%VERSION%%/data_proxy5.png +share/doc/libgda-%%VERSION%%/data_validation_holder.png +share/doc/libgda-%%VERSION%%/data_validation_proxy.png +share/doc/libgda-%%VERSION%%/data_validation_set.png +share/doc/libgda-%%VERSION%%/ddl_example.html +share/doc/libgda-%%VERSION%%/fdl-section1.html +share/doc/libgda-%%VERSION%%/fdl-section10.html +share/doc/libgda-%%VERSION%%/fdl-section2.html +share/doc/libgda-%%VERSION%%/fdl-section3.html +share/doc/libgda-%%VERSION%%/fdl-section4.html +share/doc/libgda-%%VERSION%%/fdl-section5.html +share/doc/libgda-%%VERSION%%/fdl-section6.html +share/doc/libgda-%%VERSION%%/fdl-section7.html +share/doc/libgda-%%VERSION%%/fdl-section8.html +share/doc/libgda-%%VERSION%%/fdl-section9.html +share/doc/libgda-%%VERSION%%/fdl-using.html +share/doc/libgda-%%VERSION%%/fdl.html +share/doc/libgda-%%VERSION%%/features.html +share/doc/libgda-%%VERSION%%/gda-dict.html +share/doc/libgda-%%VERSION%%/gda-sql-graph.png +share/doc/libgda-%%VERSION%%/gda-sql-manual-dsn.html +share/doc/libgda-%%VERSION%%/gda-sql-manual-icommands.html +share/doc/libgda-%%VERSION%%/gda-sql-manual-open.html +share/doc/libgda-%%VERSION%%/gda-sql-manual-run.html +share/doc/libgda-%%VERSION%%/gda-sql.html +share/doc/libgda-%%VERSION%%/gen:sql_identifiers.html +share/doc/libgda-%%VERSION%%/gen_blobs.html +share/doc/libgda-%%VERSION%%/getting_started.html +share/doc/libgda-%%VERSION%%/home.png +share/doc/libgda-%%VERSION%%/howto-exec-non-select.html +share/doc/libgda-%%VERSION%%/howto-exec-select.html +share/doc/libgda-%%VERSION%%/howto-exec.png +share/doc/libgda-%%VERSION%%/howto-meta1.html +share/doc/libgda-%%VERSION%%/howto-meta2.html +share/doc/libgda-%%VERSION%%/howto-modify-select.html +share/doc/libgda-%%VERSION%%/howto-sqlbuilder.html +share/doc/libgda-%%VERSION%%/howto.html +share/doc/libgda-%%VERSION%%/i_s_data_types.png +share/doc/libgda-%%VERSION%%/index-4-2-1.html +share/doc/libgda-%%VERSION%%/index-4-2-10.html +share/doc/libgda-%%VERSION%%/index-4-2-2.html +share/doc/libgda-%%VERSION%%/index-4-2-3.html +share/doc/libgda-%%VERSION%%/index-4-2-4.html +share/doc/libgda-%%VERSION%%/index-4-2-5.html +share/doc/libgda-%%VERSION%%/index-4-2-6.html +share/doc/libgda-%%VERSION%%/index-4-2-7.html +share/doc/libgda-%%VERSION%%/index-4-2-8.html +share/doc/libgda-%%VERSION%%/index-4-2-9.html +share/doc/libgda-%%VERSION%%/index-4-2.html +share/doc/libgda-%%VERSION%%/index-deprecated.html +share/doc/libgda-%%VERSION%%/index.html +share/doc/libgda-%%VERSION%%/index.sgml +share/doc/libgda-%%VERSION%%/index_main.html +share/doc/libgda-%%VERSION%%/information_schema.html +share/doc/libgda-%%VERSION%%/information_schema.png +share/doc/libgda-%%VERSION%%/init_config.html +share/doc/libgda-%%VERSION%%/installation-configuring.html +share/doc/libgda-%%VERSION%%/installation-installing.html +share/doc/libgda-%%VERSION%%/installation.html +share/doc/libgda-%%VERSION%%/introduction.html +share/doc/libgda-%%VERSION%%/left.png +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Attributes-manager.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Configuration.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Convenience-functions.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Default-Data-handlers.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Gda-Value.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaDataComparator.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaMutex.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaRepetitiveStatement.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaServerOperation-individual-nodes.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaServerOperation-sequences.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaSqlStatement.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaXaTransaction.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Libgda-Initialization.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-LibgdaUI-Initialization.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Logging.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Misc-API.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Quark-lists.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-SQL-rendering-API.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Subclassing-GdaDataSelect.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-UI-Utility-functions.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-UI-plugins.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Utility-functions.html +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%.devhelp2 +share/doc/libgda-%%VERSION%%/libgda-list-server-op.html +share/doc/libgda-%%VERSION%%/libgda-packaging.html +share/doc/libgda-%%VERSION%%/libgda-provider-blobop.html +share/doc/libgda-%%VERSION%%/libgda-provider-class.html +share/doc/libgda-%%VERSION%%/libgda-provider-pack.html +share/doc/libgda-%%VERSION%%/libgda-provider-parser.html +share/doc/libgda-%%VERSION%%/libgda-provider-recordset.html +share/doc/libgda-%%VERSION%%/libgda-reports-introduction.html +share/doc/libgda-%%VERSION%%/libgda-sql.html +share/doc/libgda-%%VERSION%%/libgda-tools-controlcenter.html +share/doc/libgda-%%VERSION%%/libgda-tools-gdabrowser.html +share/doc/libgda-%%VERSION%%/libgda-tools-introduction.html +share/doc/libgda-%%VERSION%%/libgda-tools-list-config.html +share/doc/libgda-%%VERSION%%/libgda-tools-test-connection.html +share/doc/libgda-%%VERSION%%/libgda-xslt-api.html +share/doc/libgda-%%VERSION%%/libgda-xslt-introduction.html +share/doc/libgda-%%VERSION%%/libgdaui-packaging.html +share/doc/libgda-%%VERSION%%/limitations.html +share/doc/libgda-%%VERSION%%/limitations_jdbc.html +share/doc/libgda-%%VERSION%%/limitations_ldap.html +share/doc/libgda-%%VERSION%%/limitations_mysql.html +share/doc/libgda-%%VERSION%%/limitations_oracle.html +share/doc/libgda-%%VERSION%%/limitations_postgres.html +share/doc/libgda-%%VERSION%%/limitations_sqlcipher.html +share/doc/libgda-%%VERSION%%/limitations_sqlite.html +share/doc/libgda-%%VERSION%%/main_example.html +share/doc/libgda-%%VERSION%%/managing-errors.html +share/doc/libgda-%%VERSION%%/migration-1.html +share/doc/libgda-%%VERSION%%/migration-2-dict.html +share/doc/libgda-%%VERSION%%/migration-2-exec.html +share/doc/libgda-%%VERSION%%/migration-2-report.html +share/doc/libgda-%%VERSION%%/migration-2.html +share/doc/libgda-%%VERSION%%/misc.html +share/doc/libgda-%%VERSION%%/multi-threading.html +share/doc/libgda-%%VERSION%%/null_handling.html +share/doc/libgda-%%VERSION%%/other_examples.html +share/doc/libgda-%%VERSION%%/parser_gen.png +share/doc/libgda-%%VERSION%%/parser_prov.png +share/doc/libgda-%%VERSION%%/part_begin.html +share/doc/libgda-%%VERSION%%/part_index.html +share/doc/libgda-%%VERSION%%/part_libgda-reports.html +share/doc/libgda-%%VERSION%%/part_libgda-xslt.html +share/doc/libgda-%%VERSION%%/part_libgda_api.html +share/doc/libgda-%%VERSION%%/part_providers.html +share/doc/libgda-%%VERSION%%/part_tools.html +share/doc/libgda-%%VERSION%%/parts.png +share/doc/libgda-%%VERSION%%/prov-metadata.html +share/doc/libgda-%%VERSION%%/provider-notes.html +share/doc/libgda-%%VERSION%%/provider_notes_ldap.html +share/doc/libgda-%%VERSION%%/provider_notes_sqlcipher.html +share/doc/libgda-%%VERSION%%/provider_notes_sqlite.html +share/doc/libgda-%%VERSION%%/psupport.html +share/doc/libgda-%%VERSION%%/pt08.html +share/doc/libgda-%%VERSION%%/right.png +share/doc/libgda-%%VERSION%%/stmt-compound.png +share/doc/libgda-%%VERSION%%/stmt-insert1.png +share/doc/libgda-%%VERSION%%/stmt-insert2.png +share/doc/libgda-%%VERSION%%/stmt-select.png +share/doc/libgda-%%VERSION%%/stmt-unknown.png +share/doc/libgda-%%VERSION%%/stmt-update.png +share/doc/libgda-%%VERSION%%/style.css +share/doc/libgda-%%VERSION%%/thread-wrapper.png +share/doc/libgda-%%VERSION%%/transactions.html +share/doc/libgda-%%VERSION%%/tree-overview.png +share/doc/libgda-%%VERSION%%/tree-overview2.png +share/doc/libgda-%%VERSION%%/trees.html +share/doc/libgda-%%VERSION%%/up.png +share/doc/libgda-%%VERSION%%/vi-basic-form.png +share/doc/libgda-%%VERSION%%/vi-cloud.png +share/doc/libgda-%%VERSION%%/vi-combo.png +share/doc/libgda-%%VERSION%%/vi-data-entry.png +share/doc/libgda-%%VERSION%%/vi-filter.png +share/doc/libgda-%%VERSION%%/vi-info.png +share/doc/libgda-%%VERSION%%/vi-login.png +share/doc/libgda-%%VERSION%%/vi-provider-selector.png +share/doc/libgda-%%VERSION%%/vi-raw-grid.png +share/doc/libgda-%%VERSION%%/vi-rte.png +share/doc/libgda-%%VERSION%%/vi-server-op.png +share/doc/libgda-%%VERSION%%/virtual_connection.html +share/doc/libgda-%%VERSION%%/writable_data_model.png %%UI%%share/gnome/help/gda-browser/C/actions.page %%UI%%share/gnome/help/gda-browser/C/data-manager-perspective.page %%UI%%share/gnome/help/gda-browser/C/data-manager-source-editor.page @@ -200,6 +539,10 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% %%UI%%share/gnome/help/gda-browser/C/figures/declaredfk-dialog.png %%UI%%share/gnome/help/gda-browser/C/figures/declaredfk.png %%UI%%share/gnome/help/gda-browser/C/figures/diagram.png +%%UI%%share/gnome/help/gda-browser/C/figures/ldap-browser-persp.png +%%UI%%share/gnome/help/gda-browser/C/figures/ldap-classes.png +%%UI%%share/gnome/help/gda-browser/C/figures/ldap-search.png +%%UI%%share/gnome/help/gda-browser/C/figures/ldap-table-mapping.png %%UI%%share/gnome/help/gda-browser/C/figures/mainwin.png %%UI%%share/gnome/help/gda-browser/C/figures/query-exec-persp.png %%UI%%share/gnome/help/gda-browser/C/figures/schema-browser-persp.png @@ -207,14 +550,22 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% %%UI%%share/gnome/help/gda-browser/C/figures/trans-begin.png %%UI%%share/gnome/help/gda-browser/C/figures/trans-commit.png %%UI%%share/gnome/help/gda-browser/C/figures/trans-rollback.png +%%UI%%share/gnome/help/gda-browser/C/figures/virtual-cnc-2.png +%%UI%%share/gnome/help/gda-browser/C/figures/virtual-cnc-3.png +%%UI%%share/gnome/help/gda-browser/C/figures/virtual-cnc-4.png +%%UI%%share/gnome/help/gda-browser/C/figures/virtual-cnc-5.png +%%UI%%share/gnome/help/gda-browser/C/figures/virtual-cnc.png %%UI%%share/gnome/help/gda-browser/C/general-ui.page %%UI%%share/gnome/help/gda-browser/C/index.page +%%UI%%share/gnome/help/gda-browser/C/ldap-browser-perspective.page +%%UI%%share/gnome/help/gda-browser/C/ldap-connections.page %%UI%%share/gnome/help/gda-browser/C/legal.xml %%UI%%share/gnome/help/gda-browser/C/query-execution-perspective.page %%UI%%share/gnome/help/gda-browser/C/schema-browser-perspective.page %%UI%%share/gnome/help/gda-browser/C/table-insert-data.page %%UI%%share/gnome/help/gda-browser/C/transactions.page %%UI%%share/gnome/help/gda-browser/C/variables.page +%%UI%%share/gnome/help/gda-browser/C/virtual-connections.page %%UI%%share/gnome/help/gda-browser/de/actions.page %%UI%%share/gnome/help/gda-browser/de/data-manager-perspective.page %%UI%%share/gnome/help/gda-browser/de/data-manager-source-editor.page @@ -234,6 +585,10 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% %%UI%%share/gnome/help/gda-browser/de/figures/declaredfk-dialog.png %%UI%%share/gnome/help/gda-browser/de/figures/declaredfk.png %%UI%%share/gnome/help/gda-browser/de/figures/diagram.png +%%UI%%share/gnome/help/gda-browser/de/figures/ldap-browser-persp.png +%%UI%%share/gnome/help/gda-browser/de/figures/ldap-classes.png +%%UI%%share/gnome/help/gda-browser/de/figures/ldap-search.png +%%UI%%share/gnome/help/gda-browser/de/figures/ldap-table-mapping.png %%UI%%share/gnome/help/gda-browser/de/figures/mainwin.png %%UI%%share/gnome/help/gda-browser/de/figures/query-exec-persp.png %%UI%%share/gnome/help/gda-browser/de/figures/schema-browser-persp.png @@ -241,14 +596,68 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% %%UI%%share/gnome/help/gda-browser/de/figures/trans-begin.png %%UI%%share/gnome/help/gda-browser/de/figures/trans-commit.png %%UI%%share/gnome/help/gda-browser/de/figures/trans-rollback.png +%%UI%%share/gnome/help/gda-browser/de/figures/virtual-cnc-2.png +%%UI%%share/gnome/help/gda-browser/de/figures/virtual-cnc-3.png +%%UI%%share/gnome/help/gda-browser/de/figures/virtual-cnc-4.png +%%UI%%share/gnome/help/gda-browser/de/figures/virtual-cnc-5.png +%%UI%%share/gnome/help/gda-browser/de/figures/virtual-cnc.png %%UI%%share/gnome/help/gda-browser/de/general-ui.page %%UI%%share/gnome/help/gda-browser/de/index.page +%%UI%%share/gnome/help/gda-browser/de/ldap-browser-perspective.page +%%UI%%share/gnome/help/gda-browser/de/ldap-connections.page %%UI%%share/gnome/help/gda-browser/de/legal.xml %%UI%%share/gnome/help/gda-browser/de/query-execution-perspective.page %%UI%%share/gnome/help/gda-browser/de/schema-browser-perspective.page %%UI%%share/gnome/help/gda-browser/de/table-insert-data.page %%UI%%share/gnome/help/gda-browser/de/transactions.page %%UI%%share/gnome/help/gda-browser/de/variables.page +%%UI%%share/gnome/help/gda-browser/de/virtual-connections.page +%%UI%%share/gnome/help/gda-browser/el/actions.page +%%UI%%share/gnome/help/gda-browser/el/data-manager-perspective.page +%%UI%%share/gnome/help/gda-browser/el/data-manager-source-editor.page +%%UI%%share/gnome/help/gda-browser/el/data-manager-xml-syntax.page +%%UI%%share/gnome/help/gda-browser/el/declaredfk.page +%%UI%%share/gnome/help/gda-browser/el/diagram.page +%%UI%%share/gnome/help/gda-browser/el/features.page +%%UI%%share/gnome/help/gda-browser/el/figures/action-1.png +%%UI%%share/gnome/help/gda-browser/el/figures/action-2.png +%%UI%%share/gnome/help/gda-browser/el/figures/action-3.png +%%UI%%share/gnome/help/gda-browser/el/figures/action-4.png +%%UI%%share/gnome/help/gda-browser/el/figures/cnc_open.png +%%UI%%share/gnome/help/gda-browser/el/figures/data-man-mode.png +%%UI%%share/gnome/help/gda-browser/el/figures/data-man-persp.png +%%UI%%share/gnome/help/gda-browser/el/figures/data-man-uicompose.png +%%UI%%share/gnome/help/gda-browser/el/figures/data-man-xmlcompose.png +%%UI%%share/gnome/help/gda-browser/el/figures/declaredfk-dialog.png +%%UI%%share/gnome/help/gda-browser/el/figures/declaredfk.png +%%UI%%share/gnome/help/gda-browser/el/figures/diagram.png +%%UI%%share/gnome/help/gda-browser/el/figures/ldap-browser-persp.png +%%UI%%share/gnome/help/gda-browser/el/figures/ldap-classes.png +%%UI%%share/gnome/help/gda-browser/el/figures/ldap-search.png +%%UI%%share/gnome/help/gda-browser/el/figures/ldap-table-mapping.png +%%UI%%share/gnome/help/gda-browser/el/figures/mainwin.png +%%UI%%share/gnome/help/gda-browser/el/figures/query-exec-persp.png +%%UI%%share/gnome/help/gda-browser/el/figures/schema-browser-persp.png +%%UI%%share/gnome/help/gda-browser/el/figures/table-insert-data.png +%%UI%%share/gnome/help/gda-browser/el/figures/trans-begin.png +%%UI%%share/gnome/help/gda-browser/el/figures/trans-commit.png +%%UI%%share/gnome/help/gda-browser/el/figures/trans-rollback.png +%%UI%%share/gnome/help/gda-browser/el/figures/virtual-cnc-2.png +%%UI%%share/gnome/help/gda-browser/el/figures/virtual-cnc-3.png +%%UI%%share/gnome/help/gda-browser/el/figures/virtual-cnc-4.png +%%UI%%share/gnome/help/gda-browser/el/figures/virtual-cnc-5.png +%%UI%%share/gnome/help/gda-browser/el/figures/virtual-cnc.png +%%UI%%share/gnome/help/gda-browser/el/general-ui.page +%%UI%%share/gnome/help/gda-browser/el/index.page +%%UI%%share/gnome/help/gda-browser/el/ldap-browser-perspective.page +%%UI%%share/gnome/help/gda-browser/el/ldap-connections.page +%%UI%%share/gnome/help/gda-browser/el/legal.xml +%%UI%%share/gnome/help/gda-browser/el/query-execution-perspective.page +%%UI%%share/gnome/help/gda-browser/el/schema-browser-perspective.page +%%UI%%share/gnome/help/gda-browser/el/table-insert-data.page +%%UI%%share/gnome/help/gda-browser/el/transactions.page +%%UI%%share/gnome/help/gda-browser/el/variables.page +%%UI%%share/gnome/help/gda-browser/el/virtual-connections.page %%UI%%share/gnome/help/gda-browser/es/actions.page %%UI%%share/gnome/help/gda-browser/es/data-manager-perspective.page %%UI%%share/gnome/help/gda-browser/es/data-manager-source-editor.page @@ -268,6 +677,10 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% %%UI%%share/gnome/help/gda-browser/es/figures/declaredfk-dialog.png %%UI%%share/gnome/help/gda-browser/es/figures/declaredfk.png %%UI%%share/gnome/help/gda-browser/es/figures/diagram.png +%%UI%%share/gnome/help/gda-browser/es/figures/ldap-browser-persp.png +%%UI%%share/gnome/help/gda-browser/es/figures/ldap-classes.png +%%UI%%share/gnome/help/gda-browser/es/figures/ldap-search.png +%%UI%%share/gnome/help/gda-browser/es/figures/ldap-table-mapping.png %%UI%%share/gnome/help/gda-browser/es/figures/mainwin.png %%UI%%share/gnome/help/gda-browser/es/figures/query-exec-persp.png %%UI%%share/gnome/help/gda-browser/es/figures/schema-browser-persp.png @@ -275,14 +688,68 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% %%UI%%share/gnome/help/gda-browser/es/figures/trans-begin.png %%UI%%share/gnome/help/gda-browser/es/figures/trans-commit.png %%UI%%share/gnome/help/gda-browser/es/figures/trans-rollback.png +%%UI%%share/gnome/help/gda-browser/es/figures/virtual-cnc-2.png +%%UI%%share/gnome/help/gda-browser/es/figures/virtual-cnc-3.png +%%UI%%share/gnome/help/gda-browser/es/figures/virtual-cnc-4.png +%%UI%%share/gnome/help/gda-browser/es/figures/virtual-cnc-5.png +%%UI%%share/gnome/help/gda-browser/es/figures/virtual-cnc.png %%UI%%share/gnome/help/gda-browser/es/general-ui.page %%UI%%share/gnome/help/gda-browser/es/index.page +%%UI%%share/gnome/help/gda-browser/es/ldap-browser-perspective.page +%%UI%%share/gnome/help/gda-browser/es/ldap-connections.page %%UI%%share/gnome/help/gda-browser/es/legal.xml %%UI%%share/gnome/help/gda-browser/es/query-execution-perspective.page %%UI%%share/gnome/help/gda-browser/es/schema-browser-perspective.page %%UI%%share/gnome/help/gda-browser/es/table-insert-data.page %%UI%%share/gnome/help/gda-browser/es/transactions.page %%UI%%share/gnome/help/gda-browser/es/variables.page +%%UI%%share/gnome/help/gda-browser/es/virtual-connections.page +%%UI%%share/gnome/help/gda-browser/gl/actions.page +%%UI%%share/gnome/help/gda-browser/gl/data-manager-perspective.page +%%UI%%share/gnome/help/gda-browser/gl/data-manager-source-editor.page +%%UI%%share/gnome/help/gda-browser/gl/data-manager-xml-syntax.page +%%UI%%share/gnome/help/gda-browser/gl/declaredfk.page +%%UI%%share/gnome/help/gda-browser/gl/diagram.page +%%UI%%share/gnome/help/gda-browser/gl/features.page +%%UI%%share/gnome/help/gda-browser/gl/figures/action-1.png +%%UI%%share/gnome/help/gda-browser/gl/figures/action-2.png +%%UI%%share/gnome/help/gda-browser/gl/figures/action-3.png +%%UI%%share/gnome/help/gda-browser/gl/figures/action-4.png +%%UI%%share/gnome/help/gda-browser/gl/figures/cnc_open.png +%%UI%%share/gnome/help/gda-browser/gl/figures/data-man-mode.png +%%UI%%share/gnome/help/gda-browser/gl/figures/data-man-persp.png +%%UI%%share/gnome/help/gda-browser/gl/figures/data-man-uicompose.png +%%UI%%share/gnome/help/gda-browser/gl/figures/data-man-xmlcompose.png +%%UI%%share/gnome/help/gda-browser/gl/figures/declaredfk-dialog.png +%%UI%%share/gnome/help/gda-browser/gl/figures/declaredfk.png +%%UI%%share/gnome/help/gda-browser/gl/figures/diagram.png +%%UI%%share/gnome/help/gda-browser/gl/figures/ldap-browser-persp.png +%%UI%%share/gnome/help/gda-browser/gl/figures/ldap-classes.png +%%UI%%share/gnome/help/gda-browser/gl/figures/ldap-search.png +%%UI%%share/gnome/help/gda-browser/gl/figures/ldap-table-mapping.png +%%UI%%share/gnome/help/gda-browser/gl/figures/mainwin.png +%%UI%%share/gnome/help/gda-browser/gl/figures/query-exec-persp.png +%%UI%%share/gnome/help/gda-browser/gl/figures/schema-browser-persp.png +%%UI%%share/gnome/help/gda-browser/gl/figures/table-insert-data.png +%%UI%%share/gnome/help/gda-browser/gl/figures/trans-begin.png +%%UI%%share/gnome/help/gda-browser/gl/figures/trans-commit.png +%%UI%%share/gnome/help/gda-browser/gl/figures/trans-rollback.png +%%UI%%share/gnome/help/gda-browser/gl/figures/virtual-cnc-2.png +%%UI%%share/gnome/help/gda-browser/gl/figures/virtual-cnc-3.png +%%UI%%share/gnome/help/gda-browser/gl/figures/virtual-cnc-4.png +%%UI%%share/gnome/help/gda-browser/gl/figures/virtual-cnc-5.png +%%UI%%share/gnome/help/gda-browser/gl/figures/virtual-cnc.png +%%UI%%share/gnome/help/gda-browser/gl/general-ui.page +%%UI%%share/gnome/help/gda-browser/gl/index.page +%%UI%%share/gnome/help/gda-browser/gl/ldap-browser-perspective.page +%%UI%%share/gnome/help/gda-browser/gl/ldap-connections.page +%%UI%%share/gnome/help/gda-browser/gl/legal.xml +%%UI%%share/gnome/help/gda-browser/gl/query-execution-perspective.page +%%UI%%share/gnome/help/gda-browser/gl/schema-browser-perspective.page +%%UI%%share/gnome/help/gda-browser/gl/table-insert-data.page +%%UI%%share/gnome/help/gda-browser/gl/transactions.page +%%UI%%share/gnome/help/gda-browser/gl/variables.page +%%UI%%share/gnome/help/gda-browser/gl/virtual-connections.page %%UI%%share/gnome/help/gda-browser/sl/actions.page %%UI%%share/gnome/help/gda-browser/sl/data-manager-perspective.page %%UI%%share/gnome/help/gda-browser/sl/data-manager-source-editor.page @@ -302,6 +769,10 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% %%UI%%share/gnome/help/gda-browser/sl/figures/declaredfk-dialog.png %%UI%%share/gnome/help/gda-browser/sl/figures/declaredfk.png %%UI%%share/gnome/help/gda-browser/sl/figures/diagram.png +%%UI%%share/gnome/help/gda-browser/sl/figures/ldap-browser-persp.png +%%UI%%share/gnome/help/gda-browser/sl/figures/ldap-classes.png +%%UI%%share/gnome/help/gda-browser/sl/figures/ldap-search.png +%%UI%%share/gnome/help/gda-browser/sl/figures/ldap-table-mapping.png %%UI%%share/gnome/help/gda-browser/sl/figures/mainwin.png %%UI%%share/gnome/help/gda-browser/sl/figures/query-exec-persp.png %%UI%%share/gnome/help/gda-browser/sl/figures/schema-browser-persp.png @@ -309,14 +780,68 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% %%UI%%share/gnome/help/gda-browser/sl/figures/trans-begin.png %%UI%%share/gnome/help/gda-browser/sl/figures/trans-commit.png %%UI%%share/gnome/help/gda-browser/sl/figures/trans-rollback.png +%%UI%%share/gnome/help/gda-browser/sl/figures/virtual-cnc-2.png +%%UI%%share/gnome/help/gda-browser/sl/figures/virtual-cnc-3.png +%%UI%%share/gnome/help/gda-browser/sl/figures/virtual-cnc-4.png +%%UI%%share/gnome/help/gda-browser/sl/figures/virtual-cnc-5.png +%%UI%%share/gnome/help/gda-browser/sl/figures/virtual-cnc.png %%UI%%share/gnome/help/gda-browser/sl/general-ui.page %%UI%%share/gnome/help/gda-browser/sl/index.page +%%UI%%share/gnome/help/gda-browser/sl/ldap-browser-perspective.page +%%UI%%share/gnome/help/gda-browser/sl/ldap-connections.page %%UI%%share/gnome/help/gda-browser/sl/legal.xml %%UI%%share/gnome/help/gda-browser/sl/query-execution-perspective.page %%UI%%share/gnome/help/gda-browser/sl/schema-browser-perspective.page %%UI%%share/gnome/help/gda-browser/sl/table-insert-data.page %%UI%%share/gnome/help/gda-browser/sl/transactions.page %%UI%%share/gnome/help/gda-browser/sl/variables.page +%%UI%%share/gnome/help/gda-browser/sl/virtual-connections.page +%%UI%%share/gnome/help/gda-browser/zh_CN/actions.page +%%UI%%share/gnome/help/gda-browser/zh_CN/data-manager-perspective.page +%%UI%%share/gnome/help/gda-browser/zh_CN/data-manager-source-editor.page +%%UI%%share/gnome/help/gda-browser/zh_CN/data-manager-xml-syntax.page +%%UI%%share/gnome/help/gda-browser/zh_CN/declaredfk.page +%%UI%%share/gnome/help/gda-browser/zh_CN/diagram.page +%%UI%%share/gnome/help/gda-browser/zh_CN/features.page +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/action-1.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/action-2.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/action-3.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/action-4.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/cnc_open.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/data-man-mode.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/data-man-persp.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/data-man-uicompose.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/data-man-xmlcompose.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/declaredfk-dialog.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/declaredfk.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/diagram.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/ldap-browser-persp.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/ldap-classes.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/ldap-search.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/ldap-table-mapping.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/mainwin.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/query-exec-persp.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/schema-browser-persp.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/table-insert-data.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/trans-begin.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/trans-commit.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/trans-rollback.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/virtual-cnc-2.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/virtual-cnc-3.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/virtual-cnc-4.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/virtual-cnc-5.png +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/virtual-cnc.png +%%UI%%share/gnome/help/gda-browser/zh_CN/general-ui.page +%%UI%%share/gnome/help/gda-browser/zh_CN/index.page +%%UI%%share/gnome/help/gda-browser/zh_CN/ldap-browser-perspective.page +%%UI%%share/gnome/help/gda-browser/zh_CN/ldap-connections.page +%%UI%%share/gnome/help/gda-browser/zh_CN/legal.xml +%%UI%%share/gnome/help/gda-browser/zh_CN/query-execution-perspective.page +%%UI%%share/gnome/help/gda-browser/zh_CN/schema-browser-perspective.page +%%UI%%share/gnome/help/gda-browser/zh_CN/table-insert-data.page +%%UI%%share/gnome/help/gda-browser/zh_CN/transactions.page +%%UI%%share/gnome/help/gda-browser/zh_CN/variables.page +%%UI%%share/gnome/help/gda-browser/zh_CN/virtual-connections.page %%UI%%share/icons/hicolor/16x16/apps/gda-control-center.png %%UI%%share/icons/hicolor/22x22/apps/gda-control-center.png *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 13:26:59 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A7827DDB for ; Tue, 19 Mar 2013 13:26:59 +0000 (UTC) (envelope-from portscout@portscout.freebsd.org) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 5036C34B for ; Tue, 19 Mar 2013 13:26:59 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id r2JDQqVN028648 for ; Tue, 19 Mar 2013 09:26:52 -0400 (EDT) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id r2JDQqEQ028462; Tue, 19 Mar 2013 09:26:52 -0400 (EDT) (envelope-from portscout) Message-Id: <201303191326.r2JDQqEQ028462@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Tue, 19 Mar 2013 09:26:52 -0400 From: portscout@portscout.freebsd.org To: gnome@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 13:26:59 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/gnome@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ devel/glibmm-reference | 2.34.1 | 2.35.9 ------------------------------------------------+-----------------+------------ devel/libsoup | 2.40.3 | 2.41.92 ------------------------------------------------+-----------------+------------ devel/libsoup-gnome | 2.40.3 | 2.41.92 ------------------------------------------------+-----------------+------------ devel/libsoup-reference | 2.40.3 | 2.41.92 ------------------------------------------------+-----------------+------------ devel/py-gobject | 2.28.6 | 3.7.92 ------------------------------------------------+-----------------+------------ graphics/gdk-pixbuf2 | 2.26.5 | 2.27.3 ------------------------------------------------+-----------------+------------ graphics/gtk-update-icon-cache | 2.24.17 | 3.7.14 ------------------------------------------------+-----------------+------------ x11-toolkits/gtk30 | 3.6.4 | 3.7.14 ------------------------------------------------+-----------------+------------ x11-toolkits/gtk30-reference | 3.6.4 | 3.7.14 ------------------------------------------------+-----------------+------------ x11-toolkits/pango | 1.30.1 | 1.33.9 ------------------------------------------------+-----------------+------------ x11-toolkits/pango-reference | 1.30.1 | 1.33.9 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 16:56:05 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EE775EE6; Tue, 19 Mar 2013 16:56:05 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-vc0-f179.google.com (mail-vc0-f179.google.com [209.85.220.179]) by mx1.freebsd.org (Postfix) with ESMTP id 7C2BD66C; Tue, 19 Mar 2013 16:56:05 +0000 (UTC) Received: by mail-vc0-f179.google.com with SMTP id gf12so558023vcb.38 for ; Tue, 19 Mar 2013 09:56:04 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=2ftfiTZoYHgfplmIvcR2uddFoD7V2bHPhcm25u+vVIs=; b=SqYXXE7wv/za8+u7dN/NzBqtjuUR3eFGk+99mlQzMyWMaHrWV0zeXqcGMVWfMDJETl /eIlmzG1e7XT5jx7qJ+UTj9KYRo9yZo8FauzXPC0Dpk0NnB9gQrDNRyVtrTk5GjliyA5 E3JMpc8P1XPtj/Nja3Ox+5uqj3F7y+2U/TE5sLp5dc1kumQ6CoALELRXKC837qREQyPI kYmXdKGEtTo5QwzFN+NRjJ6mNCS2+SLkTH21dr3pi8ySoa/F1RXC7GBaeNgfPq2X/mO5 zuyRTmaNNaeBYEt0s4jTtxaVZsBHZhnLIX8n2f3FK4b3ra6lwoikvoWH1K28NjzUXwf3 s/Xw== MIME-Version: 1.0 X-Received: by 10.220.106.14 with SMTP id v14mr3616943vco.2.1363712164075; Tue, 19 Mar 2013 09:56:04 -0700 (PDT) Received: by 10.58.151.65 with HTTP; Tue, 19 Mar 2013 09:56:03 -0700 (PDT) In-Reply-To: <201302231730.r1NHU1LE053503@freefall.freebsd.org> References: <201302231730.r1NHU1LE053503@freefall.freebsd.org> Date: Tue, 19 Mar 2013 11:56:03 -0500 Message-ID: Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order problem From: Jeremy Messenger To: "John W. O'Brien" Content-Type: text/plain; charset=ISO-8859-1 Cc: gnome@freebsd.org, FreeBSD Ports Mailing List , Baptiste Daroussin X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 16:56:06 -0000 Sorry, this is way too long to read. I will just skip the read and post my suggest of solution to this problem in the top of your email. I think the OPTIONS needs to change from ${UNIQUENAME} to ${PKGORIGIN:S/\//_/}. It will be looked like "${PORT_DBDIR}/cat_port/options". Here's example: In bsd.options.mk: ----------------------------------- [...] OPTIONSFILE?= ${PORT_DBDIR}/${PKGORIGIN:S/\//_/}/options ----------------------------------- Then add compatible in somewhere like this: ----------------------------------- .if exist (${PORT_DBDIR}/${UNIQUENAME}/options) @${MV} ${PORT_DBDIR}/${UNIQUENAME} ${PORT_DBDIR}/${PKGORIGIN:S/\//_/} .endif ----------------------------------- Then teach the portmaster about if the port has been moved to the different category or renamed (by read MOVED) then change the ${PORT_DBDIR}/${PKGORIGIN:S/\//_/}. What do anyone think of my suggest solution? I haven't test anything at all, which it's just what I have in my mind right now. On Sat, Feb 23, 2013 at 11:30 AM, John W. O'Brien wrote: > The following reply was made to PR ports/175276; it has been noted by GNATS. > > From: "John W. O'Brien" > To: bug-followup@FreeBSD.org, jhein@symmetricom.com > Cc: freebsd-python@freebsd.org > Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order > problem > Date: Sat, 23 Feb 2013 12:23:35 -0500 > > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > 1. Should this be assigned to freebsd-python@? > > I realize that freebsd-gnome@ is the maintainer, but the root cause > lies with the way Python ports use PKGNAMEPREFIX, and this is not the > only affected port. > > > 2. Allow me to elaborate on the originator's description, for those > interested in the analysis. > > The common use of > > PKGNAMEPREFIX=${PYTHON_PKGNAMEPREFIX} > > depends on lazy evaluation, because the right-hand side is not defined > until the "pre" section of bsd.python.mk. Relatively early on in > bsd.port.mk, we get a default definition for UNIQUENAME based on > PKGNAMEPREFIX, unless LATEST_LINK is already defined, which doesn't > ordinarily happen until the "post" section of bsd.port.mk. Shortly > after that, between the "options" section and the "pre" section of > bsd.port.mk, we include bsd.options.mk which provides a default > definition of OPTIONSFILE, based on UNIQUENAME. At that point in > bsd.options.mk, we haven't yet included bsd.python.mk, so > PYTHON_PKGNAMEPREFIX is undefined. That means that when make reads the > saved options (inside the first pass through bsd.options.mk) thereby > triggering evaluation of OPTIONSFILE, it is as if we hadn't set > PKGNAMEPREFIX at all. > > As the originator points out, the do-config target, where make > performs the work of writing saved options, re-evaluates OPTIONSFILE > after bsd.python.mk sets PYTHON_PKGNAMEPREFIX, because do-config is > defined in the "post" section of bsd.port.mk. > > > 3. What ports are affected? > > Any port that sets PKGNAMEPREFIX equal to a make variable that is not > defined until the "pre" section or later, and fails to work-around the > staggered evaluation by defining one of UNIQUENAME, LATEST_LINK, or > OPTIONSFILE, is broken. It turns out that Python ports are > disproportionately affected, but mainly because Python ports are heavy > users of PKGNAMEPREFIX. The other PKGNAMEPREFIXs are: > > % egrep "^[A-Z_]+_PKGNAMEPREFIX" /usr/ports/Mk/* -h > APACHE_PKGNAMEPREFIX= ap${APACHE_VERSION}- > PYTHON_PKGNAMEPREFIX?= py*- > LUA_PKGNAMEPREFIX?= lua${LUA_VER_STR}- > PYTHON_PKGNAMEPREFIX= py${PYTHON_SUFFIX}- > RUBY_PKGNAMEPREFIX?= ruby${RUBY_SUFFIX}- > > But the distribution among these is heavily skewed toward Python. > > % find /usr/ports -depth 3 -type f -name Makefile \ > | xargs egrep "^OPTIONS_DEFINE" -l \ > | xargs egrep "^(OPTIONSFILE|UNIQUENAME|LATEST_LINK)" -L \ > | xargs egrep '^PKGNAMEPREFIX=.*\$' -h \ > | sed -e "s/[ ]//g" \ > | sort | uniq -c | sort -n > 1 PKGNAMEPREFIX=${APACHE_PKGNAMEPREFIX} > 1 PKGNAMEPREFIX=${DMPKGNAMEPREFIX} > 1 PKGNAMEPREFIX=${DN3DPKGNAMEPREFIX} > 1 PKGNAMEPREFIX=${TGTARCH}-${TGTABI}- > 1 PKGNAMEPREFIX=php${PHP_VER}- > 2 PKGNAMEPREFIX=${LANG_PKGNAME}- > 22 PKGNAMEPREFIX=${PYTHON_PKGNAMEPREFIX} > > (That's supposed to be a tab and a space in the sed command, by the way.) > > So, let's focus on the 22 ports at the end. > > % find /usr/ports -depth 3 -type f -name Makefile \ > | xargs egrep "^OPTIONS_DEFINE" -l \ > | xargs egrep "^(OPTIONSFILE|UNIQUENAME|LATEST_LINK)" -L \ > | xargs egrep '^PKGNAMEPREFIX=.*PYTHON' -l \ > | cut -d/ -f4-5 | sort > astro/py-RO > audio/py-karaoke > audio/py-pyaudio > databases/py-sqlkit > devel/py-bison > devel/py-gobject > devel/py-hgsubversion > dns/ldns > graphics/py-PyX > graphics/py-gdal > mail/py-spf > math/py-sympy > net/py-medusa > security/arm > security/py-volatility > security/py-yara-editor > www/py-django_compressor > www/py-imdbpy > www/py-qp > www/py-qpy > www/py-rhodecode > www/py-satchmo > > I've checked every one of these by running > > make config-conditional > > twice in a row, and every one of them gave me a dialog the second > time, which implies that they are reading and writing saved options in > different places. > > > 4. How can we fix this? > > As I see it, there are at least the following alternatives. > > A) Require each maintainer to choose and implement their preferred > work-around, defining one or more of UNIQUENAME, LATEST_LINK, or > OPTIONSFILE. This is what most affected ports do already, and what the > originator is proposing for this port. 100 ports use > PYTHON_PKGNAMEPREFIX and OPTIONS_DEFINE. 74 of those set OPTIONSFILE, > 3 set LATEST_LINK, and 1 sets UNIQUENAME. > > In this case we should update the documentation in bsd.python.mk and > the Porter's Handbook to make the requirement clear, and consider > implementing a validation check somewhere in /usr/ports/Mk and/or > portlint. > > B) Cause part or all of the "pre" section of bsd.python.mk to be > processed earlier in bsd.port.mk, so that PYTHON_PKGNAMEPREFIX is > defined by the time we hit bsd.options.mk and need OPTIONSFILE for > reading. This would require additional analysis and testing to prevent > collateral breakage, and it would mean that bsd.python.mk becomes a > special case. > > I've skimmed the portion of bsd.python.mk prior to the definition of > PYTHON_PKGNAMEPREFIX, and nothing major jumps out. If there is > interest, I would be glad to prepare a patch at which to throw darts. > > C) Redefine OPTIONSFILE inside bsd.python.mk upon detecting that it > changes after defining PYTHON_PKGNAMEPREFIX, so that OPTIONSFILE is > the same when reading and writing saved options. I think we could do > this without affecting bsd.port.mk, or the ports that have already > implemented a workaround. It would mean that the default behavior when > using PYTHON_PKGNAMEPREFIX is to put saved options in > ${PORT_DBDIR}/${_PNP}${PORTNAME}/options, where _PNP is any literal > used along with PYTHON_PKGNAMEPREFIX in the port's Makefile, which > some might consider a POLA violation. On the other hand, doing one > thing consistently that works is better than doing something that > breaks your port unexpectedly. > > The big problem with this alternative is that PORTNAME by itself is > nowhere near unique enough to avoid conflict with other ports, and > would pretty much require bubbling up the definition of > PYTHON_PKGNAMEPREFIX from bsd.python.mk to each affected port. > > > 5. What is the best alternative? > > I find B very attractive because it frees maintainers from defining an > extra variable if they don't want (i.e. good defaults), but still > allows them to do so if they do want (i.e. good mechanism). It may be > difficult, hackish, and error-prone though. > > Option A would be easiest, and least traumatic both to individual > ports and to the ports infrastructure itself. For this reason alone, A > is probably the right choice for now. > > Sadly, C may be a complete non-starter due to the uniqueness problem, > but I wouldn't rule it out completely as a long-term follow-up to A. > The way I see it working out is in three phases. Phase one is to > implement option A but also invite maintainers to replace > > PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} > > with > > PKGNAMEPREFIX= py${PYTHON_SUFFIX}- > > Phase two is to implement option C. Phase three is to invite > maintainers to remove the option A work-around if they like the > then-default behavior. > > > 6. Conclusion. > > I invite commentary and criticism, especially on the potential > resolutions I proposed. When we reach consensus, I will set about > preparing some patches, if need be, and seeking the help of a friendly > committer. > > Thank you for your kind indulgence. > > Cheers, > John > -----BEGIN PGP SIGNATURE----- > Version: GnuPG v1.4.11 (GNU/Linux) > Comment: Using GnuPG with undefined - http://www.enigmail.net/ > > iQEcBAEBAgAGBQJRKPsXAAoJEEdKvTwaez9w6yEIALFz+xrYLMdR1AhcPE2jEBd6 > uR4dOZye8PQFTHbvhA/t20NFTroalr2kXF49+PTqR6kCFes+vNgjIlWUdKsIngYk > y5x32f60Bd/TtqPo6M2aeOE/M322U6cIH5jJhh3EBTEpm+Upd9enIetxR0NpjTnP > G+6yf8e7P4oBaYGSk01i3pah00OR2YeC87rtcEdgs1sM94PjxbXZGcuA+K9UbgVQ > 2WB8Z4IvrD3d2UqRnC8TRq1/bZyiPSHKNeMFBRJZ4gFe/wr9G0txDnH1LTy/q0Gq > kVHvdbApLYytMX/VmMMgDRnbzGS/kDMvIED8dJnwWf9pMLmzsi0pcVX/vH0m1Vw= > =q6eG > -----END PGP SIGNATURE----- > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 17:51:48 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 65BAE4C4; Tue, 19 Mar 2013 17:51:48 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from fep16.mx.upcmail.net (fep16.mx.upcmail.net [62.179.121.36]) by mx1.freebsd.org (Postfix) with ESMTP id 3DF789C5; Tue, 19 Mar 2013 17:51:47 +0000 (UTC) Received: from edge03.upcmail.net ([192.168.13.238]) by viefep23-int.chello.at (InterMail vM.8.01.05.05 201-2260-151-110-20120111) with ESMTP id <20130319175008.PFBO17478.viefep23-int.chello.at@edge03.upcmail.net>; Tue, 19 Mar 2013 18:50:08 +0100 Received: from [127.0.0.1] ([178.84.132.32]) by edge03.upcmail.net with edge id DVq61l01n0i5fp603Vq6rZ; Tue, 19 Mar 2013 18:50:08 +0100 X-SourceIP: 178.84.132.32 Message-ID: <5148A550.4070603@rainbow-runner.nl> Date: Tue, 19 Mar 2013 18:50:08 +0100 From: Koop Mast User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130307 Thunderbird/17.0.4 MIME-Version: 1.0 To: Jeremy Messenger Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order problem References: <201302231730.r1NHU1LE053503@freefall.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 130319-0, 19-03-2013), Outbound message X-Antivirus-Status: Clean Cc: gnome@freebsd.org, "John W. O'Brien" , FreeBSD Ports Mailing List , Baptiste Daroussin , bug-followup@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 17:51:48 -0000 On 19-3-2013 17:56, Jeremy Messenger wrote: > Sorry, this is way too long to read. I will just skip the read and > post my suggest of solution to this problem in the top of your email. > I think the OPTIONS needs to change from ${UNIQUENAME} to > ${PKGORIGIN:S/\//_/}. It will be looked like > "${PORT_DBDIR}/cat_port/options". Here's example: > > In bsd.options.mk: > ----------------------------------- > [...] > > OPTIONSFILE?= ${PORT_DBDIR}/${PKGORIGIN:S/\//_/}/options > ----------------------------------- > > Then add compatible in somewhere like this: > ----------------------------------- > .if exist (${PORT_DBDIR}/${UNIQUENAME}/options) > @${MV} ${PORT_DBDIR}/${UNIQUENAME} ${PORT_DBDIR}/${PKGORIGIN:S/\//_/} > .endif > ----------------------------------- > > Then teach the portmaster about if the port has been moved to the > different category or renamed (by read MOVED) then change the > ${PORT_DBDIR}/${PKGORIGIN:S/\//_/}. > > What do anyone think of my suggest solution? I haven't test anything > at all, which it's just what I have in my mind right now. I was thinking of just axing the option completely and moving libffi to lib_depend. glib20 already depends on libffi, so we also could get away with removing it completely. But that doesn't resolve that this problem might appear in other ports. -Koop > > On Sat, Feb 23, 2013 at 11:30 AM, John W. O'Brien wrote: >> The following reply was made to PR ports/175276; it has been noted by GNATS. >> >> From: "John W. O'Brien" >> To: bug-followup@FreeBSD.org, jhein@symmetricom.com >> Cc: freebsd-python@freebsd.org >> Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order >> problem >> Date: Sat, 23 Feb 2013 12:23:35 -0500 >> >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> 1. Should this be assigned to freebsd-python@? >> >> I realize that freebsd-gnome@ is the maintainer, but the root cause >> lies with the way Python ports use PKGNAMEPREFIX, and this is not the >> only affected port. >> >> >> 2. Allow me to elaborate on the originator's description, for those >> interested in the analysis. >> >> The common use of >> >> PKGNAMEPREFIX=${PYTHON_PKGNAMEPREFIX} >> >> depends on lazy evaluation, because the right-hand side is not defined >> until the "pre" section of bsd.python.mk. Relatively early on in >> bsd.port.mk, we get a default definition for UNIQUENAME based on >> PKGNAMEPREFIX, unless LATEST_LINK is already defined, which doesn't >> ordinarily happen until the "post" section of bsd.port.mk. Shortly >> after that, between the "options" section and the "pre" section of >> bsd.port.mk, we include bsd.options.mk which provides a default >> definition of OPTIONSFILE, based on UNIQUENAME. At that point in >> bsd.options.mk, we haven't yet included bsd.python.mk, so >> PYTHON_PKGNAMEPREFIX is undefined. That means that when make reads the >> saved options (inside the first pass through bsd.options.mk) thereby >> triggering evaluation of OPTIONSFILE, it is as if we hadn't set >> PKGNAMEPREFIX at all. >> >> As the originator points out, the do-config target, where make >> performs the work of writing saved options, re-evaluates OPTIONSFILE >> after bsd.python.mk sets PYTHON_PKGNAMEPREFIX, because do-config is >> defined in the "post" section of bsd.port.mk. >> >> >> 3. What ports are affected? >> >> Any port that sets PKGNAMEPREFIX equal to a make variable that is not >> defined until the "pre" section or later, and fails to work-around the >> staggered evaluation by defining one of UNIQUENAME, LATEST_LINK, or >> OPTIONSFILE, is broken. It turns out that Python ports are >> disproportionately affected, but mainly because Python ports are heavy >> users of PKGNAMEPREFIX. The other PKGNAMEPREFIXs are: >> >> % egrep "^[A-Z_]+_PKGNAMEPREFIX" /usr/ports/Mk/* -h >> APACHE_PKGNAMEPREFIX= ap${APACHE_VERSION}- >> PYTHON_PKGNAMEPREFIX?= py*- >> LUA_PKGNAMEPREFIX?= lua${LUA_VER_STR}- >> PYTHON_PKGNAMEPREFIX= py${PYTHON_SUFFIX}- >> RUBY_PKGNAMEPREFIX?= ruby${RUBY_SUFFIX}- >> >> But the distribution among these is heavily skewed toward Python. >> >> % find /usr/ports -depth 3 -type f -name Makefile \ >> | xargs egrep "^OPTIONS_DEFINE" -l \ >> | xargs egrep "^(OPTIONSFILE|UNIQUENAME|LATEST_LINK)" -L \ >> | xargs egrep '^PKGNAMEPREFIX=.*\$' -h \ >> | sed -e "s/[ ]//g" \ >> | sort | uniq -c | sort -n >> 1 PKGNAMEPREFIX=${APACHE_PKGNAMEPREFIX} >> 1 PKGNAMEPREFIX=${DMPKGNAMEPREFIX} >> 1 PKGNAMEPREFIX=${DN3DPKGNAMEPREFIX} >> 1 PKGNAMEPREFIX=${TGTARCH}-${TGTABI}- >> 1 PKGNAMEPREFIX=php${PHP_VER}- >> 2 PKGNAMEPREFIX=${LANG_PKGNAME}- >> 22 PKGNAMEPREFIX=${PYTHON_PKGNAMEPREFIX} >> >> (That's supposed to be a tab and a space in the sed command, by the way.) >> >> So, let's focus on the 22 ports at the end. >> >> % find /usr/ports -depth 3 -type f -name Makefile \ >> | xargs egrep "^OPTIONS_DEFINE" -l \ >> | xargs egrep "^(OPTIONSFILE|UNIQUENAME|LATEST_LINK)" -L \ >> | xargs egrep '^PKGNAMEPREFIX=.*PYTHON' -l \ >> | cut -d/ -f4-5 | sort >> astro/py-RO >> audio/py-karaoke >> audio/py-pyaudio >> databases/py-sqlkit >> devel/py-bison >> devel/py-gobject >> devel/py-hgsubversion >> dns/ldns >> graphics/py-PyX >> graphics/py-gdal >> mail/py-spf >> math/py-sympy >> net/py-medusa >> security/arm >> security/py-volatility >> security/py-yara-editor >> www/py-django_compressor >> www/py-imdbpy >> www/py-qp >> www/py-qpy >> www/py-rhodecode >> www/py-satchmo >> >> I've checked every one of these by running >> >> make config-conditional >> >> twice in a row, and every one of them gave me a dialog the second >> time, which implies that they are reading and writing saved options in >> different places. >> >> >> 4. How can we fix this? >> >> As I see it, there are at least the following alternatives. >> >> A) Require each maintainer to choose and implement their preferred >> work-around, defining one or more of UNIQUENAME, LATEST_LINK, or >> OPTIONSFILE. This is what most affected ports do already, and what the >> originator is proposing for this port. 100 ports use >> PYTHON_PKGNAMEPREFIX and OPTIONS_DEFINE. 74 of those set OPTIONSFILE, >> 3 set LATEST_LINK, and 1 sets UNIQUENAME. >> >> In this case we should update the documentation in bsd.python.mk and >> the Porter's Handbook to make the requirement clear, and consider >> implementing a validation check somewhere in /usr/ports/Mk and/or >> portlint. >> >> B) Cause part or all of the "pre" section of bsd.python.mk to be >> processed earlier in bsd.port.mk, so that PYTHON_PKGNAMEPREFIX is >> defined by the time we hit bsd.options.mk and need OPTIONSFILE for >> reading. This would require additional analysis and testing to prevent >> collateral breakage, and it would mean that bsd.python.mk becomes a >> special case. >> >> I've skimmed the portion of bsd.python.mk prior to the definition of >> PYTHON_PKGNAMEPREFIX, and nothing major jumps out. If there is >> interest, I would be glad to prepare a patch at which to throw darts. >> >> C) Redefine OPTIONSFILE inside bsd.python.mk upon detecting that it >> changes after defining PYTHON_PKGNAMEPREFIX, so that OPTIONSFILE is >> the same when reading and writing saved options. I think we could do >> this without affecting bsd.port.mk, or the ports that have already >> implemented a workaround. It would mean that the default behavior when >> using PYTHON_PKGNAMEPREFIX is to put saved options in >> ${PORT_DBDIR}/${_PNP}${PORTNAME}/options, where _PNP is any literal >> used along with PYTHON_PKGNAMEPREFIX in the port's Makefile, which >> some might consider a POLA violation. On the other hand, doing one >> thing consistently that works is better than doing something that >> breaks your port unexpectedly. >> >> The big problem with this alternative is that PORTNAME by itself is >> nowhere near unique enough to avoid conflict with other ports, and >> would pretty much require bubbling up the definition of >> PYTHON_PKGNAMEPREFIX from bsd.python.mk to each affected port. >> >> >> 5. What is the best alternative? >> >> I find B very attractive because it frees maintainers from defining an >> extra variable if they don't want (i.e. good defaults), but still >> allows them to do so if they do want (i.e. good mechanism). It may be >> difficult, hackish, and error-prone though. >> >> Option A would be easiest, and least traumatic both to individual >> ports and to the ports infrastructure itself. For this reason alone, A >> is probably the right choice for now. >> >> Sadly, C may be a complete non-starter due to the uniqueness problem, >> but I wouldn't rule it out completely as a long-term follow-up to A. >> The way I see it working out is in three phases. Phase one is to >> implement option A but also invite maintainers to replace >> >> PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} >> >> with >> >> PKGNAMEPREFIX= py${PYTHON_SUFFIX}- >> >> Phase two is to implement option C. Phase three is to invite >> maintainers to remove the option A work-around if they like the >> then-default behavior. >> >> >> 6. Conclusion. >> >> I invite commentary and criticism, especially on the potential >> resolutions I proposed. When we reach consensus, I will set about >> preparing some patches, if need be, and seeking the help of a friendly >> committer. >> >> Thank you for your kind indulgence. >> >> Cheers, >> John >> -----BEGIN PGP SIGNATURE----- >> Version: GnuPG v1.4.11 (GNU/Linux) >> Comment: Using GnuPG with undefined - http://www.enigmail.net/ >> >> iQEcBAEBAgAGBQJRKPsXAAoJEEdKvTwaez9w6yEIALFz+xrYLMdR1AhcPE2jEBd6 >> uR4dOZye8PQFTHbvhA/t20NFTroalr2kXF49+PTqR6kCFes+vNgjIlWUdKsIngYk >> y5x32f60Bd/TtqPo6M2aeOE/M322U6cIH5jJhh3EBTEpm+Upd9enIetxR0NpjTnP >> G+6yf8e7P4oBaYGSk01i3pah00OR2YeC87rtcEdgs1sM94PjxbXZGcuA+K9UbgVQ >> 2WB8Z4IvrD3d2UqRnC8TRq1/bZyiPSHKNeMFBRJZ4gFe/wr9G0txDnH1LTy/q0Gq >> kVHvdbApLYytMX/VmMMgDRnbzGS/kDMvIED8dJnwWf9pMLmzsi0pcVX/vH0m1Vw= >> =q6eG >> -----END PGP SIGNATURE----- >> _______________________________________________ >> freebsd-gnome@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-gnome >> To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" > > From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 18:00:02 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 7A0EF9C7 for ; Tue, 19 Mar 2013 18:00:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 5E102A33 for ; Tue, 19 Mar 2013 18:00:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JI01RV070288 for ; Tue, 19 Mar 2013 18:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JI0169070287; Tue, 19 Mar 2013 18:00:01 GMT (envelope-from gnats) Date: Tue, 19 Mar 2013 18:00:01 GMT Message-Id: <201303191800.r2JI0169070287@freefall.freebsd.org> To: gnome@FreeBSD.org From: Koop Mast Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order problem X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Koop Mast List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Mar 2013 18:00:02 -0000 The following reply was made to PR ports/175276; it has been noted by GNATS. From: Koop Mast To: Jeremy Messenger Cc: "John W. O'Brien" , gnome@freebsd.org, FreeBSD Ports Mailing List , Baptiste Daroussin , bug-followup@FreeBSD.org Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order problem Date: Tue, 19 Mar 2013 18:50:08 +0100 On 19-3-2013 17:56, Jeremy Messenger wrote: > Sorry, this is way too long to read. I will just skip the read and > post my suggest of solution to this problem in the top of your email. > I think the OPTIONS needs to change from ${UNIQUENAME} to > ${PKGORIGIN:S/\//_/}. It will be looked like > "${PORT_DBDIR}/cat_port/options". Here's example: > > In bsd.options.mk: > ----------------------------------- > [...] > > OPTIONSFILE?= ${PORT_DBDIR}/${PKGORIGIN:S/\//_/}/options > ----------------------------------- > > Then add compatible in somewhere like this: > ----------------------------------- > .if exist (${PORT_DBDIR}/${UNIQUENAME}/options) > @${MV} ${PORT_DBDIR}/${UNIQUENAME} ${PORT_DBDIR}/${PKGORIGIN:S/\//_/} > .endif > ----------------------------------- > > Then teach the portmaster about if the port has been moved to the > different category or renamed (by read MOVED) then change the > ${PORT_DBDIR}/${PKGORIGIN:S/\//_/}. > > What do anyone think of my suggest solution? I haven't test anything > at all, which it's just what I have in my mind right now. I was thinking of just axing the option completely and moving libffi to lib_depend. glib20 already depends on libffi, so we also could get away with removing it completely. But that doesn't resolve that this problem might appear in other ports. -Koop > > On Sat, Feb 23, 2013 at 11:30 AM, John W. O'Brien wrote: >> The following reply was made to PR ports/175276; it has been noted by GNATS. >> >> From: "John W. O'Brien" >> To: bug-followup@FreeBSD.org, jhein@symmetricom.com >> Cc: freebsd-python@freebsd.org >> Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order >> problem >> Date: Sat, 23 Feb 2013 12:23:35 -0500 >> >> -----BEGIN PGP SIGNED MESSAGE----- >> Hash: SHA1 >> >> 1. Should this be assigned to freebsd-python@? >> >> I realize that freebsd-gnome@ is the maintainer, but the root cause >> lies with the way Python ports use PKGNAMEPREFIX, and this is not the >> only affected port. >> >> >> 2. Allow me to elaborate on the originator's description, for those >> interested in the analysis. >> >> The common use of >> >> PKGNAMEPREFIX=${PYTHON_PKGNAMEPREFIX} >> >> depends on lazy evaluation, because the right-hand side is not defined >> until the "pre" section of bsd.python.mk. Relatively early on in >> bsd.port.mk, we get a default definition for UNIQUENAME based on >> PKGNAMEPREFIX, unless LATEST_LINK is already defined, which doesn't >> ordinarily happen until the "post" section of bsd.port.mk. Shortly >> after that, between the "options" section and the "pre" section of >> bsd.port.mk, we include bsd.options.mk which provides a default >> definition of OPTIONSFILE, based on UNIQUENAME. At that point in >> bsd.options.mk, we haven't yet included bsd.python.mk, so >> PYTHON_PKGNAMEPREFIX is undefined. That means that when make reads the >> saved options (inside the first pass through bsd.options.mk) thereby >> triggering evaluation of OPTIONSFILE, it is as if we hadn't set >> PKGNAMEPREFIX at all. >> >> As the originator points out, the do-config target, where make >> performs the work of writing saved options, re-evaluates OPTIONSFILE >> after bsd.python.mk sets PYTHON_PKGNAMEPREFIX, because do-config is >> defined in the "post" section of bsd.port.mk. >> >> >> 3. What ports are affected? >> >> Any port that sets PKGNAMEPREFIX equal to a make variable that is not >> defined until the "pre" section or later, and fails to work-around the >> staggered evaluation by defining one of UNIQUENAME, LATEST_LINK, or >> OPTIONSFILE, is broken. It turns out that Python ports are >> disproportionately affected, but mainly because Python ports are heavy >> users of PKGNAMEPREFIX. The other PKGNAMEPREFIXs are: >> >> % egrep "^[A-Z_]+_PKGNAMEPREFIX" /usr/ports/Mk/* -h >> APACHE_PKGNAMEPREFIX= ap${APACHE_VERSION}- >> PYTHON_PKGNAMEPREFIX?= py*- >> LUA_PKGNAMEPREFIX?= lua${LUA_VER_STR}- >> PYTHON_PKGNAMEPREFIX= py${PYTHON_SUFFIX}- >> RUBY_PKGNAMEPREFIX?= ruby${RUBY_SUFFIX}- >> >> But the distribution among these is heavily skewed toward Python. >> >> % find /usr/ports -depth 3 -type f -name Makefile \ >> | xargs egrep "^OPTIONS_DEFINE" -l \ >> | xargs egrep "^(OPTIONSFILE|UNIQUENAME|LATEST_LINK)" -L \ >> | xargs egrep '^PKGNAMEPREFIX=.*\$' -h \ >> | sed -e "s/[ ]//g" \ >> | sort | uniq -c | sort -n >> 1 PKGNAMEPREFIX=${APACHE_PKGNAMEPREFIX} >> 1 PKGNAMEPREFIX=${DMPKGNAMEPREFIX} >> 1 PKGNAMEPREFIX=${DN3DPKGNAMEPREFIX} >> 1 PKGNAMEPREFIX=${TGTARCH}-${TGTABI}- >> 1 PKGNAMEPREFIX=php${PHP_VER}- >> 2 PKGNAMEPREFIX=${LANG_PKGNAME}- >> 22 PKGNAMEPREFIX=${PYTHON_PKGNAMEPREFIX} >> >> (That's supposed to be a tab and a space in the sed command, by the way.) >> >> So, let's focus on the 22 ports at the end. >> >> % find /usr/ports -depth 3 -type f -name Makefile \ >> | xargs egrep "^OPTIONS_DEFINE" -l \ >> | xargs egrep "^(OPTIONSFILE|UNIQUENAME|LATEST_LINK)" -L \ >> | xargs egrep '^PKGNAMEPREFIX=.*PYTHON' -l \ >> | cut -d/ -f4-5 | sort >> astro/py-RO >> audio/py-karaoke >> audio/py-pyaudio >> databases/py-sqlkit >> devel/py-bison >> devel/py-gobject >> devel/py-hgsubversion >> dns/ldns >> graphics/py-PyX >> graphics/py-gdal >> mail/py-spf >> math/py-sympy >> net/py-medusa >> security/arm >> security/py-volatility >> security/py-yara-editor >> www/py-django_compressor >> www/py-imdbpy >> www/py-qp >> www/py-qpy >> www/py-rhodecode >> www/py-satchmo >> >> I've checked every one of these by running >> >> make config-conditional >> >> twice in a row, and every one of them gave me a dialog the second >> time, which implies that they are reading and writing saved options in >> different places. >> >> >> 4. How can we fix this? >> >> As I see it, there are at least the following alternatives. >> >> A) Require each maintainer to choose and implement their preferred >> work-around, defining one or more of UNIQUENAME, LATEST_LINK, or >> OPTIONSFILE. This is what most affected ports do already, and what the >> originator is proposing for this port. 100 ports use >> PYTHON_PKGNAMEPREFIX and OPTIONS_DEFINE. 74 of those set OPTIONSFILE, >> 3 set LATEST_LINK, and 1 sets UNIQUENAME. >> >> In this case we should update the documentation in bsd.python.mk and >> the Porter's Handbook to make the requirement clear, and consider >> implementing a validation check somewhere in /usr/ports/Mk and/or >> portlint. >> >> B) Cause part or all of the "pre" section of bsd.python.mk to be >> processed earlier in bsd.port.mk, so that PYTHON_PKGNAMEPREFIX is >> defined by the time we hit bsd.options.mk and need OPTIONSFILE for >> reading. This would require additional analysis and testing to prevent >> collateral breakage, and it would mean that bsd.python.mk becomes a >> special case. >> >> I've skimmed the portion of bsd.python.mk prior to the definition of >> PYTHON_PKGNAMEPREFIX, and nothing major jumps out. If there is >> interest, I would be glad to prepare a patch at which to throw darts. >> >> C) Redefine OPTIONSFILE inside bsd.python.mk upon detecting that it >> changes after defining PYTHON_PKGNAMEPREFIX, so that OPTIONSFILE is >> the same when reading and writing saved options. I think we could do >> this without affecting bsd.port.mk, or the ports that have already >> implemented a workaround. It would mean that the default behavior when >> using PYTHON_PKGNAMEPREFIX is to put saved options in >> ${PORT_DBDIR}/${_PNP}${PORTNAME}/options, where _PNP is any literal >> used along with PYTHON_PKGNAMEPREFIX in the port's Makefile, which >> some might consider a POLA violation. On the other hand, doing one >> thing consistently that works is better than doing something that >> breaks your port unexpectedly. >> >> The big problem with this alternative is that PORTNAME by itself is >> nowhere near unique enough to avoid conflict with other ports, and >> would pretty much require bubbling up the definition of >> PYTHON_PKGNAMEPREFIX from bsd.python.mk to each affected port. >> >> >> 5. What is the best alternative? >> >> I find B very attractive because it frees maintainers from defining an >> extra variable if they don't want (i.e. good defaults), but still >> allows them to do so if they do want (i.e. good mechanism). It may be >> difficult, hackish, and error-prone though. >> >> Option A would be easiest, and least traumatic both to individual >> ports and to the ports infrastructure itself. For this reason alone, A >> is probably the right choice for now. >> >> Sadly, C may be a complete non-starter due to the uniqueness problem, >> but I wouldn't rule it out completely as a long-term follow-up to A. >> The way I see it working out is in three phases. Phase one is to >> implement option A but also invite maintainers to replace >> >> PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} >> >> with >> >> PKGNAMEPREFIX= py${PYTHON_SUFFIX}- >> >> Phase two is to implement option C. Phase three is to invite >> maintainers to remove the option A work-around if they like the >> then-default behavior. >> >> >> 6. Conclusion. >> >> I invite commentary and criticism, especially on the potential >> resolutions I proposed. When we reach consensus, I will set about >> preparing some patches, if need be, and seeking the help of a friendly >> committer. >> >> Thank you for your kind indulgence. >> >> Cheers, >> John >> -----BEGIN PGP SIGNATURE----- >> Version: GnuPG v1.4.11 (GNU/Linux) >> Comment: Using GnuPG with undefined - http://www.enigmail.net/ >> >> iQEcBAEBAgAGBQJRKPsXAAoJEEdKvTwaez9w6yEIALFz+xrYLMdR1AhcPE2jEBd6 >> uR4dOZye8PQFTHbvhA/t20NFTroalr2kXF49+PTqR6kCFes+vNgjIlWUdKsIngYk >> y5x32f60Bd/TtqPo6M2aeOE/M322U6cIH5jJhh3EBTEpm+Upd9enIetxR0NpjTnP >> G+6yf8e7P4oBaYGSk01i3pah00OR2YeC87rtcEdgs1sM94PjxbXZGcuA+K9UbgVQ >> 2WB8Z4IvrD3d2UqRnC8TRq1/bZyiPSHKNeMFBRJZ4gFe/wr9G0txDnH1LTy/q0Gq >> kVHvdbApLYytMX/VmMMgDRnbzGS/kDMvIED8dJnwWf9pMLmzsi0pcVX/vH0m1Vw= >> =q6eG >> -----END PGP SIGNATURE----- >> _______________________________________________ >> freebsd-gnome@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-gnome >> To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" > > From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 18:02:35 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3EB7AC59; Tue, 19 Mar 2013 18:02:35 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-vc0-f173.google.com (mail-vc0-f173.google.com [209.85.220.173]) by mx1.freebsd.org (Postfix) with ESMTP id BE621A68; Tue, 19 Mar 2013 18:02:34 +0000 (UTC) Received: by mail-vc0-f173.google.com with SMTP id gd11so631927vcb.18 for ; Tue, 19 Mar 2013 11:02:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=VosLC9qY0N//JqV1nV5ndXz4T6GEfsvvN+nh2KA9Q9o=; b=NQMQn4wWAqce/v2X/N5Zjh04dC22n7HJnsrbGE83z+o3OEHBbRfbYw2bdD1HBnSeKm B/zKaN1eRavnL5nywwv/lSIhVkV4GVNNR+kiVKvdA06+OA56llLIcoIBMB8YB+qPa6RI K4MibNhj5XM9OYJyus3D66SpctXx94xM/H0eZAvzIUCWl+ZkGxSvthu6B5HKZ82X1zZA 9aHg+s0Qt2FroFYmqzdjTMxJLPt/vm8xtT7vzfAXWi87owq/yDNMpSQ9GdpNhdAs+lCe sa/BIOm+PXmYqUJuAShQJV24EAaRn0AqOh6O01c2MLMdwmkgeH16/+wLx/W8Xn/LXicl VRqA== MIME-Version: 1.0 X-Received: by 10.52.24.133 with SMTP id u5mr3253488vdf.49.1363716153880; Tue, 19 Mar 2013 11:02:33 -0700 (PDT) Received: by 10.58.151.65 with HTTP; Tue, 19 Mar 2013 11:02:33 -0700 (PDT) In-Reply-To: <5148A550.4070603@rainbow-runner.nl> References: <201302231730.r1NHU1LE053503@freefall.freebsd.org> <5148A550.4070603@rainbow-runner.nl> Date: Tue, 19 Mar 2013 13:02:33 -0500 Message-ID: Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order problem From: Jeremy Messenger To: Koop Mast Content-Type: text/plain; charset=ISO-8859-1 Cc: gnome@freebsd.org, "John W. O'Brien" , FreeBSD Ports Mailing List , Baptiste Daroussin , bug-followup@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 18:02:35 -0000 On Tue, Mar 19, 2013 at 12:50 PM, Koop Mast wrote: > On 19-3-2013 17:56, Jeremy Messenger wrote: >> >> Sorry, this is way too long to read. I will just skip the read and >> post my suggest of solution to this problem in the top of your email. >> I think the OPTIONS needs to change from ${UNIQUENAME} to >> ${PKGORIGIN:S/\//_/}. It will be looked like >> "${PORT_DBDIR}/cat_port/options". Here's example: >> >> In bsd.options.mk: >> ----------------------------------- >> [...] >> >> OPTIONSFILE?= ${PORT_DBDIR}/${PKGORIGIN:S/\//_/}/options >> ----------------------------------- >> >> Then add compatible in somewhere like this: >> ----------------------------------- >> .if exist (${PORT_DBDIR}/${UNIQUENAME}/options) >> @${MV} ${PORT_DBDIR}/${UNIQUENAME} >> ${PORT_DBDIR}/${PKGORIGIN:S/\//_/} >> .endif >> ----------------------------------- >> >> Then teach the portmaster about if the port has been moved to the >> different category or renamed (by read MOVED) then change the >> ${PORT_DBDIR}/${PKGORIGIN:S/\//_/}. >> >> What do anyone think of my suggest solution? I haven't test anything >> at all, which it's just what I have in my mind right now. > > > I was thinking of just axing the option completely and moving libffi to > lib_depend. glib20 already depends on libffi, so we also could get away with > removing it completely. But that doesn't resolve that this problem might > appear in other ports. My suggest was for solve an issue in the OPTIONS, so that way all other ports will be fixed. The py-gobject isn't only a port that have this issue as it's a bug in the OPTIONS. > -Koop > > >> >> On Sat, Feb 23, 2013 at 11:30 AM, John W. O'Brien >> wrote: >>> >>> The following reply was made to PR ports/175276; it has been noted by >>> GNATS. >>> >>> From: "John W. O'Brien" >>> To: bug-followup@FreeBSD.org, jhein@symmetricom.com >>> Cc: freebsd-python@freebsd.org >>> Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval >>> order >>> problem >>> Date: Sat, 23 Feb 2013 12:23:35 -0500 >>> >>> -----BEGIN PGP SIGNED MESSAGE----- >>> Hash: SHA1 >>> >>> 1. Should this be assigned to freebsd-python@? >>> >>> I realize that freebsd-gnome@ is the maintainer, but the root cause >>> lies with the way Python ports use PKGNAMEPREFIX, and this is not the >>> only affected port. >>> >>> >>> 2. Allow me to elaborate on the originator's description, for those >>> interested in the analysis. >>> >>> The common use of >>> >>> PKGNAMEPREFIX=${PYTHON_PKGNAMEPREFIX} >>> >>> depends on lazy evaluation, because the right-hand side is not defined >>> until the "pre" section of bsd.python.mk. Relatively early on in >>> bsd.port.mk, we get a default definition for UNIQUENAME based on >>> PKGNAMEPREFIX, unless LATEST_LINK is already defined, which doesn't >>> ordinarily happen until the "post" section of bsd.port.mk. Shortly >>> after that, between the "options" section and the "pre" section of >>> bsd.port.mk, we include bsd.options.mk which provides a default >>> definition of OPTIONSFILE, based on UNIQUENAME. At that point in >>> bsd.options.mk, we haven't yet included bsd.python.mk, so >>> PYTHON_PKGNAMEPREFIX is undefined. That means that when make reads the >>> saved options (inside the first pass through bsd.options.mk) thereby >>> triggering evaluation of OPTIONSFILE, it is as if we hadn't set >>> PKGNAMEPREFIX at all. >>> >>> As the originator points out, the do-config target, where make >>> performs the work of writing saved options, re-evaluates OPTIONSFILE >>> after bsd.python.mk sets PYTHON_PKGNAMEPREFIX, because do-config is >>> defined in the "post" section of bsd.port.mk. >>> >>> >>> 3. What ports are affected? >>> >>> Any port that sets PKGNAMEPREFIX equal to a make variable that is not >>> defined until the "pre" section or later, and fails to work-around the >>> staggered evaluation by defining one of UNIQUENAME, LATEST_LINK, or >>> OPTIONSFILE, is broken. It turns out that Python ports are >>> disproportionately affected, but mainly because Python ports are heavy >>> users of PKGNAMEPREFIX. The other PKGNAMEPREFIXs are: >>> >>> % egrep "^[A-Z_]+_PKGNAMEPREFIX" /usr/ports/Mk/* -h >>> APACHE_PKGNAMEPREFIX= ap${APACHE_VERSION}- >>> PYTHON_PKGNAMEPREFIX?= py*- >>> LUA_PKGNAMEPREFIX?= lua${LUA_VER_STR}- >>> PYTHON_PKGNAMEPREFIX= py${PYTHON_SUFFIX}- >>> RUBY_PKGNAMEPREFIX?= ruby${RUBY_SUFFIX}- >>> >>> But the distribution among these is heavily skewed toward Python. >>> >>> % find /usr/ports -depth 3 -type f -name Makefile \ >>> | xargs egrep "^OPTIONS_DEFINE" -l \ >>> | xargs egrep "^(OPTIONSFILE|UNIQUENAME|LATEST_LINK)" -L \ >>> | xargs egrep '^PKGNAMEPREFIX=.*\$' -h \ >>> | sed -e "s/[ ]//g" \ >>> | sort | uniq -c | sort -n >>> 1 PKGNAMEPREFIX=${APACHE_PKGNAMEPREFIX} >>> 1 PKGNAMEPREFIX=${DMPKGNAMEPREFIX} >>> 1 PKGNAMEPREFIX=${DN3DPKGNAMEPREFIX} >>> 1 PKGNAMEPREFIX=${TGTARCH}-${TGTABI}- >>> 1 PKGNAMEPREFIX=php${PHP_VER}- >>> 2 PKGNAMEPREFIX=${LANG_PKGNAME}- >>> 22 PKGNAMEPREFIX=${PYTHON_PKGNAMEPREFIX} >>> >>> (That's supposed to be a tab and a space in the sed command, by the >>> way.) >>> >>> So, let's focus on the 22 ports at the end. >>> >>> % find /usr/ports -depth 3 -type f -name Makefile \ >>> | xargs egrep "^OPTIONS_DEFINE" -l \ >>> | xargs egrep "^(OPTIONSFILE|UNIQUENAME|LATEST_LINK)" -L \ >>> | xargs egrep '^PKGNAMEPREFIX=.*PYTHON' -l \ >>> | cut -d/ -f4-5 | sort >>> astro/py-RO >>> audio/py-karaoke >>> audio/py-pyaudio >>> databases/py-sqlkit >>> devel/py-bison >>> devel/py-gobject >>> devel/py-hgsubversion >>> dns/ldns >>> graphics/py-PyX >>> graphics/py-gdal >>> mail/py-spf >>> math/py-sympy >>> net/py-medusa >>> security/arm >>> security/py-volatility >>> security/py-yara-editor >>> www/py-django_compressor >>> www/py-imdbpy >>> www/py-qp >>> www/py-qpy >>> www/py-rhodecode >>> www/py-satchmo >>> >>> I've checked every one of these by running >>> >>> make config-conditional >>> >>> twice in a row, and every one of them gave me a dialog the second >>> time, which implies that they are reading and writing saved options in >>> different places. >>> >>> >>> 4. How can we fix this? >>> >>> As I see it, there are at least the following alternatives. >>> >>> A) Require each maintainer to choose and implement their preferred >>> work-around, defining one or more of UNIQUENAME, LATEST_LINK, or >>> OPTIONSFILE. This is what most affected ports do already, and what the >>> originator is proposing for this port. 100 ports use >>> PYTHON_PKGNAMEPREFIX and OPTIONS_DEFINE. 74 of those set OPTIONSFILE, >>> 3 set LATEST_LINK, and 1 sets UNIQUENAME. >>> >>> In this case we should update the documentation in bsd.python.mk and >>> the Porter's Handbook to make the requirement clear, and consider >>> implementing a validation check somewhere in /usr/ports/Mk and/or >>> portlint. >>> >>> B) Cause part or all of the "pre" section of bsd.python.mk to be >>> processed earlier in bsd.port.mk, so that PYTHON_PKGNAMEPREFIX is >>> defined by the time we hit bsd.options.mk and need OPTIONSFILE for >>> reading. This would require additional analysis and testing to prevent >>> collateral breakage, and it would mean that bsd.python.mk becomes a >>> special case. >>> >>> I've skimmed the portion of bsd.python.mk prior to the definition of >>> PYTHON_PKGNAMEPREFIX, and nothing major jumps out. If there is >>> interest, I would be glad to prepare a patch at which to throw darts. >>> >>> C) Redefine OPTIONSFILE inside bsd.python.mk upon detecting that it >>> changes after defining PYTHON_PKGNAMEPREFIX, so that OPTIONSFILE is >>> the same when reading and writing saved options. I think we could do >>> this without affecting bsd.port.mk, or the ports that have already >>> implemented a workaround. It would mean that the default behavior when >>> using PYTHON_PKGNAMEPREFIX is to put saved options in >>> ${PORT_DBDIR}/${_PNP}${PORTNAME}/options, where _PNP is any literal >>> used along with PYTHON_PKGNAMEPREFIX in the port's Makefile, which >>> some might consider a POLA violation. On the other hand, doing one >>> thing consistently that works is better than doing something that >>> breaks your port unexpectedly. >>> >>> The big problem with this alternative is that PORTNAME by itself is >>> nowhere near unique enough to avoid conflict with other ports, and >>> would pretty much require bubbling up the definition of >>> PYTHON_PKGNAMEPREFIX from bsd.python.mk to each affected port. >>> >>> >>> 5. What is the best alternative? >>> >>> I find B very attractive because it frees maintainers from defining an >>> extra variable if they don't want (i.e. good defaults), but still >>> allows them to do so if they do want (i.e. good mechanism). It may be >>> difficult, hackish, and error-prone though. >>> >>> Option A would be easiest, and least traumatic both to individual >>> ports and to the ports infrastructure itself. For this reason alone, A >>> is probably the right choice for now. >>> >>> Sadly, C may be a complete non-starter due to the uniqueness problem, >>> but I wouldn't rule it out completely as a long-term follow-up to A. >>> The way I see it working out is in three phases. Phase one is to >>> implement option A but also invite maintainers to replace >>> >>> PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} >>> >>> with >>> >>> PKGNAMEPREFIX= py${PYTHON_SUFFIX}- >>> >>> Phase two is to implement option C. Phase three is to invite >>> maintainers to remove the option A work-around if they like the >>> then-default behavior. >>> >>> >>> 6. Conclusion. >>> >>> I invite commentary and criticism, especially on the potential >>> resolutions I proposed. When we reach consensus, I will set about >>> preparing some patches, if need be, and seeking the help of a friendly >>> committer. >>> >>> Thank you for your kind indulgence. >>> >>> Cheers, >>> John >>> -----BEGIN PGP SIGNATURE----- >>> Version: GnuPG v1.4.11 (GNU/Linux) >>> Comment: Using GnuPG with undefined - http://www.enigmail.net/ >>> >>> iQEcBAEBAgAGBQJRKPsXAAoJEEdKvTwaez9w6yEIALFz+xrYLMdR1AhcPE2jEBd6 >>> uR4dOZye8PQFTHbvhA/t20NFTroalr2kXF49+PTqR6kCFes+vNgjIlWUdKsIngYk >>> y5x32f60Bd/TtqPo6M2aeOE/M322U6cIH5jJhh3EBTEpm+Upd9enIetxR0NpjTnP >>> G+6yf8e7P4oBaYGSk01i3pah00OR2YeC87rtcEdgs1sM94PjxbXZGcuA+K9UbgVQ >>> 2WB8Z4IvrD3d2UqRnC8TRq1/bZyiPSHKNeMFBRJZ4gFe/wr9G0txDnH1LTy/q0Gq >>> kVHvdbApLYytMX/VmMMgDRnbzGS/kDMvIED8dJnwWf9pMLmzsi0pcVX/vH0m1Vw= >>> =q6eG >>> -----END PGP SIGNATURE----- >>> _______________________________________________ >>> freebsd-gnome@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-gnome >>> To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" >> >> >> > -- mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 18:03:22 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id AAA28DEA for ; Tue, 19 Mar 2013 18:03:22 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-oa0-f51.google.com (mail-oa0-f51.google.com [209.85.219.51]) by mx1.freebsd.org (Postfix) with ESMTP id 7B4A2A80 for ; Tue, 19 Mar 2013 18:03:22 +0000 (UTC) Received: by mail-oa0-f51.google.com with SMTP id h2so828343oag.10 for ; Tue, 19 Mar 2013 11:03:16 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=2SRxQXWP6TKIF8HrlamI/RBs1yEJ3SHu3GZLD9N01v4=; b=cSdd1/+oCqLytNJj+SZniVQe2KWLRjgezXq8WWfrj6MOhPhjkciKB2+jsePkpJKSA6 I6O/GtZ/zcE0Ugx5uCQlRc73Bhk4dzOwOefJ2rTyAqEE9t2872l9vARDK1RNytCZPHG+ /k/QUY2YMaNKP6T7aJrbGQuWdZdAFfIKfKqI3HhfSYXqyYB7PP1fl481BswVlpKXPTr1 N4L/2Fy7TnpGWQs9ipM9Qdtu1JlVClvD/W58WSvQjjVQit0e2xEKzY4v7zXg/dw7sMFC wteaFojFxclfburhOAQPJGZEi9eiKDuQUwEnZhtJ5k/daWPTLFQvoe3M/8/FbfBVuIiE Jg+w== MIME-Version: 1.0 X-Received: by 10.60.19.101 with SMTP id d5mr1874414oee.115.1363716196481; Tue, 19 Mar 2013 11:03:16 -0700 (PDT) Sender: kob6558@gmail.com Received: by 10.76.11.165 with HTTP; Tue, 19 Mar 2013 11:03:16 -0700 (PDT) In-Reply-To: <51483C1B.70502@optenet.com> References: <51483C1B.70502@optenet.com> Date: Tue, 19 Mar 2013 11:03:16 -0700 X-Google-Sender-Auth: tSFYW59MUtvbnlaA2D_IkCq83k0 Message-ID: Subject: Re: intool for owncloud From: Kevin Oberman To: Javier Cepa Iglesias Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: gnome@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 18:03:22 -0000 On Tue, Mar 19, 2013 at 3:21 AM, Javier Cepa Iglesias < javier_cepa@optenet.com> wrote: > ===> owncloud-4.5.7 depends on executable: mp3info - not found > ===> Verifying install for mp3info in /usr/ports/audio/mp3info > ===> mp3info-gtk-0.8.5 depends on file: /usr/local/bin/intltool-**extract > - not found > ===> Verifying install for /usr/local/bin/intltool-**extract in > /usr/ports/textproc/intltool > ===> intltool-0.41.1 depends on package: p5-XML-Parser>=0 - found > ===> intltool-0.41.1 depends on executable: gmake - found > ===> intltool-0.41.1 depends on file: /usr/local/bin/perl5.8.9 - found > ===> intltool-0.41.1 depends on shared library: iconv.3 - found > ===> Configuring for intltool-0.41.1 > 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... ./install-sh -c -d > checking for gawk... no > checking for mawk... no > checking for nawk... nawk > checking whether gmake sets $(MAKE)... yes > checking for perl... /usr/bin/perl > checking for perl >= 5.8.1... configure: error: perl 5.8.1 is required for > intltool > ===> Script "configure" failed unexpectedly. > Please report the problem to gnome@FreeBSD.org [maintainer] and attach the > "/usr/ports/textproc/intltool/**work/intltool-0.41.1/config.**log" > including the > output of the failure of your make command. Also, it might be a good idea > to > provide an overview of all packages installed on your system (e.g. a > /usr/sbin/pkg_info -Ea). > *** [do-configure] Error code 1 > > Stop in /usr/ports/textproc/intltool. > *** [build-depends] Error code 1 > > Stop in /usr/ports/audio/mp3info. > *** [install] Error code 1 > > Stop in /usr/ports/audio/mp3info. > *** [build-depends] Error code 1 > Is it safe to assume that you DO have perl (of at least 5.8.1) installed? Also, you need to follow the instructions included in the message you sent for anyone to make much of a guess as to what went wrong. The config.log is especially important for this sort of error. -- R. Kevin Oberman, Network Engineer E-mail: rkoberman@gmail.com From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 18:10:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id AC087F47 for ; Tue, 19 Mar 2013 18:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 9C593AD7 for ; Tue, 19 Mar 2013 18:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JIA1jA072128 for ; Tue, 19 Mar 2013 18:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JIA1d3072127; Tue, 19 Mar 2013 18:10:01 GMT (envelope-from gnats) Date: Tue, 19 Mar 2013 18:10:01 GMT Message-Id: <201303191810.r2JIA1d3072127@freefall.freebsd.org> To: gnome@FreeBSD.org From: Jeremy Messenger Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order problem X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Jeremy Messenger List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 19 Mar 2013 18:10:01 -0000 The following reply was made to PR ports/175276; it has been noted by GNATS. From: Jeremy Messenger To: Koop Mast Cc: "John W. O'Brien" , gnome@freebsd.org, FreeBSD Ports Mailing List , Baptiste Daroussin , bug-followup@freebsd.org Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order problem Date: Tue, 19 Mar 2013 13:02:33 -0500 On Tue, Mar 19, 2013 at 12:50 PM, Koop Mast wrote: > On 19-3-2013 17:56, Jeremy Messenger wrote: >> >> Sorry, this is way too long to read. I will just skip the read and >> post my suggest of solution to this problem in the top of your email. >> I think the OPTIONS needs to change from ${UNIQUENAME} to >> ${PKGORIGIN:S/\//_/}. It will be looked like >> "${PORT_DBDIR}/cat_port/options". Here's example: >> >> In bsd.options.mk: >> ----------------------------------- >> [...] >> >> OPTIONSFILE?= ${PORT_DBDIR}/${PKGORIGIN:S/\//_/}/options >> ----------------------------------- >> >> Then add compatible in somewhere like this: >> ----------------------------------- >> .if exist (${PORT_DBDIR}/${UNIQUENAME}/options) >> @${MV} ${PORT_DBDIR}/${UNIQUENAME} >> ${PORT_DBDIR}/${PKGORIGIN:S/\//_/} >> .endif >> ----------------------------------- >> >> Then teach the portmaster about if the port has been moved to the >> different category or renamed (by read MOVED) then change the >> ${PORT_DBDIR}/${PKGORIGIN:S/\//_/}. >> >> What do anyone think of my suggest solution? I haven't test anything >> at all, which it's just what I have in my mind right now. > > > I was thinking of just axing the option completely and moving libffi to > lib_depend. glib20 already depends on libffi, so we also could get away with > removing it completely. But that doesn't resolve that this problem might > appear in other ports. My suggest was for solve an issue in the OPTIONS, so that way all other ports will be fixed. The py-gobject isn't only a port that have this issue as it's a bug in the OPTIONS. > -Koop > > >> >> On Sat, Feb 23, 2013 at 11:30 AM, John W. O'Brien >> wrote: >>> >>> The following reply was made to PR ports/175276; it has been noted by >>> GNATS. >>> >>> From: "John W. O'Brien" >>> To: bug-followup@FreeBSD.org, jhein@symmetricom.com >>> Cc: freebsd-python@freebsd.org >>> Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval >>> order >>> problem >>> Date: Sat, 23 Feb 2013 12:23:35 -0500 >>> >>> -----BEGIN PGP SIGNED MESSAGE----- >>> Hash: SHA1 >>> >>> 1. Should this be assigned to freebsd-python@? >>> >>> I realize that freebsd-gnome@ is the maintainer, but the root cause >>> lies with the way Python ports use PKGNAMEPREFIX, and this is not the >>> only affected port. >>> >>> >>> 2. Allow me to elaborate on the originator's description, for those >>> interested in the analysis. >>> >>> The common use of >>> >>> PKGNAMEPREFIX=${PYTHON_PKGNAMEPREFIX} >>> >>> depends on lazy evaluation, because the right-hand side is not defined >>> until the "pre" section of bsd.python.mk. Relatively early on in >>> bsd.port.mk, we get a default definition for UNIQUENAME based on >>> PKGNAMEPREFIX, unless LATEST_LINK is already defined, which doesn't >>> ordinarily happen until the "post" section of bsd.port.mk. Shortly >>> after that, between the "options" section and the "pre" section of >>> bsd.port.mk, we include bsd.options.mk which provides a default >>> definition of OPTIONSFILE, based on UNIQUENAME. At that point in >>> bsd.options.mk, we haven't yet included bsd.python.mk, so >>> PYTHON_PKGNAMEPREFIX is undefined. That means that when make reads the >>> saved options (inside the first pass through bsd.options.mk) thereby >>> triggering evaluation of OPTIONSFILE, it is as if we hadn't set >>> PKGNAMEPREFIX at all. >>> >>> As the originator points out, the do-config target, where make >>> performs the work of writing saved options, re-evaluates OPTIONSFILE >>> after bsd.python.mk sets PYTHON_PKGNAMEPREFIX, because do-config is >>> defined in the "post" section of bsd.port.mk. >>> >>> >>> 3. What ports are affected? >>> >>> Any port that sets PKGNAMEPREFIX equal to a make variable that is not >>> defined until the "pre" section or later, and fails to work-around the >>> staggered evaluation by defining one of UNIQUENAME, LATEST_LINK, or >>> OPTIONSFILE, is broken. It turns out that Python ports are >>> disproportionately affected, but mainly because Python ports are heavy >>> users of PKGNAMEPREFIX. The other PKGNAMEPREFIXs are: >>> >>> % egrep "^[A-Z_]+_PKGNAMEPREFIX" /usr/ports/Mk/* -h >>> APACHE_PKGNAMEPREFIX= ap${APACHE_VERSION}- >>> PYTHON_PKGNAMEPREFIX?= py*- >>> LUA_PKGNAMEPREFIX?= lua${LUA_VER_STR}- >>> PYTHON_PKGNAMEPREFIX= py${PYTHON_SUFFIX}- >>> RUBY_PKGNAMEPREFIX?= ruby${RUBY_SUFFIX}- >>> >>> But the distribution among these is heavily skewed toward Python. >>> >>> % find /usr/ports -depth 3 -type f -name Makefile \ >>> | xargs egrep "^OPTIONS_DEFINE" -l \ >>> | xargs egrep "^(OPTIONSFILE|UNIQUENAME|LATEST_LINK)" -L \ >>> | xargs egrep '^PKGNAMEPREFIX=.*\$' -h \ >>> | sed -e "s/[ ]//g" \ >>> | sort | uniq -c | sort -n >>> 1 PKGNAMEPREFIX=${APACHE_PKGNAMEPREFIX} >>> 1 PKGNAMEPREFIX=${DMPKGNAMEPREFIX} >>> 1 PKGNAMEPREFIX=${DN3DPKGNAMEPREFIX} >>> 1 PKGNAMEPREFIX=${TGTARCH}-${TGTABI}- >>> 1 PKGNAMEPREFIX=php${PHP_VER}- >>> 2 PKGNAMEPREFIX=${LANG_PKGNAME}- >>> 22 PKGNAMEPREFIX=${PYTHON_PKGNAMEPREFIX} >>> >>> (That's supposed to be a tab and a space in the sed command, by the >>> way.) >>> >>> So, let's focus on the 22 ports at the end. >>> >>> % find /usr/ports -depth 3 -type f -name Makefile \ >>> | xargs egrep "^OPTIONS_DEFINE" -l \ >>> | xargs egrep "^(OPTIONSFILE|UNIQUENAME|LATEST_LINK)" -L \ >>> | xargs egrep '^PKGNAMEPREFIX=.*PYTHON' -l \ >>> | cut -d/ -f4-5 | sort >>> astro/py-RO >>> audio/py-karaoke >>> audio/py-pyaudio >>> databases/py-sqlkit >>> devel/py-bison >>> devel/py-gobject >>> devel/py-hgsubversion >>> dns/ldns >>> graphics/py-PyX >>> graphics/py-gdal >>> mail/py-spf >>> math/py-sympy >>> net/py-medusa >>> security/arm >>> security/py-volatility >>> security/py-yara-editor >>> www/py-django_compressor >>> www/py-imdbpy >>> www/py-qp >>> www/py-qpy >>> www/py-rhodecode >>> www/py-satchmo >>> >>> I've checked every one of these by running >>> >>> make config-conditional >>> >>> twice in a row, and every one of them gave me a dialog the second >>> time, which implies that they are reading and writing saved options in >>> different places. >>> >>> >>> 4. How can we fix this? >>> >>> As I see it, there are at least the following alternatives. >>> >>> A) Require each maintainer to choose and implement their preferred >>> work-around, defining one or more of UNIQUENAME, LATEST_LINK, or >>> OPTIONSFILE. This is what most affected ports do already, and what the >>> originator is proposing for this port. 100 ports use >>> PYTHON_PKGNAMEPREFIX and OPTIONS_DEFINE. 74 of those set OPTIONSFILE, >>> 3 set LATEST_LINK, and 1 sets UNIQUENAME. >>> >>> In this case we should update the documentation in bsd.python.mk and >>> the Porter's Handbook to make the requirement clear, and consider >>> implementing a validation check somewhere in /usr/ports/Mk and/or >>> portlint. >>> >>> B) Cause part or all of the "pre" section of bsd.python.mk to be >>> processed earlier in bsd.port.mk, so that PYTHON_PKGNAMEPREFIX is >>> defined by the time we hit bsd.options.mk and need OPTIONSFILE for >>> reading. This would require additional analysis and testing to prevent >>> collateral breakage, and it would mean that bsd.python.mk becomes a >>> special case. >>> >>> I've skimmed the portion of bsd.python.mk prior to the definition of >>> PYTHON_PKGNAMEPREFIX, and nothing major jumps out. If there is >>> interest, I would be glad to prepare a patch at which to throw darts. >>> >>> C) Redefine OPTIONSFILE inside bsd.python.mk upon detecting that it >>> changes after defining PYTHON_PKGNAMEPREFIX, so that OPTIONSFILE is >>> the same when reading and writing saved options. I think we could do >>> this without affecting bsd.port.mk, or the ports that have already >>> implemented a workaround. It would mean that the default behavior when >>> using PYTHON_PKGNAMEPREFIX is to put saved options in >>> ${PORT_DBDIR}/${_PNP}${PORTNAME}/options, where _PNP is any literal >>> used along with PYTHON_PKGNAMEPREFIX in the port's Makefile, which >>> some might consider a POLA violation. On the other hand, doing one >>> thing consistently that works is better than doing something that >>> breaks your port unexpectedly. >>> >>> The big problem with this alternative is that PORTNAME by itself is >>> nowhere near unique enough to avoid conflict with other ports, and >>> would pretty much require bubbling up the definition of >>> PYTHON_PKGNAMEPREFIX from bsd.python.mk to each affected port. >>> >>> >>> 5. What is the best alternative? >>> >>> I find B very attractive because it frees maintainers from defining an >>> extra variable if they don't want (i.e. good defaults), but still >>> allows them to do so if they do want (i.e. good mechanism). It may be >>> difficult, hackish, and error-prone though. >>> >>> Option A would be easiest, and least traumatic both to individual >>> ports and to the ports infrastructure itself. For this reason alone, A >>> is probably the right choice for now. >>> >>> Sadly, C may be a complete non-starter due to the uniqueness problem, >>> but I wouldn't rule it out completely as a long-term follow-up to A. >>> The way I see it working out is in three phases. Phase one is to >>> implement option A but also invite maintainers to replace >>> >>> PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} >>> >>> with >>> >>> PKGNAMEPREFIX= py${PYTHON_SUFFIX}- >>> >>> Phase two is to implement option C. Phase three is to invite >>> maintainers to remove the option A work-around if they like the >>> then-default behavior. >>> >>> >>> 6. Conclusion. >>> >>> I invite commentary and criticism, especially on the potential >>> resolutions I proposed. When we reach consensus, I will set about >>> preparing some patches, if need be, and seeking the help of a friendly >>> committer. >>> >>> Thank you for your kind indulgence. >>> >>> Cheers, >>> John >>> -----BEGIN PGP SIGNATURE----- >>> Version: GnuPG v1.4.11 (GNU/Linux) >>> Comment: Using GnuPG with undefined - http://www.enigmail.net/ >>> >>> iQEcBAEBAgAGBQJRKPsXAAoJEEdKvTwaez9w6yEIALFz+xrYLMdR1AhcPE2jEBd6 >>> uR4dOZye8PQFTHbvhA/t20NFTroalr2kXF49+PTqR6kCFes+vNgjIlWUdKsIngYk >>> y5x32f60Bd/TtqPo6M2aeOE/M322U6cIH5jJhh3EBTEpm+Upd9enIetxR0NpjTnP >>> G+6yf8e7P4oBaYGSk01i3pah00OR2YeC87rtcEdgs1sM94PjxbXZGcuA+K9UbgVQ >>> 2WB8Z4IvrD3d2UqRnC8TRq1/bZyiPSHKNeMFBRJZ4gFe/wr9G0txDnH1LTy/q0Gq >>> kVHvdbApLYytMX/VmMMgDRnbzGS/kDMvIED8dJnwWf9pMLmzsi0pcVX/vH0m1Vw= >>> =q6eG >>> -----END PGP SIGNATURE----- >>> _______________________________________________ >>> freebsd-gnome@freebsd.org mailing list >>> http://lists.freebsd.org/mailman/listinfo/freebsd-gnome >>> To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" >> >> >> > -- mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 18:10:19 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 23129F79 for ; Tue, 19 Mar 2013 18:10:19 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-vc0-f169.google.com (mail-vc0-f169.google.com [209.85.220.169]) by mx1.freebsd.org (Postfix) with ESMTP id DC125AE3 for ; Tue, 19 Mar 2013 18:10:18 +0000 (UTC) Received: by mail-vc0-f169.google.com with SMTP id kw10so632266vcb.14 for ; Tue, 19 Mar 2013 11:10:18 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=hY8I+qIZ1tQba+a2nE/xTtARJSescVG/iwmZgAe5VmU=; b=v4tL4wZNs8hNmGHCCfcDDdPjdisuknZTg8JAu/KBsM95VX78GEi2WVluXH+bf8hm+Z UsLXoVAwfsWmBjjYsH6EXFqekeyLiUKC3dT0J8Io1k36S0EgingcEPAKTT8Y0Gfq1i+z 74fBHATI5qm0XYpPnWz6hPC2LyEVLub3uYixn1B/WP5DtF/hp5sYQGadTWoG8AJuSm2D G/na2hwKcAv/4PgGN/ElOfH107Euqdqo/36pzWuSdrAPpszE4/y/qvGUElo8b+MFjdUc 7VkRF/+0Suv3yADH9yW3dEgyDBP0w6lTjA4kf0x0LR2zL8zQJVyMyqNXBjuikZ30lneZ zoCg== MIME-Version: 1.0 X-Received: by 10.220.107.210 with SMTP id c18mr4016465vcp.5.1363716615976; Tue, 19 Mar 2013 11:10:15 -0700 (PDT) Received: by 10.58.151.65 with HTTP; Tue, 19 Mar 2013 11:10:15 -0700 (PDT) In-Reply-To: References: <51483C1B.70502@optenet.com> Date: Tue, 19 Mar 2013 13:10:15 -0500 Message-ID: Subject: Re: intool for owncloud From: Jeremy Messenger To: Kevin Oberman Content-Type: text/plain; charset=ISO-8859-1 Cc: gnome@freebsd.org, Javier Cepa Iglesias X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 18:10:19 -0000 On Tue, Mar 19, 2013 at 1:03 PM, Kevin Oberman wrote: > On Tue, Mar 19, 2013 at 3:21 AM, Javier Cepa Iglesias < > javier_cepa@optenet.com> wrote: > >> ===> owncloud-4.5.7 depends on executable: mp3info - not found >> ===> Verifying install for mp3info in /usr/ports/audio/mp3info >> ===> mp3info-gtk-0.8.5 depends on file: /usr/local/bin/intltool-**extract >> - not found >> ===> Verifying install for /usr/local/bin/intltool-**extract in >> /usr/ports/textproc/intltool >> ===> intltool-0.41.1 depends on package: p5-XML-Parser>=0 - found >> ===> intltool-0.41.1 depends on executable: gmake - found >> ===> intltool-0.41.1 depends on file: /usr/local/bin/perl5.8.9 - found -------------------------------------------------------------------------^^^^^ >> ===> intltool-0.41.1 depends on shared library: iconv.3 - found >> ===> Configuring for intltool-0.41.1 >> 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... ./install-sh -c -d >> checking for gawk... no >> checking for mawk... no >> checking for nawk... nawk >> checking whether gmake sets $(MAKE)... yes >> checking for perl... /usr/bin/perl >> checking for perl >= 5.8.1... configure: error: perl 5.8.1 is required for >> intltool >> ===> Script "configure" failed unexpectedly. >> Please report the problem to gnome@FreeBSD.org [maintainer] and attach the >> "/usr/ports/textproc/intltool/**work/intltool-0.41.1/config.**log" >> including the >> output of the failure of your make command. Also, it might be a good idea >> to >> provide an overview of all packages installed on your system (e.g. a >> /usr/sbin/pkg_info -Ea). >> *** [do-configure] Error code 1 >> >> Stop in /usr/ports/textproc/intltool. >> *** [build-depends] Error code 1 >> >> Stop in /usr/ports/audio/mp3info. >> *** [install] Error code 1 >> >> Stop in /usr/ports/audio/mp3info. >> *** [build-depends] Error code 1 >> > > Is it safe to assume that you DO have perl (of at least 5.8.1) installed? Yeah, it looks like but his perl is still out of date though. Probably didn't followed the UPDATING about Perl upgrade or something else. > Also, you need to follow the instructions included in the message you sent > for anyone to make much of a guess as to what went wrong. The config.log is > especially important for this sort of error. > -- > R. Kevin Oberman, Network Engineer > E-mail: rkoberman@gmail.com > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 18:23:59 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 68B501A8; Tue, 19 Mar 2013 18:23:59 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-vc0-f181.google.com (mail-vc0-f181.google.com [209.85.220.181]) by mx1.freebsd.org (Postfix) with ESMTP id EB7EBBE7; Tue, 19 Mar 2013 18:23:58 +0000 (UTC) Received: by mail-vc0-f181.google.com with SMTP id hv10so656141vcb.12 for ; Tue, 19 Mar 2013 11:23:52 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=4k8rH+jfvMnsbZwvTpgmGrGeY7EDTw+9FV1yzU6o6as=; b=gM9ToVA0f9nYaDMnisfFfcyZPPHYgeq7S/xPU0RKwmDI214xejzUDJRKOhzvAXOj/f QEETvShTKs264ftmkfDnv30zr/PjvR5J978ik+8FnYokUwhKiuYfR9BQJiCxyWVkdHFO OH57PVNIAHTHDKilcukDx8RtTjaES27x/ic++VO3dkgUgCCO4W/J0TSDyUTdbNDBVbuG vNzUPDdjINUYkLbBw22ASjn1kiLwoa9vSSII8GouMU/lqq+MIxlL3K6JusP1cpgABVE6 Ze0NPLAmmWSZOQ3C1x8LzdAYJtzLWeFcNzLRi0EnBdoUlspcjCfvM92LPc4RK7fKriCb 2sHQ== MIME-Version: 1.0 X-Received: by 10.58.84.164 with SMTP id a4mr4012794vez.9.1363717432377; Tue, 19 Mar 2013 11:23:52 -0700 (PDT) Received: by 10.58.151.65 with HTTP; Tue, 19 Mar 2013 11:23:52 -0700 (PDT) In-Reply-To: <5145F4D0.1060608@rainbow-runner.nl> References: <20130311185107.GB91604@redundancy.redundancy.org> <5145F4D0.1060608@rainbow-runner.nl> Date: Tue, 19 Mar 2013 13:23:52 -0500 Message-ID: Subject: Re: shotwell From: Jeremy Messenger To: Koop Mast Content-Type: text/plain; charset=ISO-8859-1 Cc: gnome@freebsd.org, David Thiel X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 18:23:59 -0000 On Sun, Mar 17, 2013 at 11:52 AM, Koop Mast wrote: > On 11-3-2013 19:51, David Thiel wrote: >> >> Hello gnome, >> >> I currently maintain the shotwell port, but don't really have the >> resources to keep it up to date right now. I think it should probably >> belong to gnome@ anyway, as it depends on a lot of gnome stuff being up >> to date, like vala. Any objection to me changing the maintainership to >> you guys? >> >> Thanks, >> David > > > Well as far as I know it isn't officaly part of the GNOME desktop. Also > since we already short on man power, I rather not add to it. Could you try > and see if someone on ports@ is willing? I agree. Throw it in ports@ and someone will pick it up if one of them is interesting to maintain it. > -Koop > > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 18:33:49 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3164F574; Tue, 19 Mar 2013 18:33:49 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 0D2ABCF2; Tue, 19 Mar 2013 18:33:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JIXmiD077938; Tue, 19 Mar 2013 18:33:48 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JIXmdu077937; Tue, 19 Mar 2013 18:33:48 GMT (envelope-from mezz) Date: Tue, 19 Mar 2013 18:33:48 GMT Message-Id: <201303191833.r2JIXmdu077937@freefall.freebsd.org> To: lichray@gmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/165227: [UPDATE] libgsf-1.14.22, goffice-0.9.1, gnumeric-1.11.1... X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 18:33:49 -0000 Synopsis: [UPDATE] libgsf-1.14.22, goffice-0.9.1, gnumeric-1.11.1... State-Changed-From-To: suspended->closed State-Changed-By: mezz State-Changed-When: Tue Mar 19 18:33:13 UTC 2013 State-Changed-Why: close this pr. It's not need to be kept around if it's a development version. http://www.freebsd.org/cgi/query-pr.cgi?pr=165227 From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 18:35:04 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B5FE8599; Tue, 19 Mar 2013 18:35:04 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 8A285CF9; Tue, 19 Mar 2013 18:35:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JIZ4Hd078031; Tue, 19 Mar 2013 18:35:04 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JIZ44u078030; Tue, 19 Mar 2013 18:35:04 GMT (envelope-from mezz) Date: Tue, 19 Mar 2013 18:35:04 GMT Message-Id: <201303191835.r2JIZ44u078030@freefall.freebsd.org> To: lumiwa@gmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/174900: devel/gvfs: process gvfs* take 100% of CPU X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 18:35:04 -0000 Synopsis: devel/gvfs: process gvfs* take 100% of CPU State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Tue Mar 19 18:34:50 UTC 2013 State-Changed-Why: Already fixed it months ago. http://www.freebsd.org/cgi/query-pr.cgi?pr=174900 From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 18:59:32 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 255A4261 for ; Tue, 19 Mar 2013 18:59:32 +0000 (UTC) (envelope-from javier_cepa@optenet.com) Received: from kolab1.optenet.com (kolab1-pri.optenet.com [5.9.115.82]) by mx1.freebsd.org (Postfix) with ESMTP id A7217E04 for ; Tue, 19 Mar 2013 18:59:30 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by kolab1.optenet.com (Postfix) with ESMTP id 3018A9F08068 for ; Tue, 19 Mar 2013 19:59:29 +0100 (CET) Received: from [192.168.1.100] (74.Red-83-57-64.dynamicIP.rima-tde.net [83.57.64.74]) (Authenticated sender: javier_cepa) by kolab1.optenet.com (Postfix) with ESMTPSA id CC12F9F08017; Tue, 19 Mar 2013 19:59:27 +0100 (CET) User-Agent: K-9 Mail for Android In-Reply-To: References: <51483C1B.70502@optenet.com> MIME-Version: 1.0 Subject: Re: intool for owncloud From: Javier Cepa Iglesias Date: Tue, 19 Mar 2013 19:59:29 +0100 To: Jeremy Messenger , Kevin Oberman Message-ID: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: gnome@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 18:59:32 -0000 yes, it was my fault... perl wasn't update. sorry for any inconvenience... :-( thanks for your time... Jeremy Messenger escribió: >On Tue, Mar 19, 2013 at 1:03 PM, Kevin Oberman >wrote: >> On Tue, Mar 19, 2013 at 3:21 AM, Javier Cepa Iglesias < >> javier_cepa@optenet.com> wrote: >> >>> ===> owncloud-4.5.7 depends on executable: mp3info - not found >>> ===> Verifying install for mp3info in /usr/ports/audio/mp3info >>> ===> mp3info-gtk-0.8.5 depends on file: >/usr/local/bin/intltool-**extract >>> - not found >>> ===> Verifying install for /usr/local/bin/intltool-**extract in >>> /usr/ports/textproc/intltool >>> ===> intltool-0.41.1 depends on package: p5-XML-Parser>=0 - found >>> ===> intltool-0.41.1 depends on executable: gmake - found >>> ===> intltool-0.41.1 depends on file: /usr/local/bin/perl5.8.9 - >found >-------------------------------------------------------------------------^^^^^ > >>> ===> intltool-0.41.1 depends on shared library: iconv.3 - found >>> ===> Configuring for intltool-0.41.1 >>> 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... ./install-sh -c -d >>> checking for gawk... no >>> checking for mawk... no >>> checking for nawk... nawk >>> checking whether gmake sets $(MAKE)... yes >>> checking for perl... /usr/bin/perl >>> checking for perl >= 5.8.1... configure: error: perl 5.8.1 is >required for >>> intltool >>> ===> Script "configure" failed unexpectedly. >>> Please report the problem to gnome@FreeBSD.org [maintainer] and >attach the >>> "/usr/ports/textproc/intltool/**work/intltool-0.41.1/config.**log" >>> including the >>> output of the failure of your make command. Also, it might be a good >idea >>> to >>> provide an overview of all packages installed on your system (e.g. a >>> /usr/sbin/pkg_info -Ea). >>> *** [do-configure] Error code 1 >>> >>> Stop in /usr/ports/textproc/intltool. >>> *** [build-depends] Error code 1 >>> >>> Stop in /usr/ports/audio/mp3info. >>> *** [install] Error code 1 >>> >>> Stop in /usr/ports/audio/mp3info. >>> *** [build-depends] Error code 1 >>> >> >> Is it safe to assume that you DO have perl (of at least 5.8.1) >installed? > >Yeah, it looks like but his perl is still out of date though. Probably >didn't followed the UPDATING about Perl upgrade or something else. > >> Also, you need to follow the instructions included in the message you >sent >> for anyone to make much of a guess as to what went wrong. The >config.log is >> especially important for this sort of error. >> -- >> R. Kevin Oberman, Network Engineer >> E-mail: rkoberman@gmail.com >> _______________________________________________ >> freebsd-gnome@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-gnome >> To unsubscribe, send any mail to >"freebsd-gnome-unsubscribe@freebsd.org" > > > >-- >mezz.freebsd@gmail.com - mezz@FreeBSD.org >FreeBSD GNOME Team >http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org ----------------------- Javier Cepa Iglesias OPTENET S.A. ----------------------- From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 18:59:32 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 797B5262 for ; Tue, 19 Mar 2013 18:59:32 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-ob0-x236.google.com (mail-ob0-x236.google.com [IPv6:2607:f8b0:4003:c01::236]) by mx1.freebsd.org (Postfix) with ESMTP id 49BE5E05 for ; Tue, 19 Mar 2013 18:59:32 +0000 (UTC) Received: by mail-ob0-f182.google.com with SMTP id va7so797480obc.27 for ; Tue, 19 Mar 2013 11:59:31 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:date:x-google-sender-auth:message-id :subject:from:to:content-type; bh=lHCfW0ao6NkBLTRRVstl/5CZ39z03/QdlDM/rylLl9U=; b=RUgh5R/expOcnhnTcuYbcjOXyGqqtS8VDIjKedknva5wRMTzEw56BN/Shvk5OSncSo pqC/ttkNBLFsRbgjW6ZPS4viHeoMqHYhFpMTXcapx2sLoNFiw+rX/GG9ZQIWa5eoYJnM HaPhGimc+RnEr2+/3EeXNUDM1Y+wn9GKtdjehdGbk8ukEETuCEK9F/gXEIDPrhCpcgmF ilHdIzgElU1TDqeV7oKj45+OFleTRsIDbofCrH1b07Dnbc/VEo1rLWvkz2JBzyiB3ST1 oILvOBkAR++QlI9Dj+b/wrx5+f32VW++AUQ1MAWoMiw8vHZYSJMcWf/K/2+Np3Si3MzM GH2Q== MIME-Version: 1.0 X-Received: by 10.182.217.10 with SMTP id ou10mr2165404obc.30.1363719571407; Tue, 19 Mar 2013 11:59:31 -0700 (PDT) Sender: kob6558@gmail.com Received: by 10.76.11.165 with HTTP; Tue, 19 Mar 2013 11:59:31 -0700 (PDT) Date: Tue, 19 Mar 2013 11:59:31 -0700 X-Google-Sender-Auth: 3aB-CrpykL8gXhSyhikjVPXv4-I Message-ID: Subject: databases/libgda4 fails to build with graphviz installed From: Kevin Oberman To: FreeBSD GNOME Users Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 18:59:32 -0000 When I attempted building libgda-4.2.12 it failed wit the error: gmake[3]: Entering directory `/usr/ports/databases/libgda4/work/libgda-4.2.12/tools/browser/canvas' CC browser-canvas.lo browser-canvas.c: In function 'popup_export_cb': browser-canvas.c:604: warning: null format string browser-canvas.c: In function 'browser_canvas_perform_auto_layout': browser-canvas.c:937: error: incompatible type for argument 2 of 'agopen' browser-canvas.c:937: error: too few arguments to function 'agopen' browser-canvas.c:938: warning: implicit declaration of function 'agnodeattr' browser-canvas.c:971: error: too few arguments to function 'agnode' browser-canvas.c:1015: error: too few arguments to function 'agedge' This path is only taken when graphviz is installed, so a redports or an -exp build would not have caught it. When I look up the calls that produce the errors, the arguments required have no similarity that I can see to those in browser-canvas code. >From /usr/local/include/graphviz/cgraph.h: extern Agraph_t *agopen(char *name, Agdesc_t desc, Agdisc_t * disc); While line 937 only passes two arguments. Similar for the remainder. Is this a version incompatibility with the the graphviz API? -- R. Kevin Oberman, Network Engineer E-mail: rkoberman@gmail.com From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 19:11:29 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id CC9C4509 for ; Tue, 19 Mar 2013 19:11:29 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward14.mail.yandex.net (forward14.mail.yandex.net [IPv6:2a02:6b8:0:801::4]) by mx1.freebsd.org (Postfix) with ESMTP id 7A00EE9E for ; Tue, 19 Mar 2013 19:11:29 +0000 (UTC) Received: from smtp13.mail.yandex.net (smtp13.mail.yandex.net [95.108.130.68]) by forward14.mail.yandex.net (Yandex) with ESMTP id C126719822D4; Tue, 19 Mar 2013 23:11:27 +0400 (MSK) Received: from smtp13.mail.yandex.net (localhost [127.0.0.1]) by smtp13.mail.yandex.net (Yandex) with ESMTP id 86F15E400DB; Tue, 19 Mar 2013 23:11:27 +0400 (MSK) Received: from unknown (unknown [178.76.224.133]) by smtp13.mail.yandex.net (nwsmtp/Yandex) with ESMTP id BQA4GW7Z-BRAeJjhe; Tue, 19 Mar 2013 23:11:27 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1363720287; bh=VaTSnCn9sbnopmXLPfxeLWDPS8+1DI5PSUmbzG+53iE=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=HIhDz+MMfikmvX9lkk/j6gqv4rj4faMPPWDg+wnzhs39RmTD3mVOBDu9e6sXDX50f QpOCXH7XB93n33LEn7skxsf2fzTR7AQSVWpbByCdMMKKZuJRAc4F+1QocsPlHOrE4z yHskp09elX21izIs7MBmpyiU7CJbRF5fA/NQvvB8= Message-ID: <5148B845.2060602@yandex.ru> Date: Tue, 19 Mar 2013 23:11:01 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130311 Thunderbird/17.0.4 MIME-Version: 1.0 To: Kevin Oberman Subject: Re: databases/libgda4 fails to build with graphviz installed References: In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD GNOME Users X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 19:11:29 -0000 Kevin Oberman wrote on 19.03.2013 22:59: > When I attempted building libgda-4.2.12 it failed wit the error: > gmake[3]: Entering directory > `/usr/ports/databases/libgda4/work/libgda-4.2.12/tools/browser/canvas' > CC browser-canvas.lo > browser-canvas.c: In function 'popup_export_cb': > browser-canvas.c:604: warning: null format string > browser-canvas.c: In function 'browser_canvas_perform_auto_layout': > browser-canvas.c:937: error: incompatible type for argument 2 of 'agopen' > browser-canvas.c:937: error: too few arguments to function 'agopen' > browser-canvas.c:938: warning: implicit declaration of function 'agnodeattr' > browser-canvas.c:971: error: too few arguments to function 'agnode' > browser-canvas.c:1015: error: too few arguments to function 'agedge' > > This path is only taken when graphviz is installed, so a redports or an > -exp build would not have caught it. When I look up the calls that produce > the errors, the arguments required have no similarity that I can see to > those in browser-canvas code. >>From /usr/local/include/graphviz/cgraph.h: > extern Agraph_t *agopen(char *name, Agdesc_t desc, Agdisc_t * disc); > While line 937 only passes two arguments. Similar for the remainder. > > Is this a version incompatibility with the the graphviz API? I second this. Both 4.2.5 and 4.2.12 fail if graphviz is installed. And get this if it is not: browser-canvas.c:33:10: fatal error: 'gvc.h' file not found -- Regards, Ruslan Tinderboxing kills... the drives. From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 21:12:30 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 36DC65A6; Tue, 19 Mar 2013 21:12:30 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id EF5DF78B; Tue, 19 Mar 2013 21:12:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JLCTu0008038; Tue, 19 Mar 2013 21:12:29 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JLCS7g008037; Tue, 19 Mar 2013 21:12:28 GMT (envelope-from mezz) Date: Tue, 19 Mar 2013 21:12:28 GMT Message-Id: <201303192112.r2JLCS7g008037@freefall.freebsd.org> To: xenophon+freebsd@irtnog.org, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/175062: net/opal3 needs zrtpcpp shared library dependency version changed to match current devel/libzrtpcpp X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 21:12:30 -0000 Synopsis: net/opal3 needs zrtpcpp shared library dependency version changed to match current devel/libzrtpcpp State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Tue Mar 19 21:11:28 UTC 2013 State-Changed-Why: It has been fixed by kwm a few days ago. http://www.freebsd.org/cgi/query-pr.cgi?pr=175062 From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 21:18:03 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 194286BE; Tue, 19 Mar 2013 21:18:03 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id E95B07D5; Tue, 19 Mar 2013 21:18:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JLI2Mc009039; Tue, 19 Mar 2013 21:18:02 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JLI2Cx009038; Tue, 19 Mar 2013 21:18:02 GMT (envelope-from mezz) Date: Tue, 19 Mar 2013 21:18:02 GMT Message-Id: <201303192118.r2JLI2Cx009038@freefall.freebsd.org> To: freebsd.amd64@gmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/175125: net/avahi-app fails to rebuild against devel/icu-50.1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 21:18:03 -0000 Synopsis: net/avahi-app fails to rebuild against devel/icu-50.1 State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Tue Mar 19 21:17:45 UTC 2013 State-Changed-Why: It has been solved by the submitter. http://www.freebsd.org/cgi/query-pr.cgi?pr=175125 From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 21:20:27 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CDCAB702; Tue, 19 Mar 2013 21:20:27 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id A03A87EC; Tue, 19 Mar 2013 21:20:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JLKRsw010611; Tue, 19 Mar 2013 21:20:27 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JLKRPv010610; Tue, 19 Mar 2013 21:20:27 GMT (envelope-from mezz) Date: Tue, 19 Mar 2013 21:20:27 GMT Message-Id: <201303192120.r2JLKRPv010610@freefall.freebsd.org> To: rumen.yotov@gmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/175128: build of misc/shared-mime-info fails if glib is built with fix-collation patch X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 21:20:27 -0000 Synopsis: build of misc/shared-mime-info fails if glib is built with fix-collation patch State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Tue Mar 19 21:19:55 UTC 2013 State-Changed-Why: You need to reinstall all ports that depends on icu. http://www.freebsd.org/cgi/query-pr.cgi?pr=175128 From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 21:32:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8B0E680B; Tue, 19 Mar 2013 21:32:01 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 4A398856; Tue, 19 Mar 2013 21:32:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JLW16b012269; Tue, 19 Mar 2013 21:32:01 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JLW1s0012268; Tue, 19 Mar 2013 21:32:01 GMT (envelope-from mezz) Date: Tue, 19 Mar 2013 21:32:01 GMT Message-Id: <201303192132.r2JLW1s0012268@freefall.freebsd.org> To: gunther.stengl@googlemail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/175161: misc/shared-mime-info: Missing build dependency X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 21:32:01 -0000 Synopsis: misc/shared-mime-info: Missing build dependency State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Tue Mar 19 21:30:37 UTC 2013 State-Changed-Why: It sounds like you might not follow Perl upgrade in the UPDATING. The misc/shared-mime-info will install p5-XML-Parser just fine by the intltool. http://www.freebsd.org/cgi/query-pr.cgi?pr=175161 From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 21:36:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 03EE6ABC; Tue, 19 Mar 2013 21:36:01 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id D3F0A891; Tue, 19 Mar 2013 21:36:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JLa0qS012385; Tue, 19 Mar 2013 21:36:00 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JLa0WX012384; Tue, 19 Mar 2013 21:36:00 GMT (envelope-from mezz) Date: Tue, 19 Mar 2013 21:36:00 GMT Message-Id: <201303192136.r2JLa0WX012384@freefall.freebsd.org> To: eric@camachat.org, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/174492: Fix devel/glibmm compliing with clang X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 21:36:01 -0000 Synopsis: Fix devel/glibmm compliing with clang State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Tue Mar 19 21:35:30 UTC 2013 State-Changed-Why: kwm has reported that he can't reproduce this issue. http://www.freebsd.org/cgi/query-pr.cgi?pr=174492 From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 21:37:57 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EB63CAFA; Tue, 19 Mar 2013 21:37:57 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id C60388A2; Tue, 19 Mar 2013 21:37:57 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JLbvgr012441; Tue, 19 Mar 2013 21:37:57 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JLbvgJ012438; Tue, 19 Mar 2013 21:37:57 GMT (envelope-from mezz) Date: Tue, 19 Mar 2013 21:37:57 GMT Message-Id: <201303192137.r2JLbvgJ012438@freefall.freebsd.org> To: jhein@symmetricom.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order problem X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 21:37:58 -0000 Synopsis: [patch] devel/py-gobject OPTIONSFILE eval order problem State-Changed-From-To: open->analyzed State-Changed-By: mezz State-Changed-When: Tue Mar 19 21:37:36 UTC 2013 State-Changed-Why: analyzed http://www.freebsd.org/cgi/query-pr.cgi?pr=175276 From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 21:39:42 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 88C9CB3F; Tue, 19 Mar 2013 21:39:42 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 624498AF; Tue, 19 Mar 2013 21:39:42 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JLdgHB012495; Tue, 19 Mar 2013 21:39:42 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JLdfVL012494; Tue, 19 Mar 2013 21:39:41 GMT (envelope-from mezz) Date: Tue, 19 Mar 2013 21:39:41 GMT Message-Id: <201303192139.r2JLdfVL012494@freefall.freebsd.org> To: ohartman@zedat.fu-berlin.de, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/175603: graphics/gegl: ./tools/create-reference.rb:331:in `block (2 levels) in
': invalid byte sequence in US-ASCII (ArgumentError) X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 21:39:42 -0000 Synopsis: graphics/gegl: ./tools/create-reference.rb:331:in `block (2 levels) in
': invalid byte sequence in US-ASCII (ArgumentError) State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Tue Mar 19 21:39:17 UTC 2013 State-Changed-Why: Should be solved in the latest FreeBSD ports. http://www.freebsd.org/cgi/query-pr.cgi?pr=175603 From owner-freebsd-gnome@FreeBSD.ORG Tue Mar 19 21:55:17 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8E6A9132; Tue, 19 Mar 2013 21:55:17 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 6910A93E; Tue, 19 Mar 2013 21:55:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2JLtHxk015699; Tue, 19 Mar 2013 21:55:17 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2JLtHMl015698; Tue, 19 Mar 2013 21:55:17 GMT (envelope-from mezz) Date: Tue, 19 Mar 2013 21:55:17 GMT Message-Id: <201303192155.r2JLtHMl015698@freefall.freebsd.org> To: mezz@FreeBSD.org, gnome@FreeBSD.org, bapt@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/175276: [patch] devel/py-gobject OPTIONSFILE eval order problem X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 19 Mar 2013 21:55:17 -0000 Synopsis: [patch] devel/py-gobject OPTIONSFILE eval order problem Responsible-Changed-From-To: gnome->bapt Responsible-Changed-By: mezz Responsible-Changed-When: Tue Mar 19 21:53:45 UTC 2013 Responsible-Changed-Why: py-gobject doesn't has this problem anymore, but the bug is still exists in the OPTIONS framework though. I have made a suggest of solution to the bug. Change from gnome to bapt. I am not sure who is responsible for OPTIONS though. http://www.freebsd.org/cgi/query-pr.cgi?pr=175276 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 00:31:22 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 51CA2D25; Wed, 20 Mar 2013 00:31:22 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 2ED8FF04; Wed, 20 Mar 2013 00:31:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K0VMuh052571; Wed, 20 Mar 2013 00:31:22 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K0VLk1052570; Wed, 20 Mar 2013 00:31:21 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 00:31:21 GMT Message-Id: <201303200031.r2K0VLk1052570@freefall.freebsd.org> To: dstewyls@gmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/175640: [patch] print/freetype2: convert to optionsNG X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 00:31:22 -0000 Synopsis: [patch] print/freetype2: convert to optionsNG State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 00:31:10 UTC 2013 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=175640 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 00:40:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 761C9E23 for ; Wed, 20 Mar 2013 00:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 37ECCF47 for ; Wed, 20 Mar 2013 00:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K0e1t4053968 for ; Wed, 20 Mar 2013 00:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K0e0oN053967; Wed, 20 Mar 2013 00:40:00 GMT (envelope-from gnats) Date: Wed, 20 Mar 2013 00:40:00 GMT Message-Id: <201303200040.r2K0e0oN053967@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/175640: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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: Wed, 20 Mar 2013 00:40:01 -0000 The following reply was made to PR ports/175640; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/175640: commit references a PR Date: Wed, 20 Mar 2013 00:31:07 +0000 (UTC) Author: mezz Date: Wed Mar 20 00:30:59 2013 New Revision: 314701 URL: http://svnweb.freebsd.org/changeset/ports/314701 Log: -OPTIONSng and remove pre-everything. -Remove the CJK stuff since it has been disabled for very long time. PR: ports/175640 Submitted by: Donald Stewart Modified: head/print/freetype2/Makefile Modified: head/print/freetype2/Makefile ============================================================================== --- head/print/freetype2/Makefile Tue Mar 19 22:48:44 2013 (r314700) +++ head/print/freetype2/Makefile Wed Mar 20 00:30:59 2013 (r314701) @@ -27,28 +27,13 @@ USE_GNOME= ltverhack:9 LIBTOOLFILES= builds/unix/configure CONFIGURE_WRKSRC= ${WRKSRC}/builds/unix -.if defined(WITH_LCD_FILTERING) -CFLAGS+= -DFT_CONFIG_OPTION_SUBPIXEL_RENDERING -.endif +OPTIONS_DEFINE= LCD_FILTERING +LCD_FILTERING_DESC?= Sub-pixel rendering (patented) -.if defined(WITH_CJK) -#PATCH_SITES+= http://lwj-hinet.myweb.hinet.net/ \ -# ftp://local-distfiles.freebsd.org.cn/pub/china-ports/hamigua/ \ -# http://bsdchat.com/dist/firefly-cjk-patchset/ -#PATCHFILES+= cjk-freetype-2.1.10-20051219.patch.gz -#PATCH_DIST_STRIP+= -p1 -.endif +.include -pre-everything:: -.if !defined(WITH_LCD_FILTERING) - @${ECHO_MSG} - @${ECHO_MSG} "You may want to enable LCD filtering." - @${ECHO_MSG} - @${ECHO_MSG} "Hit Ctrl-C now and use \"make WITH_LCD_FILTERING=yes\"" - @${ECHO_MSG} - @${ECHO_MSG} "Note that there are possible patent issues related to the" - @${ECHO_MSG} "use of the LCD filtering technology." - @${ECHO_MSG} +.if ${PORT_OPTIONS:MLCD_FILTERING} +CFLAGS+= -DFT_CONFIG_OPTION_SUBPIXEL_RENDERING .endif pre-patch: _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 01:53:22 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9E9408B3; Wed, 20 Mar 2013 01:53:22 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 7009C2A4; Wed, 20 Mar 2013 01:53:22 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K1rMuB069414; Wed, 20 Mar 2013 01:53:22 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K1rLUB069413; Wed, 20 Mar 2013 01:53:21 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 01:53:21 GMT Message-Id: <201303200153.r2K1rLUB069413@freefall.freebsd.org> To: dmitry2006@yandex.ru, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/175858: graphics/dia update to 0.97.2 [patch] X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 01:53:22 -0000 Synopsis: graphics/dia update to 0.97.2 [patch] State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 01:53:11 UTC 2013 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=175858 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:00:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 5F0E3A16 for ; Wed, 20 Mar 2013 02:00:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 433E22DF for ; Wed, 20 Mar 2013 02:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K201Zv069609 for ; Wed, 20 Mar 2013 02:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K201H7069608; Wed, 20 Mar 2013 02:00:01 GMT (envelope-from gnats) Date: Wed, 20 Mar 2013 02:00:01 GMT Message-Id: <201303200200.r2K201H7069608@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/175858: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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: Wed, 20 Mar 2013 02:00:01 -0000 The following reply was made to PR ports/175858; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/175858: commit references a PR Date: Wed, 20 Mar 2013 01:53:08 +0000 (UTC) Author: mezz Date: Wed Mar 20 01:52:58 2013 New Revision: 314702 URL: http://svnweb.freebsd.org/changeset/ports/314702 Log: - Update to 0.97.2. [1] - Update the header. - gnomehack -> USES=pathfix - Remove libgnomeui dependency and always disable it. We want to get rid of GNOME2. - Disable Python support as it doesn't build. - Update WWW. PR: ports/175858 [1] Submitted by: Dmitry [1] Deleted: head/graphics/dia/files/patch-export_png.c Modified: head/graphics/dia/Makefile head/graphics/dia/distinfo (contents, props changed) head/graphics/dia/files/patch-doc_fr_Makefile.in (contents, props changed) head/graphics/dia/pkg-descr (contents, props changed) head/graphics/dia/pkg-plist (contents, props changed) Modified: head/graphics/dia/Makefile ============================================================================== --- head/graphics/dia/Makefile Wed Mar 20 00:30:59 2013 (r314701) +++ head/graphics/dia/Makefile Wed Mar 20 01:52:58 2013 (r314702) @@ -1,14 +1,9 @@ -# New ports collection makefile for: dia -# Date created: 21 December 1999 -# Whom: saper@system.pl -# +# Created by: saper@system.pl # $FreeBSD$ # $MCom: ports/graphics/dia/Makefile,v 1.16 2007/10/11 02:49:12 mezz Exp $ -# PORTNAME= dia -DISTVERSION= 0.97.1 -PORTREVISION= 3 +DISTVERSION= 0.97.2 PORTEPOCH= 1 CATEGORIES= graphics gnome MASTER_SITES= GNOME @@ -17,34 +12,38 @@ DIST_SUBDIR= gnome2 MAINTAINER?= gnome@FreeBSD.org COMMENT= Diagram creation program, similar to Visio -BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:${PORTSDIR}/textproc/docbook-xsl -LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ +LIB_DEPENDS= popt:${PORTSDIR}/devel/popt \ png15:${PORTSDIR}/graphics/png -USE_BZIP2= yes +USES= pathfix +USE_XZ= yes USE_GMAKE= yes -USE_GNOME= gtk20 gnomehack gnomeprefix libxslt libartlgpl2 intlhack \ +USE_GNOME= gtk20 gnomeprefix libxslt libartlgpl2 intlhack \ desktopfileutils -WANT_GNOME= yes INSTALLS_ICONS= yes USE_GETTEXT= yes GNU_CONFIGURE= yes CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -lintl" \ LOCALBASE="${LOCALBASE}" CPPFLAGS+= -I${LOCALBASE}/include +CONFIGURE_ARGS= --disable-gnome + +.if !defined(NOPORTDOCS) +BUILD_DEPENDS= ${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl:${PORTSDIR}/textproc/docbook-xsl MAN1= dia.1 MANLANG= "" fr - -.if !defined(WITHOUT_PYTHON) -USE_PYTHON= yes -USE_GNOME+= pygtk2 -CONFIGURE_ARGS= --with-python -PLIST_SUB+= PYTHON="" -.else -PLIST_SUB+= PYTHON="@comment " .endif +#.if !defined(WITHOUT_PYTHON) +#USE_PYTHON= yes +#USE_GNOME+= pygtk2 +#CONFIGURE_ARGS= --with-python +#PLIST_SUB+= PYTHON="" +#.else +#PLIST_SUB+= PYTHON="@comment " +#.endif + .include .if ${ARCH} == "i386" @@ -56,18 +55,6 @@ CONFIGURE_ARGS+= --disable-libemf PLIST_SUB+= WMF="@comment " .endif -.if ${HAVE_GNOME:Mlibgnomeui}!="" -USE_GNOME+= libgnomeui -INSTALLS_OMF= yes -CONFIGURE_ARGS+= --enable-gnome -PKGNAMESUFFIX= -gnome -GNOME_ENABLED= yes -PLIST_SUB+= GNOME="" -.else -CONFIGURE_ARGS+= --disable-gnome -PLIST_SUB+= GNOME="@comment " -.endif - post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ ${WRKSRC}/lib/intl.c @@ -76,16 +63,13 @@ post-patch: ${WRKSRC}/tests/test-objects.c \ ${WRKSRC}/tests/test-boundingbox.c .if defined(NOPORTDOCS) - @${FIND} ${WRKSRC}/doc -name Makefile.in | ${XARGS} ${REINPLACE_CMD} -e \ - 's|$$(examples)||g ; s|$$(mkinstalldirs) $$(sysdoc)/examples||g ; \ - s|$$(mkinstalldirs) $$(sysdoc)||g' + @${REINPLACE_CMD} -e '/SUBDIRS/s|data doc tests|data tests|g' \ + ${WRKSRC}/Makefile.in .endif -.ifndef (GNOME_ENABLED) @${FIND} ${WRKSRC} -name Makefile.in | \ ${XARGS} ${REINPLACE_CMD} -e \ 's,\(^GTK_LIBS.*\),\1 ${PTHREAD_LIBS}, ; \ s,\(^GTK_CFLAGS = \),\1 ${PTHREAD_CFLAGS} ,' -.endif pre-configure: @${REINPLACE_CMD} -e 's|http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl|${LOCALBASE}/share/xsl/docbook/manpages/docbook.xsl| ; \ Modified: head/graphics/dia/distinfo ============================================================================== --- head/graphics/dia/distinfo Wed Mar 20 00:30:59 2013 (r314701) +++ head/graphics/dia/distinfo Wed Mar 20 01:52:58 2013 (r314702) @@ -1,2 +1,2 @@ -SHA256 (gnome2/dia-0.97.1.tar.bz2) = 8dfe8b2c9d87baf29834c8de5e3ec91497c2b17f2b77fb1b867afddf5c429142 -SIZE (gnome2/dia-0.97.1.tar.bz2) = 6836081 +SHA256 (gnome2/dia-0.97.2.tar.xz) = a761478fb98697f71b00d3041d7c267f3db4b94fe33ac07c689cb89c4fe5eae1 +SIZE (gnome2/dia-0.97.2.tar.xz) = 5507004 Modified: head/graphics/dia/files/patch-doc_fr_Makefile.in ============================================================================== --- head/graphics/dia/files/patch-doc_fr_Makefile.in Wed Mar 20 00:30:59 2013 (r314701) +++ head/graphics/dia/files/patch-doc_fr_Makefile.in Wed Mar 20 01:52:58 2013 (r314702) @@ -1,9 +1,9 @@ ---- doc/fr/Makefile.in.orig 2009-07-05 15:43:34.000000000 +1000 -+++ doc/fr/Makefile.in 2009-07-05 15:42:37.000000000 +1000 -@@ -304,7 +304,7 @@ +--- doc/fr/Makefile.in.orig ++++ doc/fr/Makefile.in +@@ -285,7 +285,7 @@ + libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ - lt_ECHO = @lt_ECHO@ -mandir = $(datadir)/man/$(lang) +mandir = @mandir@/$(lang) mkdir_p = @mkdir_p@ Modified: head/graphics/dia/pkg-descr ============================================================================== --- head/graphics/dia/pkg-descr Wed Mar 20 00:30:59 2013 (r314701) +++ head/graphics/dia/pkg-descr Wed Mar 20 01:52:58 2013 (r314702) @@ -11,4 +11,4 @@ It can load and save diagrams to a custo save space), can export diagrams to EPS or SVG formats and can print diagrams (including ones that span multiple pages). -WWW: http://www.gnome.org/projects/dia/ +WWW: https://live.gnome.org/Dia Modified: head/graphics/dia/pkg-plist ============================================================================== --- head/graphics/dia/pkg-plist Wed Mar 20 00:30:59 2013 (r314701) +++ head/graphics/dia/pkg-plist Wed Mar 20 01:52:58 2013 (r314702) @@ -1,20 +1,20 @@ bin/dia lib/dia/libaadl_objects.la lib/dia/libaadl_objects.so -lib/dia/libart_filter.so lib/dia/libart_filter.la +lib/dia/libart_filter.so lib/dia/libcairo_filter.la lib/dia/libcairo_filter.so lib/dia/libcgm_filter.la lib/dia/libcgm_filter.so lib/dia/libchronogram_objects.la lib/dia/libchronogram_objects.so -lib/dia/libcustom_lines_objects.so lib/dia/libcustom_lines_objects.la +lib/dia/libcustom_lines_objects.so lib/dia/libcustom_objects.la lib/dia/libcustom_objects.so -lib/dia/libdb_objects.so lib/dia/libdb_objects.la +lib/dia/libdb_objects.so lib/dia/libdia.la lib/dia/libdia.so lib/dia/libdxf_filter.la @@ -45,12 +45,10 @@ lib/dia/libpgf_filter.la lib/dia/libpgf_filter.so lib/dia/libpixbuf_filter.la lib/dia/libpixbuf_filter.so -lib/dia/libpostscript_filter.so lib/dia/libpostscript_filter.la +lib/dia/libpostscript_filter.so lib/dia/libpstricks_filter.la lib/dia/libpstricks_filter.so -%%PYTHON%%lib/dia/libpython_plugin.la -%%PYTHON%%lib/dia/libpython_plugin.so lib/dia/libsadt_objects.la lib/dia/libsadt_objects.so lib/dia/libshape_filter.la @@ -72,21 +70,7 @@ lib/dia/libxfig_filter.so lib/dia/libxslt_filter.la lib/dia/libxslt_filter.so share/applications/dia.desktop -%%PYTHON%%share/dia/python-startup.py -%%PYTHON%%share/dia/python/allprops.py -%%PYTHON%%share/dia/python/aobjects.py -%%PYTHON%%share/dia/python/codegen.py -%%PYTHON%%share/dia/python/diasvg.py -%%PYTHON%%share/dia/python/diasvg_import.py -%%PYTHON%%share/dia/python/dot.py -%%PYTHON%%share/dia/python/doxrev.py -%%PYTHON%%share/dia/python/gtkcons.py -%%PYTHON%%share/dia/python/imgmap.py -%%PYTHON%%share/dia/python/otypes.py -%%PYTHON%%share/dia/python/pydiadoc.py -%%PYTHON%%share/dia/python/scascale.py -%%PYTHON%%share/dia/python/select_by.py -%%PYTHON%%share/dia/python/select_empty.py +share/dia/dia-splash.png share/dia/shapes/Assorted/arrow-chevron.png share/dia/shapes/Assorted/arrow-chevron.shape share/dia/shapes/Assorted/arrow-down.png @@ -1321,32 +1305,32 @@ share/dia/shapes/Gane_and_Sarson/entity. share/dia/shapes/Gane_and_Sarson/entity.shape share/dia/shapes/Gane_and_Sarson/process.png share/dia/shapes/Gane_and_Sarson/process.shape -share/dia/shapes/Lights/ACL.shape share/dia/shapes/Lights/ACL.png -share/dia/shapes/Lights/Blacklight.shape +share/dia/shapes/Lights/ACL.shape share/dia/shapes/Lights/Blacklight.png -share/dia/shapes/Lights/Blinders.shape +share/dia/shapes/Lights/Blacklight.shape share/dia/shapes/Lights/Blinders.png -share/dia/shapes/Lights/ERS.shape +share/dia/shapes/Lights/Blinders.shape share/dia/shapes/Lights/ERS.png -share/dia/shapes/Lights/Fresnel.shape +share/dia/shapes/Lights/ERS.shape share/dia/shapes/Lights/Fresnel.png -share/dia/shapes/Lights/Moving_head.shape +share/dia/shapes/Lights/Fresnel.shape share/dia/shapes/Lights/Moving_head.png -share/dia/shapes/Lights/PAR_floor.shape -share/dia/shapes/Lights/PAR_floor.png -share/dia/shapes/Lights/PAR.shape +share/dia/shapes/Lights/Moving_head.shape share/dia/shapes/Lights/PAR.png -share/dia/shapes/Lights/PC.shape +share/dia/shapes/Lights/PAR.shape +share/dia/shapes/Lights/PAR_floor.png +share/dia/shapes/Lights/PAR_floor.shape share/dia/shapes/Lights/PC.png -share/dia/shapes/Lights/Scanner.shape +share/dia/shapes/Lights/PC.shape share/dia/shapes/Lights/Scanner.png -share/dia/shapes/Lights/Striplight.shape +share/dia/shapes/Lights/Scanner.shape share/dia/shapes/Lights/Striplight.png -share/dia/shapes/Lights/Stroboscope.shape +share/dia/shapes/Lights/Striplight.shape share/dia/shapes/Lights/Stroboscope.png -share/dia/shapes/Lights/Structure.shape +share/dia/shapes/Lights/Stroboscope.shape share/dia/shapes/Lights/Structure.png +share/dia/shapes/Lights/Structure.shape share/dia/shapes/Logic/and.png share/dia/shapes/Logic/and.shape share/dia/shapes/Logic/buffer.png @@ -1427,10 +1411,10 @@ share/dia/shapes/Map/Isometric/Train2.pn share/dia/shapes/Map/Isometric/Train2.shape share/dia/shapes/Map/Isometric/Tree1.png share/dia/shapes/Map/Isometric/Tree1.shape -share/dia/shapes/Misc/expended-node.shape share/dia/shapes/Misc/expended-node.png -share/dia/shapes/Misc/expensible-node.shape +share/dia/shapes/Misc/expended-node.shape share/dia/shapes/Misc/expensible-node.png +share/dia/shapes/Misc/expensible-node.shape share/dia/shapes/Misc/file.png share/dia/shapes/Misc/file.shape share/dia/shapes/Misc/folder.png @@ -1717,11 +1701,27 @@ share/dia/xslt/dia-uml2java.xsl share/dia/xslt/dia-uml2owl.xsl share/dia/xslt/dia-uml2python.xsl share/dia/xslt/stylesheets.xml -share/dia/dia-splash.png -share/mime-info/dia.keys -share/mime-info/dia.mime +%%PORTDOCS%%%%DOCSDIR%%/en/examples/diagram.dtd +%%PORTDOCS%%%%DOCSDIR%%/en/examples/shape.dtd +%%PORTDOCS%%%%DOCSDIR%%/en/examples/sheet.dtd +%%PORTDOCS%%%%DOCSDIR%%/eu/examples/diagram.dtd +%%PORTDOCS%%%%DOCSDIR%%/eu/examples/shape.dtd +%%PORTDOCS%%%%DOCSDIR%%/eu/examples/sheet.dtd +%%PORTDOCS%%%%DOCSDIR%%/fr/examples/diagram.dtd +%%PORTDOCS%%%%DOCSDIR%%/fr/examples/shape.dtd +%%PORTDOCS%%%%DOCSDIR%%/fr/examples/sheet.dtd +%%PORTDOCS%%%%DOCSDIR%%/pl/examples/diagram.dtd +%%PORTDOCS%%%%DOCSDIR%%/pl/examples/shape.dtd +%%PORTDOCS%%%%DOCSDIR%%/pl/examples/sheet.dtd +share/icons/hicolor/16x16/apps/dia.png +share/icons/hicolor/22x22/apps/dia.png +share/icons/hicolor/24x24/apps/dia.png +share/icons/hicolor/32x32/apps/dia.png +share/icons/hicolor/48x48/apps/dia.png +share/icons/hicolor/scalable/apps/dia.svg share/locale/am/LC_MESSAGES/dia.mo share/locale/ar/LC_MESSAGES/dia.mo +share/locale/ast/LC_MESSAGES/dia.mo share/locale/az/LC_MESSAGES/dia.mo share/locale/be/LC_MESSAGES/dia.mo share/locale/bg/LC_MESSAGES/dia.mo @@ -1735,6 +1735,7 @@ share/locale/dz/LC_MESSAGES/dia.mo share/locale/el/LC_MESSAGES/dia.mo share/locale/en_CA/LC_MESSAGES/dia.mo share/locale/en_GB/LC_MESSAGES/dia.mo +share/locale/eo/LC_MESSAGES/dia.mo share/locale/es/LC_MESSAGES/dia.mo share/locale/eu/LC_MESSAGES/dia.mo share/locale/fi/LC_MESSAGES/dia.mo @@ -1748,8 +1749,8 @@ share/locale/id/LC_MESSAGES/dia.mo share/locale/is/LC_MESSAGES/dia.mo share/locale/it/LC_MESSAGES/dia.mo share/locale/ja/LC_MESSAGES/dia.mo -share/locale/ko/LC_MESSAGES/dia.mo share/locale/kn/LC_MESSAGES/dia.mo +share/locale/ko/LC_MESSAGES/dia.mo share/locale/lt/LC_MESSAGES/dia.mo share/locale/lv/LC_MESSAGES/dia.mo share/locale/mk/LC_MESSAGES/dia.mo @@ -1757,12 +1758,12 @@ share/locale/ml/LC_MESSAGES/dia.mo share/locale/mn/LC_MESSAGES/dia.mo share/locale/mr/LC_MESSAGES/dia.mo share/locale/ms/LC_MESSAGES/dia.mo -share/locale/oc/LC_MESSAGES/dia.mo -share/locale/or/LC_MESSAGES/dia.mo share/locale/nb/LC_MESSAGES/dia.mo share/locale/ne/LC_MESSAGES/dia.mo share/locale/nl/LC_MESSAGES/dia.mo share/locale/nn/LC_MESSAGES/dia.mo +share/locale/oc/LC_MESSAGES/dia.mo +share/locale/or/LC_MESSAGES/dia.mo share/locale/pa/LC_MESSAGES/dia.mo share/locale/pl/LC_MESSAGES/dia.mo share/locale/pt/LC_MESSAGES/dia.mo @@ -1784,204 +1785,30 @@ share/locale/vi/LC_MESSAGES/dia.mo share/locale/zh_CN/LC_MESSAGES/dia.mo share/locale/zh_HK/LC_MESSAGES/dia.mo share/locale/zh_TW/LC_MESSAGES/dia.mo -%%GNOME%%share/gnome/help/dia/en/dia.xml -%%GNOME%%share/gnome/help/dia/en/authors.xml -%%GNOME%%share/gnome/help/dia/en/dia-cmdline.xml -%%GNOME%%share/gnome/help/dia/en/entities.xml -%%GNOME%%share/gnome/help/dia/en/intro.xml -%%GNOME%%share/gnome/help/dia/en/license.xml -%%GNOME%%share/gnome/help/dia/en/usage-canvas.xml -%%GNOME%%share/gnome/help/dia/en/usage-customization.xml -%%GNOME%%share/gnome/help/dia/en/usage-layers.xml -%%GNOME%%share/gnome/help/dia/en/usage-loadsave.xml -%%GNOME%%share/gnome/help/dia/en/usage-objects-basic.xml -%%GNOME%%share/gnome/help/dia/en/usage-objects-selecting.xml -%%GNOME%%share/gnome/help/dia/en/usage-objects-special.xml -%%GNOME%%share/gnome/help/dia/en/usage-objects.xml -%%GNOME%%share/gnome/help/dia/en/usage-quickstart.xml -%%GNOME%%share/gnome/help/dia/en/custom-shapes.xml -%%GNOME%%share/gnome/help/dia/en/dia-1.xml -%%GNOME%%share/gnome/help/dia/en/graphics/adjacent.png -%%GNOME%%share/gnome/help/dia/en/graphics/after-hor-spread.png -%%GNOME%%share/gnome/help/dia/en/graphics/after-vert-spread.png -%%GNOME%%share/gnome/help/dia/en/graphics/align-bottom.png -%%GNOME%%share/gnome/help/dia/en/graphics/align-center.png -%%GNOME%%share/gnome/help/dia/en/graphics/align-left.png -%%GNOME%%share/gnome/help/dia/en/graphics/align-menu.png -%%GNOME%%share/gnome/help/dia/en/graphics/align-middle.png -%%GNOME%%share/gnome/help/dia/en/graphics/align-right.png -%%GNOME%%share/gnome/help/dia/en/graphics/align-top.png -%%GNOME%%share/gnome/help/dia/en/graphics/arrow-style.png -%%GNOME%%share/gnome/help/dia/en/graphics/assorted-shapes.png -%%GNOME%%share/gnome/help/dia/en/graphics/before-hor-spread.png -%%GNOME%%share/gnome/help/dia/en/graphics/before-left.png -%%GNOME%%share/gnome/help/dia/en/graphics/before-top.png -%%GNOME%%share/gnome/help/dia/en/graphics/before-vert-spread.png -%%GNOME%%share/gnome/help/dia/en/graphics/bezierline-rightclick.png -%%GNOME%%share/gnome/help/dia/en/graphics/stacked.png -%%GNOME%%share/gnome/help/dia/en/graphics/canvas-zoom.png -%%GNOME%%share/gnome/help/dia/en/graphics/cisco-computer-shapes.png -%%GNOME%%share/gnome/help/dia/en/graphics/cisco-misc-shapes.png -%%GNOME%%share/gnome/help/dia/en/graphics/cisco-network-shapes.png -%%GNOME%%share/gnome/help/dia/en/graphics/cisco-switch-shapes.png -%%GNOME%%share/gnome/help/dia/en/graphics/cisco-telephony-shapes.png -%%GNOME%%share/gnome/help/dia/en/graphics/color-dropdown.png -%%GNOME%%share/gnome/help/dia/en/graphics/color-selector1.png -%%GNOME%%share/gnome/help/dia/en/graphics/color_selector.png -%%GNOME%%share/gnome/help/dia/en/graphics/connect-fixed.png -%%GNOME%%share/gnome/help/dia/en/graphics/connect-middle.png -%%GNOME%%share/gnome/help/dia/en/graphics/default-colors.png -%%GNOME%%share/gnome/help/dia/en/graphics/defaults-box.png -%%GNOME%%share/gnome/help/dia/en/graphics/defaults-text.png -%%GNOME%%share/gnome/help/dia/en/graphics/delete-text.png -%%GNOME%%share/gnome/help/dia/en/graphics/dia-startup.png -%%GNOME%%share/gnome/help/dia/en/graphics/diagram-properties-grid.png -%%GNOME%%share/gnome/help/dia/en/graphics/diagram-properties.png -%%GNOME%%share/gnome/help/dia/en/graphics/diagram-tree-sort.png -%%GNOME%%share/gnome/help/dia/en/graphics/diagram-tree.png -%%GNOME%%share/gnome/help/dia/en/graphics/edit-text.png -%%GNOME%%share/gnome/help/dia/en/graphics/file-preferences-diagram.png -%%GNOME%%share/gnome/help/dia/en/graphics/file-preferences-favorites.png -%%GNOME%%share/gnome/help/dia/en/graphics/file-preferences-tree.png -%%GNOME%%share/gnome/help/dia/en/graphics/file-preferences-ui.png -%%GNOME%%share/gnome/help/dia/en/graphics/file-preferences-view.png -%%GNOME%%share/gnome/help/dia/en/graphics/flowchart-shapes.png -%%GNOME%%share/gnome/help/dia/en/graphics/greendots.png -%%GNOME%%share/gnome/help/dia/en/graphics/home_network.png -%%GNOME%%share/gnome/help/dia/en/graphics/line-arrows.png -%%GNOME%%share/gnome/help/dia/en/graphics/line-buttons.png -%%GNOME%%share/gnome/help/dia/en/graphics/line-colors.png -%%GNOME%%share/gnome/help/dia/en/graphics/line-connect.png -%%GNOME%%share/gnome/help/dia/en/graphics/line-styles.png -%%GNOME%%share/gnome/help/dia/en/graphics/line-handles.png -%%GNOME%%share/gnome/help/dia/en/graphics/line-width.png -%%GNOME%%share/gnome/help/dia/en/graphics/line_icon.png -%%GNOME%%share/gnome/help/dia/en/graphics/line_props.png -%%GNOME%%share/gnome/help/dia/en/graphics/misc-shapes.png -%%GNOME%%share/gnome/help/dia/en/graphics/network-shapes.png -%%GNOME%%share/gnome/help/dia/en/graphics/object-group.png -%%GNOME%%share/gnome/help/dia/en/graphics/polyline-rightclick.png -%%GNOME%%share/gnome/help/dia/en/graphics/preferences-gridlines.png -%%GNOME%%share/gnome/help/dia/en/graphics/preferences_fig.png -%%GNOME%%share/gnome/help/dia/en/graphics/properties-uml-class1.png -%%GNOME%%share/gnome/help/dia/en/graphics/reverse-colors.png -%%GNOME%%share/gnome/help/dia/en/graphics/ruler-arrows.png -%%GNOME%%share/gnome/help/dia/en/graphics/sample-flowchart.png -%%GNOME%%share/gnome/help/dia/en/graphics/select-area.png -%%GNOME%%share/gnome/help/dia/en/graphics/select-menu.png -%%GNOME%%share/gnome/help/dia/en/graphics/selected-object.png -%%GNOME%%share/gnome/help/dia/en/graphics/sheets-objects.png -%%GNOME%%share/gnome/help/dia/en/graphics/snaptogrid-button.png -%%GNOME%%share/gnome/help/dia/en/graphics/standard-line-properties.png -%%GNOME%%share/gnome/help/dia/en/graphics/toolbox-basic.png -%%GNOME%%share/gnome/help/dia/en/graphics/toolbox-image.png -%%GNOME%%share/gnome/help/dia/en/graphics/toolbox-lower.png -%%GNOME%%share/gnome/help/dia/en/graphics/toolbox-magnify.png -%%GNOME%%share/gnome/help/dia/en/graphics/toolbox-modify.png -%%GNOME%%share/gnome/help/dia/en/graphics/toolbox-scroll.png -%%GNOME%%share/gnome/help/dia/en/graphics/toolbox-special.png -%%GNOME%%share/gnome/help/dia/en/graphics/toolbox.png -%%GNOME%%share/gnome/help/dia/en/graphics/uml-shapes.png -%%GNOME%%share/gnome/help/dia/en/graphics/view-menu.png -%%GNOME%%share/gnome/help/dia/en/graphics/view-zoom.png -%%GNOME%%share/gnome/help/dia/en/graphics/zigzagline-rightclick.png -%%GNOME%%share/gnome/help/dia/fr/dia.xml -%%GNOME%%share/gnome/help/dia/fr/authors.xml -%%GNOME%%share/gnome/help/dia/fr/entities.xml -%%GNOME%%share/gnome/help/dia/fr/intro.xml -%%GNOME%%share/gnome/help/dia/fr/license.xml -%%GNOME%%share/gnome/help/dia/fr/usage-canvas.xml -%%GNOME%%share/gnome/help/dia/fr/usage-customization.xml -%%GNOME%%share/gnome/help/dia/fr/usage-layers.xml -%%GNOME%%share/gnome/help/dia/fr/usage-loadsave.xml -%%GNOME%%share/gnome/help/dia/fr/usage-objects-basic.xml -%%GNOME%%share/gnome/help/dia/fr/usage-objects-selecting.xml -%%GNOME%%share/gnome/help/dia/fr/usage-objects-special.xml -%%GNOME%%share/gnome/help/dia/fr/usage-objects.xml -%%GNOME%%share/gnome/help/dia/fr/usage-quickstart.xml -%%GNOME%%share/gnome/help/dia/fr/custom-shapes.xml -%%GNOME%%share/gnome/help/dia/fr/dia-cmdline.xml -%%GNOME%%share/gnome/help/dia/fr/dia-1.xml -%%GNOME%%share/gnome/help/dia/fr/graphics/color_selector.png -%%GNOME%%share/gnome/help/dia/fr/graphics/greendots.png -%%GNOME%%share/gnome/help/dia/fr/graphics/home_network.png -%%GNOME%%share/gnome/help/dia/fr/graphics/line_icon.png -%%GNOME%%share/gnome/help/dia/fr/graphics/line_props.png -%%GNOME%%share/gnome/help/dia/fr/graphics/preferences_fig.png -%%GNOME%%share/gnome/help/dia/eu/dia.xml -%%GNOME%%share/gnome/help/dia/eu/authors.xml -%%GNOME%%share/gnome/help/dia/eu/entities.xml -%%GNOME%%share/gnome/help/dia/eu/intro.xml -%%GNOME%%share/gnome/help/dia/eu/license.xml -%%GNOME%%share/gnome/help/dia/eu/usage-canvas.xml -%%GNOME%%share/gnome/help/dia/eu/usage-customization.xml -%%GNOME%%share/gnome/help/dia/eu/usage-layers.xml -%%GNOME%%share/gnome/help/dia/eu/usage-loadsave.xml -%%GNOME%%share/gnome/help/dia/eu/usage-objects-basic.xml -%%GNOME%%share/gnome/help/dia/eu/usage-objects-selecting.xml -%%GNOME%%share/gnome/help/dia/eu/usage-objects-special.xml -%%GNOME%%share/gnome/help/dia/eu/usage-objects.xml -%%GNOME%%share/gnome/help/dia/eu/usage-quickstart.xml -%%GNOME%%share/gnome/help/dia/eu/graphics/greendots.png -%%GNOME%%share/gnome/help/dia/eu/graphics/home_network.png -%%GNOME%%share/gnome/help/dia/eu/graphics/line_icon.png -%%GNOME%%share/gnome/help/dia/eu/graphics/line_props.png -%%GNOME%%share/gnome/help/dia/pl/dia.xml -%%GNOME%%share/gnome/help/dia/pl/authors.xml -%%GNOME%%share/gnome/help/dia/pl/intro.xml -%%GNOME%%share/gnome/help/dia/pl/license.xml -%%GNOME%%share/gnome/help/dia/pl/usage-canvas.xml -%%GNOME%%share/gnome/help/dia/pl/usage-customization.xml -%%GNOME%%share/gnome/help/dia/pl/usage-layers.xml -%%GNOME%%share/gnome/help/dia/pl/usage-loadsave.xml -%%GNOME%%share/gnome/help/dia/pl/usage-objects-selecting.xml -%%GNOME%%share/gnome/help/dia/pl/usage-objects-special.xml -%%GNOME%%share/gnome/help/dia/pl/usage-objects.xml -%%GNOME%%share/gnome/help/dia/pl/usage-quickstart.xml -%%GNOME%%share/gnome/help/dia/pl/graphics/greendots.png -%%GNOME%%share/gnome/help/dia/pl/graphics/home_network.png -%%GNOME%%share/gnome/help/dia/pl/graphics/line_props.png -%%GNOME%%share/gnome/help/dia/C -%%GNOME%%share/omf/dia/dia-C.omf -%%GNOME%%share/omf/dia/dia-fr.omf -%%GNOME%%share/omf/dia/dia-eu.omf -%%GNOME%%share/omf/dia/dia-pl.omf -%%PORTDOCS%%%%DOCSDIR%%/en/examples/shape.dtd -%%PORTDOCS%%%%DOCSDIR%%/en/examples/diagram.dtd -%%PORTDOCS%%%%DOCSDIR%%/en/examples/sheet.dtd -%%PORTDOCS%%%%DOCSDIR%%/fr/examples/shape.dtd -%%PORTDOCS%%%%DOCSDIR%%/fr/examples/diagram.dtd -%%PORTDOCS%%%%DOCSDIR%%/fr/examples/sheet.dtd -%%PORTDOCS%%%%DOCSDIR%%/eu/examples/shape.dtd -%%PORTDOCS%%%%DOCSDIR%%/eu/examples/diagram.dtd -%%PORTDOCS%%%%DOCSDIR%%/eu/examples/sheet.dtd -%%PORTDOCS%%%%DOCSDIR%%/pl/examples/shape.dtd -%%PORTDOCS%%%%DOCSDIR%%/pl/examples/diagram.dtd -%%PORTDOCS%%%%DOCSDIR%%/pl/examples/sheet.dtd -share/icons/hicolor/16x16/apps/dia.png -share/icons/hicolor/22x22/apps/dia.png -share/icons/hicolor/24x24/apps/dia.png -share/icons/hicolor/32x32/apps/dia.png -share/icons/hicolor/48x48/apps/dia.png -share/icons/hicolor/scalable/apps/dia.svg -%%GNOME%%@dirrm share/gnome/help/dia/en/graphics -%%GNOME%%@dirrm share/gnome/help/dia/en -%%GNOME%%@dirrm share/gnome/help/dia/fr/graphics -%%GNOME%%@dirrm share/gnome/help/dia/fr -%%GNOME%%@dirrm share/gnome/help/dia/eu/graphics -%%GNOME%%@dirrm share/gnome/help/dia/eu -%%GNOME%%@dirrm share/gnome/help/dia/pl/graphics -%%GNOME%%@dirrm share/gnome/help/dia/pl -%%GNOME%%@dirrm share/gnome/help/dia -%%GNOME%%@dirrm share/omf/dia -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/examples -%%PORTDOCS%%@dirrm %%DOCSDIR%%/en -%%PORTDOCS%%@dirrm %%DOCSDIR%%/eu/examples -%%PORTDOCS%%@dirrm %%DOCSDIR%%/eu -%%PORTDOCS%%@dirrm %%DOCSDIR%%/fr/examples -%%PORTDOCS%%@dirrm %%DOCSDIR%%/fr +share/mime-info/dia.keys +share/mime-info/dia.mime +@dirrmtry share/locale/zh_HK/LC_MESSAGES +@dirrmtry share/locale/zh_HK +@dirrmtry share/locale/rw/LC_MESSAGES +@dirrmtry share/locale/rw +@dirrmtry share/locale/oc/LC_MESSAGES +@dirrmtry share/locale/oc +@dirrmtry share/locale/mr/LC_MESSAGES +@dirrmtry share/locale/mr +@dirrmtry share/locale/dz/LC_MESSAGES +@dirrmtry share/locale/dz +@dirrmtry share/locale/ca@valencia/LC_MESSAGES +@dirrmtry share/locale/ca@valencia +@dirrmtry share/locale/ast/LC_MESSAGES +@dirrmtry share/locale/ast %%PORTDOCS%%@dirrm %%DOCSDIR%%/pl/examples %%PORTDOCS%%@dirrm %%DOCSDIR%%/pl +%%PORTDOCS%%@dirrm %%DOCSDIR%%/fr/examples +%%PORTDOCS%%@dirrm %%DOCSDIR%%/fr +%%PORTDOCS%%@dirrm %%DOCSDIR%%/eu/examples +%%PORTDOCS%%@dirrm %%DOCSDIR%%/eu +%%PORTDOCS%%@dirrm %%DOCSDIR%%/en/examples +%%PORTDOCS%%@dirrm %%DOCSDIR%%/en %%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm share/dia/xslt @dirrm share/dia/ui @@ -2017,19 +1844,10 @@ share/icons/hicolor/scalable/apps/dia.sv @dirrm share/dia/shapes/BPMN @dirrm share/dia/shapes/Assorted @dirrm share/dia/shapes -%%PYTHON%%@dirrm share/dia/python @dirrm share/dia +@dirrmtry share/applications +@dirrmtry man/fr/man1 +@dirrmtry man/fr @dirrm lib/dia @exec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true @unexec %%LOCALBASE%%/bin/update-desktop-database > /dev/null || /usr/bin/true -@dirrmtry share/locale/zh_HK/LC_MESSAGES -@dirrmtry share/locale/zh_HK -@dirrmtry share/locale/rw/LC_MESSAGES -@dirrmtry share/locale/rw -@dirrmtry share/locale/oc/LC_MESSAGES -@dirrmtry share/locale/oc -@dirrmtry share/locale/mr/LC_MESSAGES -@dirrmtry share/locale/mr -@dirrmtry share/locale/dz/LC_MESSAGES -@dirrmtry share/locale/dz -@dirrmtry share/applications _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:01:40 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 03267B22; Wed, 20 Mar 2013 02:01:40 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id CFA412EF; Wed, 20 Mar 2013 02:01:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K21cuI071071; Wed, 20 Mar 2013 02:01:38 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K21c32071070; Wed, 20 Mar 2013 02:01:38 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 02:01:38 GMT Message-Id: <201303200201.r2K21c32071070@freefall.freebsd.org> To: pawel@FreeBSD.org, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/175970: x11/libxklavier missing dependency X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 02:01:40 -0000 Synopsis: x11/libxklavier missing dependency State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 02:01:28 UTC 2013 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=175970 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:03:52 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C99E6B68; Wed, 20 Mar 2013 02:03:52 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 9BFE1301; Wed, 20 Mar 2013 02:03:52 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K23qp0071160; Wed, 20 Mar 2013 02:03:52 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K23nWT071159; Wed, 20 Mar 2013 02:03:49 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 02:03:49 GMT Message-Id: <201303200203.r2K23nWT071159@freefall.freebsd.org> To: andy@neu.net, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/175973: multimedia/totem broken with clang X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 02:03:52 -0000 Synopsis: multimedia/totem broken with clang State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 02:03:08 UTC 2013 State-Changed-Why: See kwm's comment. I would remove all docbooks then reinstall totem. http://www.freebsd.org/cgi/query-pr.cgi?pr=175973 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:08:24 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8806BBCE; Wed, 20 Mar 2013 02:08:24 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 660AD32C; Wed, 20 Mar 2013 02:08:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K28OWL071529; Wed, 20 Mar 2013 02:08:24 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K28OCk071528; Wed, 20 Mar 2013 02:08:24 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 02:08:24 GMT Message-Id: <201303200208.r2K28OCk071528@freefall.freebsd.org> To: jnagyjr1978@gmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/176183: devel/libical doesn't pick up python2.7 header files X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 02:08:24 -0000 Synopsis: devel/libical doesn't pick up python2.7 header files State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 02:07:01 UTC 2013 State-Changed-Why: I can't reproduce it: [...] checking for setenv... yes checking whether /usr/local/bin/python2.7 version >= 2.3... yes checking for /usr/local/bin/python2.7 version... 2.7 checking for /usr/local/bin/python2.7 platform... freebsd9 checking for /usr/local/bin/python2.7 script directory... ${prefix}/lib/python2.7/site-packages checking for /usr/local/bin/python2.7 extension module directory... ${exec_prefix}/lib/python2.7/site-packages checking for swig... false checking python2.7/Python.h usability... yes checking python2.7/Python.h presence... yes checking for python2.7/Python.h... yes configure: creating ./config.status config.status: creating src/python/Makefile config.status: creating Makefile config.status: creating design-data/Makefile [...] You need to follow this: http://www.freebsd.org/gnome/docs/bugging.html http://www.freebsd.org/cgi/query-pr.cgi?pr=176183 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:10:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 77132C03 for ; Wed, 20 Mar 2013 02:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 6887C335 for ; Wed, 20 Mar 2013 02:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K2A1hf071629 for ; Wed, 20 Mar 2013 02:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K2A1vA071628; Wed, 20 Mar 2013 02:10:01 GMT (envelope-from gnats) Date: Wed, 20 Mar 2013 02:10:01 GMT Message-Id: <201303200210.r2K2A1vA071628@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/175970: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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: Wed, 20 Mar 2013 02:10:01 -0000 The following reply was made to PR ports/175970; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/175970: commit references a PR Date: Wed, 20 Mar 2013 02:01:19 +0000 (UTC) Author: mezz Date: Wed Mar 20 02:01:11 2013 New Revision: 314704 URL: http://svnweb.freebsd.org/changeset/ports/314704 Log: -Add a missing dependency, xi. Bump the PORTREVISION. -gnomehack -> USES=pathfix PR: ports/175970 Submitted by: pawel Modified: head/x11/libxklavier/Makefile (contents, props changed) Modified: head/x11/libxklavier/Makefile ============================================================================== --- head/x11/libxklavier/Makefile Wed Mar 20 01:56:04 2013 (r314703) +++ head/x11/libxklavier/Makefile Wed Mar 20 02:01:11 2013 (r314704) @@ -1,13 +1,10 @@ -# New ports collection makefile for: libxklavier -# Date created: 31 May 2002 -# Whom: Maxim Sobolev -# +# Created by: Maxim Sobolev # $FreeBSD$ # $MCom: ports/x11/libxklavier/Makefile,v 1.53 2010/01/12 02:18:34 avl Exp $ -# PORTNAME= libxklavier PORTVERSION= 5.0 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= x11 gnome MASTER_SITES= GNOME @@ -19,10 +16,11 @@ BUILD_DEPENDS= ${LOCALBASE}/libdata/pkgc RUN_DEPENDS= xkbcomp:${PORTSDIR}/x11/xkbcomp \ ${LOCALBASE}/libdata/pkgconfig/iso-codes.pc:${PORTSDIR}/misc/iso-codes -USE_XORG= x11 xkbfile +USES= pathfix +USE_XORG= x11 xi xkbfile USE_BZIP2= yes USE_GMAKE= yes -USE_GNOME= gnomehack libxml2 glib20 ltverhack:12 +USE_GNOME= libxml2 glib20 ltverhack:12 USE_LDCONFIG= yes USE_AUTOTOOLS= libtool CPPFLAGS+= -I${LOCALBASE}/include _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:23:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id F0905DCE; Wed, 20 Mar 2013 02:23:01 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id C77C13C7; Wed, 20 Mar 2013 02:23:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K2N1jR075721; Wed, 20 Mar 2013 02:23:01 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K2N0l9075720; Wed, 20 Mar 2013 02:23:00 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 02:23:00 GMT Message-Id: <201303200223.r2K2N0l9075720@freefall.freebsd.org> To: develloper.unix@hotmail.fr, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/176235: [patch] Fix devel/dconf build with gcc 4.6.3 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 02:23:02 -0000 Synopsis: [patch] Fix devel/dconf build with gcc 4.6.3 State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 02:22:19 UTC 2013 State-Changed-Why: It's no longer need this patch in the current version. But thanks for submitted the patch! http://www.freebsd.org/cgi/query-pr.cgi?pr=176235 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:40:08 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3815F158; Wed, 20 Mar 2013 02:40:08 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 14B8961E; Wed, 20 Mar 2013 02:40:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K2e7gJ077599; Wed, 20 Mar 2013 02:40:07 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K2e7ge077598; Wed, 20 Mar 2013 02:40:07 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 02:40:07 GMT Message-Id: <201303200240.r2K2e7ge077598@freefall.freebsd.org> To: hiroto.kagotani@gmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/176467: [PATCH] devel/gobject-introspection: configure fails when gcc46 is installed X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 02:40:08 -0000 Synopsis: [PATCH] devel/gobject-introspection: configure fails when gcc46 is installed State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 02:39:57 UTC 2013 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=176467 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:41:20 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 0B04F183; Wed, 20 Mar 2013 02:41:20 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id D31C9629; Wed, 20 Mar 2013 02:41:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K2fJtL079062; Wed, 20 Mar 2013 02:41:19 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K2fJi0079061; Wed, 20 Mar 2013 02:41:19 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 02:41:19 GMT Message-Id: <201303200241.r2K2fJi0079061@freefall.freebsd.org> To: vsjcfm@gmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/176494: devel/py-gobject ignores port options X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 02:41:20 -0000 Synopsis: devel/py-gobject ignores port options State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 02:40:48 UTC 2013 State-Changed-Why: This port no longer has option. Thanks for report. http://www.freebsd.org/cgi/query-pr.cgi?pr=176494 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:45:07 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6F22932B; Wed, 20 Mar 2013 02:45:07 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 4790463E; Wed, 20 Mar 2013 02:45:07 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K2j60f079165; Wed, 20 Mar 2013 02:45:06 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K2j6ck079164; Wed, 20 Mar 2013 02:45:06 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 02:45:06 GMT Message-Id: <201303200245.r2K2j6ck079164@freefall.freebsd.org> To: rsimmons0@gmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/176619: x11-toolkits/pango has bogus dependencies on icu and firefox build won't finish X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 02:45:07 -0000 Synopsis: x11-toolkits/pango has bogus dependencies on icu and firefox build won't finish State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 02:44:02 UTC 2013 State-Changed-Why: > This problem seems like it is related to the following PR: > http://www.freebsd.org/cgi/query-pr.cgi?pr=174696 > > The maintainer pointed to where the problem is located, but offered no fix. Reinstall pango. http://www.freebsd.org/cgi/query-pr.cgi?pr=176619 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:49:57 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 213CF4BD; Wed, 20 Mar 2013 02:49:57 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 9FEBE6CF; Wed, 20 Mar 2013 02:49:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K2numq079237; Wed, 20 Mar 2013 02:49:56 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K2nuqa079236; Wed, 20 Mar 2013 02:49:56 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 02:49:56 GMT Message-Id: <201303200249.r2K2nuqa079236@freefall.freebsd.org> To: send-pr.mrbax@spamgourmet.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/176657: graphics/gimp: read-only menurc X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 02:49:57 -0000 Synopsis: graphics/gimp: read-only menurc State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 02:49:21 UTC 2013 State-Changed-Why: We have gimp 2.8.x. Please update it. If you still have same problem, submit another PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=176657 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:50:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 101D54C5 for ; Wed, 20 Mar 2013 02:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 0306C6D2 for ; Wed, 20 Mar 2013 02:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K2o0Tv079272 for ; Wed, 20 Mar 2013 02:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K2o0Cf079271; Wed, 20 Mar 2013 02:50:00 GMT (envelope-from gnats) Date: Wed, 20 Mar 2013 02:50:00 GMT Message-Id: <201303200250.r2K2o0Cf079271@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/176467: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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: Wed, 20 Mar 2013 02:50:01 -0000 The following reply was made to PR ports/176467; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/176467: commit references a PR Date: Wed, 20 Mar 2013 02:40:02 +0000 (UTC) Author: mezz Date: Wed Mar 20 02:39:49 2013 New Revision: 314706 URL: http://svnweb.freebsd.org/changeset/ports/314706 Log: Readd the shared library version in libffi. The gcc46 has its own libffi library too. # ldconfig -r | grep libffi 225:-lffi.6 => /usr/local/lib/libffi.so.6 314:-lffi.4 => /usr/local/lib/gcc46/libffi.so.4 PR: ports/176467 Submitted by: Hiroto Kagotani Modified: head/devel/gobject-introspection/Makefile Modified: head/devel/gobject-introspection/Makefile ============================================================================== --- head/devel/gobject-introspection/Makefile Wed Mar 20 02:12:31 2013 (r314705) +++ head/devel/gobject-introspection/Makefile Wed Mar 20 02:39:49 2013 (r314706) @@ -13,7 +13,7 @@ COMMENT= Generate interface introspectio # we need cairo otherwise the generated Cairo gir is broken BUILD_DEPENDS= cairo-trace:${PORTSDIR}/graphics/cairo -LIB_DEPENDS= ffi:${PORTSDIR}/devel/libffi +LIB_DEPENDS= ffi.6:${PORTSDIR}/devel/libffi USES= bison pathfix USE_XZ= yes _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:52:53 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id DD48A5C5; Wed, 20 Mar 2013 02:52:53 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id AEE20720; Wed, 20 Mar 2013 02:52:53 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K2qroH080791; Wed, 20 Mar 2013 02:52:53 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K2qqD2080790; Wed, 20 Mar 2013 02:52:53 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 02:52:53 GMT Message-Id: <201303200252.r2K2qqD2080790@freefall.freebsd.org> To: pierre@guinoiseau.eu, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/176799: [PATCH] print/freetype2: convert to optionsNG, use USE_PKGCONFIG X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 02:52:53 -0000 Synopsis: [PATCH] print/freetype2: convert to optionsNG, use USE_PKGCONFIG State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 02:51:53 UTC 2013 State-Changed-Why: The freetype2 has OPTIONSng from another PR. I missed this. As for the pkgconfig, it requires to be tested in the pointyhat-exp. kwm is working on it. http://www.freebsd.org/cgi/query-pr.cgi?pr=176799 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:54:25 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 921E862E; Wed, 20 Mar 2013 02:54:25 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 645D573C; Wed, 20 Mar 2013 02:54:25 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K2sPGO080847; Wed, 20 Mar 2013 02:54:25 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K2sPEK080846; Wed, 20 Mar 2013 02:54:25 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 02:54:25 GMT Message-Id: <201303200254.r2K2sPEK080846@freefall.freebsd.org> To: olivierd@FreeBSD.org, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/176858: Downgrade or upgrade devel/libsoup X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 02:54:25 -0000 Synopsis: Downgrade or upgrade devel/libsoup State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 02:54:09 UTC 2013 State-Changed-Why: Should be fixed by kwm other days ago. http://www.freebsd.org/cgi/query-pr.cgi?pr=176858 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 02:55:24 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id E8D1465B; Wed, 20 Mar 2013 02:55:24 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id C131C746; Wed, 20 Mar 2013 02:55:24 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K2tO6a080911; Wed, 20 Mar 2013 02:55:24 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K2tOnW080910; Wed, 20 Mar 2013 02:55:24 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 02:55:24 GMT Message-Id: <201303200255.r2K2tOnW080910@freefall.freebsd.org> To: pkubaj@gmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/176879: Abiword, Gnumeric, Shotwell and Equinox engine don't compile X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 02:55:25 -0000 Synopsis: Abiword, Gnumeric, Shotwell and Equinox engine don't compile State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 02:55:12 UTC 2013 State-Changed-Why: kwm has fixed those. http://www.freebsd.org/cgi/query-pr.cgi?pr=176879 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 03:00:04 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 45D41844; Wed, 20 Mar 2013 03:00:04 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 21F32785; Wed, 20 Mar 2013 03:00:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K304S4081110; Wed, 20 Mar 2013 03:00:04 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K303lp081109; Wed, 20 Mar 2013 03:00:03 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 03:00:03 GMT Message-Id: <201303200300.r2K303lp081109@freefall.freebsd.org> To: r4721@tormail.org, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/176903: [patch] fix graphics/gegl plist with jasper=off X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 03:00:04 -0000 Synopsis: [patch] fix graphics/gegl plist with jasper=off State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 02:59:53 UTC 2013 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=176903 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 03:03:09 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B084DA1D; Wed, 20 Mar 2013 03:03:09 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 8C8E883F; Wed, 20 Mar 2013 03:03:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K3398Q082937; Wed, 20 Mar 2013 03:03:09 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K3396l082936; Wed, 20 Mar 2013 03:03:09 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 03:03:09 GMT Message-Id: <201303200303.r2K3396l082936@freefall.freebsd.org> To: rm@FreeBSD.org, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/176982: graphics/gegl: fix pkg-plist X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 03:03:09 -0000 Synopsis: graphics/gegl: fix pkg-plist State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 03:03:00 UTC 2013 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=176982 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 03:10:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 90F72AC8 for ; Wed, 20 Mar 2013 03:10:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 80518889 for ; Wed, 20 Mar 2013 03:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K3A1rB083365 for ; Wed, 20 Mar 2013 03:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K3A12l083364; Wed, 20 Mar 2013 03:10:01 GMT (envelope-from gnats) Date: Wed, 20 Mar 2013 03:10:01 GMT Message-Id: <201303200310.r2K3A12l083364@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/176903: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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: Wed, 20 Mar 2013 03:10:01 -0000 The following reply was made to PR ports/176903; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/176903: commit references a PR Date: Wed, 20 Mar 2013 02:59:55 +0000 (UTC) Author: mezz Date: Wed Mar 20 02:59:46 2013 New Revision: 314707 URL: http://svnweb.freebsd.org/changeset/ports/314707 Log: Fix the plist when Jasper disabled. PR: ports/176903 Submitted by: r4721@tormail.org (no name, just email in PR) Modified: head/graphics/gegl/pkg-plist Modified: head/graphics/gegl/pkg-plist ============================================================================== --- head/graphics/gegl/pkg-plist Wed Mar 20 02:39:49 2013 (r314706) +++ head/graphics/gegl/pkg-plist Wed Mar 20 02:59:46 2013 (r314707) @@ -160,8 +160,8 @@ lib/gegl-%%GEGL_VER%%/introspect.la lib/gegl-%%GEGL_VER%%/introspect.so lib/gegl-%%GEGL_VER%%/invert.la lib/gegl-%%GEGL_VER%%/invert.so -lib/gegl-%%GEGL_VER%%/jp2-load.la -lib/gegl-%%GEGL_VER%%/jp2-load.so +%%JP2%%lib/gegl-%%GEGL_VER%%/jp2-load.la +%%JP2%%lib/gegl-%%GEGL_VER%%/jp2-load.so lib/gegl-%%GEGL_VER%%/layer.la lib/gegl-%%GEGL_VER%%/layer.so lib/gegl-%%GEGL_VER%%/lens-distortion.la _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 03:12:11 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4278AB94; Wed, 20 Mar 2013 03:12:11 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 1A4A38A2; Wed, 20 Mar 2013 03:12:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K3CAhn084946; Wed, 20 Mar 2013 03:12:10 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K3CAoa084945; Wed, 20 Mar 2013 03:12:10 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 03:12:10 GMT Message-Id: <201303200312.r2K3CAoa084945@freefall.freebsd.org> To: nemysis@gmx.ch, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/177090: [PATCH] graphics/evince: Convert to OptionsNG X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 03:12:11 -0000 Synopsis: [PATCH] graphics/evince: Convert to OptionsNG State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 03:10:58 UTC 2013 State-Changed-Why: -kwm takes care of OPTIONSng -I don't like PORTDOCS=*. There is no reason to change when plist works fine. http://www.freebsd.org/cgi/query-pr.cgi?pr=177090 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 03:15:56 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 9AFA6C06; Wed, 20 Mar 2013 03:15:56 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 6EEB78C9; Wed, 20 Mar 2013 03:15:56 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K3FuwW085925; Wed, 20 Mar 2013 03:15:56 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K3Ft1d085924; Wed, 20 Mar 2013 03:15:55 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 03:15:55 GMT Message-Id: <201303200315.r2K3Ft1d085924@freefall.freebsd.org> To: eric@camachat.org, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/174493: Fix sysutils/gnome-system-tools compliing with clang X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 03:15:56 -0000 Synopsis: Fix sysutils/gnome-system-tools compliing with clang State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 03:15:32 UTC 2013 State-Changed-Why: kwm said that he can't reproduce it. http://www.freebsd.org/cgi/query-pr.cgi?pr=174493 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 03:19:28 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C6275C64; Wed, 20 Mar 2013 03:19:28 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id A17268EB; Wed, 20 Mar 2013 03:19:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K3JS37085997; Wed, 20 Mar 2013 03:19:28 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K3JSDb085996; Wed, 20 Mar 2013 03:19:28 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 03:19:28 GMT Message-Id: <201303200319.r2K3JSDb085996@freefall.freebsd.org> To: midgoon@gmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/167645: x11/gnome2: Cannot see KDE software on GNOME applications menu X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 03:19:28 -0000 Synopsis: x11/gnome2: Cannot see KDE software on GNOME applications menu State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 03:18:44 UTC 2013 State-Changed-Why: It's because KDE4 installs in the non-standard prefix, which I don't support it. http://www.freebsd.org/cgi/query-pr.cgi?pr=167645 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 03:22:21 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 92BB1D2F; Wed, 20 Mar 2013 03:22:21 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 6534C908; Wed, 20 Mar 2013 03:22:21 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K3MLx0087572; Wed, 20 Mar 2013 03:22:21 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K3MLnY087571; Wed, 20 Mar 2013 03:22:21 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 03:22:21 GMT Message-Id: <201303200322.r2K3MLnY087571@freefall.freebsd.org> To: eb30750@gmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/164222: switching users in gnome3 invokes sanity check X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 03:22:21 -0000 Synopsis: switching users in gnome3 invokes sanity check State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 03:21:27 UTC 2013 State-Changed-Why: The GNOME3 isn't stable on FreeBSD. Wait until GNOME3 goes into FreeBSD ports tree then you can try it to see if same bug exists and submit another new PR. http://www.freebsd.org/cgi/query-pr.cgi?pr=164222 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 05:03:23 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 85641A5D for ; Wed, 20 Mar 2013 05:03:23 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-ia0-x22e.google.com (mail-ia0-x22e.google.com [IPv6:2607:f8b0:4001:c02::22e]) by mx1.freebsd.org (Postfix) with ESMTP id 4A089C28 for ; Wed, 20 Mar 2013 05:03:23 +0000 (UTC) Received: by mail-ia0-f174.google.com with SMTP id b35so1078623iac.5 for ; Tue, 19 Mar 2013 22:03:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:date:x-google-sender-auth:message-id :subject:from:to:content-type; bh=PfTH0yxAGIlEC5wRX1ocrPhykcGIUStBPMNc5TX+DSA=; b=v26o2m2IltT3PS59BIDV7tACjBNVj+xHuXSA18svbn2DPbjRNLCqZ+z6L1POVRtrkh 4ZvLojioRQUggs+0n8mUyvksepZOnsBjwsU60xMH5DDIc16LOoA0hcjLBNJZkl4SLPte czvxp2t/Vj0EPjY/GYxO6WRRnDpp1x7SuzYAAvTVG2ICtIkhaltH2UlbFQI5dh6SrvTm vhxHYCAO9/jQ9wtEMyh3wDwkpOUixxvqN8s9POhl3kFkJ4wzeTZ2d/a4jQQUiOTN73cm TJVjDcTl+1grgxVT76cHnlA+MeyxTuBP5uQa9/XxpAsiB+MGLZXdcBYFfZ1tNWUltEaX eTFA== MIME-Version: 1.0 X-Received: by 10.50.152.229 with SMTP id vb5mr3411876igb.56.1363755802958; Tue, 19 Mar 2013 22:03:22 -0700 (PDT) Sender: kob6558@gmail.com Received: by 10.64.78.71 with HTTP; Tue, 19 Mar 2013 22:03:22 -0700 (PDT) Date: Tue, 19 Mar 2013 22:03:22 -0700 X-Google-Sender-Auth: wQsFTOV9JxQEEQSSGkwFxoUJ1zc Message-ID: Subject: nautilus eating 1 CPU and doing lots of I/O From: Kevin Oberman To: FreeBSD GNOME Users Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 05:03:23 -0000 Since I updated nautilus a few days ago I am seeing very odd behavior. When I open a nautilus window, I see my CPUs at 20-25% load, mostly in nautilus. I/O jumps from near zero to several MBps,. It varies in the ones I tried between 4 and 16 MBps depending on the number of files (not folders). ktrace shows lots of reads returning "Resource temporarily unavailable". I also note that most of my thumbnails are not showing up, just the generic icons for the file type. I'm guessing some issue with finding, loading or generating the thumbnails. I have no idea what to look for to provide any real data or to track this. -- R. Kevin Oberman, Network Engineer E-mail: rkoberman@gmail.com From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 05:50:00 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A599331C; Wed, 20 Mar 2013 05:50:00 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 805F2D9D; Wed, 20 Mar 2013 05:50:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K5o0ir012802; Wed, 20 Mar 2013 05:50:00 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K5o02F012779; Wed, 20 Mar 2013 05:50:00 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 05:50:00 GMT Message-Id: <201303200550.r2K5o02F012779@freefall.freebsd.org> To: pierre@guinoiseau.eu, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/176801: [PATCH] x11-fonts/libXft: update to 2.3.1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 05:50:00 -0000 Synopsis: [PATCH] x11-fonts/libXft: update to 2.3.1 State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Wed Mar 20 05:49:26 UTC 2013 State-Changed-Why: Three years?!? Amazing! Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=176801 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 06:00:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 962643A3 for ; Wed, 20 Mar 2013 06:00:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 7AB55DD9 for ; Wed, 20 Mar 2013 06:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2K601rJ014500 for ; Wed, 20 Mar 2013 06:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2K601GT014499; Wed, 20 Mar 2013 06:00:01 GMT (envelope-from gnats) Date: Wed, 20 Mar 2013 06:00:01 GMT Message-Id: <201303200600.r2K601GT014499@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/176801: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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: Wed, 20 Mar 2013 06:00:01 -0000 The following reply was made to PR ports/176801; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/176801: commit references a PR Date: Wed, 20 Mar 2013 05:49:13 +0000 (UTC) Author: mezz Date: Wed Mar 20 05:49:00 2013 New Revision: 314712 URL: http://svnweb.freebsd.org/changeset/ports/314712 Log: -Update to 2.3.1. -Update the header. In this version has removed the xft-config, but I have brought it back to avoid require test in the pointyhat-exp/tinderbox to see if it will break old ports that needs xft-config. PR: ports/176801 Submitted by: Pierre Guinoiseau Added: head/x11-fonts/libXft/files/ head/x11-fonts/libXft/files/xft-config.in (contents, props changed) Modified: head/x11-fonts/libXft/Makefile (contents, props changed) head/x11-fonts/libXft/distinfo (contents, props changed) head/x11-fonts/libXft/pkg-plist (contents, props changed) Modified: head/x11-fonts/libXft/Makefile ============================================================================== --- head/x11-fonts/libXft/Makefile Wed Mar 20 04:16:58 2013 (r314711) +++ head/x11-fonts/libXft/Makefile Wed Mar 20 05:49:00 2013 (r314712) @@ -1,16 +1,12 @@ -# New ports collection makefile for: Xft -# Date created: 06 October 2002 -# Whom: Joe Marcus Clarke -# +#Created by: Joe Marcus Clarke # $FreeBSD$ -# PORTNAME= libXft -PORTVERSION= 2.1.14 +PORTVERSION= 2.3.1 CATEGORIES= x11-fonts MAINTAINER= gnome@FreeBSD.org -COMMENT= A client-sided font API for X applications +COMMENT= Client-sided font API for X applications LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 BUILD_DEPENDS= fc-cache:${PORTSDIR}/x11-fonts/fontconfig @@ -19,7 +15,18 @@ RUN_DEPENDS= fc-cache:${PORTSDIR}/x11-fo XORG_CAT= lib USE_XORG= xproto:both xrender -MAN1= xft-config.1 MAN3= Xft.3 +post-extract: + @${CP} ${FILESDIR}/xft-config.in \ + ${WRKSRC}/xft-config.in + +post-patch: + @${REINPLACE_CMD} -e '/ac_config_files/s|xft\.pc|xft\.pc xft-config|' \ + ${WRKSRC}/configure + +post-install: + @${INSTALL_SCRIPT} ${WRKSRC}/xft-config \ + ${PREFIX}/bin/ + .include Modified: head/x11-fonts/libXft/distinfo ============================================================================== --- head/x11-fonts/libXft/distinfo Wed Mar 20 04:16:58 2013 (r314711) +++ head/x11-fonts/libXft/distinfo Wed Mar 20 05:49:00 2013 (r314712) @@ -1,2 +1,2 @@ -SHA256 (xorg/lib/libXft-2.1.14.tar.bz2) = 700e9d594b81cad3dfd5fac4a5cfd0c4cf7780c812507ef04eb40139ebf5175e -SIZE (xorg/lib/libXft-2.1.14.tar.bz2) = 289068 +SHA256 (xorg/lib/libXft-2.3.1.tar.bz2) = 7fce32b92dcb7b2869bed567af2abc7bbad0d5d6fcf471b8a3e137964a31bbbd +SIZE (xorg/lib/libXft-2.3.1.tar.bz2) = 311556 Added: head/x11-fonts/libXft/files/xft-config.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-fonts/libXft/files/xft-config.in Wed Mar 20 05:49:00 2013 (r314712) @@ -0,0 +1,100 @@ +#! /bin/sh + +prefix="@prefix@" +exec_prefix="@exec_prefix@" +libdir="@libdir@" +includedir="@includedir@" +version="@VERSION@" +freetypelibs="@FREETYPE_LIBS@" +freetypecflags="@FREETYPE_CFLAGS@" +fontconfiglibs="@FONTCONFIG_LIBS@" +fontconfigcflags="@FONTCONFIG_CFLAGS@" +xrenderlibs="@XRENDER_LIBS@" +xrendercflags="@XRENDER_CFLAGS@" + +usage() +{ + cat <&2 +fi + +while test $# -gt 0 ; do + case "$1" in + -*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;; + *) optarg= ;; + esac + + case $1 in + --prefix=*) + prefix=$optarg + local_prefix=yes + ;; + --prefix) + echo_prefix=yes + ;; + --exec-prefix=*) + exec_prefix=$optarg + exec_prefix_set=yes + local_prefix=yes + ;; + --exec-prefix) + echo_exec_prefix=yes + ;; + --version) + echo $version + exit 0 + ;; + --cflags) + echo_cflags=yes + ;; + --libs) + echo_libs=yes + ;; + *) + usage 1 1>&2 + ;; + esac + shift +done + +if test "$local_prefix" = "yes" ; then + if test "$exec_prefix_set" != "yes" ; then + exec_prefix=$prefix + fi +fi + +if test "$echo_prefix" = "yes" ; then + echo $prefix +fi + +if test "$echo_exec_prefix" = "yes" ; then + echo $exec_prefix +fi + +if test "$echo_cflags" = "yes" ; then + cflags="-I${includedir} ${freetypecflags} ${fontconfigcflags} ${xrendercflags}" + echo $cflags +fi + +if test "$echo_libs" = "yes" ; then + libs="-lXft -lX11 ${freetypelibs} ${fontconfiglibs} ${xrenderlibs}" + if test "${libdir}" != "/usr/lib" ; then + echo -L${libdir} $libs + else + echo $libs + fi +fi + +# EOF Modified: head/x11-fonts/libXft/pkg-plist ============================================================================== --- head/x11-fonts/libXft/pkg-plist Wed Mar 20 04:16:58 2013 (r314711) +++ head/x11-fonts/libXft/pkg-plist Wed Mar 20 05:49:00 2013 (r314712) @@ -1,9 +1,9 @@ bin/xft-config include/X11/Xft/Xft.h include/X11/Xft/XftCompat.h -lib/libXft.so.2 -lib/libXft.so -lib/libXft.la lib/libXft.a +lib/libXft.la +lib/libXft.so +lib/libXft.so.2 libdata/pkgconfig/xft.pc @dirrm include/X11/Xft _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 06:13:06 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A48814B2 for ; Wed, 20 Mar 2013 06:13:06 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-ie0-x22f.google.com (mail-ie0-x22f.google.com [IPv6:2607:f8b0:4001:c03::22f]) by mx1.freebsd.org (Postfix) with ESMTP id 692E7E2D for ; Wed, 20 Mar 2013 06:13:06 +0000 (UTC) Received: by mail-ie0-f175.google.com with SMTP id c12so1659465ieb.20 for ; Tue, 19 Mar 2013 23:13:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:content-type :content-transfer-encoding; bh=xfsx16J3GjabPbW8UK2xeV6uDyj6znNS6Fp03fAH/pc=; b=ozQRCbPf87brdRfRdYmYsxU1/TAoDFgOd6MaIm+qbOQVHUcZBI/2YUIrX8ZlvK/d8W JSzHBo8WVV1CMBrX4eqZ7oNhKlWRgbrtIYpjZIuYgm8ji9a3S+/k4dJIGHjNgqDG2TlZ ypJrapWpLcCi2X1YC48Ae9Npcr2Z53qvGATnwsVWEA3mF+U2R6Rv5bvynBRjffo/eQSZ VTR8knjMtaypS4DPERYgATxMz6APx4Uz77gKrXpL2SNN5xu8b6SGzEGbeiNQ+KKmYr/w ujxXYQq2YnvM453hBGqtnVmsIQNiQSUVrlJjBVxK8J6pEiXzgOGWHFpzojWeHdwRCX1r ausg== MIME-Version: 1.0 X-Received: by 10.50.183.233 with SMTP id ep9mr730975igc.87.1363759986127; Tue, 19 Mar 2013 23:13:06 -0700 (PDT) Sender: kob6558@gmail.com Received: by 10.64.78.71 with HTTP; Tue, 19 Mar 2013 23:13:05 -0700 (PDT) In-Reply-To: References: Date: Tue, 19 Mar 2013 23:13:05 -0700 X-Google-Sender-Auth: vWPe4SFg9M5JHGLcG63IxFQuMoA Message-ID: Subject: Re: nautilus eating 1 CPU and doing lots of I/O From: Kevin Oberman To: FreeBSD GNOME Users Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 06:13:06 -0000 On Tue, Mar 19, 2013 at 10:03 PM, Kevin Oberman wrote= : > > Since I updated nautilus a few days ago I am seeing very odd behavior. > > When I open a nautilus window, I see my CPUs at 20-25% load, mostly in na= utilus. I/O jumps from near zero to several MBps,. It varies in the ones I = tried between 4 and 16 MBps depending on the number of files (not folders).= ktrace shows lots of reads returning "Resource temporarily unavailable". I= also note that most of my thumbnails are not showing up, just the generic = icons for the file type. I'm guessing some issue with finding, loading or g= enerating the thumbnails. > > I have no idea what to look for to provide any real data or to track this= . I just noticed this post to ports@ made earlier today pointing out the problem, but not a good solution. : Sergio de Almeida Lenzi Tue, 19 Mar 2013 12:42:16 -0700 Hello,, On update ports via svn from 2013-03-10 to today, after a portmaster -a, the system (gnome2) stopped to show any thumbnails.. The main reason is that it writes the thumbnail in .thumbnails/normal/xxxxxxx.png but than tries to read it from .cache/thumbnails/normal/xxxxxxxxx.png Can some "nautilus guru" tell me how to fix this??? for now I create a liink in the .cache/thumbnails -> ./thumbnails this works but is not a solution... -- R. Kevin Oberman, Network Engineer E-mail: rkoberman@gmail.com From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 08:23:40 2013 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 8F763ADD; Wed, 20 Mar 2013 08:23:40 +0000 (UTC) (envelope-from gus@gcgmcapital.com) Received: from mail4.eqx.gridhost.co.uk (mail4.eqx.gridhost.co.uk [95.142.156.13]) by mx1.freebsd.org (Postfix) with ESMTP id 1AA4834A; Wed, 20 Mar 2013 08:23:39 +0000 (UTC) Received: from [127.0.0.1] (helo=[192.168.1.14]) by mail4.eqx.gridhost.co.uk with esmtpa (Exim 4.72) (envelope-from ) id 1UIDSm-0003fp-58; Wed, 20 Mar 2013 07:29:32 +0000 Message-ID: <51496563.9060708@gcgmcapital.com> Date: Wed, 20 Mar 2013 07:29:39 +0000 From: Gus Macfarlane User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130307 Thunderbird/17.0.4 MIME-Version: 1.0 To: dfilter service Subject: Re: ports/161676: commit references a PR References: <201303191030.r2JAU1Lt086733@freefall.freebsd.org> In-Reply-To: <201303191030.r2JAU1Lt086733@freefall.freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 08:23:40 -0000 please unsubscribe me from this list On 19/03/2013 10:30, dfilter service wrote: > The following reply was made to PR ports/161676; it has been noted by > GNATS. > > From: dfilter@FreeBSD.ORG (dfilter service) > To: bug-followup@FreeBSD.org > Cc: > Subject: Re: ports/161676: commit references a PR > Date: Tue, 19 Mar 2013 10:27:12 +0000 (UTC) > > Author: kwm > Date: Tue Mar 19 10:26:51 2013 > New Revision: 314630 > URL: http://svnweb.freebsd.org/changeset/ports/314630 > > Log: > Update to 4.2.12. > > Convert to OptionsNG. pet portlint, remove obsolete OSVERSION check > Tweak comment in slaves if needed, add a ldap backend. > > PR: ports/161676 (based on update to 4.2.9) > Submitted by: Zhihao Yuan > > Added: > head/databases/libgda4-ldap/ > head/databases/libgda4-ldap/Makefile (contents, props changed) > head/databases/libgda4-ldap/pkg-plist (contents, props changed) > Modified: > head/databases/Makefile > head/databases/libgda4-bdb/Makefile (contents, props changed) > head/databases/libgda4-jdbc/Makefile (contents, props changed) > head/databases/libgda4-mdb/Makefile (contents, props changed) > head/databases/libgda4-mysql/Makefile (contents, props changed) > head/databases/libgda4-postgresql/Makefile (contents, props changed) > head/databases/libgda4-reference/Makefile (contents, props changed) > head/databases/libgda4/Makefile (contents, props changed) > head/databases/libgda4/distinfo (contents, props changed) > head/databases/libgda4/pkg-plist (contents, props changed) > > Modified: head/databases/Makefile > > ========================================================================== > ==== > --- head/databases/Makefile Tue Mar 19 09:39:43 2013 (r314629) > +++ head/databases/Makefile Tue Mar 19 10:26:51 2013 (r314630) > @@ -157,6 +157,7 @@ > SUBDIR += libgda4 > SUBDIR += libgda4-bdb > SUBDIR += libgda4-jdbc > + SUBDIR += libgda4-ldap > SUBDIR += libgda4-mdb > SUBDIR += libgda4-mysql > SUBDIR += libgda4-postgresql > > Modified: head/databases/libgda4-bdb/Makefile > > ========================================================================== > ==== > --- head/databases/libgda4-bdb/Makefile Tue Mar 19 09:39:43 2013 > (r314629) > +++ head/databases/libgda4-bdb/Makefile Tue Mar 19 10:26:51 2013 > (r314630) > @@ -1,13 +1,9 @@ > -# New ports collection makefile for: libgda4-bdb > -# Date created: 28 February 2009 > -# Whom: Joe Marcus Clarke > > -# > +# Created by: Joe Marcus Clarke > # $FreeBSD$ > -# > > -PORTREVISION?= 1 > +PORTREVISION= 0 > CATEGORIES= databases gnome > -PKGNAMESUFFIX?= -bdb > +PKGNAMESUFFIX= 4-bdb > > MAINTAINER= gnome@FreeBSD.org > COMMENT= Provides Berkeley DB backend for the libgda4 library > > Modified: head/databases/libgda4-jdbc/Makefile > > ========================================================================== > ==== > --- head/databases/libgda4-jdbc/Makefile Tue Mar 19 09:39:43 2013 > (r314629) > +++ head/databases/libgda4-jdbc/Makefile Tue Mar 19 10:26:51 2013 > (r314630) > @@ -1,16 +1,12 @@ > -# New ports collection makefile for: libgda4-java > -# Date created: 10 Mar 2009 > -# Whom: Koop Mast > > -# > +# Created by: Koop Mast > # $FreeBSD$ > -# > > -PORTREVISION?= 1 > +PORTREVISION= 0 > CATEGORIES= databases gnome > -PKGNAMESUFFIX?= -jdbc > +PKGNAMESUFFIX= 4-jdbc > > MAINTAINER= gnome@FreeBSD.org > -COMMENT= Provides Berkeley DB backend for the libgda4 library > +COMMENT= Provides Java database Connector backend for the libgda4 > library > > MASTERDIR= ${.CURDIR}/../libgda4 > BUILD_WRKSRC= ${WRKSRC}/providers/jdbc > > Added: head/databases/libgda4-ldap/Makefile > > ========================================================================== > ==== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/databases/libgda4-ldap/Makefile Tue Mar 19 10:26:51 2013 > (r314630) > @@ -0,0 +1,19 @@ > +# Created by: Joe Marcus Clarke > +# $FreeBSD$ > +# $MCom: ports/databases/libgda4-ldap/Makefile,v 1.3 2011/10/15 > 15:18:35 kwm Exp $ > + > +PORTREVISION= 0 > +CATEGORIES= databases gnome > +PKGNAMESUFFIX= 4-ldap > + > +MAINTAINER= gnome@FreeBSD.org > +COMMENT= Provides ldap access for the libgda4 library > + > +MASTERDIR= ${.CURDIR}/../libgda4 > +BUILD_WRKSRC= ${WRKSRC}/providers/ldap/ > +INSTALL_WRKSRC= ${BUILD_WRKSRC} > +PLIST= ${.CURDIR}/pkg-plist > + > +LIBGDA4_SLAVE= ldap > + > +.include "${MASTERDIR}/Makefile" > > Added: head/databases/libgda4-ldap/pkg-plist > > ========================================================================== > ==== > --- /dev/null 00:00:00 1970 (empty, because file is newly added) > +++ head/databases/libgda4-ldap/pkg-plist Tue Mar 19 10:26:51 2013 > (r314630) > @@ -0,0 +1,6 @@ > +lib/libgda-%%VERSION%%/providers/libgda-ldap.a > +lib/libgda-%%VERSION%%/providers/libgda-ldap.la > +lib/libgda-%%VERSION%%/providers/libgda-ldap.so > +libdata/pkgconfig/libgda-ldap-%%VERSION%%.pc > +share/libgda-%%VERSION%%/ldap_specs_auth.xml > +share/libgda-%%VERSION%%/ldap_specs_dsn.xml > > Modified: head/databases/libgda4-mdb/Makefile > > ========================================================================== > ==== > --- head/databases/libgda4-mdb/Makefile Tue Mar 19 09:39:43 2013 > (r314629) > +++ head/databases/libgda4-mdb/Makefile Tue Mar 19 10:26:51 2013 > (r314630) > @@ -1,14 +1,10 @@ > -# New ports collection makefile for: libgda2 > -# Date created: 02 June 2002 > -# Whom: Joe Marcus Clarke > > -# > +# Created by: Joe Marcus Clarke > # $FreeBSD$ > -# $MCom: ports/databases/libgda4-mdb/Makefile,v 1.1 2008/08/18 > 23:53:35 kwm Exp $ > -# > +# $MCom: ports/databases/libgda4-mdb/Makefile,v 1.5 2012/03/13 > 01:34:31 mezz Exp $ > > -PORTREVISION?= 1 > +PORTREVISION= 0 > CATEGORIES= databases gnome > -PKGNAMESUFFIX?= -mdb > +PKGNAMESUFFIX= 4-mdb > > MAINTAINER= gnome@FreeBSD.org > COMMENT= Provides mdb backend for the libgda4 library > > Modified: head/databases/libgda4-mysql/Makefile > > ========================================================================== > ==== > --- head/databases/libgda4-mysql/Makefile Tue Mar 19 09:39:43 2013 > (r314629) > +++ head/databases/libgda4-mysql/Makefile Tue Mar 19 10:26:51 2013 > (r314630) > @@ -1,14 +1,10 @@ > -# New ports collection makefile for: libgda2 > -# Date created: 02 June 2002 > -# Whom: Joe Marcus Clarke > > -# > +# Created by: Joe Marcus Clarke > # $FreeBSD$ > -# $MCom: ports/databases/libgda4-mysql/Makefile,v 1.3 2010/10/18 > 12:47:12 kwm Exp $ > -# > +# $MCom: ports/databases/libgda4-mysql/Makefile,v 1.7 2011/10/15 > 15:18:36 kwm Exp $ > > -PORTREVISION?= 2 > +PORTREVISION= 0 > CATEGORIES= databases gnome > -PKGNAMESUFFIX?= -mysql > +PKGNAMESUFFIX= 4-mysql > > MAINTAINER= gnome@FreeBSD.org > COMMENT= Provides MySQL backend for the libgda4 library > > Modified: head/databases/libgda4-postgresql/Makefile > > ========================================================================== > ==== > --- head/databases/libgda4-postgresql/Makefile Tue Mar 19 09:39:43 2013 > (r314629) > +++ head/databases/libgda4-postgresql/Makefile Tue Mar 19 10:26:51 2013 > (r314630) > @@ -1,17 +1,13 @@ > -# New ports collection makefile for: libgda2 > -# Date created: 02 June 2002 > -# Whom: Joe Marcus Clarke > > -# > +# Created by: Joe Marcus Clarke > # $FreeBSD$ > -# $MCom: ports/databases/libgda4-postgresql/Makefile,v 1.3 2010/10/18 > 12:47:12 kwm Exp $ > -# > +# $MCom: ports/databases/libgda4-postgresql/Makefile,v 1.7 2012/03/13 > 01:34:31 mezz Exp $ > > -PORTREVISION?= 1 > +PORTREVISION= 0 > CATEGORIES= databases gnome > -PKGNAMESUFFIX?= -postgresql > +PKGNAMESUFFIX= 4-postgresql > > MAINTAINER= gnome@FreeBSD.org > -COMMENT= Provides postgresql access for the libgda4 library > +COMMENT= Provides PostgreSQL access for the libgda4 library > > MASTERDIR= ${.CURDIR}/../libgda4 > BUILD_WRKSRC= ${WRKSRC}/providers/postgres/ > > Modified: head/databases/libgda4-reference/Makefile > > ========================================================================== > ==== > --- head/databases/libgda4-reference/Makefile Tue Mar 19 09:39:43 2013 > (r314629) > +++ head/databases/libgda4-reference/Makefile Tue Mar 19 10:26:51 2013 > (r314630) > @@ -1,9 +1,5 @@ > -# New ports collection makefile for: libgda3-reference > -# Date created: 09 May 2006 > -# Whom: Jean-Yves Lefort > > -# > +# Created by: Jean-Yves Lefort > # $FreeBSD$ > -# $MCOM$ > > PORTREVISION= 0 > > > Modified: head/databases/libgda4/Makefile > > ========================================================================== > ==== > --- head/databases/libgda4/Makefile Tue Mar 19 09:39:43 2013 > (r314629) > +++ head/databases/libgda4/Makefile Tue Mar 19 10:26:51 2013 > (r314630) > @@ -1,69 +1,83 @@ > # Created by: Joe Marcus Clarke > # $FreeBSD$ > -# $MCom: ports/databases/libgda4/Makefile,v 1.14 2010/11/14 20:57:58 > kwm Exp $ > +# $MCom: ports/databases/libgda4/Makefile,v 1.27 2012/09/01 23:02:08 > mezz Exp $ > > -PORTNAME= libgda4 > -PORTVERSION?= 4.2.5 > -PORTREVISION?= 2 > +PORTNAME= libgda > +PORTVERSION= 4.2.12 > +PORTREVISION?= 0 > CATEGORIES= databases gnome > MASTER_SITES= GNOME > -MASTER_SITE_SUBDIR= sources/${PORTNAME:S/4$//}/${PORTVERSION:R} > -DISTNAME= libgda-${PORTVERSION} > +PKGNAMESUFFIX?= 4 > DIST_SUBDIR= gnome2 > > -MAINTAINER?= gnome@FreeBSD.org > +MAINTAINER= gnome@FreeBSD.org > COMMENT?= Provides uniform access to different kinds of data sources > > -USE_BZIP2= yes > +CONFLICTS= libgda5-ui-[0-9]* > + > +USE_XZ= yes > LIBGDA4_SLAVE?= no > > .if !defined(REFERENCE_PORT) > > -BUILD_DEPENDS= > g-ir-scanner:${PORTSDIR}/devel/gobject-introspection > -LIB_DEPENDS= popt.0:${PORTSDIR}/devel/popt \ > - gcrypt.18:${PORTSDIR}/security/libgcrypt \ > - soup-2.4.1:${PORTSDIR}/devel/libsoup \ > - json-glib-1.0.0:${PORTSDIR}/devel/json-glib > -RUN_DEPENDS= > ${LOCALBASE}/lib/girepository-1.0/GObject-2.0.typelib:${PORTSDIR}/devel/go > bject-introspection > +LIB_DEPENDS= gcrypt:${PORTSDIR}/security/libgcrypt \ > + json-glib-1.0:${PORTSDIR}/devel/json-glib > > USE_AUTOTOOLS= libtool > USE_GETTEXT= yes > USE_GMAKE= yes > -USE_GNOME= gnomeprefix gnomehack glib20 libxslt intlhack > referencehack > +USES= pathfix > +USE_GNOME= gnomeprefix glib20 libxslt intlhack referencehack > USE_LDCONFIG= yes > GNU_CONFIGURE= yes > MAKE_JOBS_UNSAFE=yes > CONFIGURE_ARGS= --without-oracle \ > --disable-crypto \ > --enable-introspection=no > -CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib -lintl" > CPPFLAGS+= -I${LOCALBASE}/include > +LDDFLAGS+= -L${LOCALBASE}/lib > > .if ${LIBGDA4_SLAVE}=="no" > -OPTIONS= UI "Build UI tools" on > -.endif > - > -.if defined(WITH_UI) > -INSTALLS_ICONS= yes > +OPTIONS_DEFINE= UI SOUP KEYRING > +OPTIONS_DEFAULT=UI > +UI_DESC= Build UI tools > +SOUP_DESC= Web provider > +KEYRING_DESC= Support gnome-keyring > .endif > > .include > > -#VERSION= ${PORTVERSION:R} > VERSION= 4.0 > PLIST_SUB= VERSION=${VERSION} > > .if ${LIBGDA4_SLAVE}=="no" > -.if defined(WITH_UI) > +.if ${PORT_OPTIONS:MUI} > CONFIGURE_ARGS+=--with-ui > BUILD_DEPENDS+= xml2po:${PORTSDIR}/textproc/gnome-doc-utils > USE_GNOME+= gtk20 > +INSTALLS_ICONS= yes > PLIST_SUB+= UI="" > .else > CONFIGURE_ARGS+=--without-ui > PLIST_SUB+= UI="@comment " > .endif > > +.if ${PORT_OPTIONS:MSOUP} > +CONFIGURE_ARGS+=--with-libsoup > +LIB_DEPENDS+= soup-2.4:${PORTSDIR}/devel/libsoup > +PLIST_SUB+= WEB="" > +.else > +CONFIGURE_ARGS+=--without-libsoup > +PLIST_SUB+= WEB="@comment " > +.endif > + > +.if ${PORT_OPTIONS:MKEYRING} > +CONFIGURE_ARGS+=--with-gnome-keyring > +LIB_DEPENDS+= gnome-keyring:${PORTSDIR}/security/libgnome-keyring > +.else > +CONFIGURE_ARGS+=--without-gnome-keyring > +.endif > + > MAN1= gda-sql.1 gda-sql-4.0.1 > .else > USE_GNOME+= libgda4 > @@ -76,6 +90,13 @@ CONFIGURE_ARGS+= --with-bdb=${LOCALBASE} > CONFIGURE_ARGS+= --without-bdb > .endif > > +.if ${LIBGDA4_SLAVE}=="ldap" > +USE_OPENLDAP= yes > +CONFIGURE_ARGS+= --with-ldap=${LOCALBASE} > +.else > +CONFIGURE_ARGS+= --without-ldap > +.endif > + > .if ${LIBGDA4_SLAVE}=="mysql" > USE_MYSQL= yes > CONFIGURE_ARGS+= --with-mysql=${LOCALBASE} > @@ -90,16 +111,9 @@ CONFIGURE_ARGS+= --with-postgres=${LOCAL > CONFIGURE_ARGS+= --without-postgres > .endif > > -.if ${LIBGDA4_SLAVE}=="firebird" > -LIB_DEPENDS+= gds.2:${PORTSDIR}/databases/firebird2-client > -CONFIGURE_ARGS+= --with-firebird=${LOCALBASE} > -.else > -CONFIGURE_ARGS+= --without-firebird > -.endif > - > # MDB (MS Access) > .if ${LIBGDA4_SLAVE}=="mdb" > -LIB_DEPENDS+= mdbsql.0:${PORTSDIR}/databases/mdbtools > +LIB_DEPENDS+= mdbsql:${PORTSDIR}/databases/mdbtools > CONFIGURE_ARGS+= --with-mdb=${LOCALBASE} > .else > CONFIGURE_ARGS+= --without-mdb > @@ -125,7 +139,7 @@ post-patch: > ${WRKSRC}/providers/bdb/gda-bdb-test.c > .if ${LIBGDA4_SLAVE}!="no" > #. for d in msql firebird odbc freetds mdb ldap mysql sqlite postgres > -. for d in bdb jdbc mdb mysql postgres reuseable/postgres > reuseable/mysql > +. for d in bdb jdbc mdb mysql postgres reuseable/postgres > reuseable/mysql ldap > @${REINPLACE_CMD} -e > 's|$$(top_builddir)/libgda/libgda-4.0.la|${LOCALBASE}/lib/libgda-4.0.la|g' > \ > ${WRKSRC}/providers/${d}/Makefile.in > . endfor > @@ -146,11 +160,6 @@ post-install: > ${PREFIX}/etc/libgda-${VERSION}/config.default > .endif > > -.include > - > -.if ${LIBGDA4_SLAVE}=="jdbc" && ${OSVERSION} < 800000 > -BROKEN= does not compile on 7.x > -.endif > +.include > > -.include > .endif > > Modified: head/databases/libgda4/distinfo > > ========================================================================== > ==== > --- head/databases/libgda4/distinfo Tue Mar 19 09:39:43 2013 > (r314629) > +++ head/databases/libgda4/distinfo Tue Mar 19 10:26:51 2013 > (r314630) > @@ -1,2 +1,2 @@ > -SHA256 (gnome2/libgda-4.2.5.tar.bz2) = > b98d6063469a1ba8226d94800732544be629c55132516de741c937e8bf175f13 > -SIZE (gnome2/libgda-4.2.5.tar.bz2) = 15196398 > +SHA256 (gnome2/libgda-4.2.12.tar.xz) = > 636c17d0a7380d77eb89c19426dc62580f900a86b9dd93cb0b03210ff77769f9 > +SIZE (gnome2/libgda-4.2.12.tar.xz) = 11238088 > > Modified: head/databases/libgda4/pkg-plist > > ========================================================================== > ==== > --- head/databases/libgda4/pkg-plist Tue Mar 19 09:39:43 2013 > (r314629) > +++ head/databases/libgda4/pkg-plist Tue Mar 19 10:26:51 2013 > (r314630) > @@ -7,13 +7,6 @@ bin/gda-list-server-op-%%VERSION%% > bin/gda-sql > bin/gda-sql-%%VERSION%% > bin/gda-test-connection-%%VERSION%% > -bin/gda_trml2html/__init__.py > -bin/gda_trml2html/trml2html.py > -bin/gda_trml2html/utils.py > -bin/gda_trml2pdf/__init__.py > -bin/gda_trml2pdf/color.py > -bin/gda_trml2pdf/trml2pdf.py > -bin/gda_trml2pdf/utils.py > %%UI%%bin/gdaui-demo-%%VERSION%% > @unexec if cmp -s %D/etc/libgda-%%VERSION%%/config > %D/etc/libgda-%%VERSION%%/config.default; then rm -f > %D/etc/libgda-%%VERSION%%/config; fi > etc/libgda-%%VERSION%%/config.default > @@ -36,6 +29,8 @@ include/libgda-%%VERSION%%/libgda-report > %%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-data-store.h > %%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-decl.h > %%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-easy.h > +%%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-entry-shell.h > +%%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-entry-wrapper.h > %%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-enum-types.h > %%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-enums.h > %%UI%%include/libgda-%%VERSION%%/libgda-ui/gdaui-form.h > @@ -155,9 +150,9 @@ lib/libgda-%%VERSION%%.so.5 > %%UI%%lib/libgda-%%VERSION%%/plugins/libgda-ui-plugins.a > %%UI%%lib/libgda-%%VERSION%%/plugins/libgda-ui-plugins.la > %%UI%%lib/libgda-%%VERSION%%/plugins/libgda-ui-plugins.so > -lib/libgda-%%VERSION%%/providers/libgda-web.a > -lib/libgda-%%VERSION%%/providers/libgda-web.la > -lib/libgda-%%VERSION%%/providers/libgda-web.so > +%%WEB%%lib/libgda-%%VERSION%%/providers/libgda-web.a > +%%WEB%%lib/libgda-%%VERSION%%/providers/libgda-web.la > +%%WEB%%lib/libgda-%%VERSION%%/providers/libgda-web.so > lib/libgda-%%VERSION%%/providers/libgda-sqlite.a > lib/libgda-%%VERSION%%/providers/libgda-sqlite.la > lib/libgda-%%VERSION%%/providers/libgda-sqlite.so > @@ -177,10 +172,354 @@ libdata/pkgconfig/libgda-%%VERSION%%.pc > libdata/pkgconfig/libgda-report-%%VERSION%%.pc > libdata/pkgconfig/libgda-sqlite-%%VERSION%%.pc > %%UI%%libdata/pkgconfig/libgda-ui-%%VERSION%%.pc > -libdata/pkgconfig/libgda-web-%%VERSION%%.pc > +%%WEB%%libdata/pkgconfig/libgda-web-%%VERSION%%.pc > libdata/pkgconfig/libgda-xslt-%%VERSION%%.pc > %%UI%%share/applications/gda-browser-%%VERSION%%.desktop > %%UI%%share/applications/gda-control-center-%%VERSION%%.desktop > +%%UI%%share/doc/gda-browser/UILayout.png > +%%UI%%share/doc/gda-browser/code_orga.html > +%%UI%%share/doc/gda-browser/core.html > +%%UI%%share/doc/gda-browser/extrawidgets.html > +%%UI%%share/doc/gda-browser/fdl-section1.html > +%%UI%%share/doc/gda-browser/fdl-section10.html > +%%UI%%share/doc/gda-browser/fdl-section2.html > +%%UI%%share/doc/gda-browser/fdl-section3.html > +%%UI%%share/doc/gda-browser/fdl-section4.html > +%%UI%%share/doc/gda-browser/fdl-section5.html > +%%UI%%share/doc/gda-browser/fdl-section6.html > +%%UI%%share/doc/gda-browser/fdl-section7.html > +%%UI%%share/doc/gda-browser/fdl-section8.html > +%%UI%%share/doc/gda-browser/fdl-section9.html > +%%UI%%share/doc/gda-browser/fdl-using.html > +%%UI%%share/doc/gda-browser/fdl.html > +%%UI%%share/doc/gda-browser/gda-browser-Support-functions.html > +%%UI%%share/doc/gda-browser/gda-browser-browser-connection.html > +%%UI%%share/doc/gda-browser/gda-browser-browser-core.html > +%%UI%%share/doc/gda-browser/gda-browser-browser-favorites.html > +%%UI%%share/doc/gda-browser/gda-browser-browser-page.html > +%%UI%%share/doc/gda-browser/gda-browser-browser-perspective.html > +%%UI%%share/doc/gda-browser/gda-browser-browser-window.html > +%%UI%%share/doc/gda-browser/gda-browser-cc-gray-bar.html > +%%UI%%share/doc/gda-browser/gda-browser-data-manager-perspective.html > +%%UI%%share/doc/gda-browser/gda-browser-mgr-favorites.html > +%%UI%%share/doc/gda-browser/gda-browser-popup-container.html > +%%UI%%share/doc/gda-browser/gda-browser-query-exec-perspective.html > +%%UI%%share/doc/gda-browser/gda-browser-schema-browser-perspective.html > +%%UI%%share/doc/gda-browser/gda-browser-ui-formgrid.html > +%%UI%%share/doc/gda-browser/gda-browser.devhelp2 > +%%UI%%share/doc/gda-browser/home.png > +%%UI%%share/doc/gda-browser/index.html > +%%UI%%share/doc/gda-browser/index.sgml > +%%UI%%share/doc/gda-browser/left.png > +%%UI%%share/doc/gda-browser/part_api.html > +%%UI%%share/doc/gda-browser/part_begin.html > +%%UI%%share/doc/gda-browser/part_index.html > +%%UI%%share/doc/gda-browser/perspectives.html > +%%UI%%share/doc/gda-browser/prog_struct.html > +%%UI%%share/doc/gda-browser/right.png > +%%UI%%share/doc/gda-browser/style.css > +%%UI%%share/doc/gda-browser/up.png > +%%UI%%share/doc/gda-browser/why.html > +%%UI%%share/doc/gda-browser/windows.html > +share/doc/libgda-%%VERSION%%/DataModels.png > +share/doc/libgda-%%VERSION%%/GdaBatch.html > +share/doc/libgda-%%VERSION%%/GdaBlobOp.html > +share/doc/libgda-%%VERSION%%/GdaColumn.html > +share/doc/libgda-%%VERSION%%/GdaConnection.html > +share/doc/libgda-%%VERSION%%/GdaConnectionEvent.html > +share/doc/libgda-%%VERSION%%/GdaDataAccessWrapper.html > +share/doc/libgda-%%VERSION%%/GdaDataModel.html > +share/doc/libgda-%%VERSION%%/GdaDataModelArray.html > +share/doc/libgda-%%VERSION%%/GdaDataModelBdb.html > +share/doc/libgda-%%VERSION%%/GdaDataModelDir.html > +share/doc/libgda-%%VERSION%%/GdaDataModelImport.html > +share/doc/libgda-%%VERSION%%/GdaDataModelIter.html > +share/doc/libgda-%%VERSION%%/GdaDataModelIter.png > +share/doc/libgda-%%VERSION%%/GdaDataProxy.html > +share/doc/libgda-%%VERSION%%/GdaDataSelect.html > +share/doc/libgda-%%VERSION%%/GdaHandlerBin.html > +share/doc/libgda-%%VERSION%%/GdaHandlerBoolean.html > +share/doc/libgda-%%VERSION%%/GdaHandlerNumerical.html > +share/doc/libgda-%%VERSION%%/GdaHandlerString.html > +share/doc/libgda-%%VERSION%%/GdaHandlerTime.html > +share/doc/libgda-%%VERSION%%/GdaHandlerType.html > +share/doc/libgda-%%VERSION%%/GdaHolder.html > +share/doc/libgda-%%VERSION%%/GdaLockable.html > +share/doc/libgda-%%VERSION%%/GdaMetaStore.html > +share/doc/libgda-%%VERSION%%/GdaMetaStoreCustomData.html > +share/doc/libgda-%%VERSION%%/GdaMetaStruct.html > +share/doc/libgda-%%VERSION%%/GdaPStmt.html > +share/doc/libgda-%%VERSION%%/GdaReportDocbookDocument.html > +share/doc/libgda-%%VERSION%%/GdaReportDocument.html > +share/doc/libgda-%%VERSION%%/GdaReportEngine.html > +share/doc/libgda-%%VERSION%%/GdaReportRmlDocument.html > +share/doc/libgda-%%VERSION%%/GdaRow.html > +share/doc/libgda-%%VERSION%%/GdaServerOperation.html > +share/doc/libgda-%%VERSION%%/GdaServerProvider.html > +share/doc/libgda-%%VERSION%%/GdaSet.html > +share/doc/libgda-%%VERSION%%/GdaSqlBuilder.html > +share/doc/libgda-%%VERSION%%/GdaSqlParser.html > +share/doc/libgda-%%VERSION%%/GdaStatement.html > +share/doc/libgda-%%VERSION%%/GdaStatement.png > +share/doc/libgda-%%VERSION%%/GdaThreadWrapper.html > +share/doc/libgda-%%VERSION%%/GdaTransactionStatus.html > +share/doc/libgda-%%VERSION%%/GdaTree.html > +share/doc/libgda-%%VERSION%%/GdaTreeManager.html > +share/doc/libgda-%%VERSION%%/GdaTreeMgrColumns.html > +share/doc/libgda-%%VERSION%%/GdaTreeMgrLabel.html > +share/doc/libgda-%%VERSION%%/GdaTreeMgrSchemas.html > +share/doc/libgda-%%VERSION%%/GdaTreeMgrSelect.html > +share/doc/libgda-%%VERSION%%/GdaTreeMgrTables.html > +share/doc/libgda-%%VERSION%%/GdaTreeNode.html > +share/doc/libgda-%%VERSION%%/GdaVconnectionDataModel.html > +share/doc/libgda-%%VERSION%%/GdaVconnectionHub.html > +share/doc/libgda-%%VERSION%%/GdaVirtualConnection.html > +share/doc/libgda-%%VERSION%%/GdaVirtualProvider.html > +share/doc/libgda-%%VERSION%%/GdaVproviderDataModel.html > +share/doc/libgda-%%VERSION%%/GdaVproviderHub.html > +share/doc/libgda-%%VERSION%%/GdauiBasicForm.html > +share/doc/libgda-%%VERSION%%/GdauiCloud.html > +share/doc/libgda-%%VERSION%%/GdauiCombo.html > +share/doc/libgda-%%VERSION%%/GdauiDataEntry.html > +share/doc/libgda-%%VERSION%%/GdauiDataFilter.html > +share/doc/libgda-%%VERSION%%/GdauiDataProxy.html > +share/doc/libgda-%%VERSION%%/GdauiDataProxyInfo.html > +share/doc/libgda-%%VERSION%%/GdauiDataSelector.html > +share/doc/libgda-%%VERSION%%/GdauiDataStore.html > +share/doc/libgda-%%VERSION%%/GdauiForm.html > +share/doc/libgda-%%VERSION%%/GdauiGrid.html > +share/doc/libgda-%%VERSION%%/GdauiLogin.html > +share/doc/libgda-%%VERSION%%/GdauiProviderSelector.html > +share/doc/libgda-%%VERSION%%/GdauiRawForm.html > +share/doc/libgda-%%VERSION%%/GdauiRawGrid.html > +share/doc/libgda-%%VERSION%%/GdauiRtEditor.html > +share/doc/libgda-%%VERSION%%/GdauiServerOperation.html > +share/doc/libgda-%%VERSION%%/GdauiTreeStore.html > +share/doc/libgda-%%VERSION%%/MetaStore1.png > +share/doc/libgda-%%VERSION%%/MetaStore2.png > +share/doc/libgda-%%VERSION%%/SqlIdentifiers.png > +share/doc/libgda-%%VERSION%%/architecture.html > +share/doc/libgda-%%VERSION%%/architecture.png > +share/doc/libgda-%%VERSION%%/blobs_example.html > +share/doc/libgda-%%VERSION%%/ch04.html > +share/doc/libgda-%%VERSION%%/ch06s03.html > +share/doc/libgda-%%VERSION%%/ch07s02.html > +share/doc/libgda-%%VERSION%%/ch07s03.html > +share/doc/libgda-%%VERSION%%/ch08s02.html > +share/doc/libgda-%%VERSION%%/ch08s03.html > +share/doc/libgda-%%VERSION%%/ch08s07.html > +share/doc/libgda-%%VERSION%%/ch11s02.html > +share/doc/libgda-%%VERSION%%/ch11s07.html > +share/doc/libgda-%%VERSION%%/ch11s08.html > +share/doc/libgda-%%VERSION%%/ch11s11.html > +share/doc/libgda-%%VERSION%%/ch11s12.html > +share/doc/libgda-%%VERSION%%/ch11s13.html > +share/doc/libgda-%%VERSION%%/ch12.html > +share/doc/libgda-%%VERSION%%/ch20.html > +share/doc/libgda-%%VERSION%%/ch21.html > +share/doc/libgda-%%VERSION%%/ch32.html > +share/doc/libgda-%%VERSION%%/ch35.html > +share/doc/libgda-%%VERSION%%/ch36s02.html > +share/doc/libgda-%%VERSION%%/ch36s03.html > +share/doc/libgda-%%VERSION%%/ch38s02.html > +share/doc/libgda-%%VERSION%%/ch39s02.html > +share/doc/libgda-%%VERSION%%/ch39s03.html > +share/doc/libgda-%%VERSION%%/ch39s04.html > +share/doc/libgda-%%VERSION%%/ch41s02.html > +share/doc/libgda-%%VERSION%%/ch41s03.html > +share/doc/libgda-%%VERSION%%/ch41s04.html > +share/doc/libgda-%%VERSION%%/ch41s05.html > +share/doc/libgda-%%VERSION%%/ch41s06.html > +share/doc/libgda-%%VERSION%%/ch41s07.html > +share/doc/libgda-%%VERSION%%/ch41s08.html > +share/doc/libgda-%%VERSION%%/ch41s10.html > +share/doc/libgda-%%VERSION%%/ch44s02.html > +share/doc/libgda-%%VERSION%%/ch46s02.html > +share/doc/libgda-%%VERSION%%/ch46s03.html > +share/doc/libgda-%%VERSION%%/ch46s04.html > +share/doc/libgda-%%VERSION%%/ch46s05.html > +share/doc/libgda-%%VERSION%%/ch46s06.html > +share/doc/libgda-%%VERSION%%/ch46s07.html > +share/doc/libgda-%%VERSION%%/ch46s08.html > +share/doc/libgda-%%VERSION%%/ch47s02.html > +share/doc/libgda-%%VERSION%%/ch47s03.html > +share/doc/libgda-%%VERSION%%/ch47s04.html > +share/doc/libgda-%%VERSION%%/ch47s05.html > +share/doc/libgda-%%VERSION%%/compiling.html > +share/doc/libgda-%%VERSION%%/connection.html > +share/doc/libgda-%%VERSION%%/connections.html > +share/doc/libgda-%%VERSION%%/data-model.html > +share/doc/libgda-%%VERSION%%/data-select.html > +share/doc/libgda-%%VERSION%%/data_conv.html > +share/doc/libgda-%%VERSION%%/data_models.html > +share/doc/libgda-%%VERSION%%/data_proxy1.png > +share/doc/libgda-%%VERSION%%/data_proxy2.png > +share/doc/libgda-%%VERSION%%/data_proxy3.png > +share/doc/libgda-%%VERSION%%/data_proxy4.png > +share/doc/libgda-%%VERSION%%/data_proxy5.png > +share/doc/libgda-%%VERSION%%/data_validation_holder.png > +share/doc/libgda-%%VERSION%%/data_validation_proxy.png > +share/doc/libgda-%%VERSION%%/data_validation_set.png > +share/doc/libgda-%%VERSION%%/ddl_example.html > +share/doc/libgda-%%VERSION%%/fdl-section1.html > +share/doc/libgda-%%VERSION%%/fdl-section10.html > +share/doc/libgda-%%VERSION%%/fdl-section2.html > +share/doc/libgda-%%VERSION%%/fdl-section3.html > +share/doc/libgda-%%VERSION%%/fdl-section4.html > +share/doc/libgda-%%VERSION%%/fdl-section5.html > +share/doc/libgda-%%VERSION%%/fdl-section6.html > +share/doc/libgda-%%VERSION%%/fdl-section7.html > +share/doc/libgda-%%VERSION%%/fdl-section8.html > +share/doc/libgda-%%VERSION%%/fdl-section9.html > +share/doc/libgda-%%VERSION%%/fdl-using.html > +share/doc/libgda-%%VERSION%%/fdl.html > +share/doc/libgda-%%VERSION%%/features.html > +share/doc/libgda-%%VERSION%%/gda-dict.html > +share/doc/libgda-%%VERSION%%/gda-sql-graph.png > +share/doc/libgda-%%VERSION%%/gda-sql-manual-dsn.html > +share/doc/libgda-%%VERSION%%/gda-sql-manual-icommands.html > +share/doc/libgda-%%VERSION%%/gda-sql-manual-open.html > +share/doc/libgda-%%VERSION%%/gda-sql-manual-run.html > +share/doc/libgda-%%VERSION%%/gda-sql.html > +share/doc/libgda-%%VERSION%%/gen:sql_identifiers.html > +share/doc/libgda-%%VERSION%%/gen_blobs.html > +share/doc/libgda-%%VERSION%%/getting_started.html > +share/doc/libgda-%%VERSION%%/home.png > +share/doc/libgda-%%VERSION%%/howto-exec-non-select.html > +share/doc/libgda-%%VERSION%%/howto-exec-select.html > +share/doc/libgda-%%VERSION%%/howto-exec.png > +share/doc/libgda-%%VERSION%%/howto-meta1.html > +share/doc/libgda-%%VERSION%%/howto-meta2.html > +share/doc/libgda-%%VERSION%%/howto-modify-select.html > +share/doc/libgda-%%VERSION%%/howto-sqlbuilder.html > +share/doc/libgda-%%VERSION%%/howto.html > +share/doc/libgda-%%VERSION%%/i_s_data_types.png > +share/doc/libgda-%%VERSION%%/index-4-2-1.html > +share/doc/libgda-%%VERSION%%/index-4-2-10.html > +share/doc/libgda-%%VERSION%%/index-4-2-2.html > +share/doc/libgda-%%VERSION%%/index-4-2-3.html > +share/doc/libgda-%%VERSION%%/index-4-2-4.html > +share/doc/libgda-%%VERSION%%/index-4-2-5.html > +share/doc/libgda-%%VERSION%%/index-4-2-6.html > +share/doc/libgda-%%VERSION%%/index-4-2-7.html > +share/doc/libgda-%%VERSION%%/index-4-2-8.html > +share/doc/libgda-%%VERSION%%/index-4-2-9.html > +share/doc/libgda-%%VERSION%%/index-4-2.html > +share/doc/libgda-%%VERSION%%/index-deprecated.html > +share/doc/libgda-%%VERSION%%/index.html > +share/doc/libgda-%%VERSION%%/index.sgml > +share/doc/libgda-%%VERSION%%/index_main.html > +share/doc/libgda-%%VERSION%%/information_schema.html > +share/doc/libgda-%%VERSION%%/information_schema.png > +share/doc/libgda-%%VERSION%%/init_config.html > +share/doc/libgda-%%VERSION%%/installation-configuring.html > +share/doc/libgda-%%VERSION%%/installation-installing.html > +share/doc/libgda-%%VERSION%%/installation.html > +share/doc/libgda-%%VERSION%%/introduction.html > +share/doc/libgda-%%VERSION%%/left.png > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Attributes-manager.html > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Configuration.html > > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Convenience-functions.htm > l > > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Default-Data-handlers.htm > l > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Gda-Value.html > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaDataComparator.html > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaMutex.html > > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaRepetitiveStatement.ht > ml > > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaServerOperation-indivi > dual-nodes.html > > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaServerOperation-sequen > ces.html > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaSqlStatement.html > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-GdaXaTransaction.html > > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Libgda-Initialization.htm > l > > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-LibgdaUI-Initialization.h > tml > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Logging.html > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Misc-API.html > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Quark-lists.html > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-SQL-rendering-API.html > > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Subclassing-GdaDataSelect > .html > > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-UI-Utility-functions.html > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-UI-plugins.html > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%-Utility-functions.html > +share/doc/libgda-%%VERSION%%/libgda-%%VERSION%%.devhelp2 > +share/doc/libgda-%%VERSION%%/libgda-list-server-op.html > +share/doc/libgda-%%VERSION%%/libgda-packaging.html > +share/doc/libgda-%%VERSION%%/libgda-provider-blobop.html > +share/doc/libgda-%%VERSION%%/libgda-provider-class.html > +share/doc/libgda-%%VERSION%%/libgda-provider-pack.html > +share/doc/libgda-%%VERSION%%/libgda-provider-parser.html > +share/doc/libgda-%%VERSION%%/libgda-provider-recordset.html > +share/doc/libgda-%%VERSION%%/libgda-reports-introduction.html > +share/doc/libgda-%%VERSION%%/libgda-sql.html > +share/doc/libgda-%%VERSION%%/libgda-tools-controlcenter.html > +share/doc/libgda-%%VERSION%%/libgda-tools-gdabrowser.html > +share/doc/libgda-%%VERSION%%/libgda-tools-introduction.html > +share/doc/libgda-%%VERSION%%/libgda-tools-list-config.html > +share/doc/libgda-%%VERSION%%/libgda-tools-test-connection.html > +share/doc/libgda-%%VERSION%%/libgda-xslt-api.html > +share/doc/libgda-%%VERSION%%/libgda-xslt-introduction.html > +share/doc/libgda-%%VERSION%%/libgdaui-packaging.html > +share/doc/libgda-%%VERSION%%/limitations.html > +share/doc/libgda-%%VERSION%%/limitations_jdbc.html > +share/doc/libgda-%%VERSION%%/limitations_ldap.html > +share/doc/libgda-%%VERSION%%/limitations_mysql.html > +share/doc/libgda-%%VERSION%%/limitations_oracle.html > +share/doc/libgda-%%VERSION%%/limitations_postgres.html > +share/doc/libgda-%%VERSION%%/limitations_sqlcipher.html > +share/doc/libgda-%%VERSION%%/limitations_sqlite.html > +share/doc/libgda-%%VERSION%%/main_example.html > +share/doc/libgda-%%VERSION%%/managing-errors.html > +share/doc/libgda-%%VERSION%%/migration-1.html > +share/doc/libgda-%%VERSION%%/migration-2-dict.html > +share/doc/libgda-%%VERSION%%/migration-2-exec.html > +share/doc/libgda-%%VERSION%%/migration-2-report.html > +share/doc/libgda-%%VERSION%%/migration-2.html > +share/doc/libgda-%%VERSION%%/misc.html > +share/doc/libgda-%%VERSION%%/multi-threading.html > +share/doc/libgda-%%VERSION%%/null_handling.html > +share/doc/libgda-%%VERSION%%/other_examples.html > +share/doc/libgda-%%VERSION%%/parser_gen.png > +share/doc/libgda-%%VERSION%%/parser_prov.png > +share/doc/libgda-%%VERSION%%/part_begin.html > +share/doc/libgda-%%VERSION%%/part_index.html > +share/doc/libgda-%%VERSION%%/part_libgda-reports.html > +share/doc/libgda-%%VERSION%%/part_libgda-xslt.html > +share/doc/libgda-%%VERSION%%/part_libgda_api.html > +share/doc/libgda-%%VERSION%%/part_providers.html > +share/doc/libgda-%%VERSION%%/part_tools.html > +share/doc/libgda-%%VERSION%%/parts.png > +share/doc/libgda-%%VERSION%%/prov-metadata.html > +share/doc/libgda-%%VERSION%%/provider-notes.html > +share/doc/libgda-%%VERSION%%/provider_notes_ldap.html > +share/doc/libgda-%%VERSION%%/provider_notes_sqlcipher.html > +share/doc/libgda-%%VERSION%%/provider_notes_sqlite.html > +share/doc/libgda-%%VERSION%%/psupport.html > +share/doc/libgda-%%VERSION%%/pt08.html > +share/doc/libgda-%%VERSION%%/right.png > +share/doc/libgda-%%VERSION%%/stmt-compound.png > +share/doc/libgda-%%VERSION%%/stmt-insert1.png > +share/doc/libgda-%%VERSION%%/stmt-insert2.png > +share/doc/libgda-%%VERSION%%/stmt-select.png > +share/doc/libgda-%%VERSION%%/stmt-unknown.png > +share/doc/libgda-%%VERSION%%/stmt-update.png > +share/doc/libgda-%%VERSION%%/style.css > +share/doc/libgda-%%VERSION%%/thread-wrapper.png > +share/doc/libgda-%%VERSION%%/transactions.html > +share/doc/libgda-%%VERSION%%/tree-overview.png > +share/doc/libgda-%%VERSION%%/tree-overview2.png > +share/doc/libgda-%%VERSION%%/trees.html > +share/doc/libgda-%%VERSION%%/up.png > +share/doc/libgda-%%VERSION%%/vi-basic-form.png > +share/doc/libgda-%%VERSION%%/vi-cloud.png > +share/doc/libgda-%%VERSION%%/vi-combo.png > +share/doc/libgda-%%VERSION%%/vi-data-entry.png > +share/doc/libgda-%%VERSION%%/vi-filter.png > +share/doc/libgda-%%VERSION%%/vi-info.png > +share/doc/libgda-%%VERSION%%/vi-login.png > +share/doc/libgda-%%VERSION%%/vi-provider-selector.png > +share/doc/libgda-%%VERSION%%/vi-raw-grid.png > +share/doc/libgda-%%VERSION%%/vi-rte.png > +share/doc/libgda-%%VERSION%%/vi-server-op.png > +share/doc/libgda-%%VERSION%%/virtual_connection.html > +share/doc/libgda-%%VERSION%%/writable_data_model.png > %%UI%%share/gnome/help/gda-browser/C/actions.page > %%UI%%share/gnome/help/gda-browser/C/data-manager-perspective.page > %%UI%%share/gnome/help/gda-browser/C/data-manager-source-editor.page > @@ -200,6 +539,10 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% > %%UI%%share/gnome/help/gda-browser/C/figures/declaredfk-dialog.png > %%UI%%share/gnome/help/gda-browser/C/figures/declaredfk.png > %%UI%%share/gnome/help/gda-browser/C/figures/diagram.png > +%%UI%%share/gnome/help/gda-browser/C/figures/ldap-browser-persp.png > +%%UI%%share/gnome/help/gda-browser/C/figures/ldap-classes.png > +%%UI%%share/gnome/help/gda-browser/C/figures/ldap-search.png > +%%UI%%share/gnome/help/gda-browser/C/figures/ldap-table-mapping.png > %%UI%%share/gnome/help/gda-browser/C/figures/mainwin.png > %%UI%%share/gnome/help/gda-browser/C/figures/query-exec-persp.png > %%UI%%share/gnome/help/gda-browser/C/figures/schema-browser-persp.png > @@ -207,14 +550,22 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% > %%UI%%share/gnome/help/gda-browser/C/figures/trans-begin.png > %%UI%%share/gnome/help/gda-browser/C/figures/trans-commit.png > %%UI%%share/gnome/help/gda-browser/C/figures/trans-rollback.png > +%%UI%%share/gnome/help/gda-browser/C/figures/virtual-cnc-2.png > +%%UI%%share/gnome/help/gda-browser/C/figures/virtual-cnc-3.png > +%%UI%%share/gnome/help/gda-browser/C/figures/virtual-cnc-4.png > +%%UI%%share/gnome/help/gda-browser/C/figures/virtual-cnc-5.png > +%%UI%%share/gnome/help/gda-browser/C/figures/virtual-cnc.png > %%UI%%share/gnome/help/gda-browser/C/general-ui.page > %%UI%%share/gnome/help/gda-browser/C/index.page > +%%UI%%share/gnome/help/gda-browser/C/ldap-browser-perspective.page > +%%UI%%share/gnome/help/gda-browser/C/ldap-connections.page > %%UI%%share/gnome/help/gda-browser/C/legal.xml > %%UI%%share/gnome/help/gda-browser/C/query-execution-perspective.page > %%UI%%share/gnome/help/gda-browser/C/schema-browser-perspective.page > %%UI%%share/gnome/help/gda-browser/C/table-insert-data.page > %%UI%%share/gnome/help/gda-browser/C/transactions.page > %%UI%%share/gnome/help/gda-browser/C/variables.page > +%%UI%%share/gnome/help/gda-browser/C/virtual-connections.page > %%UI%%share/gnome/help/gda-browser/de/actions.page > %%UI%%share/gnome/help/gda-browser/de/data-manager-perspective.page > %%UI%%share/gnome/help/gda-browser/de/data-manager-source-editor.page > @@ -234,6 +585,10 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% > %%UI%%share/gnome/help/gda-browser/de/figures/declaredfk-dialog.png > %%UI%%share/gnome/help/gda-browser/de/figures/declaredfk.png > %%UI%%share/gnome/help/gda-browser/de/figures/diagram.png > +%%UI%%share/gnome/help/gda-browser/de/figures/ldap-browser-persp.png > +%%UI%%share/gnome/help/gda-browser/de/figures/ldap-classes.png > +%%UI%%share/gnome/help/gda-browser/de/figures/ldap-search.png > +%%UI%%share/gnome/help/gda-browser/de/figures/ldap-table-mapping.png > %%UI%%share/gnome/help/gda-browser/de/figures/mainwin.png > %%UI%%share/gnome/help/gda-browser/de/figures/query-exec-persp.png > %%UI%%share/gnome/help/gda-browser/de/figures/schema-browser-persp.png > @@ -241,14 +596,68 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% > %%UI%%share/gnome/help/gda-browser/de/figures/trans-begin.png > %%UI%%share/gnome/help/gda-browser/de/figures/trans-commit.png > %%UI%%share/gnome/help/gda-browser/de/figures/trans-rollback.png > +%%UI%%share/gnome/help/gda-browser/de/figures/virtual-cnc-2.png > +%%UI%%share/gnome/help/gda-browser/de/figures/virtual-cnc-3.png > +%%UI%%share/gnome/help/gda-browser/de/figures/virtual-cnc-4.png > +%%UI%%share/gnome/help/gda-browser/de/figures/virtual-cnc-5.png > +%%UI%%share/gnome/help/gda-browser/de/figures/virtual-cnc.png > %%UI%%share/gnome/help/gda-browser/de/general-ui.page > %%UI%%share/gnome/help/gda-browser/de/index.page > +%%UI%%share/gnome/help/gda-browser/de/ldap-browser-perspective.page > +%%UI%%share/gnome/help/gda-browser/de/ldap-connections.page > %%UI%%share/gnome/help/gda-browser/de/legal.xml > %%UI%%share/gnome/help/gda-browser/de/query-execution-perspective.page > %%UI%%share/gnome/help/gda-browser/de/schema-browser-perspective.page > %%UI%%share/gnome/help/gda-browser/de/table-insert-data.page > %%UI%%share/gnome/help/gda-browser/de/transactions.page > %%UI%%share/gnome/help/gda-browser/de/variables.page > +%%UI%%share/gnome/help/gda-browser/de/virtual-connections.page > +%%UI%%share/gnome/help/gda-browser/el/actions.page > +%%UI%%share/gnome/help/gda-browser/el/data-manager-perspective.page > +%%UI%%share/gnome/help/gda-browser/el/data-manager-source-editor.page > +%%UI%%share/gnome/help/gda-browser/el/data-manager-xml-syntax.page > +%%UI%%share/gnome/help/gda-browser/el/declaredfk.page > +%%UI%%share/gnome/help/gda-browser/el/diagram.page > +%%UI%%share/gnome/help/gda-browser/el/features.page > +%%UI%%share/gnome/help/gda-browser/el/figures/action-1.png > +%%UI%%share/gnome/help/gda-browser/el/figures/action-2.png > +%%UI%%share/gnome/help/gda-browser/el/figures/action-3.png > +%%UI%%share/gnome/help/gda-browser/el/figures/action-4.png > +%%UI%%share/gnome/help/gda-browser/el/figures/cnc_open.png > +%%UI%%share/gnome/help/gda-browser/el/figures/data-man-mode.png > +%%UI%%share/gnome/help/gda-browser/el/figures/data-man-persp.png > +%%UI%%share/gnome/help/gda-browser/el/figures/data-man-uicompose.png > +%%UI%%share/gnome/help/gda-browser/el/figures/data-man-xmlcompose.png > +%%UI%%share/gnome/help/gda-browser/el/figures/declaredfk-dialog.png > +%%UI%%share/gnome/help/gda-browser/el/figures/declaredfk.png > +%%UI%%share/gnome/help/gda-browser/el/figures/diagram.png > +%%UI%%share/gnome/help/gda-browser/el/figures/ldap-browser-persp.png > +%%UI%%share/gnome/help/gda-browser/el/figures/ldap-classes.png > +%%UI%%share/gnome/help/gda-browser/el/figures/ldap-search.png > +%%UI%%share/gnome/help/gda-browser/el/figures/ldap-table-mapping.png > +%%UI%%share/gnome/help/gda-browser/el/figures/mainwin.png > +%%UI%%share/gnome/help/gda-browser/el/figures/query-exec-persp.png > +%%UI%%share/gnome/help/gda-browser/el/figures/schema-browser-persp.png > +%%UI%%share/gnome/help/gda-browser/el/figures/table-insert-data.png > +%%UI%%share/gnome/help/gda-browser/el/figures/trans-begin.png > +%%UI%%share/gnome/help/gda-browser/el/figures/trans-commit.png > +%%UI%%share/gnome/help/gda-browser/el/figures/trans-rollback.png > +%%UI%%share/gnome/help/gda-browser/el/figures/virtual-cnc-2.png > +%%UI%%share/gnome/help/gda-browser/el/figures/virtual-cnc-3.png > +%%UI%%share/gnome/help/gda-browser/el/figures/virtual-cnc-4.png > +%%UI%%share/gnome/help/gda-browser/el/figures/virtual-cnc-5.png > +%%UI%%share/gnome/help/gda-browser/el/figures/virtual-cnc.png > +%%UI%%share/gnome/help/gda-browser/el/general-ui.page > +%%UI%%share/gnome/help/gda-browser/el/index.page > +%%UI%%share/gnome/help/gda-browser/el/ldap-browser-perspective.page > +%%UI%%share/gnome/help/gda-browser/el/ldap-connections.page > +%%UI%%share/gnome/help/gda-browser/el/legal.xml > +%%UI%%share/gnome/help/gda-browser/el/query-execution-perspective.page > +%%UI%%share/gnome/help/gda-browser/el/schema-browser-perspective.page > +%%UI%%share/gnome/help/gda-browser/el/table-insert-data.page > +%%UI%%share/gnome/help/gda-browser/el/transactions.page > +%%UI%%share/gnome/help/gda-browser/el/variables.page > +%%UI%%share/gnome/help/gda-browser/el/virtual-connections.page > %%UI%%share/gnome/help/gda-browser/es/actions.page > %%UI%%share/gnome/help/gda-browser/es/data-manager-perspective.page > %%UI%%share/gnome/help/gda-browser/es/data-manager-source-editor.page > @@ -268,6 +677,10 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% > %%UI%%share/gnome/help/gda-browser/es/figures/declaredfk-dialog.png > %%UI%%share/gnome/help/gda-browser/es/figures/declaredfk.png > %%UI%%share/gnome/help/gda-browser/es/figures/diagram.png > +%%UI%%share/gnome/help/gda-browser/es/figures/ldap-browser-persp.png > +%%UI%%share/gnome/help/gda-browser/es/figures/ldap-classes.png > +%%UI%%share/gnome/help/gda-browser/es/figures/ldap-search.png > +%%UI%%share/gnome/help/gda-browser/es/figures/ldap-table-mapping.png > %%UI%%share/gnome/help/gda-browser/es/figures/mainwin.png > %%UI%%share/gnome/help/gda-browser/es/figures/query-exec-persp.png > %%UI%%share/gnome/help/gda-browser/es/figures/schema-browser-persp.png > @@ -275,14 +688,68 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% > %%UI%%share/gnome/help/gda-browser/es/figures/trans-begin.png > %%UI%%share/gnome/help/gda-browser/es/figures/trans-commit.png > %%UI%%share/gnome/help/gda-browser/es/figures/trans-rollback.png > +%%UI%%share/gnome/help/gda-browser/es/figures/virtual-cnc-2.png > +%%UI%%share/gnome/help/gda-browser/es/figures/virtual-cnc-3.png > +%%UI%%share/gnome/help/gda-browser/es/figures/virtual-cnc-4.png > +%%UI%%share/gnome/help/gda-browser/es/figures/virtual-cnc-5.png > +%%UI%%share/gnome/help/gda-browser/es/figures/virtual-cnc.png > %%UI%%share/gnome/help/gda-browser/es/general-ui.page > %%UI%%share/gnome/help/gda-browser/es/index.page > +%%UI%%share/gnome/help/gda-browser/es/ldap-browser-perspective.page > +%%UI%%share/gnome/help/gda-browser/es/ldap-connections.page > %%UI%%share/gnome/help/gda-browser/es/legal.xml > %%UI%%share/gnome/help/gda-browser/es/query-execution-perspective.page > %%UI%%share/gnome/help/gda-browser/es/schema-browser-perspective.page > %%UI%%share/gnome/help/gda-browser/es/table-insert-data.page > %%UI%%share/gnome/help/gda-browser/es/transactions.page > %%UI%%share/gnome/help/gda-browser/es/variables.page > +%%UI%%share/gnome/help/gda-browser/es/virtual-connections.page > +%%UI%%share/gnome/help/gda-browser/gl/actions.page > +%%UI%%share/gnome/help/gda-browser/gl/data-manager-perspective.page > +%%UI%%share/gnome/help/gda-browser/gl/data-manager-source-editor.page > +%%UI%%share/gnome/help/gda-browser/gl/data-manager-xml-syntax.page > +%%UI%%share/gnome/help/gda-browser/gl/declaredfk.page > +%%UI%%share/gnome/help/gda-browser/gl/diagram.page > +%%UI%%share/gnome/help/gda-browser/gl/features.page > +%%UI%%share/gnome/help/gda-browser/gl/figures/action-1.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/action-2.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/action-3.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/action-4.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/cnc_open.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/data-man-mode.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/data-man-persp.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/data-man-uicompose.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/data-man-xmlcompose.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/declaredfk-dialog.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/declaredfk.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/diagram.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/ldap-browser-persp.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/ldap-classes.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/ldap-search.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/ldap-table-mapping.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/mainwin.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/query-exec-persp.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/schema-browser-persp.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/table-insert-data.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/trans-begin.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/trans-commit.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/trans-rollback.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/virtual-cnc-2.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/virtual-cnc-3.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/virtual-cnc-4.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/virtual-cnc-5.png > +%%UI%%share/gnome/help/gda-browser/gl/figures/virtual-cnc.png > +%%UI%%share/gnome/help/gda-browser/gl/general-ui.page > +%%UI%%share/gnome/help/gda-browser/gl/index.page > +%%UI%%share/gnome/help/gda-browser/gl/ldap-browser-perspective.page > +%%UI%%share/gnome/help/gda-browser/gl/ldap-connections.page > +%%UI%%share/gnome/help/gda-browser/gl/legal.xml > +%%UI%%share/gnome/help/gda-browser/gl/query-execution-perspective.page > +%%UI%%share/gnome/help/gda-browser/gl/schema-browser-perspective.page > +%%UI%%share/gnome/help/gda-browser/gl/table-insert-data.page > +%%UI%%share/gnome/help/gda-browser/gl/transactions.page > +%%UI%%share/gnome/help/gda-browser/gl/variables.page > +%%UI%%share/gnome/help/gda-browser/gl/virtual-connections.page > %%UI%%share/gnome/help/gda-browser/sl/actions.page > %%UI%%share/gnome/help/gda-browser/sl/data-manager-perspective.page > %%UI%%share/gnome/help/gda-browser/sl/data-manager-source-editor.page > @@ -302,6 +769,10 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% > %%UI%%share/gnome/help/gda-browser/sl/figures/declaredfk-dialog.png > %%UI%%share/gnome/help/gda-browser/sl/figures/declaredfk.png > %%UI%%share/gnome/help/gda-browser/sl/figures/diagram.png > +%%UI%%share/gnome/help/gda-browser/sl/figures/ldap-browser-persp.png > +%%UI%%share/gnome/help/gda-browser/sl/figures/ldap-classes.png > +%%UI%%share/gnome/help/gda-browser/sl/figures/ldap-search.png > +%%UI%%share/gnome/help/gda-browser/sl/figures/ldap-table-mapping.png > %%UI%%share/gnome/help/gda-browser/sl/figures/mainwin.png > %%UI%%share/gnome/help/gda-browser/sl/figures/query-exec-persp.png > %%UI%%share/gnome/help/gda-browser/sl/figures/schema-browser-persp.png > @@ -309,14 +780,68 @@ libdata/pkgconfig/libgda-xslt-%%VERSION% > %%UI%%share/gnome/help/gda-browser/sl/figures/trans-begin.png > %%UI%%share/gnome/help/gda-browser/sl/figures/trans-commit.png > %%UI%%share/gnome/help/gda-browser/sl/figures/trans-rollback.png > +%%UI%%share/gnome/help/gda-browser/sl/figures/virtual-cnc-2.png > +%%UI%%share/gnome/help/gda-browser/sl/figures/virtual-cnc-3.png > +%%UI%%share/gnome/help/gda-browser/sl/figures/virtual-cnc-4.png > +%%UI%%share/gnome/help/gda-browser/sl/figures/virtual-cnc-5.png > +%%UI%%share/gnome/help/gda-browser/sl/figures/virtual-cnc.png > %%UI%%share/gnome/help/gda-browser/sl/general-ui.page > %%UI%%share/gnome/help/gda-browser/sl/index.page > +%%UI%%share/gnome/help/gda-browser/sl/ldap-browser-perspective.page > +%%UI%%share/gnome/help/gda-browser/sl/ldap-connections.page > %%UI%%share/gnome/help/gda-browser/sl/legal.xml > %%UI%%share/gnome/help/gda-browser/sl/query-execution-perspective.page > %%UI%%share/gnome/help/gda-browser/sl/schema-browser-perspective.page > %%UI%%share/gnome/help/gda-browser/sl/table-insert-data.page > %%UI%%share/gnome/help/gda-browser/sl/transactions.page > %%UI%%share/gnome/help/gda-browser/sl/variables.page > +%%UI%%share/gnome/help/gda-browser/sl/virtual-connections.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/actions.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/data-manager-perspective.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/data-manager-source-editor.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/data-manager-xml-syntax.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/declaredfk.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/diagram.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/features.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/action-1.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/action-2.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/action-3.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/action-4.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/cnc_open.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/data-man-mode.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/data-man-persp.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/data-man-uicompose.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/data-man-xmlcompose.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/declaredfk-dialog.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/declaredfk.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/diagram.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/ldap-browser-persp.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/ldap-classes.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/ldap-search.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/ldap-table-mapping.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/mainwin.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/query-exec-persp.png > > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/schema-browser-persp.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/table-insert-data.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/trans-begin.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/trans-commit.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/trans-rollback.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/virtual-cnc-2.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/virtual-cnc-3.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/virtual-cnc-4.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/virtual-cnc-5.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/figures/virtual-cnc.png > +%%UI%%share/gnome/help/gda-browser/zh_CN/general-ui.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/index.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/ldap-browser-perspective.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/ldap-connections.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/legal.xml > > +%%UI%%share/gnome/help/gda-browser/zh_CN/query-execution-perspective.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/schema-browser-perspective.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/table-insert-data.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/transactions.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/variables.page > +%%UI%%share/gnome/help/gda-browser/zh_CN/virtual-connections.page > %%UI%%share/icons/hicolor/16x16/apps/gda-control-center.png > %%UI%%share/icons/hicolor/22x22/apps/gda-control-center.png > > *** DIFF OUTPUT TRUNCATED AT 1000 LINES *** > _______________________________________________ > svn-ports-all@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/svn-ports-all > To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" > > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- Kind Regards Gus Macfarlane Managing Partner GCGM Capital Management LLP Email: gus@gcgmcapital.com Direct: + 44 (0) 203 675 6961 Tel: + 44 7599 843 928 www.gcgmcapital.com This e-mail was sent to you by GCGM Capital Management LLP. We are incorporated under the laws of England and Wales and our registration number is OC381724. Our registered office is at Cudham Hall, Cudham Lane South, Sevenoaks, Kent, TN14 7QB, United Kingdom. This e-mail and/or any attached documents may contain privileged and confidential information and should only be read by those persons to whom this e-mail is addressed. Use by other than intended recipients is prohibited. If you are not the addressee, you must not copy, distribute, disclose or use any of the information in it. If you have received it in error, please delete it and immediately notify the sender. GCGM Capital Management LLP reserves the right to monitor all e-mail messages passing through its network. As we cannot guarantee the genuineness, accuracy or completeness of the information contained in this message, the statements set forth are not legally binding. From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 08:33:02 2013 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D726FEE3 for ; Wed, 20 Mar 2013 08:33:02 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward5h.mail.yandex.net (forward5h.mail.yandex.net [IPv6:2a02:6b8:0:f05::5]) by mx1.freebsd.org (Postfix) with ESMTP id 9050C3E8 for ; Wed, 20 Mar 2013 08:33:02 +0000 (UTC) Received: from smtp1h.mail.yandex.net (smtp1h.mail.yandex.net [84.201.187.144]) by forward5h.mail.yandex.net (Yandex) with ESMTP id C086DD005F5; Wed, 20 Mar 2013 12:33:00 +0400 (MSK) Received: from smtp1h.mail.yandex.net (localhost [127.0.0.1]) by smtp1h.mail.yandex.net (Yandex) with ESMTP id 7885E134040A; Wed, 20 Mar 2013 12:33:00 +0400 (MSK) Received: from ctsoff2.webstroy.ru (ctsoff2.webstroy.ru [213.27.12.78]) by smtp1h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id WwDWLDPx-WxDW14Bc; Wed, 20 Mar 2013 12:33:00 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1363768380; bh=t+xdqOt7QDN2nJn431qoon/VFEFyIF7Y5uFmt2AZ4K4=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=m8gutA/SoIu8KdkbtGSommgZlhJM6QwIrhskP4DGQhh6pneqCRqne/9VilbzrJj5u 0ZToZc+78jbPFGZPQSEAmxHMOT/ujrbiljyLI8OFHHkzePk/sHuyy3sGv1J1F79+lw HSlKQDwTW80fnQJIWn92VKvZrgppr2t0ryrzL6X4= Message-ID: <5149741F.5070201@yandex.ru> Date: Wed, 20 Mar 2013 12:32:31 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130311 Thunderbird/17.0.4 MIME-Version: 1.0 To: Gus Macfarlane Subject: Re: ports/161676: commit references a PR References: <201303191030.r2JAU1Lt086733@freefall.freebsd.org> <51496563.9060708@gcgmcapital.com> In-Reply-To: <51496563.9060708@gcgmcapital.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 08:33:02 -0000 Gus Macfarlane wrote on 20.03.2013 11:29: > please unsubscribe me from this list You have this text in every list message: """ freebsd-gnome@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-gnome To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" """ So just do that. -- Regards, Ruslan Tinderboxing kills... the drives. From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 10:33:29 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id C46D1352 for ; Wed, 20 Mar 2013 10:33:29 +0000 (UTC) (envelope-from gerard@seibercom.net) Received: from mail-vc0-f171.google.com (mail-vc0-f171.google.com [209.85.220.171]) by mx1.freebsd.org (Postfix) with ESMTP id 6BC93D86 for ; Wed, 20 Mar 2013 10:33:29 +0000 (UTC) Received: by mail-vc0-f171.google.com with SMTP id ha11so1159350vcb.16 for ; Wed, 20 Mar 2013 03:33:22 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=seibercom.net; s=google; h=x-received:date:from:to:subject:message-id:organization:x-mailer :face:mime-version:content-type:content-transfer-encoding; bh=jqXQCM0W/bbah8OVg+VV+/FRFlLKQPJ6AljywCYynBw=; b=FbvR5bx1SLNASz+dWJnVQCnhIvPL/sQIfbs73YRch69jo0D+Bfb7v6l7WzBqp3uY/h kI/HM6F0HbDkIosXjjQkM6k64w9vm3z701khvIb8Zk/sNm1ygAmcQrgzdP8PwjbH/h2o seu/balrMtt+sWeymizXeQAbndePv+iFJmVV0= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-received:date:from:to:subject:message-id:organization:x-mailer :face:mime-version:content-type:content-transfer-encoding :x-gm-message-state; bh=jqXQCM0W/bbah8OVg+VV+/FRFlLKQPJ6AljywCYynBw=; b=apVlFrpKXW9+jDVBNHSs4TeKlCmRMrcLkavxoMKE4YrtOdo/iG5lTQe2o+Ykzion8D WlFduOfxiGe+hL66+cX0pt5hZwur9n+FYKIuJ7DTuJ4CsYCVBFphFrw2kElUJhWBPyVZ KAH/LKnToZ7h6NqNj19sPyV1NeJB7KN1aWzgECJYO3n2gLmIxQMV1zFyydcp44AV4/Ms 9Ju5XLRPtP74GyOyyXeOxyFrTjE7G8kPXa1l44vMfK21RlWN6fPsx7p0UeK14KF0qA2k DBrEu9H5Z6IYMUonAOevn8DwwnYbvjXjN+FqKT6R63I4j2sKXxwPVARXKQKvWe6j1cpK k6BA== X-Received: by 10.52.180.195 with SMTP id dq3mr6315467vdc.9.1363775602024; Wed, 20 Mar 2013 03:33:22 -0700 (PDT) Received: from scorpio.seibercom.net (cpe-076-182-104-150.nc.res.rr.com. [76.182.104.150]) by mx.google.com with ESMTPS id kf8sm34212798vec.4.2013.03.20.03.33.20 (version=TLSv1.2 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Wed, 20 Mar 2013 03:33:21 -0700 (PDT) Received: from scorpio (localhost [127.0.0.1]) (using TLSv1.2 with cipher DHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) (Authenticated sender: gerard@seibercom.net) by scorpio.seibercom.net (Postfix) with ESMTPSA id 3ZW6sq1vj0z2CG46; Wed, 20 Mar 2013 06:33:19 -0400 (EDT) Date: Wed, 20 Mar 2013 06:33:18 -0400 From: Gerard Seibert To: gnome@FreeBSD.org, pawel@FreeBSD.org Subject: Updating to webkit-gtk2-1.8.3 breaks claws-mail-fancy Message-ID: <20130320063318.6213db9d@scorpio> Organization: seibercom.net X-Mailer: Claws Mail 3.9.0 (GTK+ 2.24.17; amd64-portbld-freebsd8.3) Face: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAHlBMVEUAAABYRlwJCw4FAgAIBwKprDkBAQFQLR0BAgCir7VRttp8AAACAUlEQVQ4jZWUTYvbMBCGTVl8V2hX6Gg5G5FbWQdBj0lEfE7BhN4cyzi5Wt1E5L70roWy6N92xok/skkP+5IYrMcz78xIduDWpNM3vFzuA/jX5EY1AI6KHFwW/CzFuQAwqUBbV12p+CzIh6Awq7sg33pn5D64SQXAexffeuQlA/L35RrkaB551OjGfP/cAO8mCNaDcgvfky5ijoD0pAXlCQCnljiAjsJD9Ax05Ko5sZxbnLQcmM+dZg5IjREfZrWIHK0JuwU68pAGwHvfRxBundRzTxxz3r9dNUikPsEihjz2Dc4kjp1hKsJGuot4EDxaxzMoC7XqhxhOSfZrTS6gSX1JVdjp+o1PvWfekXgw3WL0g70nDEwA0H0HQsEZc8sTmFMTkWUfYWC/vdR1zQy3xLQgLwzu90QnlnFLjeiGWBjwhb4Sa42IqOg2qqS4O1/zhKokFUb1Q8Rj4Eb69WVflXEehJ35DgChVTE5n50eaGyMLOfH8AOodoSM4PVYAQgQdBulOa+knklYks3vAuQ+uX492lTl+A+e8qBV2AKoXalVKFfyuUp0pUp1ARaUHh82lv9MN+Ig7CZtgE6FNYvjlywT2VP2dMgOG46gTIWcqdfvuwyXNz0oMJNd/N5lh1YNiJt19ADTUo3VuFSNeQwVqRSrGjSCp53fk2g+Mvfk/gfoPxHeUS8MH9vRAAAAAElFTkSuQmCC Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Gm-Message-State: ALoCoQlJhb+ScE4exJrsaRrQPMEpWNv04dd3SrVF2aVcBofHC+8ZOT+ngKp7P3Pl/7mqJcY3hD+k X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 10:33:29 -0000 Just a heads up. Updating to "webkit-gtk2-1.8.3" from an older version breaks "claws-mail-fancy" if it was compiled with the older version. "claws-mail-fancy" must be recompiled with the newer version in order to work. This is the error message emitted by "claws-mail-fancy" if it is not recompiled: The following error occurred while loading fancy.so : /usr/local/lib/claws-mail/plugins/fancy.so: Undefined symbol "webkit_web_view_get_selected_text" -- Gerard ✌ gerard@seibercom.net Disclaimer: off-list followups get on-list replies or get ignored. Please do not ignore the Reply-To header. __________________________________________________________________ From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 13:09:35 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8C701B17 for ; Wed, 20 Mar 2013 13:09:35 +0000 (UTC) (envelope-from portscout@portscout.freebsd.org) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 4DD28769 for ; Wed, 20 Mar 2013 13:09:35 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id r2KD9Yn9081394 for ; Wed, 20 Mar 2013 09:09:34 -0400 (EDT) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id r2KD9YRl081277; Wed, 20 Mar 2013 09:09:34 -0400 (EDT) (envelope-from portscout) Message-Id: <201303201309.r2KD9YRl081277@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Wed, 20 Mar 2013 09:09:34 -0400 From: portscout@portscout.freebsd.org To: gnome@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 13:09:35 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/gnome@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ databases/libgda4-ldap | 4.2.12 | 4.99.4 ------------------------------------------------+-----------------+------------ devel/glibmm | 2.34.1 | 2.35.9 ------------------------------------------------+-----------------+------------ x11/gdm | 2.30.7 | 3.7.92 ------------------------------------------------+-----------------+------------ x11-toolkits/gtkmm30 | 3.6.0 | 3.7.12 ------------------------------------------------+-----------------+------------ x11-toolkits/gtkmm30-reference | 3.6.0 | 3.7.12 ------------------------------------------------+-----------------+------------ x11-toolkits/gtksourceview3 | 3.4.2 | 3.7.92 ------------------------------------------------+-----------------+------------ x11-toolkits/gtksourceview3-reference | 3.4.2 | 3.7.92 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 14:21:44 2013 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A3C871ED for ; Wed, 20 Mar 2013 14:21:44 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from lmtp.galacsys.net (webmail.galacsys.net [IPv6:2001:1b78:0:1:d918:51d7:0:1]) by mx1.freebsd.org (Postfix) with ESMTP id 6BC92AFF for ; Wed, 20 Mar 2013 14:21:44 +0000 (UTC) Received: from martymac.org (webmail.galacsys.net [217.24.81.215]) by lmtp.galacsys.net (Postfix) with ESMTP id 2283B1FA5E5B for ; Wed, 20 Mar 2013 15:21:43 +0100 (CET) From: "Ganael LAPLANCHE" To: gnome@FreeBSD.org Subject: Tinderbox build failure for webkit-gtk2-1.8.3 X-Openwebmail-Date: Wed, 20 Mar 2013 16:21:43 +0200 Message-Id: <20130320141812.M68703@martymac.org> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 157.99.64.43 (ganael.laplanche@martymac.org) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Date: Wed, 20 Mar 2013 14:21:44 +0000 (UTC) X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 14:21:44 -0000 Hi everyone, Since the update to 1.8.3, webkit-gtk2 does not build anymore in my TB : http://tinderbox.martymac.org/tb/errors/martymac-official-9.1/webkit-gtk2-1.8.3.log Any idea ? Thanks in advance, Best regards, -- Ganael LAPLANCHE http://www.martymac.org | http://contribs.martymac.org FreeBSD: martymac , http://www.FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 14:49:31 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 41C92B7F; Wed, 20 Mar 2013 14:49:31 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 17A44CDF; Wed, 20 Mar 2013 14:49:31 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2KEnUna016593; Wed, 20 Mar 2013 14:49:30 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2KEnUuX016592; Wed, 20 Mar 2013 14:49:30 GMT (envelope-from edwin) Date: Wed, 20 Mar 2013 14:49:30 GMT Message-Id: <201303201449.r2KEnUuX016592@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/177069: devel/glib20: update of glib-2.28.8_5 to 2.34.3 in jail failed X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 14:49:31 -0000 Synopsis: devel/glib20: update of glib-2.28.8_5 to 2.34.3 in jail failed Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Wed Mar 20 14:49:30 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=177069 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 14:57:31 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2CEDCCEA; Wed, 20 Mar 2013 14:57:31 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from fep13.mx.upcmail.net (fep13.mx.upcmail.net [62.179.121.33]) by mx1.freebsd.org (Postfix) with ESMTP id 2E53ED3C; Wed, 20 Mar 2013 14:57:29 +0000 (UTC) Received: from edge03.upcmail.net ([192.168.13.238]) by viefep13-int.chello.at (InterMail vM.8.01.05.05 201-2260-151-110-20120111) with ESMTP id <20130320145721.KSSE25332.viefep13-int.chello.at@edge03.upcmail.net>; Wed, 20 Mar 2013 15:57:21 +0100 Received: from [127.0.0.1] ([178.84.132.32]) by edge03.upcmail.net with edge id DqxL1l03G0i5fp603qxMFG; Wed, 20 Mar 2013 15:57:21 +0100 X-SourceIP: 178.84.132.32 Message-ID: <5149CE52.4030100@rainbow-runner.nl> Date: Wed, 20 Mar 2013 15:57:22 +0100 From: Koop Mast User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130307 Thunderbird/17.0.4 MIME-Version: 1.0 To: Ganael LAPLANCHE Subject: Re: Tinderbox build failure for webkit-gtk2-1.8.3 References: <20130320141812.M68703@martymac.org> In-Reply-To: <20130320141812.M68703@martymac.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 130320-0, 20-03-2013), Outbound message X-Antivirus-Status: Clean Cc: gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 14:57:31 -0000 On 20-3-2013 15:21, Ganael LAPLANCHE wrote: > Hi everyone, > > Since the update to 1.8.3, webkit-gtk2 does not build anymore in my TB : > > http://tinderbox.martymac.org/tb/errors/martymac-official-9.1/webkit-gtk2-1.8.3.log > > Any idea ? > > Thanks in advance, > Best regards, I saw your using a custom PREFIX/LOCALBASE, since I haven't seen this error before It stands to reason that there is something not prefix save, no idea yet what though. -Koop From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 15:19:01 2013 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D1E15FD7 for ; Wed, 20 Mar 2013 15:19:01 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from lmtp.galacsys.net (webmail.galacsys.net [IPv6:2001:1b78:0:1:d918:51d7:0:1]) by mx1.freebsd.org (Postfix) with ESMTP id 8F072E23 for ; Wed, 20 Mar 2013 15:19:01 +0000 (UTC) Received: from martymac.org (webmail.galacsys.net [217.24.81.215]) by lmtp.galacsys.net (Postfix) with ESMTP id BF4121FA5D0A; Wed, 20 Mar 2013 16:19:00 +0100 (CET) From: "Ganael LAPLANCHE" To: Koop Mast Subject: Re: Tinderbox build failure for webkit-gtk2-1.8.3 X-Openwebmail-Date: Wed, 20 Mar 2013 17:19:00 +0200 Message-Id: <20130320151728.M35171@FreeBSD.org> In-Reply-To: <5149CE52.4030100@rainbow-runner.nl> References: <20130320141812.M68703@martymac.org> <5149CE52.4030100@rainbow-runner.nl> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 157.99.64.43 (ganael.laplanche@martymac.org) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Date: Wed, 20 Mar 2013 15:19:01 +0000 (UTC) Cc: gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 15:19:01 -0000 On Wed, 20 Mar 2013 15:57:22 +0100, Koop Mast wrote Hi Koop, > I saw your using a custom PREFIX/LOCALBASE, since I haven't > seen this error before It stands to reason that there is > something not prefix save, no idea yet what though. I think so ; I have changed the PREFIX on my TB to check my ports are PREFIX-safe ; new version of webkit-gtk2 might not be. Can someone from the gnome@ team can have a look at that ? Best regards, -- Ganael LAPLANCHE http://www.martymac.org | http://contribs.martymac.org FreeBSD: martymac , http://www.FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 15:19:49 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 129A06D; Wed, 20 Mar 2013 15:19:49 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-bk0-x235.google.com (mail-bk0-x235.google.com [IPv6:2a00:1450:4008:c01::235]) by mx1.freebsd.org (Postfix) with ESMTP id 771CAE2B; Wed, 20 Mar 2013 15:19:48 +0000 (UTC) Received: by mail-bk0-f53.google.com with SMTP id j10so932673bkw.40 for ; Wed, 20 Mar 2013 08:19:44 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=ER1exASzdUq059+nRrKdERuSxyBRFZbzlYjNQ57ZCH0=; b=ZveB7jyRjgOCOytRPpOjPp3tNL3HWgHUDGBR5UQOneODYgfVI6VSrUnJrcZO/elIG/ +QaPLe0nYmifiZCT1Q6Z7mlKyKodp8MXdtxHcZrNoc6HUudPoQSU94pbuKaxSxNSkILP LlNlEu8MZaF4tH8Qkacoz0o2236+zSxzh9ddtOxp8J4GlIqAmsZXaF1YUFIhJWe8k5fj 8O1EUZ8lz/mVE1DS8Zd5AMTEVF/EOrWT9aQPquCBmAA6IScwKOS3x5BOL7WEedoJeXuj n3Jog1dbgMivSJoobLnAXSz6psk9MDv4BfdO3NiYJRrPO7iZPBcW2NrGcFwpV4Q4knFq PEwQ== MIME-Version: 1.0 X-Received: by 10.205.13.66 with SMTP id pl2mr11302941bkb.33.1363792783902; Wed, 20 Mar 2013 08:19:43 -0700 (PDT) Received: by 10.204.39.7 with HTTP; Wed, 20 Mar 2013 08:19:43 -0700 (PDT) In-Reply-To: <5149CE52.4030100@rainbow-runner.nl> References: <20130320141812.M68703@martymac.org> <5149CE52.4030100@rainbow-runner.nl> Date: Wed, 20 Mar 2013 10:19:43 -0500 Message-ID: Subject: Re: Tinderbox build failure for webkit-gtk2-1.8.3 From: Jeremy Messenger To: Koop Mast Content-Type: text/plain; charset=ISO-8859-1 Cc: gnome@freebsd.org, Ganael LAPLANCHE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 15:19:49 -0000 On Wed, Mar 20, 2013 at 9:57 AM, Koop Mast wrote: > On 20-3-2013 15:21, Ganael LAPLANCHE wrote: >> >> Hi everyone, >> >> Since the update to 1.8.3, webkit-gtk2 does not build anymore in my TB : >> >> >> http://tinderbox.martymac.org/tb/errors/martymac-official-9.1/webkit-gtk2-1.8.3.log >> >> Any idea ? >> >> Thanks in advance, >> Best regards, > > > I saw your using a custom PREFIX/LOCALBASE, since I haven't seen this error > before It stands to reason that there is something not prefix save, no idea > yet what though. prefixes: LOCALBASE=usr/local2 PREFIX=/usr/local2 Isn't the LOCALBASE supposed to be /usr/local2? It is missing a '/' there. > -Koop > > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 15:22:19 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 2D6A544C; Wed, 20 Mar 2013 15:22:19 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-bk0-x232.google.com (mail-bk0-x232.google.com [IPv6:2a00:1450:4008:c01::232]) by mx1.freebsd.org (Postfix) with ESMTP id 7DE6EE85; Wed, 20 Mar 2013 15:22:18 +0000 (UTC) Received: by mail-bk0-f50.google.com with SMTP id jg9so929435bkc.23 for ; Wed, 20 Mar 2013 08:22:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=+Zx9eqax7JN15EB1I4DPej5mdOJWSnF/fI/JMLR6zco=; b=U096hOrdn42Xdo/XOMGT0B9wqSRJsjKiWJrWKmqPKFVWpGM/YjexPUCiBtDBXScg6u 2Y4SSzn4mNxjJeQLssk3ClXYPbOFjfv8XgqhAgEhKxATf5DKfMohpK+WJbgJdIa0W0cJ DKi3rpQ4ClC3tIWAk5+SP2aaZ4Ov/e7dBOJsWxtOxR8M0SsoX3QteO64cArteGN2OOz1 VJmCNIQ2amRUyKAAeRLhQ8jXUNRkCk5z/5dXul3rQgPPNUnQT3GNDWRUS7lQSeG7xL+f OUm76ITJjulhDYsmbr07Ap2hcqDeH3kDh1RXYlycIUmWalPW6c+AnwDLXb9Qxw2Zcf30 g2yQ== MIME-Version: 1.0 X-Received: by 10.205.39.3 with SMTP id tk3mr11191856bkb.113.1363792937563; Wed, 20 Mar 2013 08:22:17 -0700 (PDT) Received: by 10.204.39.7 with HTTP; Wed, 20 Mar 2013 08:22:17 -0700 (PDT) In-Reply-To: <20130320151728.M35171@FreeBSD.org> References: <20130320141812.M68703@martymac.org> <5149CE52.4030100@rainbow-runner.nl> <20130320151728.M35171@FreeBSD.org> Date: Wed, 20 Mar 2013 10:22:17 -0500 Message-ID: Subject: Re: Tinderbox build failure for webkit-gtk2-1.8.3 From: Jeremy Messenger To: Ganael LAPLANCHE Content-Type: text/plain; charset=ISO-8859-1 Cc: gnome@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 15:22:19 -0000 On Wed, Mar 20, 2013 at 10:19 AM, Ganael LAPLANCHE wrote: > On Wed, 20 Mar 2013 15:57:22 +0100, Koop Mast wrote > > Hi Koop, > >> I saw your using a custom PREFIX/LOCALBASE, since I haven't >> seen this error before It stands to reason that there is >> something not prefix save, no idea yet what though. > > I think so ; I have changed the PREFIX on my TB to check my ports are > PREFIX-safe ; new version of webkit-gtk2 might not be. > > Can someone from the gnome@ team can have a look at that ? Koop is part of gnome@ team. > Best regards, > > -- > Ganael LAPLANCHE > http://www.martymac.org | http://contribs.martymac.org > FreeBSD: martymac , http://www.FreeBSD.org > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 15:24:23 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A5AE04E9 for ; Wed, 20 Mar 2013 15:24:23 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-bk0-x234.google.com (mail-bk0-x234.google.com [IPv6:2a00:1450:4008:c01::234]) by mx1.freebsd.org (Postfix) with ESMTP id 3AB47E9C for ; Wed, 20 Mar 2013 15:24:23 +0000 (UTC) Received: by mail-bk0-f52.google.com with SMTP id jk13so926973bkc.25 for ; Wed, 20 Mar 2013 08:24:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:content-transfer-encoding; bh=Anf14DxuLfNFG7m0ljWSr5sH+f8+/qVMUsXg1a0sCYQ=; b=LxrS6PUygllwMs9LeIwCAsoUmPIyexlrJG+qtUyO8EuLhRr5Hx9P9QYDmAujGnm5O4 q77zs3ElQsVO3sVbkfO/ibpkzG6K3bGJIMN9T5RiKyPvb8i+mihTH3HeOwP+BNNx5wyB aY0UY63ismYv8nftyW8Q8Q7PP1T1uQIdommCT4W3EC9vnaWK/a+1U/gtFdTjfB3mHhz/ 6VmL4AyPl8/ramHhp1ra9N0+geBEiow/BHt90WBI6T6aMXyzcDqY82rRZkwGOXukSop3 /BRywZuRETDg8WxZyC8g+nDYi/7A/GWfklU007mudB7Z7qWEu7IiuOsWidSnKqueLpDC IM3g== MIME-Version: 1.0 X-Received: by 10.205.39.3 with SMTP id tk3mr11197070bkb.113.1363793060114; Wed, 20 Mar 2013 08:24:20 -0700 (PDT) Received: by 10.204.39.7 with HTTP; Wed, 20 Mar 2013 08:24:20 -0700 (PDT) In-Reply-To: References: Date: Wed, 20 Mar 2013 10:24:20 -0500 Message-ID: Subject: Re: nautilus eating 1 CPU and doing lots of I/O From: Jeremy Messenger To: Kevin Oberman Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD GNOME Users X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 15:24:23 -0000 On Wed, Mar 20, 2013 at 1:13 AM, Kevin Oberman wrote: > On Tue, Mar 19, 2013 at 10:03 PM, Kevin Oberman wro= te: >> >> Since I updated nautilus a few days ago I am seeing very odd behavior. >> >> When I open a nautilus window, I see my CPUs at 20-25% load, mostly in n= autilus. I/O jumps from near zero to several MBps,. It varies in the ones I= tried between 4 and 16 MBps depending on the number of files (not folders)= . ktrace shows lots of reads returning "Resource temporarily unavailable". = I also note that most of my thumbnails are not showing up, just the generic= icons for the file type. I'm guessing some issue with finding, loading or = generating the thumbnails. >> >> I have no idea what to look for to provide any real data or to track thi= s. > > I just noticed this post to ports@ made earlier today pointing out the > problem, but not a good solution. > : > Sergio de Almeida Lenzi Tue, 19 Mar 2013 12:42:16 -0700 > > Hello,, > > On update ports via svn from 2013-03-10 to today, > after a portmaster -a, the system (gnome2) > stopped to show any thumbnails.. > > The main reason is that it writes the thumbnail > in .thumbnails/normal/xxxxxxx.png > but than tries to read it from .cache/thumbnails/normal/xxxxxxxxx.png > > Can some "nautilus guru" tell me how to fix this??? > > for now I create a liink in the .cache/thumbnails -> ./thumbnails this > works > but is not a solution... That is very weird problem. Gotta figure where the .cache is at one of port. Must be one of kwm's recently update. > -- > R. Kevin Oberman, Network Engineer > E-mail: rkoberman@gmail.com > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 15:31:08 2013 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 28681666 for ; Wed, 20 Mar 2013 15:31:08 +0000 (UTC) (envelope-from martymac@FreeBSD.org) Received: from lmtp.galacsys.net (webmail.galacsys.net [IPv6:2001:1b78:0:1:d918:51d7:0:1]) by mx1.freebsd.org (Postfix) with ESMTP id D99BCF02 for ; Wed, 20 Mar 2013 15:31:07 +0000 (UTC) Received: from martymac.org (webmail.galacsys.net [217.24.81.215]) by lmtp.galacsys.net (Postfix) with ESMTP id 3FA971FA5CED; Wed, 20 Mar 2013 16:31:07 +0100 (CET) From: "Ganael LAPLANCHE" To: mezz.freebsd@gmail.com Subject: Tinderbox build failure for webkit-gtk2-1.8.3 X-Openwebmail-Date: Wed, 20 Mar 2013 17:31:07 +0200 Message-Id: <20130320152437.M3335@martymac.org> X-Mailer: Open WebMail 2.01 20030425 X-OriginatingIP: 157.99.64.43 (ganael.laplanche@martymac.org) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Date: Wed, 20 Mar 2013 15:31:08 +0000 (UTC) Cc: gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Ganael LAPLANCHE List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Mar 2013 15:31:08 -0000 Hi Jeremy, (please keep me CC'ed, I have not subscribed to gnome@) >> I saw your using a custom PREFIX/LOCALBASE, since I haven't seen >> this error before It stands to reason that there is something not >> prefix save, no idea yet what though. > > prefixes: LOCALBASE=usr/local2 PREFIX=/usr/local2 > > Isn't the LOCALBASE supposed to be /usr/local2? It is missing > a '/' there. Weird... looks like a wrong display here, because it appears without the slash only here. All later references to /usr/local2 contain the leading slash. >> Can someone from the gnome@ team can have a look at that ? > > Koop is part of gnome@ team. Ah, thanks :p -- Ganael LAPLANCHE http://www.martymac.org | http://contribs.martymac.org FreeBSD: martymac , http://www.FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 15:34:55 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 930EA6E7; Wed, 20 Mar 2013 15:34:55 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 6E218F2B; Wed, 20 Mar 2013 15:34:55 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2KFYtCN026305; Wed, 20 Mar 2013 15:34:55 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2KFYsCs026304; Wed, 20 Mar 2013 15:34:54 GMT (envelope-from mezz) Date: Wed, 20 Mar 2013 15:34:54 GMT Message-Id: <201303201534.r2KFYsCs026304@freefall.freebsd.org> To: kvasilev@cellnetrix.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/177069: devel/glib20: update of glib-2.28.8_5 to 2.34.3 in jail failed X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 15:34:55 -0000 Synopsis: devel/glib20: update of glib-2.28.8_5 to 2.34.3 in jail failed State-Changed-From-To: open->feedback State-Changed-By: mezz State-Changed-When: Wed Mar 20 15:33:09 UTC 2013 State-Changed-Why: I have no idea what's wrong with it as I can't reproduce it here. Can you go to devel/glib20 and do the 'make V=1 >& glib20.txt' then send us the glib20.txt? http://www.freebsd.org/cgi/query-pr.cgi?pr=177069 From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 16:04:49 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EB241146 for ; Wed, 20 Mar 2013 16:04:49 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-bk0-x22c.google.com (mail-bk0-x22c.google.com [IPv6:2a00:1450:4008:c01::22c]) by mx1.freebsd.org (Postfix) with ESMTP id 7462C171 for ; Wed, 20 Mar 2013 16:04:49 +0000 (UTC) Received: by mail-bk0-f44.google.com with SMTP id j4so970673bkw.17 for ; Wed, 20 Mar 2013 09:04:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:content-transfer-encoding; bh=hwBsC7JEbVvseXQNTg6pwptP/Aq6XQ8nCShZPeIm06A=; b=jJqldkSJ+1uxCRSbc2QpUfMpfZqReODkOLLyNSlfH9xwY/jvS7MJEhPyXC8ALLlimt 6pDmZPAEnA9XJi2Q46V7n7mMRV2TopS8tiOnzVY07y9z6kTYJJvI+TvqKbPPL0U4r8b8 rPqMD1g5ECUBQVPxopcNC6cj7r3dtxGgOAZaJIM102OWlVmq8to87a6yRg8MivJKaScz B/c+sXflcC0S14tUI1TgeRHRztGS+oVfA7ajTa/bL0kmeX9974g8pzu9WqnDvaqaWze8 gTmvfE4ZSTUA2zlGrZuTPNRv/I70MfdpiDQxtapBogoOsD6vQExqYiWmqbMpgIDTEJxn 8kow== MIME-Version: 1.0 X-Received: by 10.205.64.199 with SMTP id xj7mr11389419bkb.76.1363795488517; Wed, 20 Mar 2013 09:04:48 -0700 (PDT) Received: by 10.204.39.7 with HTTP; Wed, 20 Mar 2013 09:04:48 -0700 (PDT) In-Reply-To: References: Date: Wed, 20 Mar 2013 11:04:48 -0500 Message-ID: Subject: Re: nautilus eating 1 CPU and doing lots of I/O From: Jeremy Messenger To: Kevin Oberman Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD GNOME Users X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 16:04:50 -0000 On Wed, Mar 20, 2013 at 10:24 AM, Jeremy Messenger wrote: > On Wed, Mar 20, 2013 at 1:13 AM, Kevin Oberman wrot= e: >> On Tue, Mar 19, 2013 at 10:03 PM, Kevin Oberman wr= ote: >>> >>> Since I updated nautilus a few days ago I am seeing very odd behavior. >>> >>> When I open a nautilus window, I see my CPUs at 20-25% load, mostly in = nautilus. I/O jumps from near zero to several MBps,. It varies in the ones = I tried between 4 and 16 MBps depending on the number of files (not folders= ). ktrace shows lots of reads returning "Resource temporarily unavailable".= I also note that most of my thumbnails are not showing up, just the generi= c icons for the file type. I'm guessing some issue with finding, loading or= generating the thumbnails. >>> >>> I have no idea what to look for to provide any real data or to track th= is. >> >> I just noticed this post to ports@ made earlier today pointing out the >> problem, but not a good solution. >> : >> Sergio de Almeida Lenzi Tue, 19 Mar 2013 12:42:16 -0700 >> >> Hello,, >> >> On update ports via svn from 2013-03-10 to today, >> after a portmaster -a, the system (gnome2) >> stopped to show any thumbnails.. >> >> The main reason is that it writes the thumbnail >> in .thumbnails/normal/xxxxxxx.png >> but than tries to read it from .cache/thumbnails/normal/xxxxxxxxx.png >> >> Can some "nautilus guru" tell me how to fix this??? >> >> for now I create a liink in the .cache/thumbnails -> ./thumbnails this >> works >> but is not a solution... > > That is very weird problem. Gotta figure where the .cache is at one of > port. Must be one of kwm's recently update. Found it, it's related with the glib20 update. See here: https://bugzilla.gnome.org/show_bug.cgi?id=3D675168 I found it from in its NEWS, it's in the "Overview of changes from GLib 2.33.2 to 2.33.3" section. It looks like we will have to search for a better solution. By either patch in GNOME 2 stuff or patch in glib20 to make it fallback (compatible). The developer will not create a fallback for old stuff's sake. >> -- >> R. Kevin Oberman, Network Engineer >> E-mail: rkoberman@gmail.com >> _______________________________________________ >> freebsd-gnome@freebsd.org mailing list >> http://lists.freebsd.org/mailman/listinfo/freebsd-gnome >> To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" > > > > -- > mezz.freebsd@gmail.com - mezz@FreeBSD.org > FreeBSD GNOME Team > http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org --=20 mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 16:30:40 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id F24FFE2C for ; Wed, 20 Mar 2013 16:30:40 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-oa0-f52.google.com (mail-oa0-f52.google.com [209.85.219.52]) by mx1.freebsd.org (Postfix) with ESMTP id C0E152F5 for ; Wed, 20 Mar 2013 16:30:40 +0000 (UTC) Received: by mail-oa0-f52.google.com with SMTP id k14so1955879oag.25 for ; Wed, 20 Mar 2013 09:30:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=ZOX8U4sGbl8bzafYxJUEaFD7NsSAMhLf509JrfhM6ws=; b=MsXN77D/DXRYBcwi5gzMCcvx7NJF4UVWi6jMi8uLavQyd6axGUPCzU47+s5ZYIWSXz 3lYN3Y/hJdNGn4hjIxENZ9+kV0UZ2Uc1iYYAeO/8wfj3P7qjLyIvmY4Mc0UQQWMQ27py F00iBHMHMjp1sj+MFRcBk8AjJl7sAGeNG0CusOcKGcMvZESAoO4C8aWj4Cbu7khZqxWK U79EPIbQFasVPBaGM+LFE2RPkgdrB6mB7U5wKAGZlB3AmrhSZgt29ewcZGhShZKn3Jnt 3H/qqSRmRUddacZVIPTrZkycKV1vq7J2Y6BohJQww0Traa5hJUDJr637aDKhwZv6fbHG AMEg== MIME-Version: 1.0 X-Received: by 10.60.24.197 with SMTP id w5mr4487590oef.6.1363796664965; Wed, 20 Mar 2013 09:24:24 -0700 (PDT) Sender: kob6558@gmail.com Received: by 10.76.11.165 with HTTP; Wed, 20 Mar 2013 09:24:24 -0700 (PDT) In-Reply-To: References: Date: Wed, 20 Mar 2013 09:24:24 -0700 X-Google-Sender-Auth: lc2ASP5V6yqEbXwto-dEAquLJkc Message-ID: Subject: Re: nautilus eating 1 CPU and doing lots of I/O From: Kevin Oberman To: Jeremy Messenger Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD GNOME Users , Sergio Lenzi X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 16:30:41 -0000 On Wed, Mar 20, 2013 at 9:04 AM, Jeremy Messenger wrote: > On Wed, Mar 20, 2013 at 10:24 AM, Jeremy Messenger > wrote: >> On Wed, Mar 20, 2013 at 1:13 AM, Kevin Oberman wro= te: >>> On Tue, Mar 19, 2013 at 10:03 PM, Kevin Oberman w= rote: >>>> >>>> Since I updated nautilus a few days ago I am seeing very odd behavior. >>>> >>>> When I open a nautilus window, I see my CPUs at 20-25% load, mostly in= nautilus. I/O jumps from near zero to several MBps,. It varies in the ones= I tried between 4 and 16 MBps depending on the number of files (not folder= s). ktrace shows lots of reads returning "Resource temporarily unavailable"= . I also note that most of my thumbnails are not showing up, just the gener= ic icons for the file type. I'm guessing some issue with finding, loading o= r generating the thumbnails. >>>> >>>> I have no idea what to look for to provide any real data or to track t= his. >>> >>> I just noticed this post to ports@ made earlier today pointing out the >>> problem, but not a good solution. >>> : >>> Sergio de Almeida Lenzi Tue, 19 Mar 2013 12:42:16 -0700 >>> >>> Hello,, >>> >>> On update ports via svn from 2013-03-10 to today, >>> after a portmaster -a, the system (gnome2) >>> stopped to show any thumbnails.. >>> >>> The main reason is that it writes the thumbnail >>> in .thumbnails/normal/xxxxxxx.png >>> but than tries to read it from .cache/thumbnails/normal/xxxxxxxxx.png >>> >>> Can some "nautilus guru" tell me how to fix this??? >>> >>> for now I create a liink in the .cache/thumbnails -> ./thumbnails this >>> works >>> but is not a solution... >> >> That is very weird problem. Gotta figure where the .cache is at one of >> port. Must be one of kwm's recently update. > > Found it, it's related with the glib20 update. See here: > > https://bugzilla.gnome.org/show_bug.cgi?id=3D675168 > > I found it from in its NEWS, it's in the "Overview of changes from > GLib 2.33.2 to 2.33.3" section. > > It looks like we will have to search for a better solution. By either > patch in GNOME 2 stuff or patch in glib20 to make it fallback > (compatible). The developer will not create a fallback for old stuff's > sake. Sigh. So some apps are still assuming .thumbnails and glib has moved to 'doing the right thing" but not allowed for apps that don't yet know it. For nautilus it creates an endless loop of looking for the thumbnail in A, not finding it, calling the routines to create a new thumbnail which puts it in B, and then repeats forever. The CPU is eaten and I/O generated in making new thumbs continually. What all creates the thumbnails? If it is a single place that contains the location, it's not too much to fix, but finding it could be tricky. I'm hunting for it now in header files but there are a LOT of them that contain "thumbnails" and I have just started looking. For now I'm taking the easy way out by creating a symlink as Sergio suggested. Not the right answer, I know, but it should work. I'm also copying him as he posted to ports and may not read gnome@. --=20 R. Kevin Oberman, Network Engineer E-mail: rkoberman@gmail.com From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 16:37:45 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 2824711F for ; Wed, 20 Mar 2013 16:37:45 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-bk0-x233.google.com (mail-bk0-x233.google.com [IPv6:2a00:1450:4008:c01::233]) by mx1.freebsd.org (Postfix) with ESMTP id B4993351 for ; Wed, 20 Mar 2013 16:37:44 +0000 (UTC) Received: by mail-bk0-f51.google.com with SMTP id ik5so1007636bkc.10 for ; Wed, 20 Mar 2013 09:37:43 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:content-transfer-encoding; bh=jnX2BTyXzwc5Kjf17SorpDi6VXCBL+0wg9I4V7JzDOU=; b=REIS4JQWp15lEFZ48BP4WZ/6YfMaM/5YD1mTqUHgcB8w3+NsFaGXMMQrm8llu/7RM+ OvIdMt+Ym55s/5s8zlg6wvLqvhq1FL8jpaORXFMVrNDZTiCTIDoNvJLDBXXf61ZOhUaJ ORebSvIJEJCqhLCX+g7bPOEtKYjNnaQp+bcwraGRz9P7mrEUZRxb2GFegcHybHf6lUSd E2EQZ7kAPrxACRmEIp90o6msF8xcB03XgqCj7Jz9IQIHzSf2aoOJ+7PectFN4PvHCiXh gOgPX3dNjwjMeY2pWZqqHAc5dgW19KG0Fjblcps8QN2l9haL3hSuYodPjWCm2fiGNf0Z bILw== MIME-Version: 1.0 X-Received: by 10.205.114.11 with SMTP id ey11mr11341369bkc.104.1363797463850; Wed, 20 Mar 2013 09:37:43 -0700 (PDT) Received: by 10.204.39.7 with HTTP; Wed, 20 Mar 2013 09:37:43 -0700 (PDT) In-Reply-To: References: Date: Wed, 20 Mar 2013 11:37:43 -0500 Message-ID: Subject: Re: nautilus eating 1 CPU and doing lots of I/O From: Jeremy Messenger To: Kevin Oberman Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD GNOME Users , Sergio Lenzi X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 16:37:45 -0000 On Wed, Mar 20, 2013 at 11:24 AM, Kevin Oberman wrote= : > On Wed, Mar 20, 2013 at 9:04 AM, Jeremy Messenger > wrote: >> On Wed, Mar 20, 2013 at 10:24 AM, Jeremy Messenger >> wrote: >>> On Wed, Mar 20, 2013 at 1:13 AM, Kevin Oberman wr= ote: >>>> On Tue, Mar 19, 2013 at 10:03 PM, Kevin Oberman = wrote: >>>>> >>>>> Since I updated nautilus a few days ago I am seeing very odd behavior= . >>>>> >>>>> When I open a nautilus window, I see my CPUs at 20-25% load, mostly i= n nautilus. I/O jumps from near zero to several MBps,. It varies in the one= s I tried between 4 and 16 MBps depending on the number of files (not folde= rs). ktrace shows lots of reads returning "Resource temporarily unavailable= ". I also note that most of my thumbnails are not showing up, just the gene= ric icons for the file type. I'm guessing some issue with finding, loading = or generating the thumbnails. >>>>> >>>>> I have no idea what to look for to provide any real data or to track = this. >>>> >>>> I just noticed this post to ports@ made earlier today pointing out the >>>> problem, but not a good solution. >>>> : >>>> Sergio de Almeida Lenzi Tue, 19 Mar 2013 12:42:16 -0700 >>>> >>>> Hello,, >>>> >>>> On update ports via svn from 2013-03-10 to today, >>>> after a portmaster -a, the system (gnome2) >>>> stopped to show any thumbnails.. >>>> >>>> The main reason is that it writes the thumbnail >>>> in .thumbnails/normal/xxxxxxx.png >>>> but than tries to read it from .cache/thumbnails/normal/xxxxxxxxx.png >>>> >>>> Can some "nautilus guru" tell me how to fix this??? >>>> >>>> for now I create a liink in the .cache/thumbnails -> ./thumbnails thi= s >>>> works >>>> but is not a solution... >>> >>> That is very weird problem. Gotta figure where the .cache is at one of >>> port. Must be one of kwm's recently update. >> >> Found it, it's related with the glib20 update. See here: >> >> https://bugzilla.gnome.org/show_bug.cgi?id=3D675168 >> >> I found it from in its NEWS, it's in the "Overview of changes from >> GLib 2.33.2 to 2.33.3" section. >> >> It looks like we will have to search for a better solution. By either >> patch in GNOME 2 stuff or patch in glib20 to make it fallback >> (compatible). The developer will not create a fallback for old stuff's >> sake. > > Sigh. So some apps are still assuming .thumbnails and glib has moved Which apps? Add patch in gnome-desktop should take care if other apps are depend on gnome-desktop. > to 'doing the right thing" but not allowed for apps that don't yet > know it. For nautilus it creates an endless loop of looking for the > thumbnail in A, not finding it, calling the routines to create a new > thumbnail which puts it in B, and then repeats forever. The CPU is > eaten and I/O generated in making new thumbs continually. > > What all creates the thumbnails? If it is a single place that contains > the location, it's not too much to fix, but finding it could be > tricky. I'm hunting for it now in header files but there are a LOT of > them that contain "thumbnails" and I have just started looking. > > For now I'm taking the easy way out by creating a symlink as Sergio > suggested. Not the right answer, I know, but it should work. I'm also > copying him as he posted to ports and may not read gnome@. Please try http://people.freebsd.org/~mezz/patch/patch-glib2_34 by put it in the x11/gnome-desktop/files/ then reinstall it. Remove the symlink. > -- > R. Kevin Oberman, Network Engineer > E-mail: rkoberman@gmail.com --=20 mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 18:30:36 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 22BC0899 for ; Wed, 20 Mar 2013 18:30:36 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-ob0-x22d.google.com (mail-ob0-x22d.google.com [IPv6:2607:f8b0:4003:c01::22d]) by mx1.freebsd.org (Postfix) with ESMTP id DF2C5CB5 for ; Wed, 20 Mar 2013 18:30:35 +0000 (UTC) Received: by mail-ob0-f173.google.com with SMTP id dn14so1941262obc.4 for ; Wed, 20 Mar 2013 11:30:35 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=F/b6wh3p09oVgoSOgpjcbVL2g6C7EOnj47aK6DLon8g=; b=J0WQ6aaYbmkj1Ch+c1YqkKiRd5KQz49Dkav4B6OXvnXHIlyEcF1QUkNhP1Eja975G7 flV1RW8zIZI98SxjBg8CnPOrANIyAxpCmfekdmnyX8LgCd0WtxN7lbca6WoBF1p+A3rp a61AuBHchrzWmrYbtHDtNxtRiPMrKXP2Y9nBFmrtXq4R9gTNtqOkK+YK75NQDqQmxh/B aWPGDBN3H96Tf2Zkmm03ZcvWtwXPyjLlQCrEtd5l8wSnSZ1uohOyq8l0QrFm9p3N+T4c 5RxXtZXbb/hKA7W0mqxhgtELKsd2R+kf5MWAmSbRvcX+OzKoTDjBkztG8e4u9+smFRYt 2VjQ== MIME-Version: 1.0 X-Received: by 10.182.217.10 with SMTP id ou10mr4812985obc.30.1363804235367; Wed, 20 Mar 2013 11:30:35 -0700 (PDT) Sender: kob6558@gmail.com Received: by 10.76.11.165 with HTTP; Wed, 20 Mar 2013 11:30:35 -0700 (PDT) In-Reply-To: References: Date: Wed, 20 Mar 2013 11:30:35 -0700 X-Google-Sender-Auth: UiTfoohLIypmPdnrzJ8SxTJU7Bk Message-ID: Subject: Re: nautilus eating 1 CPU and doing lots of I/O From: Kevin Oberman To: Jeremy Messenger Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD GNOME Users , Sergio Lenzi X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 18:30:36 -0000 On Wed, Mar 20, 2013 at 9:37 AM, Jeremy Messenger wrote: > On Wed, Mar 20, 2013 at 11:24 AM, Kevin Oberman wro= te: >> On Wed, Mar 20, 2013 at 9:04 AM, Jeremy Messenger >> wrote: >>> On Wed, Mar 20, 2013 at 10:24 AM, Jeremy Messenger >>> wrote: >>>> On Wed, Mar 20, 2013 at 1:13 AM, Kevin Oberman w= rote: >>>>> On Tue, Mar 19, 2013 at 10:03 PM, Kevin Oberman = wrote: >>>>>> >>>>>> Since I updated nautilus a few days ago I am seeing very odd behavio= r. >>>>>> >>>>>> When I open a nautilus window, I see my CPUs at 20-25% load, mostly = in nautilus. I/O jumps from near zero to several MBps,. It varies in the on= es I tried between 4 and 16 MBps depending on the number of files (not fold= ers). ktrace shows lots of reads returning "Resource temporarily unavailabl= e". I also note that most of my thumbnails are not showing up, just the gen= eric icons for the file type. I'm guessing some issue with finding, loading= or generating the thumbnails. >>>>>> >>>>>> I have no idea what to look for to provide any real data or to track= this. >>>>> >>>>> I just noticed this post to ports@ made earlier today pointing out th= e >>>>> problem, but not a good solution. >>>>> : >>>>> Sergio de Almeida Lenzi Tue, 19 Mar 2013 12:42:16 -0700 >>>>> >>>>> Hello,, >>>>> >>>>> On update ports via svn from 2013-03-10 to today, >>>>> after a portmaster -a, the system (gnome2) >>>>> stopped to show any thumbnails.. >>>>> >>>>> The main reason is that it writes the thumbnail >>>>> in .thumbnails/normal/xxxxxxx.png >>>>> but than tries to read it from .cache/thumbnails/normal/xxxxxxxxx.png >>>>> >>>>> Can some "nautilus guru" tell me how to fix this??? >>>>> >>>>> for now I create a liink in the .cache/thumbnails -> ./thumbnails th= is >>>>> works >>>>> but is not a solution... >>>> >>>> That is very weird problem. Gotta figure where the .cache is at one of >>>> port. Must be one of kwm's recently update. >>> >>> Found it, it's related with the glib20 update. See here: >>> >>> https://bugzilla.gnome.org/show_bug.cgi?id=3D675168 >>> >>> I found it from in its NEWS, it's in the "Overview of changes from >>> GLib 2.33.2 to 2.33.3" section. >>> >>> It looks like we will have to search for a better solution. By either >>> patch in GNOME 2 stuff or patch in glib20 to make it fallback >>> (compatible). The developer will not create a fallback for old stuff's >>> sake. >> >> Sigh. So some apps are still assuming .thumbnails and glib has moved > > Which apps? Add patch in gnome-desktop should take care if other apps > are depend on gnome-desktop. OK. I don't know enough of Gnome 2 organization to know that, so it's prett= y straight-forward. >> to 'doing the right thing" but not allowed for apps that don't yet >> know it. For nautilus it creates an endless loop of looking for the >> thumbnail in A, not finding it, calling the routines to create a new >> thumbnail which puts it in B, and then repeats forever. The CPU is >> eaten and I/O generated in making new thumbs continually. >> >> What all creates the thumbnails? If it is a single place that contains >> the location, it's not too much to fix, but finding it could be >> tricky. I'm hunting for it now in header files but there are a LOT of >> them that contain "thumbnails" and I have just started looking. >> >> For now I'm taking the easy way out by creating a symlink as Sergio >> suggested. Not the right answer, I know, but it should work. I'm also >> copying him as he posted to ports and may not read gnome@. > > Please try http://people.freebsd.org/~mezz/patch/patch-glib2_34 by put > it in the x11/gnome-desktop/files/ then reinstall it. Remove the > symlink. No symlink and the thumbs are generated and CPU and I/O are normal. Looks g= ood! Looks ready to commit. Thanks! --=20 R. Kevin Oberman, Network Engineer E-mail: rkoberman@gmail.com From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 20:58:12 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B436D7E for ; Wed, 20 Mar 2013 20:58:12 +0000 (UTC) (envelope-from bounce@strongmail.multiview.com) Received: from strongmail1.multiview.com (strongmail1.multiview.com [50.84.243.125]) by mx1.freebsd.org (Postfix) with ESMTP id 2F42437A for ; Wed, 20 Mar 2013 20:58:11 +0000 (UTC) Received: from PSM-IRV-01 ([172.19.9.35]) by strongmail1.multiview.com (-); Wed, 20 Mar 2013 13:08:54 -0500 X-Destination-ID: gnome@freebsd.org X-SMFBL: Z25vbWVAZnJlZWJzZC5vcmc= X-VirtualServer: Default, strongmail1.multiview.com, 172.19.9.36 X-VirtualServerGroup: Default X-MailingID: 16920781::2052224::Mailing.DS52224.2052224.37451::2052224::37707030::23385 X-SMHeaderMap: mid="X-MailingID" DomainKey-Signature: a=rsa-sha1; c=nofws; s=briefs; d=multibriefs.com; q=dns; b=r9VNawkQJmv7ZKt11kkuioLw6z3U4LoIqPjeFQ/cU5tt4oVcSlVkK9v0fsDHfjfO6LSBPkVlu9fvE+UFHY0o+l7RyPEDl/3rPT4nqWa4ewwWd8A+9FcbS7bChL+YEJNED5AbdVElp8q2zNeq/rQYzhkQdjkINV5i6JkOahP4iaA= DKIM-Signature: v=1; a=rsa-sha1; c=simple; d=multibriefs.com; s=briefs; i=@multibriefs.com; h=Content-Transfer-Encoding: Content-Disposition:Content-Type:Reply-To:MIME-Version: Message-ID:X-PVIQ:Subject:Date:To:From; bh=fTpvYwysUim9lI8hayCYF NRsmPE=; b=PQQQfRMfVB+pN/jX/c3+rw+X12MWSoNeW399ZW/lPe+E3+fiKmNnu ur7dOyDfhzmMKxTdetYDsk/wYIMJCM176XRaoisi2JOuEAzwIkUV535XjwGUaXJv WnsfbhTUA5E2nRToWcc+u51gOe1E0hzf98LtjFwQgZkQlU4mILuQt0= Content-Disposition: inline Message-ID: <16920781.23385@multibriefs.com> X-PVIQ: 000320-001085-000002-052224-000000 Subject: News From Child Care Aware of America Date: Wed, 20 Mar 2013 13:08:46 -0500 To: gnome@freebsd.org From: "Child Care Aware of America e-News" MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: CCAoA@multibriefs.com List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Mar 2013 20:58:12 -0000 This message contains images. If you don't see images, [1]click here to view. [2]Click here to advertise in this news brief. [3][mobile_icon.png] Mobile version [4]RSS [5]Subscribe [6]Unsubscribe [7]Archive [8]Medi a Kit [NewHeader.jpg] [9]Home [10]About Us [11]About Child Care [12]Programs & Services [13]Contact Us [14][facebook2.png] [15][twitter_icon_new.png] March 20, 2013 __________________________________________________________________ Child Care Aware® of America News [16]Schedule appointments for Day on the Hill Child Care Aware® of America Share [17]Share on Facebook [18]Twitter [19]Share on Linkedin [20]E-mail article Child Care Aware® of America's Policy Symposium is just three weeks away and Day on the Hill is Thursday, April 11. Have you scheduled your Hill appointments? For more information on how to contact your members of Congress to schedule appointments, please click [21]here. NEW!! Thursday sessions at Symposium: Fact vs. Fiction: State Pre-K and Head Start -- Challenges ahead (8:30-10 a.m.); Q&A with the Office of Child Care (4-5 p.m.); and Head Start Designation Renewal Process (5:15-6:15 p.m.). Learn more and register [22]here. Advertisement [23]Symposium Health Aware event now FREE for child care providers Child Care Aware® of America Share [24]Share on Facebook [25]Twitter [26]Share on Linkedin [27]E-mail article As part of its ongoing commitment to providing professional development opportunities for the child care and early education workforce, Child Care Aware® of America has announced that its April 11 [28]Health Aware event will be complimentary for child care providers. Part of the 2013 Child Care Aware® of America National Policy Symposium April 10-13 in Washington, D.C., Health Aware is a special event promoting healthy eating and physical activity in child care programs. This "fee-free" offering for providers comes just a month before [29]Provider Appreciation Day on May 10, which recognizes child care providers, teachers and other educators of young children everywhere. [30]Register here. Advertisement PRODUCT SHOWCASE [31] Earn CEUs at KIT's Regional Training: Seattle, St. Louis or Washington, DC! Get to know [32]Kids Included Together & gain valuable strategies to help include ALL children in your programs! Attend one or both trainings: o [33]Facing Your Fear Factor o [34]Respectful Accommodations For Children With Disabilities Space is limited, [35]sign up online now! [36]Prepare for Symposium with Lunchtime Webinars Child Care Aware® of America Share [37]Share on Facebook [38]Twitter [39]Share on Linkedin [40]E-mail article [41][SymposiumWebinarSeries.png] [42][registerbutton.jpg] Elementary and Secondary Education Act (ESEA) Thursday, March 21, 2013 at 12:30 p.m. Eastern Laura Bornfreund, New America's Early Education Initiative The reauthorization of the Elementary and Secondary Education Act (ESEA), known as No Child Left Behind, is six years overdue. Will the current Congress reauthorize it? The Obama Administration and several Members of Congress, have emphasized the need to ensure all children have the right start -- calling on lawmakers to think of the U.S. public education system as a P-12 system, not a K-12 system. Will reauthorization be an opportunity to include early learning in a more meaningful way? How so, and what challenges lie ahead? [43][registerbutton.jpg] Promoting Good Nutrition and Food Security in Child Care Thursday, March 28, 2013 at 12:30 p.m. Eastern Geri Henchy, Food Research and Action Center (FRAC) The Healthy, Hunger-Free Kids Act of 2010 has set forth a number of improvements to all child nutrition programs including the Child and Adult Care Food Program (CACFP). For the first time in 30 years, USDA has the opportunity to make real reforms to these critical nutrition programs. Geri Henchy, Director of Nutrition Policy and Early Childhood Programs at FRAC, will provide details on program improvements to CACFP since the Healthy Hunger-Free Kids Act became law in December 2010, how the new provisions have boosted food security and healthy eating in child care, and what lies ahead for CACFP program participants. [44][registerbutton.jpg] Social Media at Symposium Thursday, April 4, 2013 at 12:30 p.m. Eastern This webinar will focus on how to use social media during our annual Policy Symposium. While this webinar will focus heavily on Twitter, we will touch on Facebook and ways to schedule tweets to ensure you get the most out of your online Symposium experience. This webinar is also great for those that cannot make it to Symposium this year -- learn how to use Twitter and Facebook to join the conversation and create a buzz not only in Washington, D.C., but in your state as well. Training/Professional Development Opportunities [45]Earn the 120 hours of training needed for your CDA application Child Care Aware® of America Share [46]Share on Facebook [47]Twitter [48]Share on Linkedin [49]E-mail article [trainingacademy.gif] The Child Care Aware Training Academy(TM) knows training. Whether you are a home-based provider or you work in a child care center, we can provide the 120-hour course essential to your CDA application. Our affordable and research-based online course is designed for professionals working with children from birth to age five and provides 12 continuing education units upon completion. With 25 years of experience in helping providers reach their goals, you can count on the Training Academy to prepare you with a foundation for success. Learn more [50]here. [51]Meet Training Academy staff at Symposium 2013 Child Care Aware® of America Share [52]Share on Facebook [53]Twitter [54]Share on Linkedin [55]E-mail article Attendees at the Symposium 10-13 April, 2013 in Washington, D.C., are invited to meet with the Child Care Aware Training Academy(TM) director and staff. Stop by our exhibition booth and learn about more than 300 online courses we offer child care providers every day. Ask us how our research-based, affordable training can help you complete CDA training hours or meet annual training requirements. You can also make an appointment for a one-on-one consultation by emailing [56]sobia.nawaz@usa.childcareaware.org. Like us on [57]Facebook! Let's Move! Child Care Resources [58]Overcome challenges to family style dining Child Care Aware® of America Share [59]Share on Facebook [60]Twitter [61]Share on Linkedin [62]E-mail article When one Maryland child care center implemented a new policy on serving meals family style, they began the implementation process by sharing a video with the program's teachers. The video offered teachers a visual of the experience and practical tips. In addition to the video, the center shared pointers for others on how they made the successful transition. Learn more [63]here. [64]Let's Move! Child Care will recognize providers at national conference Child Care Aware® of America Share [65]Share on Facebook [66]Twitter [67]Share on Linkedin [68]E-mail article Child care providers who have met the five goals of [69]Let's Move! Child Care will be recognized April 11 at Health Aware, a daylong wellness event that is part of the Child Care Aware® of America Policy Symposium in Washington, D.C. The event features two 60-minute trainings, Learning to Move and Moving to Learn and Making Nutrition FUN!, that will award clock hours, child care program resources and opportunities to win prizes and giveaways. Learn more [70]here. Child Care Aware® of America Public Policy [71]Advocacy/policy resources Child Care Aware® of America Share [72]Share on Facebook [73]Twitter [74]Share on Linkedin [75]E-mail article [76]Advocacy Toolkit: Check out our advocacy toolkit for advocacy resources Check out our latest [77]blog post. Learn more about the FY2014 budget proposals by clicking on the links below: * [78]FY2014: House Budget Resolution * [79]FY2014: Senate Budget Resolution * [80]FY2014: House and Senate Budget Comparison [81]The Stories Behind the Issues [82]In the States Map: Get the fast facts about child care in your state! Children's Product Recalls/Information [83]Latest recalls on child-related products Child Care Aware® of America Share [84]Share on Facebook [85]Twitter [86]Share on Linkedin [87]E-mail article * Toys R Us Recalls Imaginarium [88]Activity Walker Due to Choking Hazard * UNIQLO Recalls [89]Children's Pajamas Due to Violation of Federal Flammability Standards * Stuart Weitzman Girls' [90]Cha Cha Boots Recalled by Synclaire Brands Due to Fall Hazard Industry News [91]Indiana bill would give tax credit for accredited child care Network Indiana via Indiana Public Media Share [92]Share on Facebook [93]Twitter [94]Share on Linkedin [95]E-mail article While the Indiana Senate considers a proposal to help low-income parents afford preschool, it has already approved a proposal to encourage child care centers to raise their game. The House has voted to give parents up to $6,800 to pay for preschool. Markle Sen. Travis Holdman's bill gives them a tax credit for child care instead, of up to $180 per child if their child's facility has state accreditation. Holdman believes that is less than half of them. [96]More [97]'I don't want to pick!' -- Preschoolers know when they aren't sure University of California, Davis via ScienceDaily Share [98]Share on Facebook [99]Twitter [100]Share on Linkedin [101]E-mail article Children as young as 3 years old know when they are not sure about a decision and can use that uncertainty to guide decision-making, according to new research from the Center for Mind and Brain at the University of California, Davis. "There is behavioral evidence that they can do this, but the literature has assumed that until late preschool, children cannot introspect and make a decision based on that introspection," said Simona Ghetti, professor of psychology at UC Davis and co-author of the study with graduate student Kristen Lyons, now an assistant professor at Metropolitan State University of Denver. [102]More [103]Doctors: No attention-boosting drugs for healthy kids American Academy of Neurology via ScienceDaily Share [104]Share on Facebook [105]Twitter [106]Share on Linkedin [107]E-mail article The American Academy of Neurology, the world's largest professional association of neurologists, is releasing a position paper on how the practice of prescribing drugs to boost cognitive function, or memory and thinking abilities, in healthy children and teens is misguided. This growing trend in which teens use "study drugs" before tests and parents request ADHD drugs for kids who don't meet the criteria for the disorder has made headlines recently in the United States. The Academy has spent the past several years analyzing all of the available research and ethical issues to develop this official position paper. [108]More Child Care Aware® of America e-News [109]Theresa Klisz, Director of Editorial Services, Child Care Aware® of America, 571.527.3218 [110]Contribute news [111]Colby Horton, Vice President of Publishing, MultiBriefs, 469.420.2601 [112]Download media kit [113]Caitlin McNeely, Content Editor, MultiBriefs, 469.420.2692 [114]Contribute news This edition of the ChildCare Aware® of America e-News was sent to gnome@freebsd.org. To unsubscribe, [115]click here. Did someone forward this edition to you? [116]Subscribe here -- it's free! Recent issues [117][powered_by.png] 7701 Las Colinas Ridge, Ste. 800, Irving, TX 75063 References Visible links 1. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2000&&&http://www.multibriefs.com/briefs/naccrra/naccrra032013.php 2. mailto:chorton@multibriefs.com?subject=NACCRRA%20News%20Brief%20Advertising 3. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2001&&&http://www.multibriefs.com/briefs/naccrra/032013.html 4. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2002&&&http://www.multibriefs.com/briefs/naccrra/naccrra.xml 5. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2003&&&http://multibriefs.com/optin.php?naccrra 6. http://www.multibriefs.com/unsubscribe.php?NACCRRA&gnome@freebsd.org 7. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2005&&&http://www.multibriefs.com/briefs/naccrra 8. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2006&&&http://www.multiview.com/multibriefs/naccrra/mediakit 9. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2007&&&http://www.naccrra.org/ 10. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2008&&&http://www.naccrra.org/about-us 11. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2009&&&http://www.naccrra.org/about-child-care 12. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2010&&&http://www.naccrra.org/programs-services 13. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2011&&&http://www.naccrra.org/about-us/contact-us 14. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2012&&&http://www.facebook.com/NACCRRA 15. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2013&&&https://twitter.com/USAChildCare 16. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2016&&&http://multibriefs.com/ViewLink.php?i=51486e5b5cb53 17. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2017&&&http://www.facebook.com/sharer.php?u=http://multibriefs.com/ViewLink.php?i=51486e5b5cb53 18. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2018&&&http://twitter.com/?status=http://multibriefs.com/ViewLink.php?i=51486e5b5cb53 19. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2019&&&http://www.linkedin.com/shareArticle?mini=true&url=http://multibriefs.com/ViewLink.php?i=51486e5b5cb53 20. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2020&&&http://multibriefs.com/ShareArticle.php?51486e5b5cb53 21. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2021&&&http://capwiz.com/naccrra/utr/1/CTZESVYGVY/BWGQSVYJUD/9369139301 22. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2022&&&http://www.usa.childcareaware.org/conferences/2013-child-care-aware%C2%AE-of-america-policy-symposium 23. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2024&&&http://multibriefs.com/ViewLink.php?i=514870cd19055 24. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2025&&&http://www.facebook.com/sharer.php?u=http://multibriefs.com/ViewLink.php?i=514870cd19055 25. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2026&&&http://twitter.com/?status=http://multibriefs.com/ViewLink.php?i=514870cd19055 26. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2027&&&http://www.linkedin.com/shareArticle?mini=true&url=http://multibriefs.com/ViewLink.php?i=514870cd19055 27. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2028&&&http://multibriefs.com/ShareArticle.php?514870cd19055 28. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2029&&&http://www.naccrra.org/conferences/health-aware 29. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2030&&&http://www.providerappreciationday.org/ 30. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2031&&&http://www.regonline.com/Register/Checkin.aspx?EventID=1181351 31. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2033&&&http://www.kitonline.org/html/regional-trainings.html 32. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2034&&&http://www.KITonline.org 33. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2035&&&http://www.kitonline.org/html/training/live-specialized-inclusion.html#FearFactor 34. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2036&&&http://www.kitonline.org/html/training/live-core-inclusion.html#RespectfulAccommodations 35. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2037&&&http://www.kitonline.org/html/regional-trainings.html 36. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2038&&&http://multibriefs.com/ViewLink.php?i=5148711f28687 37. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2039&&&http://www.facebook.com/sharer.php?u=http://multibriefs.com/ViewLink.php?i=5148711f28687 38. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2040&&&http://twitter.com/?status=http://multibriefs.com/ViewLink.php?i=5148711f28687 39. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2041&&&http://www.linkedin.com/shareArticle?mini=true&url=http://multibriefs.com/ViewLink.php?i=5148711f28687 40. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2042&&&http://multibriefs.com/ShareArticle.php?5148711f28687 41. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2043&&&http://www.naccrra.org/public-policy/policy-webinars/lunch-learn-webinars 42. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2044&&&https://www2.gotomeeting.com/register/805801362 43. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2045&&&https://www2.gotomeeting.com/register/403459362 44. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2046&&&https://www2.gotomeeting.com/register/712855482 45. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2047&&&http://multibriefs.com/ViewLink.php?i=514871e38be59 46. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2048&&&http://www.facebook.com/sharer.php?u=http://multibriefs.com/ViewLink.php?i=514871e38be59 47. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2049&&&http://twitter.com/?status=http://multibriefs.com/ViewLink.php?i=514871e38be59 48. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2050&&&http://www.linkedin.com/shareArticle?mini=true&url=http://multibriefs.com/ViewLink.php?i=514871e38be59 49. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2051&&&http://multibriefs.com/ShareArticle.php?514871e38be59 50. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2052&&&http://naccrra.smarthorizons.org/child-care-providers.html 51. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2053&&&http://multibriefs.com/ViewLink.php?i=51487220ef2cd 52. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2054&&&http://www.facebook.com/sharer.php?u=http://multibriefs.com/ViewLink.php?i=51487220ef2cd 53. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2055&&&http://twitter.com/?status=http://multibriefs.com/ViewLink.php?i=51487220ef2cd 54. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2056&&&http://www.linkedin.com/shareArticle?mini=true&url=http://multibriefs.com/ViewLink.php?i=51487220ef2cd 55. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2057&&&http://multibriefs.com/ShareArticle.php?51487220ef2cd 56. mailto:sobia.nawaz@usa.childcareaware.org 57. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2058&&&https://www.facebook.com/ccatrainingacademy 58. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2059&&&http://multibriefs.com/ViewLink.php?i=5148725a65ef8 59. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2060&&&http://www.facebook.com/sharer.php?u=http://multibriefs.com/ViewLink.php?i=5148725a65ef8 60. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2061&&&http://twitter.com/?status=http://multibriefs.com/ViewLink.php?i=5148725a65ef8 61. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2062&&&http://www.linkedin.com/shareArticle?mini=true&url=http://multibriefs.com/ViewLink.php?i=5148725a65ef8 62. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2063&&&http://multibriefs.com/ShareArticle.php?5148725a65ef8 63. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2064&&&http://www.healthykidshealthyfuture.org/home/resources/success/jcc.html 64. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2065&&&http://multibriefs.com/ViewLink.php?i=514872785a89d 65. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2066&&&http://www.facebook.com/sharer.php?u=http://multibriefs.com/ViewLink.php?i=514872785a89d 66. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2067&&&http://twitter.com/?status=http://multibriefs.com/ViewLink.php?i=514872785a89d 67. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2068&&&http://www.linkedin.com/shareArticle?mini=true&url=http://multibriefs.com/ViewLink.php?i=514872785a89d 68. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2069&&&http://multibriefs.com/ShareArticle.php?514872785a89d 69. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2070&&&http://www.healthykidshealthyfuture.org/welcome.html 70. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2071&&&http://www.usa.childcareaware.org/conferences/health-aware 71. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2072&&&http://multibriefs.com/ViewLink.php?i=514872924f227 72. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2073&&&http://www.facebook.com/sharer.php?u=http://multibriefs.com/ViewLink.php?i=514872924f227 73. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2074&&&http://twitter.com/?status=http://multibriefs.com/ViewLink.php?i=514872924f227 74. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2075&&&http://www.linkedin.com/shareArticle?mini=true&url=http://multibriefs.com/ViewLink.php?i=514872924f227 75. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2076&&&http://multibriefs.com/ShareArticle.php?514872924f227 76. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2077&&&http://www.naccrra.org/public-policy/advocacy-campaigns/advocacy-toolkit 77. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2078&&&http://policyblog.usa.childcareaware.org/ 78. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2079&&&http://coreissues.usa.childcareaware.org/wp-content/uploads/2013/03/House-Budget-one-pager.pdf 79. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2080&&&http://coreissues.usa.childcareaware.org/wp-content/uploads/2013/03/Senate-Budget-one-pager.pdf 80. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2081&&&http://coreissues.usa.childcareaware.org/wp-content/uploads/2013/03/Federal-Budget-Comparison.pdf 81. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2082&&&http://www.naccrra.org/public-policy/policy-issues/the-stories-behind-the-issues 82. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2083&&&http://www.naccrra.org/node/2495 83. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2084&&&http://multibriefs.com/ViewLink.php?i=514872dd66240 84. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2085&&&http://www.facebook.com/sharer.php?u=http://multibriefs.com/ViewLink.php?i=514872dd66240 85. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2086&&&http://twitter.com/?status=http://multibriefs.com/ViewLink.php?i=514872dd66240 86. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2087&&&http://www.linkedin.com/shareArticle?mini=true&url=http://multibriefs.com/ViewLink.php?i=514872dd66240 87. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2088&&&http://multibriefs.com/ShareArticle.php?514872dd66240 88. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2089&&&http://www.cpsc.gov/en/Recalls/2013/Toys-R-Us-Recalls-Imaginarium-Activity-Walker/ 89. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2090&&&http://www.cpsc.gov/en/Recalls/2013/Uniqlo-Recalls-Childrens-Pajamas/ 90. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2091&&&http://www.cpsc.gov/en/Recalls/2013/Stuart-Weitzman-Girls-Cha-Cha-Boots 91. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2092&&&http://multibriefs.com/ViewLink.php?i=51473c5526660 92. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2093&&&http://www.facebook.com/sharer.php?u=http://multibriefs.com/ViewLink.php?i=51473c5526660 93. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2094&&&http://twitter.com/?status=http://multibriefs.com/ViewLink.php?i=51473c5526660 94. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2095&&&http://www.linkedin.com/shareArticle?mini=true&url=http://multibriefs.com/ViewLink.php?i=51473c5526660 95. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2096&&&http://multibriefs.com/ShareArticle.php?51473c5526660 96. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2097&&&http://multibriefs.com/ViewLink.php?i=51473c5526660 97. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2098&&&http://multibriefs.com/ViewLink.php?i=51473c19ca566 98. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2099&&&http://www.facebook.com/sharer.php?u=http://multibriefs.com/ViewLink.php?i=51473c19ca566 99. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2100&&&http://twitter.com/?status=http://multibriefs.com/ViewLink.php?i=51473c19ca566 100. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2101&&&http://www.linkedin.com/shareArticle?mini=true&url=http://multibriefs.com/ViewLink.php?i=51473c19ca566 101. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2102&&&http://multibriefs.com/ShareArticle.php?51473c19ca566 102. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2103&&&http://multibriefs.com/ViewLink.php?i=51473c19ca566 103. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2104&&&http://multibriefs.com/ViewLink.php?i=51473c8e173a8 104. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2105&&&http://www.facebook.com/sharer.php?u=http://multibriefs.com/ViewLink.php?i=51473c8e173a8 105. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2106&&&http://twitter.com/?status=http://multibriefs.com/ViewLink.php?i=51473c8e173a8 106. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2107&&&http://www.linkedin.com/shareArticle?mini=true&url=http://multibriefs.com/ViewLink.php?i=51473c8e173a8 107. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2108&&&http://multibriefs.com/ShareArticle.php?51473c8e173a8 108. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2109&&&http://multibriefs.com/ViewLink.php?i=51473c8e173a8 109. mailto:theresa.klisz@usa.childcareaware.org 110. mailto:theresa.klisz@usa.childcareaware.org 111. mailto:chorton@multibriefs.com 112. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2110&&&http://www.multiview.com/multibriefs/naccrra/mediakit 113. mailto:cmcneely@multibriefs.com 114. mailto:cmcneely@multibriefs.com 115. http://www.multibriefs.com/unsubscribe.php?NACCRRA&gnome@freebsd.org 116. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2112&&&http://multibriefs.com/optin.php?naccrra 117. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2113&&&http://www.multibriefs.com Hidden links: 118. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2014&&&http://www.constructiveplaythings.com/cgi-bin/s.sh/2.0/index.html 119. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2015&&&http://www.mothergoosetime.com/ 120. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2023&&&http://www.FingerShieldUSA.com 121. http://strongmail1.multiview.com/track?type=click&eas=1&mailingid=2052224&messageid=2052224&databaseid=Mailing.DS52224.2052224.37451&serial=16920781&emailid=gnome@freebsd.org&userid=37707030&targetid=&fl=&extra=MultivariateId=&&&2032&&&http://www.kitonline.org/html/regional-trainings.html From owner-freebsd-gnome@FreeBSD.ORG Wed Mar 20 21:20:31 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 195CEC0F for ; Wed, 20 Mar 2013 21:20:31 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-vc0-f171.google.com (mail-vc0-f171.google.com [209.85.220.171]) by mx1.freebsd.org (Postfix) with ESMTP id CED0569A for ; Wed, 20 Mar 2013 21:20:30 +0000 (UTC) Received: by mail-vc0-f171.google.com with SMTP id ha11so1732969vcb.16 for ; Wed, 20 Mar 2013 14:20:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:content-transfer-encoding; bh=sZQLP10v0eHGshD1s9qAntseoxwHZTR30QWtVQpCEEs=; b=YLCn89635ovfHFvr1hahzriT7MeOodfah3JO4eIO7yZlAhKZSN2JqrvfWvpO2VKH07 XUUT0RHwljMOI7YJ1q/hehP+JoVqhZKkzv9TA8SpEPdizdfstypObVCuDESwb4OwmYYD nj2Wq04np78fOpKKLxuw7g3XqKV849Z6EHT/Lg0JhVD/HlCw8Xxl7hme+HzQLZ/p4ElB 7vRSwxfLVHd1qcZyQBsO+vPEkv5SyITz1GW1zaulmWEiZr5KAtFpgMeSwFI7v+J0U39j b3+d70JdpepJ/EKq8s8AHcxadZKDknfo74kuw5kTEr22XU8vwAP+A2ydgwdAMN29BWWO qA8Q== MIME-Version: 1.0 X-Received: by 10.58.229.69 with SMTP id so5mr10144996vec.6.1363814430009; Wed, 20 Mar 2013 14:20:30 -0700 (PDT) Received: by 10.58.74.197 with HTTP; Wed, 20 Mar 2013 14:20:29 -0700 (PDT) In-Reply-To: References: Date: Wed, 20 Mar 2013 16:20:29 -0500 Message-ID: Subject: Re: nautilus eating 1 CPU and doing lots of I/O From: Jeremy Messenger To: Kevin Oberman Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: FreeBSD GNOME Users , Sergio Lenzi X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 20 Mar 2013 21:20:31 -0000 On Wed, Mar 20, 2013 at 1:30 PM, Kevin Oberman wrote: > On Wed, Mar 20, 2013 at 9:37 AM, Jeremy Messenger > wrote: >> On Wed, Mar 20, 2013 at 11:24 AM, Kevin Oberman wr= ote: >>> On Wed, Mar 20, 2013 at 9:04 AM, Jeremy Messenger >>> wrote: >>>> On Wed, Mar 20, 2013 at 10:24 AM, Jeremy Messenger >>>> wrote: >>>>> On Wed, Mar 20, 2013 at 1:13 AM, Kevin Oberman = wrote: >>>>>> On Tue, Mar 19, 2013 at 10:03 PM, Kevin Oberman wrote: >>>>>>> >>>>>>> Since I updated nautilus a few days ago I am seeing very odd behavi= or. >>>>>>> >>>>>>> When I open a nautilus window, I see my CPUs at 20-25% load, mostly= in nautilus. I/O jumps from near zero to several MBps,. It varies in the o= nes I tried between 4 and 16 MBps depending on the number of files (not fol= ders). ktrace shows lots of reads returning "Resource temporarily unavailab= le". I also note that most of my thumbnails are not showing up, just the ge= neric icons for the file type. I'm guessing some issue with finding, loadin= g or generating the thumbnails. >>>>>>> >>>>>>> I have no idea what to look for to provide any real data or to trac= k this. >>>>>> >>>>>> I just noticed this post to ports@ made earlier today pointing out t= he >>>>>> problem, but not a good solution. >>>>>> : >>>>>> Sergio de Almeida Lenzi Tue, 19 Mar 2013 12:42:16 -0700 >>>>>> >>>>>> Hello,, >>>>>> >>>>>> On update ports via svn from 2013-03-10 to today, >>>>>> after a portmaster -a, the system (gnome2) >>>>>> stopped to show any thumbnails.. >>>>>> >>>>>> The main reason is that it writes the thumbnail >>>>>> in .thumbnails/normal/xxxxxxx.png >>>>>> but than tries to read it from .cache/thumbnails/normal/xxxxxxxxx.pn= g >>>>>> >>>>>> Can some "nautilus guru" tell me how to fix this??? >>>>>> >>>>>> for now I create a liink in the .cache/thumbnails -> ./thumbnails t= his >>>>>> works >>>>>> but is not a solution... >>>>> >>>>> That is very weird problem. Gotta figure where the .cache is at one o= f >>>>> port. Must be one of kwm's recently update. >>>> >>>> Found it, it's related with the glib20 update. See here: >>>> >>>> https://bugzilla.gnome.org/show_bug.cgi?id=3D675168 >>>> >>>> I found it from in its NEWS, it's in the "Overview of changes from >>>> GLib 2.33.2 to 2.33.3" section. >>>> >>>> It looks like we will have to search for a better solution. By either >>>> patch in GNOME 2 stuff or patch in glib20 to make it fallback >>>> (compatible). The developer will not create a fallback for old stuff's >>>> sake. >>> >>> Sigh. So some apps are still assuming .thumbnails and glib has moved >> >> Which apps? Add patch in gnome-desktop should take care if other apps >> are depend on gnome-desktop. > > OK. I don't know enough of Gnome 2 organization to know that, so it's pre= tty > straight-forward. > >>> to 'doing the right thing" but not allowed for apps that don't yet >>> know it. For nautilus it creates an endless loop of looking for the >>> thumbnail in A, not finding it, calling the routines to create a new >>> thumbnail which puts it in B, and then repeats forever. The CPU is >>> eaten and I/O generated in making new thumbs continually. >>> >>> What all creates the thumbnails? If it is a single place that contains >>> the location, it's not too much to fix, but finding it could be >>> tricky. I'm hunting for it now in header files but there are a LOT of >>> them that contain "thumbnails" and I have just started looking. >>> >>> For now I'm taking the easy way out by creating a symlink as Sergio >>> suggested. Not the right answer, I know, but it should work. I'm also >>> copying him as he posted to ports and may not read gnome@. >> >> Please try http://people.freebsd.org/~mezz/patch/patch-glib2_34 by put >> it in the x11/gnome-desktop/files/ then reinstall it. Remove the >> symlink. > > No symlink and the thumbs are generated and CPU and I/O are normal. Looks= good! > Looks ready to commit. > > Thanks! I have committed it. Thanks too! > -- > R. Kevin Oberman, Network Engineer > E-mail: rkoberman@gmail.com --=20 mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 05:51:59 2013 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 6A250D31 for ; Thu, 21 Mar 2013 05:51:59 +0000 (UTC) (envelope-from freebsd@pki2.com) Received: from btw.pki2.com (btw.pki2.com [IPv6:2001:470:a:6fd::2]) by mx1.freebsd.org (Postfix) with ESMTP id D26D7A01 for ; Thu, 21 Mar 2013 05:51:58 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by btw.pki2.com (8.14.6/8.14.5) with ESMTP id r2L5pnYO022899 for ; Wed, 20 Mar 2013 22:51:49 -0700 (PDT) (envelope-from freebsd@pki2.com) Subject: Any effort updating Evolution? From: Dennis Glatting To: gnome@FreeBSD.org Content-Type: text/plain; charset="ISO-8859-1" Date: Wed, 20 Mar 2013 22:51:49 -0700 Message-ID: <1363845109.88454.1.camel@btw.pki2.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-yoursite-MailScanner-Information: Dennis Glatting X-yoursite-MailScanner-ID: r2L5pnYO022899 X-yoursite-MailScanner: Found to be clean X-MailScanner-From: freebsd@pki2.com X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 05:51:59 -0000 The current version of Evolution in ports, 2.32.1, has a bit of bit rot against the current stable version of 3.6.4. Is there any effort underway to update? From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 07:55:31 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9103D385 for ; Thu, 21 Mar 2013 07:55:31 +0000 (UTC) (envelope-from rsb@berentweb.com) Received: from mail-qe0-f41.google.com (mail-qe0-f41.google.com [209.85.128.41]) by mx1.freebsd.org (Postfix) with ESMTP id 52EBEF47 for ; Thu, 21 Mar 2013 07:55:31 +0000 (UTC) Received: by mail-qe0-f41.google.com with SMTP id 7so1646015qeb.0 for ; Thu, 21 Mar 2013 00:55:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=berentweb.com; s=google; h=mime-version:x-received:sender:x-originating-ip:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type; bh=ErK+iVjp+C7VraO7FXWD/3VfpVWXUNIs90/KdDpoGic=; b=UYUX6h9HUOTJvs1bZLFx3Rus42rX76epR9VnVJ2ePam1YzZNirFx7UgtOT6qHAQ2z1 5kEQrP+ioBO5y/LDKOIZgiG0PKj0wWCubjGOLFJnYSQqeePv4fCBGfJREOgLzqEvVCoX ceADanvVEBCbqwC6iUAVH9IoNZ0j/Yixy+tqo= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-received:sender:x-originating-ip:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type:x-gm-message-state; bh=ErK+iVjp+C7VraO7FXWD/3VfpVWXUNIs90/KdDpoGic=; b=lMSuw8FR1U99WFrgTPqoaszDl1RqLUU2yekouifvem0L4avgG10DGbiVj6CH+8PZBG Y1vYvvSHXvTg6G3oLlee2MvaqCH+U4tGOvyKEV13Mt1ErWvAGuaRfHiC3OlebRW5KaUu irGWVJtS8KkVV3l1O2ftDtST1X5hPDsfOdsHS+EWyJEPccu/VtyNZoR/ZelH4hgvSHSi 78Db+JfOukTlXvvqDNUOte8wBBuo10aDlCbhVUZwvtE+rscovA2qpo2SY81hRHg05GlG iIeCvbzilU8zfNgIHc9YlOGpAeSolaZgbCjPu58d4p7SZHwEoA1fl9SG4ARcP7naAthN dCcA== MIME-Version: 1.0 X-Received: by 10.229.105.198 with SMTP id u6mr2483560qco.15.1363852530319; Thu, 21 Mar 2013 00:55:30 -0700 (PDT) Sender: rsb@berentweb.com Received: by 10.224.123.81 with HTTP; Thu, 21 Mar 2013 00:55:30 -0700 (PDT) X-Originating-IP: [83.66.209.77] In-Reply-To: <201303182054.r2IKsQ8N014289@freefall.freebsd.org> References: <201303182054.r2IKsQ8N014289@freefall.freebsd.org> Date: Thu, 21 Mar 2013 09:55:30 +0200 X-Google-Sender-Auth: UV1-VqMHhp6DvR7S34DjsO1XtuU Message-ID: Subject: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 From: Beeblebrox To: kwm@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQlfP2f8VSJG6nSOt0jpoIllAumYip9Oo2GrTDmvhs1cHngwmE29os7BN0zCDs2eqIyYtlqP Cc: gnome@freebsd.org, bug-followup@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 07:55:31 -0000 On 3/18/13, kwm@freebsd.org wrote: > Synopsis: devel/glibmm does not compile: Unknown component libsigc++20 > > State-Changed-From-To: open->closed > State-Changed-By: kwm > State-Changed-When: Mon Mar 18 20:52:43 UTC 2013 > State-Changed-Why: > Please update your ports tree, the libsigc++20 USE_GNOME component was > added > on March 8th together with glib and gtk updates. I suspect your ports tree > isn't in a consistent state. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=177077 > Issue persists, ports tree is at Revision: 314816. Ports had been updated before filing the PR. devel/libsigc++20 was in the ports tree at time of filing the PR; it compiled & installed without any problems. From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 07:59:49 2013 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5DA846B0; Thu, 21 Mar 2013 07:59:49 +0000 (UTC) (envelope-from kvasilev@cellnetrix.com) Received: from office.cellnetrix.com (office.cellnetrix.com [80.243.14.38]) by mx1.freebsd.org (Postfix) with ESMTP id 48446F9D; Thu, 21 Mar 2013 07:59:47 +0000 (UTC) Received: from localhost (localhost.com [127.0.0.1]) by office.cellnetrix.com (Postfix) with ESMTP id 39487189E044; Thu, 21 Mar 2013 10:59:46 +0300 (MSK) X-Virus-Scanned: amavisd-new at cellnetrix.com Received: from office.cellnetrix.com ([127.0.0.1]) by localhost (c-dev.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id dcYrP3um1bAq; Thu, 21 Mar 2013 10:59:38 +0300 (MSK) Received: by office.cellnetrix.com (Postfix, from userid 1009) id 5D54C189E066; Thu, 21 Mar 2013 10:59:38 +0300 (MSK) X-Spam-Checker-Version: SpamAssassin 3.2.2 (2007-07-23) on c-dev.com X-Spam-Level: X-Spam-Status: No, score=-3.0 required=5.0 tests=ALL_TRUSTED,AWL,BAYES_00, HTML_MESSAGE autolearn=ham version=3.2.2 Received: from [192.168.2.170] (unknown [192.168.2.170]) by office.cellnetrix.com (Postfix) with ESMTP id 5E5D8189E044; Thu, 21 Mar 2013 10:59:30 +0300 (MSK) Message-ID: <514ABDBF.2080300@cellnetrix.com> Date: Thu, 21 Mar 2013 11:58:55 +0400 From: Konstantin Vasilev Organization: Cellnetrix User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130307 Thunderbird/17.0.4 MIME-Version: 1.0 To: mezz@FreeBSD.org Subject: Re: ports/177069: devel/glib20: update of glib-2.28.8_5 to 2.34.3 in jail failed References: <201303201534.r2KFYsCs026304@freefall.freebsd.org> In-Reply-To: <201303201534.r2KFYsCs026304@freefall.freebsd.org> X-Enigmail-Version: 1.4.6 Content-Type: multipart/mixed; boundary="------------070802050904050904000506" X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 07:59:49 -0000 This is a multi-part message in MIME format. --------------070802050904050904000506 MIME-Version: 1.0 Content-Type: text/plain; charset="KOI8-R" Hello! Looks like something wrong with my basejail after upgrade from 9.0-release to 9.1-release with ezjail. Same problems here [1]http://forums.freebsd.org/showthread.php?t=38558. Requested info attached. Thank you for your attention. 20.03.2013 19:34, [2]mezz@FreeBSD.org pishet: Synopsis: devel/glib20: update of glib-2.28.8_5 to 2.34.3 in jail failed State-Changed-From-To: open->feedback State-Changed-By: mezz State-Changed-When: Wed Mar 20 15:33:09 UTC 2013 State-Changed-Why: I have no idea what's wrong with it as I can't reproduce it here. Can you go to devel/glib20 and do the 'make V=1 >& glib20.txt' then send us the glib20.txt? [3]http://www.freebsd.org/cgi/query-pr.cgi?pr=177069 . References 1. http://forums.freebsd.org/showthread.php?t=38558 2. mailto:mezz@FreeBSD.org 3. http://www.freebsd.org/cgi/query-pr.cgi?pr=177069 --------------070802050904050904000506 Content-Type: text/plain; charset=windows-1251; name="glib20.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="glib20.txt" ===> Building for glib-2.34.3 gmake all-recursive gmake[1]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3' Making all in . gmake[2]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3' gmake[2]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3' Making all in m4macros gmake[2]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/m4macros' gmake[2]: Nothing to be done for `all'. gmake[2]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/m4macros' Making all in glib gmake[2]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib' gmake all-recursive gmake[3]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib' Making all in libcharset gmake[4]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib/libcharset' gmake[4]: Nothing to be done for `all'. gmake[4]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib/libcharset' Making all in update-pcre gmake[4]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib/update-pcre' gmake[4]: Nothing to be done for `all'. gmake[4]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib/update-pcre' Making all in . gmake[4]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib' /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstrfuncs.lo -MD -MP -MF .deps/gstrfuncs.Tpo -c -o gstrfuncs.lo gstrfuncs.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstring.lo -MD -MP -MF .deps/gstring.Tpo -c -o gstring.lo gstring.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstringchunk.lo -MD -MP -MF .deps/gstringchunk.Tpo -c -o gstringchunk.lo gstringchunk.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtestutils.lo -MD -MP -MF .deps/gtestutils.Tpo -c -o gtestutils.lo gtestutils.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gthread.lo -MD -MP -MF .deps/gthread.Tpo -c -o gthread.lo gthread.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gthreadpool.lo -MD -MP -MF .deps/gthreadpool.Tpo -c -o gthreadpool.lo gthreadpool.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtimer.lo -MD -MP -MF .deps/gtimer.Tpo -c -o gtimer.lo gtimer.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtimezone.lo -MD -MP -MF .deps/gtimezone.Tpo -c -o gtimezone.lo gtimezone.c gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstring.lo -MD -MP -MF .deps/gstring.Tpo -c gstring.c -fPIC -DPIC -o .libs/gstring.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstringchunk.lo -MD -MP -MF .deps/gstringchunk.Tpo -c gstringchunk.c -fPIC -DPIC -o .libs/gstringchunk.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstrfuncs.lo -MD -MP -MF .deps/gstrfuncs.Tpo -c gstrfuncs.c -fPIC -DPIC -o .libs/gstrfuncs.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gthread.lo -MD -MP -MF .deps/gthread.Tpo -c gthread.c -fPIC -DPIC -o .libs/gthread.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gthreadpool.lo -MD -MP -MF .deps/gthreadpool.Tpo -c gthreadpool.c -fPIC -DPIC -o .libs/gthreadpool.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtimezone.lo -MD -MP -MF .deps/gtimezone.Tpo -c gtimezone.c -fPIC -DPIC -o .libs/gtimezone.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtestutils.lo -MD -MP -MF .deps/gtestutils.Tpo -c gtestutils.c -fPIC -DPIC -o .libs/gtestutils.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtimer.lo -MD -MP -MF .deps/gtimer.Tpo -c gtimer.c -fPIC -DPIC -o .libs/gtimer.o gstrfuncs.c:330: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'get_C_locale' gstrfuncs.c: In function 'g_ascii_strtod': gstrfuncs.c:700: warning: implicit declaration of function 'strtod_l' gstrfuncs.c:700: warning: implicit declaration of function 'get_C_locale' gstrfuncs.c: In function 'g_ascii_formatd': gstrfuncs.c:902: error: 'locale_t' undeclared (first use in this function) gstrfuncs.c:902: error: (Each undeclared identifier is reported only once gstrfuncs.c:902: error: for each function it appears in.) gstrfuncs.c:902: error: expected ';' before 'old_locale' gstrfuncs.c:904: error: 'old_locale' undeclared (first use in this function) gstrfuncs.c:904: warning: implicit declaration of function 'uselocale' gstrfuncs.c: In function 'g_ascii_strtoull': gstrfuncs.c:1148: warning: implicit declaration of function 'strtoull_l' gstrfuncs.c: In function 'g_ascii_strtoll': gstrfuncs.c:1195: warning: implicit declaration of function 'strtoll_l' gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstringchunk.lo -MD -MP -MF .deps/gstringchunk.Tpo -c gstringchunk.c -o gstringchunk.o >/dev/null 2>&1 gmake[4]: *** [gstrfuncs.lo] Error 1 gmake[4]: *** Waiting for unfinished jobs.... gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gthread.lo -MD -MP -MF .deps/gthread.Tpo -c gthread.c -o gthread.o >/dev/null 2>&1 gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtimer.lo -MD -MP -MF .deps/gtimer.Tpo -c gtimer.c -o gtimer.o >/dev/null 2>&1 mv -f .deps/gstringchunk.Tpo .deps/gstringchunk.Plo gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gthreadpool.lo -MD -MP -MF .deps/gthreadpool.Tpo -c gthreadpool.c -o gthreadpool.o >/dev/null 2>&1 mv -f .deps/gthread.Tpo .deps/gthread.Plo gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstring.lo -MD -MP -MF .deps/gstring.Tpo -c gstring.c -o gstring.o >/dev/null 2>&1 mv -f .deps/gtimer.Tpo .deps/gtimer.Plo mv -f .deps/gthreadpool.Tpo .deps/gthreadpool.Plo gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtimezone.lo -MD -MP -MF .deps/gtimezone.Tpo -c gtimezone.c -o gtimezone.o >/dev/null 2>&1 mv -f .deps/gstring.Tpo .deps/gstring.Plo gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtestutils.lo -MD -MP -MF .deps/gtestutils.Tpo -c gtestutils.c -o gtestutils.o >/dev/null 2>&1 mv -f .deps/gtimezone.Tpo .deps/gtimezone.Plo mv -f .deps/gtestutils.Tpo .deps/gtestutils.Plo gmake[4]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib' gmake[3]: *** [all-recursive] Error 1 gmake[3]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3' gmake: *** [all] Error 2 *** Error code 1 Stop in /basejail/usr/ports/devel/glib20. *** Error code 1 Stop in /basejail/usr/ports/devel/glib20. --------------070802050904050904000506-- From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 08:00:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CA3A06E7 for ; Thu, 21 Mar 2013 08:00:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id BCE65FA5 for ; Thu, 21 Mar 2013 08:00:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2L801N7017356 for ; Thu, 21 Mar 2013 08:00:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2L801Oq017355; Thu, 21 Mar 2013 08:00:01 GMT (envelope-from gnats) Date: Thu, 21 Mar 2013 08:00:01 GMT Message-Id: <201303210800.r2L801Oq017355@freefall.freebsd.org> To: gnome@FreeBSD.org From: Beeblebrox Subject: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Beeblebrox List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 08:00:01 -0000 The following reply was made to PR ports/177077; it has been noted by GNATS. From: Beeblebrox To: kwm@freebsd.org Cc: gnome@freebsd.org, bug-followup@FreeBSD.org Subject: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 Date: Thu, 21 Mar 2013 09:55:30 +0200 On 3/18/13, kwm@freebsd.org wrote: > Synopsis: devel/glibmm does not compile: Unknown component libsigc++20 > > State-Changed-From-To: open->closed > State-Changed-By: kwm > State-Changed-When: Mon Mar 18 20:52:43 UTC 2013 > State-Changed-Why: > Please update your ports tree, the libsigc++20 USE_GNOME component was > added > on March 8th together with glib and gtk updates. I suspect your ports tree > isn't in a consistent state. > > http://www.freebsd.org/cgi/query-pr.cgi?pr=177077 > Issue persists, ports tree is at Revision: 314816. Ports had been updated before filing the PR. devel/libsigc++20 was in the ports tree at time of filing the PR; it compiled & installed without any problems. From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 08:06:25 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1B724A1F; Thu, 21 Mar 2013 08:06:25 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from fep12.mx.upcmail.net (fep12.mx.upcmail.net [62.179.121.32]) by mx1.freebsd.org (Postfix) with ESMTP id 0885175; Thu, 21 Mar 2013 08:06:23 +0000 (UTC) Received: from edge03.upcmail.net ([192.168.13.238]) by viefep12-int.chello.at (InterMail vM.8.01.05.05 201-2260-151-110-20120111) with ESMTP id <20130321080617.VWHP14414.viefep12-int.chello.at@edge03.upcmail.net>; Thu, 21 Mar 2013 09:06:17 +0100 Received: from [127.0.0.1] ([178.84.132.32]) by edge03.upcmail.net with edge id E86G1l01W0i5fp60386Gc8; Thu, 21 Mar 2013 09:06:17 +0100 X-SourceIP: 178.84.132.32 Message-ID: <514ABF7A.9060205@rainbow-runner.nl> Date: Thu, 21 Mar 2013 09:06:18 +0100 From: Koop Mast User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130307 Thunderbird/17.0.4 MIME-Version: 1.0 To: Beeblebrox Subject: Re: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 References: <201303182054.r2IKsQ8N014289@freefall.freebsd.org> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 130320-1, 20-03-2013), Outbound message X-Antivirus-Status: Clean Cc: gnome@freebsd.org, kwm@freebsd.org, bug-followup@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 08:06:25 -0000 On 21-3-2013 8:55, Beeblebrox wrote: > On 3/18/13, kwm@freebsd.org wrote: >> Synopsis: devel/glibmm does not compile: Unknown component libsigc++20 >> >> >> > Issue persists, ports tree is at Revision: 314816. Ports had been > updated before filing the PR. devel/libsigc++20 was in the ports tree > at time of filing the PR; it compiled & installed without any > problems. Where you using Marcuscom ports? If that is true please mention it that your report. But the libsigc++20 was indeed missing in bsd.gnome.mk from MC, and I fixed that this morning. From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 08:10:02 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 1F070B75 for ; Thu, 21 Mar 2013 08:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 10154CF for ; Thu, 21 Mar 2013 08:10:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2L8A1pw019209 for ; Thu, 21 Mar 2013 08:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2L8A1dM019208; Thu, 21 Mar 2013 08:10:01 GMT (envelope-from gnats) Date: Thu, 21 Mar 2013 08:10:01 GMT Message-Id: <201303210810.r2L8A1dM019208@freefall.freebsd.org> To: gnome@FreeBSD.org From: Koop Mast Subject: Re: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Koop Mast List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 08:10:02 -0000 The following reply was made to PR ports/177077; it has been noted by GNATS. From: Koop Mast To: Beeblebrox Cc: kwm@freebsd.org, gnome@freebsd.org, bug-followup@FreeBSD.org Subject: Re: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 Date: Thu, 21 Mar 2013 09:06:18 +0100 On 21-3-2013 8:55, Beeblebrox wrote: > On 3/18/13, kwm@freebsd.org wrote: >> Synopsis: devel/glibmm does not compile: Unknown component libsigc++20 >> >> >> > Issue persists, ports tree is at Revision: 314816. Ports had been > updated before filing the PR. devel/libsigc++20 was in the ports tree > at time of filing the PR; it compiled & installed without any > problems. Where you using Marcuscom ports? If that is true please mention it that your report. But the libsigc++20 was indeed missing in bsd.gnome.mk from MC, and I fixed that this morning. From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 08:10:04 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 333B5B78 for ; Thu, 21 Mar 2013 08:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 2475FD2 for ; Thu, 21 Mar 2013 08:10:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2L8A3kH019227 for ; Thu, 21 Mar 2013 08:10:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2L8A3p6019226; Thu, 21 Mar 2013 08:10:03 GMT (envelope-from gnats) Date: Thu, 21 Mar 2013 08:10:03 GMT Message-Id: <201303210810.r2L8A3p6019226@freefall.freebsd.org> To: gnome@FreeBSD.org From: Konstantin Vasilev Subject: Re: ports/177069: devel/glib20: update of glib-2.28.8_5 to 2.34.3 in jail failed X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Konstantin Vasilev List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 08:10:04 -0000 The following reply was made to PR ports/177069; it has been noted by GNATS. From: Konstantin Vasilev To: bug-followup@FreeBSD.org, kvasilev@cellnetrix.com Cc: Subject: Re: ports/177069: devel/glib20: update of glib-2.28.8_5 to 2.34.3 in jail failed Date: Thu, 21 Mar 2013 11:57:30 +0400 This is a multi-part message in MIME format. --------------080105060902070307030408 Content-Type: text/plain; charset=KOI8-R Content-Transfer-Encoding: 7bit Looks like something wrong with my basejail after upgrade from 9.0-release to 9.1-release with ezjail. Same problems here http://forums.freebsd.org/showthread.php?t=38558. Requested info attached. Thank you for your attention. --------------080105060902070307030408 Content-Type: text/plain; charset=windows-1251; name="glib20.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="glib20.txt" ===> Building for glib-2.34.3 gmake all-recursive gmake[1]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3' Making all in . gmake[2]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3' gmake[2]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3' Making all in m4macros gmake[2]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/m4macros' gmake[2]: Nothing to be done for `all'. gmake[2]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/m4macros' Making all in glib gmake[2]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib' gmake all-recursive gmake[3]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib' Making all in libcharset gmake[4]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib/libcharset' gmake[4]: Nothing to be done for `all'. gmake[4]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib/libcharset' Making all in update-pcre gmake[4]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib/update-pcre' gmake[4]: Nothing to be done for `all'. gmake[4]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib/update-pcre' Making all in . gmake[4]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib' /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstrfuncs.lo -MD -MP -MF .deps/gstrfuncs.Tpo -c -o gstrfuncs.lo gstrfuncs.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstring.lo -MD -MP -MF .deps/gstring.Tpo -c -o gstring.lo gstring.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstringchunk.lo -MD -MP -MF .deps/gstringchunk.Tpo -c -o gstringchunk.lo gstringchunk.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtestutils.lo -MD -MP -MF .deps/gtestutils.Tpo -c -o gtestutils.lo gtestutils.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gthread.lo -MD -MP -MF .deps/gthread.Tpo -c -o gthread.lo gthread.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gthreadpool.lo -MD -MP -MF .deps/gthreadpool.Tpo -c -o gthreadpool.lo gthreadpool.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtimer.lo -MD -MP -MF .deps/gtimer.Tpo -c -o gtimer.lo gtimer.c /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool --tag=CC --mode=compile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtimezone.lo -MD -MP -MF .deps/gtimezone.Tpo -c -o gtimezone.lo gtimezone.c gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstring.lo -MD -MP -MF .deps/gstring.Tpo -c gstring.c -fPIC -DPIC -o .libs/gstring.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstringchunk.lo -MD -MP -MF .deps/gstringchunk.Tpo -c gstringchunk.c -fPIC -DPIC -o .libs/gstringchunk.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstrfuncs.lo -MD -MP -MF .deps/gstrfuncs.Tpo -c gstrfuncs.c -fPIC -DPIC -o .libs/gstrfuncs.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gthread.lo -MD -MP -MF .deps/gthread.Tpo -c gthread.c -fPIC -DPIC -o .libs/gthread.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gthreadpool.lo -MD -MP -MF .deps/gthreadpool.Tpo -c gthreadpool.c -fPIC -DPIC -o .libs/gthreadpool.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtimezone.lo -MD -MP -MF .deps/gtimezone.Tpo -c gtimezone.c -fPIC -DPIC -o .libs/gtimezone.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtestutils.lo -MD -MP -MF .deps/gtestutils.Tpo -c gtestutils.c -fPIC -DPIC -o .libs/gtestutils.o gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtimer.lo -MD -MP -MF .deps/gtimer.Tpo -c gtimer.c -fPIC -DPIC -o .libs/gtimer.o gstrfuncs.c:330: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'get_C_locale' gstrfuncs.c: In function 'g_ascii_strtod': gstrfuncs.c:700: warning: implicit declaration of function 'strtod_l' gstrfuncs.c:700: warning: implicit declaration of function 'get_C_locale' gstrfuncs.c: In function 'g_ascii_formatd': gstrfuncs.c:902: error: 'locale_t' undeclared (first use in this function) gstrfuncs.c:902: error: (Each undeclared identifier is reported only once gstrfuncs.c:902: error: for each function it appears in.) gstrfuncs.c:902: error: expected ';' before 'old_locale' gstrfuncs.c:904: error: 'old_locale' undeclared (first use in this function) gstrfuncs.c:904: warning: implicit declaration of function 'uselocale' gstrfuncs.c: In function 'g_ascii_strtoull': gstrfuncs.c:1148: warning: implicit declaration of function 'strtoull_l' gstrfuncs.c: In function 'g_ascii_strtoll': gstrfuncs.c:1195: warning: implicit declaration of function 'strtoll_l' gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstringchunk.lo -MD -MP -MF .deps/gstringchunk.Tpo -c gstringchunk.c -o gstringchunk.o >/dev/null 2>&1 gmake[4]: *** [gstrfuncs.lo] Error 1 gmake[4]: *** Waiting for unfinished jobs.... gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gthread.lo -MD -MP -MF .deps/gthread.Tpo -c gthread.c -o gthread.o >/dev/null 2>&1 gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtimer.lo -MD -MP -MF .deps/gtimer.Tpo -c gtimer.c -o gtimer.o >/dev/null 2>&1 mv -f .deps/gstringchunk.Tpo .deps/gstringchunk.Plo gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gthreadpool.lo -MD -MP -MF .deps/gthreadpool.Tpo -c gthreadpool.c -o gthreadpool.o >/dev/null 2>&1 mv -f .deps/gthread.Tpo .deps/gthread.Plo gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gstring.lo -MD -MP -MF .deps/gstring.Tpo -c gstring.c -o gstring.o >/dev/null 2>&1 mv -f .deps/gtimer.Tpo .deps/gtimer.Plo mv -f .deps/gthreadpool.Tpo .deps/gthreadpool.Plo gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtimezone.lo -MD -MP -MF .deps/gtimezone.Tpo -c gtimezone.c -o gtimezone.o >/dev/null 2>&1 mv -f .deps/gstring.Tpo .deps/gstring.Plo gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=\"GLib\" -DG_DISABLE_CAST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -pipe -fno-strict-aliasing -Wall -MT gtestutils.lo -MD -MP -MF .deps/gtestutils.Tpo -c gtestutils.c -o gtestutils.o >/dev/null 2>&1 mv -f .deps/gtimezone.Tpo .deps/gtimezone.Plo mv -f .deps/gtestutils.Tpo .deps/gtestutils.Plo gmake[4]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib' gmake[3]: *** [all-recursive] Error 1 gmake[3]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib' gmake[2]: *** [all] Error 2 gmake[2]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3/glib' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/work/glib-2.34.3' gmake: *** [all] Error 2 *** Error code 1 Stop in /basejail/usr/ports/devel/glib20. *** Error code 1 Stop in /basejail/usr/ports/devel/glib20. --------------080105060902070307030408-- From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 08:10:34 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 22BE9C2A for ; Thu, 21 Mar 2013 08:10:34 +0000 (UTC) (envelope-from rsb@berentweb.com) Received: from mail-qa0-f48.google.com (mail-qa0-f48.google.com [209.85.216.48]) by mx1.freebsd.org (Postfix) with ESMTP id D8246E2 for ; Thu, 21 Mar 2013 08:10:33 +0000 (UTC) Received: by mail-qa0-f48.google.com with SMTP id hu16so714179qab.14 for ; Thu, 21 Mar 2013 01:10:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=berentweb.com; s=google; h=mime-version:x-received:sender:x-originating-ip:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type; bh=UzxywubZ5MiB7tyVmOYJQrLtwl8FsSvkcADhsrXAZWI=; b=gSRqZWRFx8Bu/UVl3pBsy99Wef6vyVUxtYtUvZiwizp2B94QLhwtp0n4p9qgJPnRGQ b0HvZOPd8JYQBpixz+cQCcQr2qlfrXIfpizHbpnO28tJWWSzLEWTFbOHXaPCRX3oSPzQ Y7DlEJsI3Qde1fiRaNdxyJRunOK+rS2SU8X88= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-received:sender:x-originating-ip:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type:x-gm-message-state; bh=UzxywubZ5MiB7tyVmOYJQrLtwl8FsSvkcADhsrXAZWI=; b=jUZj7oGVf6n2nlrCpH5FPH9ZtFp5mAD9aWDKpS517uXbeLSD1WK1wFuKyoYDUo0bqO gKMfNqxxjXN/LR/aKpIcIcublKHkltrC89mdFEuBCv6chvRyVLNxEkFTlkvqMn5Dduyr fAMK15JYW6qlLOqHvX9JvmdjGIJAEX/yPfGTfxGc3Nw29kDa66/YXWqJWahZRHlFet4S 9GmStx47IlJXPJOIqNuwD8TdyRVglHLl7EbaWtOwyKqRBQGhb0f4TK1J2FJ3mfiajAWW gCtV70XV7q0iXD6BvTLGys1hRBkNSRYFTbRzqzp/xo3fEp6kOaNyFjk/6B5HCh9XfY2e k3pw== MIME-Version: 1.0 X-Received: by 10.224.210.135 with SMTP id gk7mr1036163qab.57.1363853427590; Thu, 21 Mar 2013 01:10:27 -0700 (PDT) Sender: rsb@berentweb.com Received: by 10.224.123.81 with HTTP; Thu, 21 Mar 2013 01:10:27 -0700 (PDT) X-Originating-IP: [83.66.209.77] In-Reply-To: <514ABF7A.9060205@rainbow-runner.nl> References: <201303182054.r2IKsQ8N014289@freefall.freebsd.org> <514ABF7A.9060205@rainbow-runner.nl> Date: Thu, 21 Mar 2013 10:10:27 +0200 X-Google-Sender-Auth: df9JGBHR8AmXCMU2wvgamMPcy7E Message-ID: Subject: Re: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 From: Beeblebrox To: Koop Mast Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQmUaBgQfyfORsTTU23RVLkNPIUpQxpb9ybAyJ+V0jxdZjnrQSrn1EV7xmCLkODWJGDD2uA9 Cc: gnome@freebsd.org, kwm@freebsd.org, bug-followup@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 08:10:34 -0000 On 3/21/13, Koop Mast wrote: > On 21-3-2013 8:55, Beeblebrox wrote: >> On 3/18/13, kwm@freebsd.org wrote: >>> Synopsis: devel/glibmm does not compile: Unknown component libsigc++20 >>> >>> >>> >> Issue persists, ports tree is at Revision: 314816. Ports had been >> updated before filing the PR. devel/libsigc++20 was in the ports tree >> at time of filing the PR; it compiled & installed without any >> problems. > Where you using Marcuscom ports? If that is true please mention it that > your report. But the libsigc++20 was indeed missing in bsd.gnome.mk from > MC, and I fixed that this morning. Hi, yes I am using both marcuscom and xorg ports, also using portshaker to merge all 3. However, I tested the make problem in the pristine svn repo of ports (and not the merged repo) before reporting the PR. From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 08:20:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D38FDDF for ; Thu, 21 Mar 2013 08:20:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id C502618E for ; Thu, 21 Mar 2013 08:20:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2L8K1Mi022785 for ; Thu, 21 Mar 2013 08:20:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2L8K1Um022784; Thu, 21 Mar 2013 08:20:01 GMT (envelope-from gnats) Date: Thu, 21 Mar 2013 08:20:01 GMT Message-Id: <201303210820.r2L8K1Um022784@freefall.freebsd.org> To: gnome@FreeBSD.org From: Beeblebrox Subject: Re: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Beeblebrox List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 08:20:01 -0000 The following reply was made to PR ports/177077; it has been noted by GNATS. From: Beeblebrox To: Koop Mast Cc: kwm@freebsd.org, gnome@freebsd.org, bug-followup@freebsd.org Subject: Re: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 Date: Thu, 21 Mar 2013 10:10:27 +0200 On 3/21/13, Koop Mast wrote: > On 21-3-2013 8:55, Beeblebrox wrote: >> On 3/18/13, kwm@freebsd.org wrote: >>> Synopsis: devel/glibmm does not compile: Unknown component libsigc++20 >>> >>> >>> >> Issue persists, ports tree is at Revision: 314816. Ports had been >> updated before filing the PR. devel/libsigc++20 was in the ports tree >> at time of filing the PR; it compiled & installed without any >> problems. > Where you using Marcuscom ports? If that is true please mention it that > your report. But the libsigc++20 was indeed missing in bsd.gnome.mk from > MC, and I fixed that this morning. Hi, yes I am using both marcuscom and xorg ports, also using portshaker to merge all 3. However, I tested the make problem in the pristine svn repo of ports (and not the merged repo) before reporting the PR. From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 08:21:23 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 85BA0118 for ; Thu, 21 Mar 2013 08:21:23 +0000 (UTC) (envelope-from rsb@berentweb.com) Received: from mail-qa0-f54.google.com (mail-qa0-f54.google.com [209.85.216.54]) by mx1.freebsd.org (Postfix) with ESMTP id 453F41A0 for ; Thu, 21 Mar 2013 08:21:23 +0000 (UTC) Received: by mail-qa0-f54.google.com with SMTP id hg5so1536346qab.13 for ; Thu, 21 Mar 2013 01:21:17 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=berentweb.com; s=google; h=mime-version:x-received:sender:x-originating-ip:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type; bh=ujyn8OQd2DPbVzXnPKMIjSPEz4OnToBJCVdr6YVnc4c=; b=BklFwAu6p/C4ddMzx54mJRkq35fN1nvYFeXc3xAu+iR3kk/px53zCt1m7KtREsMZSE 6AEz7A7r6/9DsFPVSxzK4t/95HyaEMb8e3GrkxTLjPXCvtDyFOpC2ZewTSzFIXeP6MQJ z2ubzaCe1KPTt+ZTBWkIafz/W6tS7sdOl2loo= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:x-received:sender:x-originating-ip:in-reply-to :references:date:x-google-sender-auth:message-id:subject:from:to:cc :content-type:x-gm-message-state; bh=ujyn8OQd2DPbVzXnPKMIjSPEz4OnToBJCVdr6YVnc4c=; b=XwtmExgaUEEjk4sveiJuWA0C0cvRNUic7e/RRne06sqlZnji5PQSi8EC7Buqz6drey Azxx4K3VxB75i/uru0T6sOunQP2jZUtL6v1CVknRYu1aWaB6vvxY1BZs1XeTExk0U1uf pReJysFdn90k7uH/YZNlP/qs9s/2wb33ejgDzgnb8lWAl+ftKiwKmplKzcEPiM+2EbPL X6OhsWkS9rsaDzSJ1QKnpPtWFFYoJitdciUt3gPyF5ECWOBdcfEm83rPm8Sh6qYADCuc wOWyncGIcYsdCs4h0Z1BwPhtJvsTmNAHY49eTpX0DWtLtCdQ5UdfmMUmejC+dQkVXuWX iNLA== MIME-Version: 1.0 X-Received: by 10.49.133.195 with SMTP id pe3mr10010319qeb.58.1363854077219; Thu, 21 Mar 2013 01:21:17 -0700 (PDT) Sender: rsb@berentweb.com Received: by 10.224.123.81 with HTTP; Thu, 21 Mar 2013 01:21:17 -0700 (PDT) X-Originating-IP: [83.66.209.77] In-Reply-To: References: <201303182054.r2IKsQ8N014289@freefall.freebsd.org> <514ABF7A.9060205@rainbow-runner.nl> Date: Thu, 21 Mar 2013 10:21:17 +0200 X-Google-Sender-Auth: BXvej1dVboPQA-BkzOmEDN5AshE Message-ID: Subject: Re: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 From: Beeblebrox To: Koop Mast Content-Type: text/plain; charset=ISO-8859-1 X-Gm-Message-State: ALoCoQkmhO3B0j4QOk3T0KD66NWolZInPrJydBLv91PYpJaT0lns3k6s5JLLW7qOic6/Z8riqDNz Cc: gnome@freebsd.org, kwm@freebsd.org, bug-followup@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 08:21:23 -0000 Koop: I apparently made a small error before sending my last message. The port is compiling now. I had also advised Markus of the error yesterday. Solved - Thanks On 3/21/13, Beeblebrox wrote: > On 3/21/13, Koop Mast wrote: >> On 21-3-2013 8:55, Beeblebrox wrote: >>> On 3/18/13, kwm@freebsd.org wrote: >>>> Synopsis: devel/glibmm does not compile: Unknown component libsigc++20 >>>> >>>> >>>> >>> Issue persists, ports tree is at Revision: 314816. Ports had been >>> updated before filing the PR. devel/libsigc++20 was in the ports tree >>> at time of filing the PR; it compiled & installed without any >>> problems. >> Where you using Marcuscom ports? If that is true please mention it that >> your report. But the libsigc++20 was indeed missing in bsd.gnome.mk from >> MC, and I fixed that this morning. > > Hi, yes I am using both marcuscom and xorg ports, also using > portshaker to merge all 3. However, I tested the make problem in the > pristine svn repo of ports (and not the merged repo) before reporting > the PR. > From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 08:30:02 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3A5C9338 for ; Thu, 21 Mar 2013 08:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 2CBA120C for ; Thu, 21 Mar 2013 08:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2L8U1if025271 for ; Thu, 21 Mar 2013 08:30:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2L8U1Md025270; Thu, 21 Mar 2013 08:30:01 GMT (envelope-from gnats) Date: Thu, 21 Mar 2013 08:30:01 GMT Message-Id: <201303210830.r2L8U1Md025270@freefall.freebsd.org> To: gnome@FreeBSD.org From: Beeblebrox Subject: Re: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Beeblebrox List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 08:30:02 -0000 The following reply was made to PR ports/177077; it has been noted by GNATS. From: Beeblebrox To: Koop Mast Cc: kwm@freebsd.org, gnome@freebsd.org, bug-followup@freebsd.org Subject: Re: ports/177077: devel/glibmm does not compile: Unknown component libsigc++20 Date: Thu, 21 Mar 2013 10:21:17 +0200 Koop: I apparently made a small error before sending my last message. The port is compiling now. I had also advised Markus of the error yesterday. Solved - Thanks On 3/21/13, Beeblebrox wrote: > On 3/21/13, Koop Mast wrote: >> On 21-3-2013 8:55, Beeblebrox wrote: >>> On 3/18/13, kwm@freebsd.org wrote: >>>> Synopsis: devel/glibmm does not compile: Unknown component libsigc++20 >>>> >>>> >>>> >>> Issue persists, ports tree is at Revision: 314816. Ports had been >>> updated before filing the PR. devel/libsigc++20 was in the ports tree >>> at time of filing the PR; it compiled & installed without any >>> problems. >> Where you using Marcuscom ports? If that is true please mention it that >> your report. But the libsigc++20 was indeed missing in bsd.gnome.mk from >> MC, and I fixed that this morning. > > Hi, yes I am using both marcuscom and xorg ports, also using > portshaker to merge all 3. However, I tested the make problem in the > pristine svn repo of ports (and not the merged repo) before reporting > the PR. > From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 08:35:30 2013 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id BDABF466 for ; Thu, 21 Mar 2013 08:35:30 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id 9941B25A for ; Thu, 21 Mar 2013 08:35:30 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id r2L8SIdG001598 for ; Thu, 21 Mar 2013 08:28:18 GMT (envelope-from linimon@FreeBSD.org) Date: Thu, 21 Mar 2013 08:28:18 GMT Message-Id: <201303210828.r2L8SIdG001598@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: gnome@FreeBSD.org Subject: FreeBSD ports that you maintain which are currently marked broken X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 08:35:30 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 7.x/8.x/9.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: graphics/py-clutter broken because: bad plist build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=graphics&portname=py-clutter portname: net/opal broken because: does not compile on 9.X build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=opal portname: net/opal3 broken because: chekc ffmpeg build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=net&portname=opal3 portname: x11/gnome-shell broken because: Doesn't build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=gnome-shell If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 08:36:26 2013 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EE84B6D4 for ; Thu, 21 Mar 2013 08:36:26 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id CA9AF2B7 for ; Thu, 21 Mar 2013 08:36:26 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id r2L8TEp6007488 for ; Thu, 21 Mar 2013 08:29:14 GMT (envelope-from linimon@FreeBSD.org) Date: Thu, 21 Mar 2013 08:29:14 GMT Message-Id: <201303210829.r2L8TEp6007488@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: gnome@FreeBSD.org Subject: FreeBSD ports that you maintain which are currently scheduled for deletion X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 08:36:27 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically schedule removal of ports that have been judged to have outlived their usefulness. Often, this is due to a better alternative having become available and/or the cessation of development on the existing port. In some cases, ports are marked for removal because they fail to build and install correctly from their sources, or otherwise fail in operation. The ports, and the reason and date that they have been scheduled for removal, are listed below. If no one has stepped forward before that time to propose a way to fix the problems (such as via a PR), the ports will be deleted. portname: devel/goffice04 description: GLib/GTK+ set of document centric objects and utilities maintainer: gnome@FreeBSD.org deprecated because: depends on libgsf_gnome which is going away, also no users for this port. expiration date: 2013-04-12 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=goffice04 portname: devel/goffice06 description: GLib/GTK+ set of document centric objects and utilities maintainer: gnome@FreeBSD.org deprecated because: depends on libgsf-gnome which is going away. expiration date: 2013-04-12 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=goffice06 portname: devel/goffice1 description: GLib/GTK+ set of document centric objects and utilities maintainer: gnome@FreeBSD.org deprecated because: depends on libgsf_gnome which going away expiration date: 2013-04-12 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=goffice1 portname: devel/libgsf-gnome description: A GNOME wrapper for libgsf maintainer: gnome@FreeBSD.org deprecated because: -gnome support in libgsf is dropped in newer versions. expiration date: 2013-04-12 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=libgsf-gnome portname: devel/present description: A library for reading Microsoft PowerPoint(tm) documents maintainer: gnome@FreeBSD.org deprecated because: depends on libgsf_gnome (via goffice1) which going away. expiration date: 2013-04-12 build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=devel&portname=present If this problem is one that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 14:44:12 2013 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id DEEF5D8A for ; Thu, 21 Mar 2013 14:44:12 +0000 (UTC) (envelope-from zaphod@berentweb.com) Received: from sam.nabble.com (sam.nabble.com [216.139.236.26]) by mx1.freebsd.org (Postfix) with ESMTP id C7CB3ECB for ; Thu, 21 Mar 2013 14:44:12 +0000 (UTC) Received: from [192.168.236.26] (helo=sam.nabble.com) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1UIgiy-0005ba-Ec for freebsd-gnome@freebsd.org; Thu, 21 Mar 2013 07:44:12 -0700 Date: Thu, 21 Mar 2013 07:44:12 -0700 (PDT) From: Beeblebrox To: freebsd-gnome@freebsd.org Message-ID: <1363877052438-5797629.post@n5.nabble.com> Subject: use webkit-gtk3 port instead of webkit-gtk2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 14:44:12 -0000 How can I specify in /etc/make.conf the preferred gtk version/port? Currently both webkit-gtk2 AND webkit-gtk3 get built and installed. I don't think there is need for both of them? how can I override the port version? Thanks & Regards. -- View this message in context: http://freebsd.1045724.n5.nabble.com/use-webkit-gtk3-port-instead-of-webkit-gtk2-tp5797629.html Sent from the freebsd-gnome mailing list archive at Nabble.com. From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 15:36:06 2013 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3CC24DD4 for ; Thu, 21 Mar 2013 15:36:06 +0000 (UTC) (envelope-from kwm@rainbow-runner.nl) Received: from fep17.mx.upcmail.net (fep17.mx.upcmail.net [62.179.121.37]) by mx1.freebsd.org (Postfix) with ESMTP id 87B3F261 for ; Thu, 21 Mar 2013 15:36:05 +0000 (UTC) Received: from edge03.upcmail.net ([192.168.13.238]) by viefep17-int.chello.at (InterMail vM.8.01.05.05 201-2260-151-110-20120111) with ESMTP id <20130321153603.MUAG11712.viefep17-int.chello.at@edge03.upcmail.net>; Thu, 21 Mar 2013 16:36:03 +0100 Received: from [127.0.0.1] ([178.84.132.32]) by edge03.upcmail.net with edge id EFc21l01H0i5fp603Fc2Tw; Thu, 21 Mar 2013 16:36:03 +0100 X-SourceIP: 178.84.132.32 Message-ID: <514B28E4.1040306@rainbow-runner.nl> Date: Thu, 21 Mar 2013 16:36:04 +0100 From: Koop Mast User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130307 Thunderbird/17.0.4 MIME-Version: 1.0 To: Beeblebrox Subject: Re: use webkit-gtk3 port instead of webkit-gtk2 References: <1363877052438-5797629.post@n5.nabble.com> In-Reply-To: <1363877052438-5797629.post@n5.nabble.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-Antivirus: avast! (VPS 130321-1, 21-03-2013), Outbound message X-Antivirus-Status: Clean Cc: freebsd-gnome@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 15:36:06 -0000 On 21-3-2013 15:44, Beeblebrox wrote: > How can I specify in /etc/make.conf the preferred gtk version/port? Currently > both webkit-gtk2 AND webkit-gtk3 get built and installed. I don't think > there is need for both of them? how can I override the port version? > > Thanks & Regards. The only way is to not install any ports that either use the gtk2 or gtk3 version. Like the name says, webkit-gtk2 is build against gtk2 and can't be linked to gtk3 programs. And the other way around the same goes. So sadly your stuck with two webkit ports installed. -Koop From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 15:58:12 2013 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id CA95DC17 for ; Thu, 21 Mar 2013 15:58:12 +0000 (UTC) (envelope-from zaphod@berentweb.com) Received: from sam.nabble.com (sam.nabble.com [216.139.236.26]) by mx1.freebsd.org (Postfix) with ESMTP id B21075EE for ; Thu, 21 Mar 2013 15:58:12 +0000 (UTC) Received: from [192.168.236.26] (helo=sam.nabble.com) by sam.nabble.com with esmtp (Exim 4.72) (envelope-from ) id 1UIhsZ-0001Kk-DI for freebsd-gnome@freebsd.org; Thu, 21 Mar 2013 08:58:11 -0700 Date: Thu, 21 Mar 2013 08:58:11 -0700 (PDT) From: Beeblebrox To: freebsd-gnome@freebsd.org Message-ID: <1363881491406-5797671.post@n5.nabble.com> In-Reply-To: <514B28E4.1040306@rainbow-runner.nl> References: <1363877052438-5797629.post@n5.nabble.com> <514B28E4.1040306@rainbow-runner.nl> Subject: Re: use webkit-gtk3 port instead of webkit-gtk2 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 15:58:12 -0000 Thank you for the help & info... -- View this message in context: http://freebsd.1045724.n5.nabble.com/use-webkit-gtk3-port-instead-of-webkit-gtk2-tp5797629p5797671.html Sent from the freebsd-gnome mailing list archive at Nabble.com. From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 16:51:46 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id EBB03E70 for ; Thu, 21 Mar 2013 16:51:46 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-ve0-f173.google.com (mail-ve0-f173.google.com [209.85.128.173]) by mx1.freebsd.org (Postfix) with ESMTP id B57DDB10 for ; Thu, 21 Mar 2013 16:51:46 +0000 (UTC) Received: by mail-ve0-f173.google.com with SMTP id oz10so2647829veb.32 for ; Thu, 21 Mar 2013 09:51:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=4uGgGA/92HcKiFEDRwqKj/UUkafGTLHb/fsceaUb8Bw=; b=l2lH+RNpRodiP4sahc95vyg5GdXfIoow/9r6x5Md4BlW6FonsSHvXTDlkmZJo4vxCH pSoDUGey7w+cSWHbRnhFIEU6ebQPzqjFJS5+cy8tK8V4wAoHkVKaHaGwtZHe9JuLbGS1 0KtJ87Xad77ABir/NTjYHmcpZsw+9lZ/lcpkSc6ujE+JQiHJTSx9BEYh7JUnP0OoOHz3 5NIA1WejvdxSGz27YZ+N2lsdp6gf275NAkRpXkOtbX5Y1oG6nUDBBcTPK04qICIN1LwK cSg+51o9vAHtK2bUoiPdCtLZuRZmhuamqUXRHUTQa5on0BhzdmikvZTixW6ZyDQOq8I6 5wDg== MIME-Version: 1.0 X-Received: by 10.52.20.177 with SMTP id o17mr12649140vde.17.1363884706267; Thu, 21 Mar 2013 09:51:46 -0700 (PDT) Received: by 10.58.74.197 with HTTP; Thu, 21 Mar 2013 09:51:46 -0700 (PDT) Date: Thu, 21 Mar 2013 11:51:46 -0500 Message-ID: Subject: MATE ports have been moved to GitHub. From: Jeremy Messenger To: FreeBSD GNOME Users Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 16:51:47 -0000 Hello all, I just have created mate-ports in the GitHub that should make everyone to collaborate much easier. IE: clone, pull request, wiki, bug report and etc all in one. I am pretty noob with GitHub and even git itself, so be patient with me to learn there if I make mistake or so. https://github.com/jlmess77/mate-ports I have updated the TODO-mate for what it needs to be done in there. I will update the README in there to show how to use git + marcusmerge.sh for now until I (or someone) fork marcusmerge.sh to matemerge.sh that use git stuff. As for now, both MarcusCom CVS and GitHub mate-ports are exactly same until I (and others) start to work in GitHub. BTW: Sorry for taking it so long, but better late than never! -- mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 17:06:58 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 5838F2E1 for ; Thu, 21 Mar 2013 17:06:58 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-ve0-f175.google.com (mail-ve0-f175.google.com [209.85.128.175]) by mx1.freebsd.org (Postfix) with ESMTP id 1D057D12 for ; Thu, 21 Mar 2013 17:06:58 +0000 (UTC) Received: by mail-ve0-f175.google.com with SMTP id cy12so2612587veb.20 for ; Thu, 21 Mar 2013 10:06:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:content-transfer-encoding; bh=99QIXAzlyqYCS7WnYpS8myEZfLkNz/OojZXBtG3RcKU=; b=S2stBEPZ8bEzzAxsa0VQn8fxxJ6+T0xb8wiuURN4xUdg+OcHUjcHPh1wnTIa+vq9dw fuI1dBf8rBh5jnvfHTiML0eoh40WJZh/0B0PscAexy0GG7YJzWQQ/MYC/uNCUCKPT9Hm Ju59Sz7oeD/eBP3IQz02ZqX5/BQs4MShohCOdZLkW2Srqp8vikhUeKJOQOhv64vNnlFa 2UpU21m4dGZvI+h4txXCqSCdaeNQoa3uG5E2hTZKtQk5PYSftwurfAimD3k0DAXIyIlZ pchlKWuZbQGPo2Nxf3QcgDAe7NAaEDbBtlK7C6jdfLGiN1geb0tfhzENL9Qeh8lm5mvZ Wjtg== MIME-Version: 1.0 X-Received: by 10.52.20.177 with SMTP id o17mr12714616vde.17.1363885617358; Thu, 21 Mar 2013 10:06:57 -0700 (PDT) Received: by 10.58.74.197 with HTTP; Thu, 21 Mar 2013 10:06:56 -0700 (PDT) In-Reply-To: <201303210810.r2L8A3p6019226@freefall.freebsd.org> References: <201303210810.r2L8A3p6019226@freefall.freebsd.org> Date: Thu, 21 Mar 2013 12:06:56 -0500 Message-ID: Subject: Re: ports/177069: devel/glib20: update of glib-2.28.8_5 to 2.34.3 in jail failed From: Jeremy Messenger To: Konstantin Vasilev Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: gnome@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 17:06:58 -0000 On Thu, Mar 21, 2013 at 3:10 AM, Konstantin Vasilev wrote: > The following reply was made to PR ports/177069; it has been noted by GNA= TS. > > From: Konstantin Vasilev > To: bug-followup@FreeBSD.org, kvasilev@cellnetrix.com > Cc: > Subject: Re: ports/177069: devel/glib20: update of glib-2.28.8_5 to 2.34= .3 > in jail failed > Date: Thu, 21 Mar 2013 11:57:30 +0400 > > This is a multi-part message in MIME format. > --------------080105060902070307030408 > Content-Type: text/plain; charset=3DKOI8-R > Content-Transfer-Encoding: 7bit > > Looks like something wrong with my basejail after upgrade from > 9.0-release to 9.1-release with ezjail. > Same problems here http://forums.freebsd.org/showthread.php?t=3D38558. > Requested info attached. > Thank you for your attention. It looks like it's an unclean update between 9.0-R to 9.1-R or something else. I don't really know. Can you create a clean new 9.1-R jail and see if you still have same problem? > --------------080105060902070307030408 > Content-Type: text/plain; charset=3Dwindows-1251; > name=3D"glib20.txt" > Content-Transfer-Encoding: 7bit > Content-Disposition: attachment; > filename=3D"glib20.txt" > > =3D=3D=3D> Building for glib-2.34.3 > gmake all-recursive > gmake[1]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20= /work/glib-2.34.3' > Making all in . > gmake[2]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20= /work/glib-2.34.3' > gmake[2]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/= work/glib-2.34.3' > Making all in m4macros > gmake[2]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20= /work/glib-2.34.3/m4macros' > gmake[2]: Nothing to be done for `all'. > gmake[2]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/= work/glib-2.34.3/m4macros' > Making all in glib > gmake[2]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20= /work/glib-2.34.3/glib' > gmake all-recursive > gmake[3]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20= /work/glib-2.34.3/glib' > Making all in libcharset > gmake[4]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20= /work/glib-2.34.3/glib/libcharset' > gmake[4]: Nothing to be done for `all'. > gmake[4]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/= work/glib-2.34.3/glib/libcharset' > Making all in update-pcre > gmake[4]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20= /work/glib-2.34.3/glib/update-pcre' > gmake[4]: Nothing to be done for `all'. > gmake[4]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/= work/glib-2.34.3/glib/update-pcre' > Making all in . > gmake[4]: Entering directory `/var/ports/basejail/usr/ports/devel/glib20= /work/glib-2.34.3/glib' > /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool -= -tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I= ../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_C= AST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread = -O2 -pipe -fno-strict-aliasing -Wall -MT gstrfuncs.lo -MD -MP -MF .deps/gst= rfuncs.Tpo -c -o gstrfuncs.lo gstrfuncs.c > /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool -= -tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I= ../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_C= AST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread = -O2 -pipe -fno-strict-aliasing -Wall -MT gstring.lo -MD -MP -MF .deps/gstri= ng.Tpo -c -o gstring.lo gstring.c > /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool -= -tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I= ../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_C= AST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread = -O2 -pipe -fno-strict-aliasing -Wall -MT gstringchunk.lo -MD -MP -MF .deps/= gstringchunk.Tpo -c -o gstringchunk.lo gstringchunk.c > /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool -= -tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I= ../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_C= AST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread = -O2 -pipe -fno-strict-aliasing -Wall -MT gtestutils.lo -MD -MP -MF .deps/gt= estutils.Tpo -c -o gtestutils.lo gtestutils.c > /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool -= -tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I= ../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_C= AST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread = -O2 -pipe -fno-strict-aliasing -Wall -MT gthread.lo -MD -MP -MF .deps/gthre= ad.Tpo -c -o gthread.lo gthread.c > /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool -= -tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I= ../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_C= AST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread = -O2 -pipe -fno-strict-aliasing -Wall -MT gthreadpool.lo -MD -MP -MF .deps/g= threadpool.Tpo -c -o gthreadpool.lo gthreadpool.c > /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool -= -tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I= ../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_C= AST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread = -O2 -pipe -fno-strict-aliasing -Wall -MT gtimer.lo -MD -MP -MF .deps/gtimer= .Tpo -c -o gtimer.lo gtimer.c > /bin/sh /var/ports/basejail/usr/ports/devel/glib20/work/gnome-libtool -= -tag=3DCC --mode=3Dcompile cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I= ../glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_C= AST_CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread = -O2 -pipe -fno-strict-aliasing -Wall -MT gtimezone.lo -MD -MP -MF .deps/gti= mezone.Tpo -c -o gtimezone.lo gtimezone.c > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gstring.lo -MD -MP -MF .deps/gstring.Tp= o -c gstring.c -fPIC -DPIC -o .libs/gstring.o > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gstringchunk.lo -MD -MP -MF .deps/gstri= ngchunk.Tpo -c gstringchunk.c -fPIC -DPIC -o .libs/gstringchunk.o > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gstrfuncs.lo -MD -MP -MF .deps/gstrfunc= s.Tpo -c gstrfuncs.c -fPIC -DPIC -o .libs/gstrfuncs.o > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gthread.lo -MD -MP -MF .deps/gthread.Tp= o -c gthread.c -fPIC -DPIC -o .libs/gthread.o > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gthreadpool.lo -MD -MP -MF .deps/gthrea= dpool.Tpo -c gthreadpool.c -fPIC -DPIC -o .libs/gthreadpool.o > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gtimezone.lo -MD -MP -MF .deps/gtimezon= e.Tpo -c gtimezone.c -fPIC -DPIC -o .libs/gtimezone.o > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gtestutils.lo -MD -MP -MF .deps/gtestut= ils.Tpo -c gtestutils.c -fPIC -DPIC -o .libs/gtestutils.o > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gtimer.lo -MD -MP -MF .deps/gtimer.Tpo = -c gtimer.c -fPIC -DPIC -o .libs/gtimer.o > gstrfuncs.c:330: error: expected '=3D', ',', ';', 'asm' or '__attribute_= _' before 'get_C_locale' > gstrfuncs.c: In function 'g_ascii_strtod': > gstrfuncs.c:700: warning: implicit declaration of function 'strtod_l' > gstrfuncs.c:700: warning: implicit declaration of function 'get_C_locale= ' > gstrfuncs.c: In function 'g_ascii_formatd': > gstrfuncs.c:902: error: 'locale_t' undeclared (first use in this functio= n) > gstrfuncs.c:902: error: (Each undeclared identifier is reported only onc= e > gstrfuncs.c:902: error: for each function it appears in.) > gstrfuncs.c:902: error: expected ';' before 'old_locale' > gstrfuncs.c:904: error: 'old_locale' undeclared (first use in this funct= ion) > gstrfuncs.c:904: warning: implicit declaration of function 'uselocale' > gstrfuncs.c: In function 'g_ascii_strtoull': > gstrfuncs.c:1148: warning: implicit declaration of function 'strtoull_l' > gstrfuncs.c: In function 'g_ascii_strtoll': > gstrfuncs.c:1195: warning: implicit declaration of function 'strtoll_l' > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gstringchunk.lo -MD -MP -MF .deps/gstri= ngchunk.Tpo -c gstringchunk.c -o gstringchunk.o >/dev/null 2>&1 > gmake[4]: *** [gstrfuncs.lo] Error 1 > gmake[4]: *** Waiting for unfinished jobs.... > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gthread.lo -MD -MP -MF .deps/gthread.Tp= o -c gthread.c -o gthread.o >/dev/null 2>&1 > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gtimer.lo -MD -MP -MF .deps/gtimer.Tpo = -c gtimer.c -o gtimer.o >/dev/null 2>&1 > mv -f .deps/gstringchunk.Tpo .deps/gstringchunk.Plo > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gthreadpool.lo -MD -MP -MF .deps/gthrea= dpool.Tpo -c gthreadpool.c -o gthreadpool.o >/dev/null 2>&1 > mv -f .deps/gthread.Tpo .deps/gthread.Plo > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gstring.lo -MD -MP -MF .deps/gstring.Tp= o -c gstring.c -o gstring.o >/dev/null 2>&1 > mv -f .deps/gtimer.Tpo .deps/gtimer.Plo > mv -f .deps/gthreadpool.Tpo .deps/gthreadpool.Plo > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gtimezone.lo -MD -MP -MF .deps/gtimezon= e.Tpo -c gtimezone.c -o gtimezone.o >/dev/null 2>&1 > mv -f .deps/gstring.Tpo .deps/gstring.Plo > gnome-libtool: compile: cc -DHAVE_CONFIG_H -I. -I.. -I.. -I../glib -I..= /glib -I.. -I/usr/local/include -DG_LOG_DOMAIN=3D\"GLib\" -DG_DISABLE_CAST_= CHECKS -DGLIB_COMPILATION -DPCRE_STATIC -I/usr/local/include -pthread -O2 -= pipe -fno-strict-aliasing -Wall -MT gtestutils.lo -MD -MP -MF .deps/gtestut= ils.Tpo -c gtestutils.c -o gtestutils.o >/dev/null 2>&1 > mv -f .deps/gtimezone.Tpo .deps/gtimezone.Plo > mv -f .deps/gtestutils.Tpo .deps/gtestutils.Plo > gmake[4]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/= work/glib-2.34.3/glib' > gmake[3]: *** [all-recursive] Error 1 > gmake[3]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/= work/glib-2.34.3/glib' > gmake[2]: *** [all] Error 2 > gmake[2]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/= work/glib-2.34.3/glib' > gmake[1]: *** [all-recursive] Error 1 > gmake[1]: Leaving directory `/var/ports/basejail/usr/ports/devel/glib20/= work/glib-2.34.3' > gmake: *** [all] Error 2 > *** Error code 1 > > Stop in /basejail/usr/ports/devel/glib20. > *** Error code 1 > > Stop in /basejail/usr/ports/devel/glib20. > > --------------080105060902070307030408-- > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" --=20 mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Thu Mar 21 22:41:01 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id D859EA60; Thu, 21 Mar 2013 22:41:01 +0000 (UTC) (envelope-from andy@neu.net) Received: from mail.neu.net (neu.net [199.48.129.194]) by mx1.freebsd.org (Postfix) with ESMTP id 8C994F82; Thu, 21 Mar 2013 22:41:01 +0000 (UTC) Received: from neu.net (neu.net [199.48.129.194]) by mail.neu.net (8.14.6/8.14.5) with ESMTP id r2LMexrR099269; Thu, 21 Mar 2013 18:40:59 -0400 (EDT) (envelope-from andy@neu.net) Date: Thu, 21 Mar 2013 18:40:59 -0400 (EDT) From: AN To: freebsd-ports@freebsd.org Subject: rsvg-cairo.h:33:10: fatal error: 'cairo.h' file not found In-Reply-To: Message-ID: References: User-Agent: Alpine 2.00 (BSF 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; format=flowed; charset=US-ASCII X-Virus-Scanned: clamav-milter 0.97.7 at my.mail.server X-Virus-Status: Clean X-Spam-Status: No, score=0.0 required=4.5 tests=RP_MATCHES_RCVD autolearn=unavailable version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on mail.neu.net Cc: gnome@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 21 Mar 2013 22:41:01 -0000 Trying to install Gnome2 in a Vbox virtual machine fails with: cc: warning: unknown warning option '-Wunsafe-loop-optimizations'; did you mean '-Wout-of-line-declaration'? warning: unknown warning option '-Wunsafe-loop-optimizations'; did you mean '-Wout-of-line-declaration'? [-Wunknown-warning-option] rsvg-convert.c:248:9: warning: 'rsvg_handle_set_size_callback' is deprecated [-Wdeprecated-declarations] rsvg_handle_set_size_callback (rsvg, rsvg_cairo_size_callback, &dimensions, NULL); ^ ./rsvg.h:201:6: note: 'rsvg_handle_set_size_callback' declared here void rsvg_handle_set_size_callback (RsvgHandle * handle, ^ 2 warnings generated. CC rsvg_convert-rsvg-size-callback.o cc: warning: unknown warning option '-Wunsafe-loop-optimizations'; did you mean '-Wout-of-line-declaration'? warning: unknown warning option '-Wunsafe-loop-optimizations'; did you mean '-Wout-of-line-declaration'? [-Wunknown-warning-option] 1 warning generated. CCLD rsvg-convert cc: warning: unknown warning option '-Wunsafe-loop-optimizations'; did you mean '-Wout-of-line-declaration'? GISCAN Rsvg-2.0.gir In file included from :4: In file included from /usr/ports/graphics/librsvg2/work/librsvg-2.36.4/rsvg.h:239: ./rsvg-cairo.h:33:10: fatal error: 'cairo.h' file not found #include ^ 1 error generated. Error while processing the source. gmake[2]: *** [Rsvg-2.0.gir] Error 1 gmake[2]: Leaving directory `/usr/ports/graphics/librsvg2/work/librsvg-2.36.4' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/graphics/librsvg2/work/librsvg-2.36.4' gmake: *** [all] Error 2 *** [do-build] Error code 1 Stop in /usr/ports/graphics/librsvg2. *** [lib-depends] Error code 1 Stop in /usr/ports/x11/gnome-panel. *** [install] Error code 1 Stop in /usr/ports/x11/gnome-panel. *** [lib-depends] Error code 1 Stop in /usr/ports/x11/gnome-applets. *** [install] Error code 1 Stop in /usr/ports/x11/gnome-applets. *** [run-depends] Error code 1 Stop in /usr/ports/x11/gnome2. *** [install] Error code 1 Stop in /usr/ports/x11/gnome2. FreeBSD FBSD-10 10.0-CURRENT FreeBSD 10.0-CURRENT #0 r247825: Mon Mar 4 20:13:02 CST 2013 root@FBSD-10:/usr/obj/usr/src/sys/GENERIC amd64 Ports tree is up to date. Any help is appreciated, thanks in advance. From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 00:44:57 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id A87AF96F for ; Fri, 22 Mar 2013 00:44:57 +0000 (UTC) (envelope-from fiziologus@gmail.com) Received: from mail-vb0-x234.google.com (mail-vb0-x234.google.com [IPv6:2607:f8b0:400c:c02::234]) by mx1.freebsd.org (Postfix) with ESMTP id 6F9203F4 for ; Fri, 22 Mar 2013 00:44:57 +0000 (UTC) Received: by mail-vb0-f52.google.com with SMTP id fa15so2287462vbb.25 for ; Thu, 21 Mar 2013 17:44:57 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:date:message-id:subject:from:to :content-type; bh=fAB91+KdaLRmucTf7oW8FgKCZjGjaB+YpHqCAWNhEFo=; b=OtfjMb31wz8zPUEyACzP3iQ3O6BFMq2Kio0YzZhow8kaZHvj0CX4S1JBh4ip5cT96D UGb6vOR/S307WJ9jdOCWNtPq4JLLZbAjFlUIF3qdOPEH89alitjHUnVvL+ILzwd6plk3 rfVkcZReFq6wdNNhN62re/NWhlQToJ1nQ6c9UJrZgTVUCali5Y8U8Pz0F8DAbkVkbYUI qbUSZ8gTLY83HMg4DqgwPui/o2W8GJ7MyROTHIGRru0dZvkdTLVJvF2bT/pXnZBW9pLU zFMxjvCNYX3xyLnAuj0BJJgcfg2R9l9innUXsZpzTDnuhMYD8I0/ECiW/MG4/x/GUqNt GAHQ== MIME-Version: 1.0 X-Received: by 10.220.90.145 with SMTP id i17mr16185407vcm.25.1363913096892; Thu, 21 Mar 2013 17:44:56 -0700 (PDT) Received: by 10.52.68.66 with HTTP; Thu, 21 Mar 2013 17:44:56 -0700 (PDT) Date: Fri, 22 Mar 2013 04:44:56 +0400 Message-ID: Subject: [graphics/gegl] update error From: green dog To: gnome@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 00:44:57 -0000 # make showconfig ===> The following configuration options are available for gegl-0.2.0_2: CAIRO=on: Cairo graphics library ENSCRIPT=on: Enscript support EXIV2=off: EXIF and IPTC metadata support via exiv2 FFMPEG=off: FFmpeg (WMA, AIFF, AC3, APE...) GRAPHVIZ=off: Graphviz support JASPER=on: JPEG 2000 via JasPer JPEG=on: JPEG image format LIBRSVG2=on: SVG vector graphics via librsvg2 LUA=on: Lua scripting language OPENEXR=off: HDR image format support via OpenEXR OPENRAW=off: RAW camera format support PANGO=on: Pango rendering library PIXBUF=on: GDK-PixBuf library PNG=on: PNG image format SDL=on: Simple Direct Media Layer SIMD=off: Use CPU-specific optimizations SPIRO=on: Spiro support V4L=on: Video 4 Linux support ===> Use 'make config' to modify these settings # make ===> Found saved configuration for gegl-0.2.0_2 ===> Fetching all distfiles required by gegl-0.2.0_2 for building ===> Extracting for gegl-0.2.0_2 => SHA256 Checksum OK for gegl-0.2.0.tar.bz2. ===> Patching for gegl-0.2.0_2 ===> Applying FreeBSD patches for gegl-0.2.0_2 /usr/bin/sed -i.bak -e 's|\(lua\)\(5\.1\)|\1-\2|g ; s|x86_64|amd64|g' /usr/ports/graphics/gegl/work/gegl-0.2.0/configure /usr/bin/sed -i.bak -e 's|/usr/bin/ruby|/usr/bin/env ruby|' /usr/ports/graphics/gegl/work/gegl-0.2.0/tools/gobj2dot.rb ===> gegl-0.2.0_2 depends on executable: enscript - found ===> gegl-0.2.0_2 depends on file: /usr/local/include/linux/videodev.h - found ===> gegl-0.2.0_2 depends on executable: a2x - found ===> gegl-0.2.0_2 depends on file: /usr/local/bin/sdl-config - found ===> gegl-0.2.0_2 depends on executable: gmake - found ===> gegl-0.2.0_2 depends on executable: pkgconf - found ===> gegl-0.2.0_2 depends on file: /usr/local/bin/intltool-extract - found ===> gegl-0.2.0_2 depends on shared library: babl-0.1 - found ===> gegl-0.2.0_2 depends on shared library: cairo - found ===> gegl-0.2.0_2 depends on shared library: jasper - found ===> gegl-0.2.0_2 depends on shared library: jpeg - found ===> gegl-0.2.0_2 depends on shared library: png15 - found ===> gegl-0.2.0_2 depends on shared library: rsvg-2 - found ===> gegl-0.2.0_2 depends on shared library: spiro - found ===> gegl-0.2.0_2 depends on shared library: SDL-1.2.11 - found ===> gegl-0.2.0_2 depends on shared library: intl - found ===> gegl-0.2.0_2 depends on shared library: lua-5.1.1 - found ===> gegl-0.2.0_2 depends on shared library: glib-2.0 - found ===> gegl-0.2.0_2 depends on shared library: pcre - found ===> gegl-0.2.0_2 depends on shared library: gdk_pixbuf-2.0.0 - found ===> gegl-0.2.0_2 depends on shared library: pango-1.0.0 - found ===> Configuring for gegl-0.2.0_2 gegl-0.2.0_2: Needs graphics/graphviz with PANGOCAIRO support enabled. *** Error code 1 Stop in /usr/ports/graphics/gegl. *** Error code 1 Stop in /usr/ports/graphics/gegl. # pkg_info -xE graphviz # if DOCS needs adding dependence, then better add this option in make config/ -- sorry for bad english. From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 03:13:23 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8977159F for ; Fri, 22 Mar 2013 03:13:23 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-ob0-x22d.google.com (mail-ob0-x22d.google.com [IPv6:2607:f8b0:4003:c01::22d]) by mx1.freebsd.org (Postfix) with ESMTP id 5BE38BF3 for ; Fri, 22 Mar 2013 03:13:23 +0000 (UTC) Received: by mail-ob0-f173.google.com with SMTP id dn14so3630501obc.32 for ; Thu, 21 Mar 2013 20:13:23 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=ZwMVjzUAIYUiYIFxmAAtnFeQNNYK36iVQmLDluRPa1s=; b=wvhwFuLvu8ynnrU67DP0XzPgLI2E9FmUFjeGkLzGh9M5Bnv+2tkpLQ2QW66nT7xdFp jBE6uL8No4MLUu10o9Fji0gDbMBrrgtN7IK1sQHzKV30DjZOHnrWbnlicO1KFkG7L2S7 sDAXr1DKo4+ejsD9YfQyaIN4eQNDW1wttmYEfIk4LFVP4rgtcEnBl8i9SjAzjL0ioHZg 58PpiU20Ndx/ikEqs1YGXa5NNhiSunhHmwBvSQLME3SiKqjXhEji3FAo7Bgf4oEEY9f2 GL+UIEzq2dp+sTSo6fdcT6rfHlbbs87B7V3ah6btVDD7KtqTdReDBwYFPfrK3RphI5VO H+Sw== MIME-Version: 1.0 X-Received: by 10.60.22.69 with SMTP id b5mr194183oef.38.1363922002921; Thu, 21 Mar 2013 20:13:22 -0700 (PDT) Sender: kob6558@gmail.com Received: by 10.76.33.7 with HTTP; Thu, 21 Mar 2013 20:13:22 -0700 (PDT) In-Reply-To: References: Date: Thu, 21 Mar 2013 20:13:22 -0700 X-Google-Sender-Auth: EwpAUmeR6G_6lAad9pdFYX7Q1Aw Message-ID: Subject: Re: [graphics/gegl] update error From: Kevin Oberman To: green dog Content-Type: text/plain; charset=UTF-8 Cc: gnome@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 03:13:23 -0000 On Thu, Mar 21, 2013 at 5:44 PM, green dog wrote: > # make showconfig > ===> The following configuration options are available for gegl-0.2.0_2: > CAIRO=on: Cairo graphics library > ENSCRIPT=on: Enscript support > EXIV2=off: EXIF and IPTC metadata support via exiv2 > FFMPEG=off: FFmpeg (WMA, AIFF, AC3, APE...) > GRAPHVIZ=off: Graphviz support > JASPER=on: JPEG 2000 via JasPer > JPEG=on: JPEG image format > LIBRSVG2=on: SVG vector graphics via librsvg2 > LUA=on: Lua scripting language > OPENEXR=off: HDR image format support via OpenEXR > OPENRAW=off: RAW camera format support > PANGO=on: Pango rendering library > PIXBUF=on: GDK-PixBuf library > PNG=on: PNG image format > SDL=on: Simple Direct Media Layer > SIMD=off: Use CPU-specific optimizations > SPIRO=on: Spiro support > V4L=on: Video 4 Linux support > ===> Use 'make config' to modify these settings > > # make > ===> Found saved configuration for gegl-0.2.0_2 > ===> Fetching all distfiles required by gegl-0.2.0_2 for building > ===> Extracting for gegl-0.2.0_2 > => SHA256 Checksum OK for gegl-0.2.0.tar.bz2. > ===> Patching for gegl-0.2.0_2 > ===> Applying FreeBSD patches for gegl-0.2.0_2 > /usr/bin/sed -i.bak -e 's|\(lua\)\(5\.1\)|\1-\2|g ; s|x86_64|amd64|g' > /usr/ports/graphics/gegl/work/gegl-0.2.0/configure > /usr/bin/sed -i.bak -e 's|/usr/bin/ruby|/usr/bin/env ruby|' > /usr/ports/graphics/gegl/work/gegl-0.2.0/tools/gobj2dot.rb > ===> gegl-0.2.0_2 depends on executable: enscript - found > ===> gegl-0.2.0_2 depends on file: /usr/local/include/linux/videodev.h - > found > ===> gegl-0.2.0_2 depends on executable: a2x - found > ===> gegl-0.2.0_2 depends on file: /usr/local/bin/sdl-config - found > ===> gegl-0.2.0_2 depends on executable: gmake - found > ===> gegl-0.2.0_2 depends on executable: pkgconf - found > ===> gegl-0.2.0_2 depends on file: /usr/local/bin/intltool-extract - found > ===> gegl-0.2.0_2 depends on shared library: babl-0.1 - found > ===> gegl-0.2.0_2 depends on shared library: cairo - found > ===> gegl-0.2.0_2 depends on shared library: jasper - found > ===> gegl-0.2.0_2 depends on shared library: jpeg - found > ===> gegl-0.2.0_2 depends on shared library: png15 - found > ===> gegl-0.2.0_2 depends on shared library: rsvg-2 - found > ===> gegl-0.2.0_2 depends on shared library: spiro - found > ===> gegl-0.2.0_2 depends on shared library: SDL-1.2.11 - found > ===> gegl-0.2.0_2 depends on shared library: intl - found > ===> gegl-0.2.0_2 depends on shared library: lua-5.1.1 - found > ===> gegl-0.2.0_2 depends on shared library: glib-2.0 - found > ===> gegl-0.2.0_2 depends on shared library: pcre - found > ===> gegl-0.2.0_2 depends on shared library: gdk_pixbuf-2.0.0 - found > ===> gegl-0.2.0_2 depends on shared library: pango-1.0.0 - found > ===> Configuring for gegl-0.2.0_2 > gegl-0.2.0_2: Needs graphics/graphviz with PANGOCAIRO support enabled. > *** Error code 1 > > Stop in /usr/ports/graphics/gegl. > *** Error code 1 > > Stop in /usr/ports/graphics/gegl. > > # pkg_info -xE graphviz > # > > if DOCS needs adding dependence, then better add this option in make config/ No added dependency for either port. You need to re-build graphviz with the PANGOCAIRO option selected. -- R. Kevin Oberman, Network Engineer E-mail: rkoberman@gmail.com From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 05:17:59 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 3A5E48CF for ; Fri, 22 Mar 2013 05:17:59 +0000 (UTC) (envelope-from kob6558@gmail.com) Received: from mail-ob0-x232.google.com (mail-ob0-x232.google.com [IPv6:2607:f8b0:4003:c01::232]) by mx1.freebsd.org (Postfix) with ESMTP id 0C678189 for ; Fri, 22 Mar 2013 05:17:58 +0000 (UTC) Received: by mail-ob0-f178.google.com with SMTP id wd20so3585410obb.23 for ; Thu, 21 Mar 2013 22:17:58 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:sender:in-reply-to:references:date :x-google-sender-auth:message-id:subject:from:to:cc:content-type; bh=dVB1wIZcRnGnSFaZeIYrPgnlPvDNAxB4S/zVrQT35mI=; b=siPrR6LLnbAtGGsl6IAlAhmW+9ULhJmxKE0TmbM+2rHs7kKGvTQNEkQtEeFyOK3FXY bZCMyPKHWD8esGvrZHiN1eKXdY/rZhOmowYQMRnXDGrzW5N70mrKHSdeU60ETThAveL0 /Q0mHMCcHaXvy52yKbdL93geRaCOESkc7QWBErdXySlJtf5gA7Trtw+YM1A3vR7wbLb7 Xe0EEq/hI+VWT+BIA6B6neI19eu/7hZnPbrlx0Kfit2psTRLeE2PPIMJ92HdG0qr9h0t ypIKrbYsY2dwoK/GAN+znIAaWgdkP8egX9akJvSQtjHXzVsQfVG8MzGIDiBi37C280OL bsEA== MIME-Version: 1.0 X-Received: by 10.60.19.101 with SMTP id d5mr345005oee.115.1363929478569; Thu, 21 Mar 2013 22:17:58 -0700 (PDT) Sender: kob6558@gmail.com Received: by 10.76.33.7 with HTTP; Thu, 21 Mar 2013 22:17:58 -0700 (PDT) In-Reply-To: <5148B845.2060602@yandex.ru> References: <5148B845.2060602@yandex.ru> Date: Thu, 21 Mar 2013 22:17:58 -0700 X-Google-Sender-Auth: -enHQEmg-Gy7Td2V0CN1E9trG7I Message-ID: Subject: Re: databases/libgda4 fails to build with graphviz installed From: Kevin Oberman To: Ruslan Makhmatkhanov Content-Type: text/plain; charset=UTF-8 Cc: FreeBSD GNOME Users X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 05:17:59 -0000 On Tue, Mar 19, 2013 at 12:11 PM, Ruslan Makhmatkhanov wrote: > Kevin Oberman wrote on 19.03.2013 22:59: > >> When I attempted building libgda-4.2.12 it failed wit the error: >> gmake[3]: Entering directory >> `/usr/ports/databases/libgda4/work/libgda-4.2.12/tools/browser/canvas' >> CC browser-canvas.lo >> browser-canvas.c: In function 'popup_export_cb': >> browser-canvas.c:604: warning: null format string >> browser-canvas.c: In function 'browser_canvas_perform_auto_layout': >> browser-canvas.c:937: error: incompatible type for argument 2 of 'agopen' >> browser-canvas.c:937: error: too few arguments to function 'agopen' >> browser-canvas.c:938: warning: implicit declaration of function >> 'agnodeattr' >> browser-canvas.c:971: error: too few arguments to function 'agnode' >> browser-canvas.c:1015: error: too few arguments to function 'agedge' >> >> This path is only taken when graphviz is installed, so a redports or an >> -exp build would not have caught it. When I look up the calls that produce >> the errors, the arguments required have no similarity that I can see to >> those in browser-canvas code. >>> >>> From /usr/local/include/graphviz/cgraph.h: >> >> extern Agraph_t *agopen(char *name, Agdesc_t desc, Agdisc_t * disc); >> While line 937 only passes two arguments. Similar for the remainder. >> >> Is this a version incompatibility with the the graphviz API? > > > I second this. Both 4.2.5 and 4.2.12 fail if graphviz is installed. And get > this if it is not: > browser-canvas.c:33:10: fatal error: 'gvc.h' file not found I just did some more work on this as I had another system where it was building fine. While the code generating the errors was only compiled when graphviz is installed, it is ALSO only compiled when goocanvas is installed. While I need graphviz, I don't know why goocanvas was installed. It had only two packages that depended on it, ruby18-gnome2 and ruby18-goocanvas. I deleted all three packages and libgda4 now builds fine. I suspect that either something I had installed used to need ruby8-goocanvas or I have deleted whatever package caused them to be installed. This does not mean the problem is fixed, of course. If built on a system where goocanvas is required, the issue remains. Clearly the graphviz ABI has changed at some time and libgda4 no longer will work with it. If I have some time I may see if I can find a fix, but I'll admit that now that I don't need it fixed, I may not get far. -- R. Kevin Oberman, Network Engineer E-mail: rkoberman@gmail.com From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 05:51:46 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id DA8B024E for ; Fri, 22 Mar 2013 05:51:46 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-ve0-f174.google.com (mail-ve0-f174.google.com [209.85.128.174]) by mx1.freebsd.org (Postfix) with ESMTP id A154A2D4 for ; Fri, 22 Mar 2013 05:51:46 +0000 (UTC) Received: by mail-ve0-f174.google.com with SMTP id jz10so438971veb.33 for ; Thu, 21 Mar 2013 22:51:45 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=pf7oOIsZUzcB/byc6fcL0CWinox72nZk7VpAQc0MrTc=; b=WAd7IAUyrfrkql13SLXkvIF+ube7rnLm0YPGjaCQoSkXTtR1jQ4T6FWrV7X0D5iwv1 Mv0Cqsr0Aq/pk0p3hl9yvuqD2cMUBpqvBUivK+ZJaCHs5RH+vwXDIrXGlDJT2aI1udXV JMWv7ytjggRd5Irdlf4wXX42oY2CJkHDoW9uh4fQX+duNzD/UUu3Cgg73dXpjdisWZ+F honTalY9Q9etB4vAhTtUjCAarUqOrEyr2rBtr6BSa1S8deidgTgYVf8FLnAUGz6Qz0p+ +yipXiIq8U01Xi4e/9aV3nUDV6NrBJ9igVEOOoCKX5xiXQrmd99lcxpNYbC5a2wppYFR f67A== MIME-Version: 1.0 X-Received: by 10.58.229.69 with SMTP id so5mr672175vec.6.1363931505534; Thu, 21 Mar 2013 22:51:45 -0700 (PDT) Received: by 10.58.74.197 with HTTP; Thu, 21 Mar 2013 22:51:45 -0700 (PDT) In-Reply-To: References: <5148B845.2060602@yandex.ru> Date: Fri, 22 Mar 2013 00:51:45 -0500 Message-ID: Subject: Re: databases/libgda4 fails to build with graphviz installed From: Jeremy Messenger To: Kevin Oberman Content-Type: text/plain; charset=ISO-8859-1 Cc: FreeBSD GNOME Users X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 05:51:46 -0000 On Fri, Mar 22, 2013 at 12:17 AM, Kevin Oberman wrote: > On Tue, Mar 19, 2013 at 12:11 PM, Ruslan Makhmatkhanov > wrote: >> Kevin Oberman wrote on 19.03.2013 22:59: >> >>> When I attempted building libgda-4.2.12 it failed wit the error: >>> gmake[3]: Entering directory >>> `/usr/ports/databases/libgda4/work/libgda-4.2.12/tools/browser/canvas' >>> CC browser-canvas.lo >>> browser-canvas.c: In function 'popup_export_cb': >>> browser-canvas.c:604: warning: null format string >>> browser-canvas.c: In function 'browser_canvas_perform_auto_layout': >>> browser-canvas.c:937: error: incompatible type for argument 2 of 'agopen' >>> browser-canvas.c:937: error: too few arguments to function 'agopen' >>> browser-canvas.c:938: warning: implicit declaration of function >>> 'agnodeattr' >>> browser-canvas.c:971: error: too few arguments to function 'agnode' >>> browser-canvas.c:1015: error: too few arguments to function 'agedge' >>> >>> This path is only taken when graphviz is installed, so a redports or an >>> -exp build would not have caught it. When I look up the calls that produce >>> the errors, the arguments required have no similarity that I can see to >>> those in browser-canvas code. >>>> >>>> From /usr/local/include/graphviz/cgraph.h: >>> >>> extern Agraph_t *agopen(char *name, Agdesc_t desc, Agdisc_t * disc); >>> While line 937 only passes two arguments. Similar for the remainder. >>> >>> Is this a version incompatibility with the the graphviz API? >> >> >> I second this. Both 4.2.5 and 4.2.12 fail if graphviz is installed. And get >> this if it is not: >> browser-canvas.c:33:10: fatal error: 'gvc.h' file not found > > I just did some more work on this as I had another system where it was > building fine. While the code generating the errors was only compiled > when graphviz is installed, it is ALSO only compiled when goocanvas is > installed. While I need graphviz, I don't know why goocanvas was > installed. It had only two packages that depended on it, ruby18-gnome2 > and ruby18-goocanvas. > > I deleted all three packages and libgda4 now builds fine. > > I suspect that either something I had installed used to need > ruby8-goocanvas or I have deleted whatever package caused them to be > installed. > > This does not mean the problem is fixed, of course. If built on a > system where goocanvas is required, the issue remains. Clearly the > graphviz ABI has changed at some time and libgda4 no longer will work > with it. If I have some time I may see if I can find a fix, but I'll > admit that now that I don't need it fixed, I may not get far. I don't really know much about libgda4, but looked in its configure.ac and there are options to disable that. --with-goocanvas=no or --without-goocanvas --with-graphviz=no or --without-graphviz When my system finishes with installing x11/gnome2, I will test and find which one that works then commit it by always disable goocanvas, graphviz and gtksourceview. It should solves this issue. > -- > R. Kevin Oberman, Network Engineer > E-mail: rkoberman@gmail.com > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 06:55:08 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id C644FDAB for ; Fri, 22 Mar 2013 06:55:08 +0000 (UTC) (envelope-from cvs-src@yandex.ru) Received: from forward1h.mail.yandex.net (forward1h.mail.yandex.net [IPv6:2a02:6b8:0:f05::10]) by mx1.freebsd.org (Postfix) with ESMTP id 432AD70F for ; Fri, 22 Mar 2013 06:55:08 +0000 (UTC) Received: from smtp2h.mail.yandex.net (smtp2h.mail.yandex.net [84.201.187.145]) by forward1h.mail.yandex.net (Yandex) with ESMTP id 8A4719E1379; Fri, 22 Mar 2013 10:55:05 +0400 (MSK) Received: from smtp2h.mail.yandex.net (localhost [127.0.0.1]) by smtp2h.mail.yandex.net (Yandex) with ESMTP id 1EC921700857; Fri, 22 Mar 2013 10:55:05 +0400 (MSK) Received: from ip-86-110-189-214.spark-rostov.ru (ip-86-110-189-214.spark-rostov.ru [86.110.189.214]) by smtp2h.mail.yandex.net (nwsmtp/Yandex) with ESMTP id t4ZKevRZ-t4ZKNYt6; Fri, 22 Mar 2013 10:55:04 +0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1363935305; bh=qxE+J2dASZwiOJSmTtRIOLzHErUEH0tYE9+3yqKn95o=; h=Message-ID:Date:From:User-Agent:MIME-Version:To:CC:Subject: References:In-Reply-To:Content-Type:Content-Transfer-Encoding; b=t1tjA5p2iqf1vjj4Bub1YeJxmhnfYUATxdG5aE9NFBrC9p1DR45acnysEtB4v2QQ1 +vywchZHZEUqIaRZdpLjXYgDB5zVVx9P2EaUzK6AW/c6gPZ6t/z3e1gojQu8o+QGk6 Ow4Z+nGbXp6E6ZB4HU0ejatf0LeQzHhki7krHcKM= Message-ID: <514C002A.3040405@yandex.ru> Date: Fri, 22 Mar 2013 10:54:34 +0400 From: Ruslan Makhmatkhanov User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:17.0) Gecko/20130311 Thunderbird/17.0.4 MIME-Version: 1.0 To: Kevin Oberman Subject: Re: databases/libgda4 fails to build with graphviz installed References: <5148B845.2060602@yandex.ru> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: FreeBSD GNOME Users , Jeremy Messenger X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 06:55:08 -0000 Kevin Oberman wrote on 22.03.2013 09:17: > On Tue, Mar 19, 2013 at 12:11 PM, Ruslan Makhmatkhanov > wrote: >> Kevin Oberman wrote on 19.03.2013 22:59: >> >>> When I attempted building libgda-4.2.12 it failed wit the error: >>> gmake[3]: Entering directory >>> `/usr/ports/databases/libgda4/work/libgda-4.2.12/tools/browser/canvas' >>> CC browser-canvas.lo >>> browser-canvas.c: In function 'popup_export_cb': >>> browser-canvas.c:604: warning: null format string >>> browser-canvas.c: In function 'browser_canvas_perform_auto_layout': >>> browser-canvas.c:937: error: incompatible type for argument 2 of 'agopen' >>> browser-canvas.c:937: error: too few arguments to function 'agopen' >>> browser-canvas.c:938: warning: implicit declaration of function >>> 'agnodeattr' >>> browser-canvas.c:971: error: too few arguments to function 'agnode' >>> browser-canvas.c:1015: error: too few arguments to function 'agedge' >>> >>> This path is only taken when graphviz is installed, so a redports or an >>> -exp build would not have caught it. When I look up the calls that produce >>> the errors, the arguments required have no similarity that I can see to >>> those in browser-canvas code. >>>> >>>> From /usr/local/include/graphviz/cgraph.h: >>> >>> extern Agraph_t *agopen(char *name, Agdesc_t desc, Agdisc_t * disc); >>> While line 937 only passes two arguments. Similar for the remainder. >>> >>> Is this a version incompatibility with the the graphviz API? >> >> >> I second this. Both 4.2.5 and 4.2.12 fail if graphviz is installed. And get >> this if it is not: >> browser-canvas.c:33:10: fatal error: 'gvc.h' file not found > > I just did some more work on this as I had another system where it was > building fine. While the code generating the errors was only compiled > when graphviz is installed, it is ALSO only compiled when goocanvas is > installed. While I need graphviz, I don't know why goocanvas was > installed. It had only two packages that depended on it, ruby18-gnome2 > and ruby18-goocanvas. > > I deleted all three packages and libgda4 now builds fine. > > I suspect that either something I had installed used to need > ruby8-goocanvas or I have deleted whatever package caused them to be > installed. > > This does not mean the problem is fixed, of course. If built on a > system where goocanvas is required, the issue remains. Clearly the > graphviz ABI has changed at some time and libgda4 no longer will work > with it. If I have some time I may see if I can find a fix, but I'll > admit that now that I don't need it fixed, I may not get far. Thank you for your investigation. I was able to fix the build by adding --without-goocanvas to databases/libgda4/Makefile:CONFIGURE_ARGS, as Jeremy noted. The only goocanvas-related ports I have: goocanvas-0.15_4 Canvas widget for GTK+ py27-goocanvas-0.14.1_4 GooCanvas python bindings But I didn't bother to remove any of them. -- Regards, Ruslan Tinderboxing kills... the drives. From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 08:34:28 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 979A5103 for ; Fri, 22 Mar 2013 08:34:28 +0000 (UTC) (envelope-from fiziologus@gmail.com) Received: from mail-vc0-f177.google.com (mail-vc0-f177.google.com [209.85.220.177]) by mx1.freebsd.org (Postfix) with ESMTP id 5B330DE8 for ; Fri, 22 Mar 2013 08:34:28 +0000 (UTC) Received: by mail-vc0-f177.google.com with SMTP id ia10so2980766vcb.8 for ; Fri, 22 Mar 2013 01:34:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=MrIEuzUFLec9Eaf2E6IziBiEeBu5JlImEJpLnbWkkkw=; b=Q2glRLTLlLtx7NltnaVjbmJYBqBSVRBoFbjtjcJNPCxyTJ20EHhe2Z1/rOzaVD6YDi Z9+iomswNFloqMlHglRyXPeEPiQ02OixKd8qf/nV9YS7te8aCeEar6eAJDuyPaZxBxEK EKD6pAd3jJwmABhNXWpDSak02SeU1z7C3B+HHdbyFcZ52LyZuMCrgWvXX4pri5hrjnpv TeaHAOq/AXo7FMD3dVPn3NB0KeKufKtnYHpaHyGh96k0Zjv9PNTYSlGdZsnPQWS/ajay KqmQ6MTvNp2aqG/6H5nS2o5CgJmrJQhpMueX68GRGuvE3D4aV0v2ySeJURWuoU4kTQj0 RVPw== MIME-Version: 1.0 X-Received: by 10.59.3.9 with SMTP id bs9mr1056665ved.38.1363941267524; Fri, 22 Mar 2013 01:34:27 -0700 (PDT) Received: by 10.52.68.66 with HTTP; Fri, 22 Mar 2013 01:34:27 -0700 (PDT) In-Reply-To: References: Date: Fri, 22 Mar 2013 12:34:27 +0400 Message-ID: Subject: Re: [graphics/gegl] update error From: green dog To: Kevin Oberman Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.14 Cc: gnome@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 08:34:28 -0000 graphviz not installed!! nothing to rebuild. 2013/3/22 Kevin Oberman > On Thu, Mar 21, 2013 at 5:44 PM, green dog wrote: > > # make showconfig > > ===> The following configuration options are available for gegl-0.2.0_2: > > CAIRO=on: Cairo graphics library > > ENSCRIPT=on: Enscript support > > EXIV2=off: EXIF and IPTC metadata support via exiv2 > > FFMPEG=off: FFmpeg (WMA, AIFF, AC3, APE...) > > GRAPHVIZ=off: Graphviz support > > JASPER=on: JPEG 2000 via JasPer > > JPEG=on: JPEG image format > > LIBRSVG2=on: SVG vector graphics via librsvg2 > > LUA=on: Lua scripting language > > OPENEXR=off: HDR image format support via OpenEXR > > OPENRAW=off: RAW camera format support > > PANGO=on: Pango rendering library > > PIXBUF=on: GDK-PixBuf library > > PNG=on: PNG image format > > SDL=on: Simple Direct Media Layer > > SIMD=off: Use CPU-specific optimizations > > SPIRO=on: Spiro support > > V4L=on: Video 4 Linux support > > ===> Use 'make config' to modify these settings > > > > # make > > ===> Found saved configuration for gegl-0.2.0_2 > > ===> Fetching all distfiles required by gegl-0.2.0_2 for building > > ===> Extracting for gegl-0.2.0_2 > > => SHA256 Checksum OK for gegl-0.2.0.tar.bz2. > > ===> Patching for gegl-0.2.0_2 > > ===> Applying FreeBSD patches for gegl-0.2.0_2 > > /usr/bin/sed -i.bak -e 's|\(lua\)\(5\.1\)|\1-\2|g ; s|x86_64|amd64|g' > > /usr/ports/graphics/gegl/work/gegl-0.2.0/configure > > /usr/bin/sed -i.bak -e 's|/usr/bin/ruby|/usr/bin/env ruby|' > > /usr/ports/graphics/gegl/work/gegl-0.2.0/tools/gobj2dot.rb > > ===> gegl-0.2.0_2 depends on executable: enscript - found > > ===> gegl-0.2.0_2 depends on file: /usr/local/include/linux/videodev.h > - > > found > > ===> gegl-0.2.0_2 depends on executable: a2x - found > > ===> gegl-0.2.0_2 depends on file: /usr/local/bin/sdl-config - found > > ===> gegl-0.2.0_2 depends on executable: gmake - found > > ===> gegl-0.2.0_2 depends on executable: pkgconf - found > > ===> gegl-0.2.0_2 depends on file: /usr/local/bin/intltool-extract - > found > > ===> gegl-0.2.0_2 depends on shared library: babl-0.1 - found > > ===> gegl-0.2.0_2 depends on shared library: cairo - found > > ===> gegl-0.2.0_2 depends on shared library: jasper - found > > ===> gegl-0.2.0_2 depends on shared library: jpeg - found > > ===> gegl-0.2.0_2 depends on shared library: png15 - found > > ===> gegl-0.2.0_2 depends on shared library: rsvg-2 - found > > ===> gegl-0.2.0_2 depends on shared library: spiro - found > > ===> gegl-0.2.0_2 depends on shared library: SDL-1.2.11 - found > > ===> gegl-0.2.0_2 depends on shared library: intl - found > > ===> gegl-0.2.0_2 depends on shared library: lua-5.1.1 - found > > ===> gegl-0.2.0_2 depends on shared library: glib-2.0 - found > > ===> gegl-0.2.0_2 depends on shared library: pcre - found > > ===> gegl-0.2.0_2 depends on shared library: gdk_pixbuf-2.0.0 - found > > ===> gegl-0.2.0_2 depends on shared library: pango-1.0.0 - found > > ===> Configuring for gegl-0.2.0_2 > > gegl-0.2.0_2: Needs graphics/graphviz with PANGOCAIRO support enabled. > > *** Error code 1 > > > > Stop in /usr/ports/graphics/gegl. > > *** Error code 1 > > > > Stop in /usr/ports/graphics/gegl. > > > > # pkg_info -xE graphviz > > # > > > > if DOCS needs adding dependence, then better add this option in make > config/ > > No added dependency for either port. You need to re-build graphviz > with the PANGOCAIRO option selected. > -- > R. Kevin Oberman, Network Engineer > E-mail: rkoberman@gmail.com > -- sorry for bad english. From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 13:21:28 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id B0635E16 for ; Fri, 22 Mar 2013 13:21:28 +0000 (UTC) (envelope-from portscout@portscout.freebsd.org) Received: from null.zi0r.com (null.zi0r.com [71.245.171.204]) by mx1.freebsd.org (Postfix) with ESMTP id 767FF9A8 for ; Fri, 22 Mar 2013 13:21:28 +0000 (UTC) Received: from null.zi0r.com (localhost [127.0.0.1]) by null.zi0r.com (8.14.5/8.14.5) with ESMTP id r2MDLMYf066890 for ; Fri, 22 Mar 2013 09:21:22 -0400 (EDT) (envelope-from portscout@null.zi0r.com) Received: (from portscout@localhost) by null.zi0r.com (8.14.5/8.14.5/Submit) id r2MDLMiu066614; Fri, 22 Mar 2013 09:21:22 -0400 (EDT) (envelope-from portscout) Message-Id: <201303221321.r2MDLMiu066614@null.zi0r.com> MIME-Version: 1.0 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain Date: Fri, 22 Mar 2013 09:21:22 -0400 From: portscout@portscout.freebsd.org To: gnome@freebsd.org Subject: FreeBSD ports you maintain which are out of date X-Mailer: portscout/0.8.1 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 13:21:28 -0000 Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/gnome@freebsd.org.html Port | Current version | New version ------------------------------------------------+-----------------+------------ devel/gobject-introspection | 1.34.2 | 1.35.9 ------------------------------------------------+-----------------+------------ lang/gjs | 1.32.0 | 1.35.9 ------------------------------------------------+-----------------+------------ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portscout@portscout.freebsd.org Thanks. From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 15:40:14 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 02EB4611 for ; Fri, 22 Mar 2013 15:40:14 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-bk0-x235.google.com (mail-bk0-x235.google.com [IPv6:2a00:1450:4008:c01::235]) by mx1.freebsd.org (Postfix) with ESMTP id 94A327AA for ; Fri, 22 Mar 2013 15:40:13 +0000 (UTC) Received: by mail-bk0-f53.google.com with SMTP id j10so1973832bkw.12 for ; Fri, 22 Mar 2013 08:40:12 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=I+9rTNiJMvzyBFYwSh2jFentR6UH2tDhncJ/P/2TC0A=; b=S2q+Bl7eNsgr6T0xbydqZlyOOZ8bO0CwA2exw31pHFDXy5ua9j1V4blPamcO4/uOlp leh/FabbY6ZBbnNMMC6Sbq904Ntom2ckekJqYLU2YJ97pvZ8vhkKhlJyFU5oMCKugiPG 3vmz2+5ztlwaTIPn+pduERpaK3tyhRigTNTw45idue93oi+HroPcLrjzm6a33HJqL3ym fsOEIL9ycqfXQMh2sXMaSPjF5+sS3q3Cu3i5nPlyRWe99ESftwPsmlOifKlDoDzvMkOv U7N56MOnrY1jGXXX6E6heRIX4iWw1XCiUKXzfQJaODTgBE4K4+wbMq2/FILIDFE2Dqtp aWmw== MIME-Version: 1.0 X-Received: by 10.205.77.138 with SMTP id zi10mr1299129bkb.121.1363966811988; Fri, 22 Mar 2013 08:40:11 -0700 (PDT) Received: by 10.204.39.7 with HTTP; Fri, 22 Mar 2013 08:40:11 -0700 (PDT) In-Reply-To: References: Date: Fri, 22 Mar 2013 10:40:11 -0500 Message-ID: Subject: Re: [graphics/gegl] update error From: Jeremy Messenger To: green dog Content-Type: text/plain; charset=ISO-8859-1 Cc: gnome@freebsd.org, Kevin Oberman X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 15:40:14 -0000 On Fri, Mar 22, 2013 at 3:34 AM, green dog wrote: > graphviz not installed!! nothing to rebuild. Fixed. > 2013/3/22 Kevin Oberman > >> On Thu, Mar 21, 2013 at 5:44 PM, green dog wrote: >> > # make showconfig >> > ===> The following configuration options are available for gegl-0.2.0_2: >> > CAIRO=on: Cairo graphics library >> > ENSCRIPT=on: Enscript support >> > EXIV2=off: EXIF and IPTC metadata support via exiv2 >> > FFMPEG=off: FFmpeg (WMA, AIFF, AC3, APE...) >> > GRAPHVIZ=off: Graphviz support >> > JASPER=on: JPEG 2000 via JasPer >> > JPEG=on: JPEG image format >> > LIBRSVG2=on: SVG vector graphics via librsvg2 >> > LUA=on: Lua scripting language >> > OPENEXR=off: HDR image format support via OpenEXR >> > OPENRAW=off: RAW camera format support >> > PANGO=on: Pango rendering library >> > PIXBUF=on: GDK-PixBuf library >> > PNG=on: PNG image format >> > SDL=on: Simple Direct Media Layer >> > SIMD=off: Use CPU-specific optimizations >> > SPIRO=on: Spiro support >> > V4L=on: Video 4 Linux support >> > ===> Use 'make config' to modify these settings >> > >> > # make >> > ===> Found saved configuration for gegl-0.2.0_2 >> > ===> Fetching all distfiles required by gegl-0.2.0_2 for building >> > ===> Extracting for gegl-0.2.0_2 >> > => SHA256 Checksum OK for gegl-0.2.0.tar.bz2. >> > ===> Patching for gegl-0.2.0_2 >> > ===> Applying FreeBSD patches for gegl-0.2.0_2 >> > /usr/bin/sed -i.bak -e 's|\(lua\)\(5\.1\)|\1-\2|g ; s|x86_64|amd64|g' >> > /usr/ports/graphics/gegl/work/gegl-0.2.0/configure >> > /usr/bin/sed -i.bak -e 's|/usr/bin/ruby|/usr/bin/env ruby|' >> > /usr/ports/graphics/gegl/work/gegl-0.2.0/tools/gobj2dot.rb >> > ===> gegl-0.2.0_2 depends on executable: enscript - found >> > ===> gegl-0.2.0_2 depends on file: /usr/local/include/linux/videodev.h >> - >> > found >> > ===> gegl-0.2.0_2 depends on executable: a2x - found >> > ===> gegl-0.2.0_2 depends on file: /usr/local/bin/sdl-config - found >> > ===> gegl-0.2.0_2 depends on executable: gmake - found >> > ===> gegl-0.2.0_2 depends on executable: pkgconf - found >> > ===> gegl-0.2.0_2 depends on file: /usr/local/bin/intltool-extract - >> found >> > ===> gegl-0.2.0_2 depends on shared library: babl-0.1 - found >> > ===> gegl-0.2.0_2 depends on shared library: cairo - found >> > ===> gegl-0.2.0_2 depends on shared library: jasper - found >> > ===> gegl-0.2.0_2 depends on shared library: jpeg - found >> > ===> gegl-0.2.0_2 depends on shared library: png15 - found >> > ===> gegl-0.2.0_2 depends on shared library: rsvg-2 - found >> > ===> gegl-0.2.0_2 depends on shared library: spiro - found >> > ===> gegl-0.2.0_2 depends on shared library: SDL-1.2.11 - found >> > ===> gegl-0.2.0_2 depends on shared library: intl - found >> > ===> gegl-0.2.0_2 depends on shared library: lua-5.1.1 - found >> > ===> gegl-0.2.0_2 depends on shared library: glib-2.0 - found >> > ===> gegl-0.2.0_2 depends on shared library: pcre - found >> > ===> gegl-0.2.0_2 depends on shared library: gdk_pixbuf-2.0.0 - found >> > ===> gegl-0.2.0_2 depends on shared library: pango-1.0.0 - found >> > ===> Configuring for gegl-0.2.0_2 >> > gegl-0.2.0_2: Needs graphics/graphviz with PANGOCAIRO support enabled. >> > *** Error code 1 >> > >> > Stop in /usr/ports/graphics/gegl. >> > *** Error code 1 >> > >> > Stop in /usr/ports/graphics/gegl. >> > >> > # pkg_info -xE graphviz >> > # >> > >> > if DOCS needs adding dependence, then better add this option in make >> config/ >> >> No added dependency for either port. You need to re-build graphviz >> with the PANGOCAIRO option selected. >> -- >> R. Kevin Oberman, Network Engineer >> E-mail: rkoberman@gmail.com >> > > > > -- > sorry for bad english. > _______________________________________________ > freebsd-gnome@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-gnome > To unsubscribe, send any mail to "freebsd-gnome-unsubscribe@freebsd.org" -- mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 16:31:19 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 361561D0; Fri, 22 Mar 2013 16:31:19 +0000 (UTC) (envelope-from kwm@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 12E40B7C; Fri, 22 Mar 2013 16:31:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2MGVIf6096403; Fri, 22 Mar 2013 16:31:18 GMT (envelope-from kwm@freefall.freebsd.org) Received: (from kwm@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2MGVIAO096402; Fri, 22 Mar 2013 16:31:18 GMT (envelope-from kwm) Date: Fri, 22 Mar 2013 16:31:18 GMT Message-Id: <201303221631.r2MGVIAO096402@freefall.freebsd.org> To: danny@dannywarren.com, kwm@FreeBSD.org, gnome@FreeBSD.org From: kwm@FreeBSD.org Subject: Re: ports/176203: [patch] devel/gamin: Drop privileges to effective user and group X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 16:31:19 -0000 Synopsis: [patch] devel/gamin: Drop privileges to effective user and group State-Changed-From-To: open->closed State-Changed-By: kwm State-Changed-When: Fri Mar 22 16:31:07 UTC 2013 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=176203 From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 16:40:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 8F0DD2AC for ; Fri, 22 Mar 2013 16:40:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 81292C28 for ; Fri, 22 Mar 2013 16:40:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2MGe121096555 for ; Fri, 22 Mar 2013 16:40:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2MGe1Al096554; Fri, 22 Mar 2013 16:40:01 GMT (envelope-from gnats) Date: Fri, 22 Mar 2013 16:40:01 GMT Message-Id: <201303221640.r2MGe1Al096554@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Subject: Re: ports/176203: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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: Fri, 22 Mar 2013 16:40:01 -0000 The following reply was made to PR ports/176203; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/176203: commit references a PR Date: Fri, 22 Mar 2013 16:30:50 +0000 (UTC) Author: kwm Date: Fri Mar 22 16:30:36 2013 New Revision: 314945 URL: http://svnweb.freebsd.org/changeset/ports/314945 Log: Add patches to gamin to enable support for effective uid/gid, add a option for this and turn it on by default. Current gamin uses the current real uid to determine the location of the socket and during the security routines. It also forks off a copy of "gam_server" as the current real uid as well. This breaks gamin functionality with any application that uses effective an uid/gid for privilege separation, such as samba. Samba runs as root, but always sets the effective uid/gid to that of the connecting user. Since gamin is only aware of the real uid, it always creates a root-owned gamin socket that the effective user can't touch (gamin's own security checks refuse it). PR: ports/176203 Submitted by: Danny Warren Reviewed by: marcus@ Added: head/devel/gamin/files/patch-libgamin_gam_fork.c (contents, props changed) head/devel/gamin/files/patch-libgamin_gam_fork.h (contents, props changed) Modified: head/devel/gamin/Makefile head/devel/gamin/files/patch-libgamin_gam_api.c (contents, props changed) Modified: head/devel/gamin/Makefile ============================================================================== --- head/devel/gamin/Makefile Fri Mar 22 16:24:53 2013 (r314944) +++ head/devel/gamin/Makefile Fri Mar 22 16:30:36 2013 (r314945) @@ -4,7 +4,7 @@ PORTNAME= gamin PORTVERSION= 0.1.10 -PORTREVISION?= 4 +PORTREVISION?= 5 CATEGORIES?= devel MASTER_SITES= http://people.gnome.org/~veillard/gamin/sources/ @@ -27,9 +27,11 @@ CONFLICTS= fam-[0-9]* GNU_CONFIGURE= yes .if !defined(GAMIN_SLAVE) -OPTIONS_DEFINE= GAM_POLLER LIBINOTIFY +OPTIONS_DEFINE= GAM_POLLER LIBINOTIFY RUN_AS_EUID +OPTIONS_DEFAULT=RUN_AS_EUID GAM_POLLER_DESC=Use gamin's poller instead of kqueue's LIBINOTIFY_DESC=Use libinotify as the FAM backend +RUN_AS_EUID_DESC=Drop privileges to effective user .endif .include @@ -48,6 +50,10 @@ CONFIGURE_ARGS+=--disable-inotify .endif .endif +.if ${PORT_OPTIONS:MRUN_AS_EUID} +CPPFLAGS+= -DRUN_AS_EUID=1 +.endif + post-patch: @${REINPLACE_CMD} "s|/etc|${PREFIX}/etc|g" ${WRKSRC}/server/gam_conf.c Modified: head/devel/gamin/files/patch-libgamin_gam_api.c ============================================================================== --- head/devel/gamin/files/patch-libgamin_gam_api.c Fri Mar 22 16:24:53 2013 (r314944) +++ head/devel/gamin/files/patch-libgamin_gam_api.c Fri Mar 22 16:30:36 2013 (r314945) @@ -1,5 +1,5 @@ ---- libgamin/gam_api.c.orig Tue Feb 7 17:49:07 2006 -+++ libgamin/gam_api.c Tue Feb 7 17:49:13 2006 +--- libgamin/gam_api.c.orig 2007-08-27 03:21:03.000000000 -0700 ++++ libgamin/gam_api.c 2013-02-16 15:51:11.927100135 -0800 @@ -14,6 +14,7 @@ #include #include @@ -8,7 +8,43 @@ #include "fam.h" #include "gam_protocol.h" #include "gam_data.h" -@@ -421,10 +422,10 @@ +@@ -117,7 +118,11 @@ + if (user_name[0] != 0) + return (user_name); + ++#ifdef RUN_AS_EUID ++ pw = getpwuid(geteuid()); ++#else + pw = getpwuid(getuid()); ++#endif + + if (pw != NULL) { + strncpy(user_name, pw->pw_name, 99); +@@ -224,7 +229,11 @@ + free(dir); + return(0); + } ++#ifdef RUN_AS_EUID ++ if (st.st_uid != geteuid()) { ++#else + if (st.st_uid != getuid()) { ++#endif + gam_error(DEBUG_INFO, + "Socket directory %s has different owner\n", + dir); +@@ -301,7 +310,11 @@ + if (ret < 0) + return(0); + ++#ifdef RUN_AS_EUID ++ if (st.st_uid != geteuid()) { ++#else + if (st.st_uid != getuid()) { ++#endif + gam_error(DEBUG_INFO, + "Socket %s has different owner\n", + path); +@@ -428,10 +441,10 @@ { char data[2] = { 0, 0 }; int written; @@ -22,7 +58,7 @@ } cmsg; struct iovec iov; struct msghdr msg; -@@ -436,16 +437,16 @@ +@@ -443,16 +456,16 @@ msg.msg_iov = &iov; msg.msg_iovlen = 1; @@ -43,7 +79,7 @@ written = sendmsg(fd, &msg, 0); #else written = write(fd, &data[0], 1); -@@ -647,15 +648,16 @@ +@@ -654,15 +667,20 @@ gid_t c_gid; #ifdef HAVE_CMSGCRED @@ -56,14 +92,18 @@ } cmsg; #endif ++#ifdef RUN_AS_EUID ++ s_uid = geteuid(); ++#else s_uid = getuid(); ++#endif -#if defined(LOCAL_CREDS) && defined(HAVE_CMSGCRED) +#if defined(LOCAL_CREDS) && defined(HAVE_CMSGCRED) && !defined(__FreeBSD__) /* Set the socket to receive credentials on the next message */ { int on = 1; -@@ -676,8 +678,8 @@ +@@ -683,8 +701,8 @@ #ifdef HAVE_CMSGCRED memset(&cmsg, 0, sizeof(cmsg)); @@ -74,7 +114,7 @@ #endif retry: -@@ -694,7 +696,7 @@ +@@ -701,7 +719,7 @@ goto failed; } #ifdef HAVE_CMSGCRED @@ -83,7 +123,7 @@ GAM_DEBUG(DEBUG_INFO, "Message from recvmsg() was not SCM_CREDS\n"); goto failed; -@@ -720,9 +722,10 @@ +@@ -727,9 +745,10 @@ goto failed; } #elif defined(HAVE_CMSGCRED) @@ -97,7 +137,7 @@ #else /* !SO_PEERCRED && !HAVE_CMSGCRED */ GAM_DEBUG(DEBUG_INFO, "Socket credentials not supported on this OS\n"); -@@ -1283,14 +1286,17 @@ +@@ -1288,14 +1307,17 @@ // FIXME: drop and reacquire lock while blocked? gamin_data_lock(conn); Added: head/devel/gamin/files/patch-libgamin_gam_fork.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gamin/files/patch-libgamin_gam_fork.c Fri Mar 22 16:30:36 2013 (r314945) @@ -0,0 +1,95 @@ +--- libgamin/gam_fork.c.orig 2007-07-04 06:36:48.000000000 -0700 ++++ libgamin/gam_fork.c 2013-02-16 20:37:31.298176973 -0800 +@@ -42,6 +42,78 @@ + return NULL; + } + ++#ifdef RUN_AS_EUID ++/** ++ * gamin_drop_privileges ++ * ++ * Attempt to drop privileges to another user and group before forking ++ * a copy of the gam server ++ * ++ * Return 0 in case of success or -1 in case of detected error. ++ */ ++int ++gamin_drop_privileges(int to_uid, int to_gid) ++{ ++ GAM_DEBUG(DEBUG_INFO, "Dropping privileges to %d:%d before forking server\n", to_uid, to_gid); ++ ++ /* Get the current real user and group */ ++ int from_uid = getuid(); ++ int from_gid = getgid(); ++ ++ /* Make sure we were able to get the user and group values */ ++ if ( from_uid == -1 || to_uid == -1 || from_gid == -1 || to_gid == -1 ) { ++ gam_error(DEBUG_INFO, "failed to get user or group info, unable to drop privileges\n"); ++ return(-1); ++ } ++ ++ /* Refuse to run setuid if it would escalate privileges */ ++ if ( from_uid != 0 && to_uid == 0 ) ++ { ++ gam_error(DEBUG_INFO, "refusing to escalate user privileges from=%d to=%d\n", from_uid, to_uid); ++ return(-1); ++ } ++ ++ /* Refuse to run setgid if it would escalate privileges */ ++ if ( from_gid != 0 && to_gid == 0 ) ++ { ++ gam_error(DEBUG_INFO, "refusing to escalate group privileges from=%d to=%d\n", from_gid, to_gid); ++ return(-1); ++ } ++ ++ /* Run setuid to drop privileges to the effective user */ ++ if ( from_uid != to_uid ) { ++ GAM_DEBUG(DEBUG_INFO, "Attempting setuid from=%d to=%d\n", from_uid, to_uid); ++ ++ /* run setuid and check for errors */ ++ if (setuid(to_uid) == -1) { ++ gam_error(DEBUG_INFO, "failed to run setuid from=%d to=%d\n", from_uid, to_uid); ++ return(-1); ++ } ++ } ++ else { ++ GAM_DEBUG(DEBUG_INFO, "Already running as effective user, skipping setuid\n"); ++ } ++ ++ /* Run setgid to drop privileges to the effective group */ ++ if ( from_gid != to_gid ) { ++ GAM_DEBUG(DEBUG_INFO, "Attempting setgid from=%d to=%d\n", from_gid, to_gid); ++ ++ /* run setuid and check for errors */ ++ if (setgid(to_gid) == -1) { ++ gam_error(DEBUG_INFO, "failed to run setgid from=%d to=%d\n", from_gid, to_gid); ++ return(-1); ++ } ++ } ++ else { ++ GAM_DEBUG(DEBUG_INFO, "Already running as effective group, skipping setgid\n"); ++ } ++ ++ GAM_DEBUG(DEBUG_INFO, "Succeeded in dropping privileges from %d:%d to %d:%d\n", from_uid, from_gid, to_uid, to_gid); ++ ++ return(0); ++} ++#endif ++ + /** + * gamin_fork_server: + * @fam_client_id: the client ID string to use +@@ -71,6 +143,13 @@ + long open_max; + long i; + ++#ifdef RUN_AS_EUID ++ /* Drop privileges to the current effective uid/gid and return on failure */ ++ if(gamin_drop_privileges( geteuid(), getegid() ) == -1) { ++ return(-1); ++ } ++#endif ++ + /* don't hold open fd opened from the client of the library */ + open_max = sysconf (_SC_OPEN_MAX); + for (i = 0; i < open_max; i++) Added: head/devel/gamin/files/patch-libgamin_gam_fork.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/gamin/files/patch-libgamin_gam_fork.h Fri Mar 22 16:30:36 2013 (r314945) @@ -0,0 +1,12 @@ +--- libgamin/gam_fork.h.orig 2007-07-04 06:36:48.000000000 -0700 ++++ libgamin/gam_fork.h 2013-02-16 20:38:00.328594608 -0800 +@@ -32,6 +32,9 @@ + #endif + + int gamin_fork_server (const char *fam_client_id); ++#ifdef RUN_AS_EUID ++int gamin_drop_privileges (int to_uid, int to_gid); ++#endif + + #ifdef __cplusplus + } _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 17:29:49 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B2B4E3B5; Fri, 22 Mar 2013 17:29:49 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 8D9CECE; Fri, 22 Mar 2013 17:29:49 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2MHTnxd006607; Fri, 22 Mar 2013 17:29:49 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2MHTnW8006606; Fri, 22 Mar 2013 17:29:49 GMT (envelope-from edwin) Date: Fri, 22 Mar 2013 17:29:49 GMT Message-Id: <201303221729.r2MHTnW8006606@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/177226: devel/glib20 update: gnome-gmail-notifier won't start and nautilus eats cpu X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 17:29:49 -0000 Synopsis: devel/glib20 update: gnome-gmail-notifier won't start and nautilus eats cpu Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 22 17:29:49 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=177226 From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 18:18:05 2013 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id E70F9FA2; Fri, 22 Mar 2013 18:18:05 +0000 (UTC) (envelope-from thierry@pompo.net) Received: from mx1b.lautre.net (etna.lautre.net [80.67.160.72]) by mx1.freebsd.org (Postfix) with ESMTP id AD02D7C3; Fri, 22 Mar 2013 18:18:05 +0000 (UTC) Received: from graf.pompo.net (graf.pompo.net [78.225.128.39]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) (Authenticated sender: thierry@pompo.net) by mx1b.lautre.net (Postfix) with ESMTPSA id 16FE67E127; Fri, 22 Mar 2013 19:18:04 +0100 (CET) Received: by graf.pompo.net (Postfix, from userid 1001) id A148442D241C; Fri, 22 Mar 2013 19:18:03 +0100 (CET) Date: Fri, 22 Mar 2013 19:18:03 +0100 From: Thierry Thomas To: Martin Wilke Subject: Re: Fwd: rxvt-unicode-9.16 failed on amd64 9 Message-ID: <20130322181803.GC91723@graf.pompo.net> References: <201303212030.r2LKUtLS024139@pointyhat.freebsd.org> <4F165A99-DE29-45DF-B965-3C1CE00E88E8@freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KFztAG8eRSV9hGtP" Content-Disposition: inline In-Reply-To: <4F165A99-DE29-45DF-B965-3C1CE00E88E8@freebsd.org> User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD 9.1-RELEASE i386 Organization: Kabbale Eros X-Face: (hRbQnK~Pt7$ct`!fupO(`y_WL4^-Iwn4@ly-.,[4xC4xc; y=\ipKMNm<1J>lv@PP~7Z<.t KjAnXLs: X-PGP: 0xC71405A2 Cc: gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 18:18:06 -0000 --KFztAG8eRSV9hGtP Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hallo Miwi, Le ven 22 mar 13 =E0 0:59:46 +0100, Martin Wilke =E9crivait=A0: > > =3D=3D=3D Checking filesystem state after all packages deleted > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > list of extra files and directories in / (not present on clean system b= ut present after everything was deinstalled) > > 1641893 3 drwxr-xr-x 2 root wheel = 2 Mar 21 20:29 usr/local/lib/girepository-1.0 > > 1641897 3 drwxr-xr-x 2 root wheel = 2 Mar 21 20:29 usr/local/share/gir-1.0 > > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > > build of /usr/ports/x11/rxvt-unicode ended at Thu Mar 21 20:30:51 UTC 2= 013 I have checked this, and cannot reproduce the problem here: these directories are not created by x11/rxvt-unicode. It seems they are created by graphics/gdk-pixbuf2, where @dirrmtry is missing. ( gnome@FreeBSD.org added to Cc: ) Best regards, --=20 Th. Thomas. --KFztAG8eRSV9hGtP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.13 (FreeBSD) iEYEARECAAYFAlFMoFsACgkQc95pjMcUBaLrbwCgoXm+N/Fp3vMo7vUpBg92zja9 41QAoIQIRMyRzhU8gogAMXa6ajijONxV =xFYc -----END PGP SIGNATURE----- --KFztAG8eRSV9hGtP-- From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 18:33:56 2013 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 4A5E7732 for ; Fri, 22 Mar 2013 18:33:56 +0000 (UTC) (envelope-from freebsd@pki2.com) Received: from btw.pki2.com (btw.pki2.com [IPv6:2001:470:a:6fd::2]) by mx1.freebsd.org (Postfix) with ESMTP id 0278B905 for ; Fri, 22 Mar 2013 18:33:55 +0000 (UTC) Received: from [127.0.0.1] (localhost [127.0.0.1]) by btw.pki2.com (8.14.6/8.14.5) with ESMTP id r2MIXltB090518 for ; Fri, 22 Mar 2013 11:33:47 -0700 (PDT) (envelope-from freebsd@pki2.com) Subject: Any effort underway to update Evolution? From: Dennis Glatting To: freebsd-gnome@freebsd.org Content-Type: text/plain Date: Fri, 22 Mar 2013 11:33:47 -0700 Message-ID: <1363977227.59898.0.camel@btw.pki2.com> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit X-yoursite-MailScanner-Information: Dennis Glatting X-yoursite-MailScanner-ID: r2MIXltB090518 X-yoursite-MailScanner: Found to be clean X-MailScanner-From: freebsd@pki2.com X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 18:33:56 -0000 Quite a lot of bit rot in Evolution. Any updates planned? From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 18:34:47 2013 Return-Path: Delivered-To: freebsd-gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 93F4C777 for ; Fri, 22 Mar 2013 18:34:47 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-vc0-f181.google.com (mail-vc0-f181.google.com [209.85.220.181]) by mx1.freebsd.org (Postfix) with ESMTP id 5C12D911 for ; Fri, 22 Mar 2013 18:34:47 +0000 (UTC) Received: by mail-vc0-f181.google.com with SMTP id hv10so3321547vcb.40 for ; Fri, 22 Mar 2013 11:34:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=dc/QITdz6bZHYf8+MfXGEmao327iHnLJ0pQ6kSSpNKM=; b=qhcJZhGnJYLZCoAPVulsp9MbJ1dfclp/8GOBOL5hCW4dOXI35XUOObLshyB/oZ95u7 nBqnr+B5O09CFPy6BSqcC47/zWItAuFL04wuQ0/dkot9YYtPWVbZ1PwP4k/SdxQvw0Z8 AmzDjg7iqathGDZk90m+RR0y3+ct1J6YzTWZDeziLXv4kKY6nv7NaeE5Th+ey7Z/spvl R118RqIrg2OHm/itkE2eXM3HwurQc4yFaV0LNfrbKGYtu9Avkml5ne92EpyZ60FVgbMZ mNd8l1tBl/tM7TmKQvmCCprGhbuYRS5WJOscm1ibMQLFKGtsgJsPvUupujOCPXWIVt+b 1jqA== MIME-Version: 1.0 X-Received: by 10.58.45.71 with SMTP id k7mr3751274vem.0.1363977286480; Fri, 22 Mar 2013 11:34:46 -0700 (PDT) Received: by 10.58.74.197 with HTTP; Fri, 22 Mar 2013 11:34:46 -0700 (PDT) In-Reply-To: <1363977227.59898.0.camel@btw.pki2.com> References: <1363977227.59898.0.camel@btw.pki2.com> Date: Fri, 22 Mar 2013 13:34:46 -0500 Message-ID: Subject: Re: Any effort underway to update Evolution? From: Jeremy Messenger To: Dennis Glatting Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-gnome@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 18:34:47 -0000 On Fri, Mar 22, 2013 at 1:33 PM, Dennis Glatting wrote: > Quite a lot of bit rot in Evolution. Any updates planned? Search in gnome@ about GNOME 3. -- mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 18:36:52 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 6E5CF8FB; Fri, 22 Mar 2013 18:36:52 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-vb0-x22e.google.com (mail-vb0-x22e.google.com [IPv6:2607:f8b0:400c:c02::22e]) by mx1.freebsd.org (Postfix) with ESMTP id 0F19093A; Fri, 22 Mar 2013 18:36:51 +0000 (UTC) Received: by mail-vb0-f46.google.com with SMTP id b13so2698870vby.19 for ; Fri, 22 Mar 2013 11:36:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type:content-transfer-encoding; bh=d7rT6M6d/R3u1V5m2KtZIQoQWUAC+x0kU1YOvA7JKGs=; b=vHJxA0SooUVK+gFLCi2F7ncV+g/M9sIu1EfjbcSj5ni3R4zHRXZuhMdCu8oMq1YRkH 6DHFP+BJ16IGQ+3B8PF/WaFbrRpcBkKMbjiOM3m3qHU509P7LASV6NorFJ1/NvNrNIOR sduomiLNP9Nqkruuow69qgxv7ayzv8M8+aiqsQlRMdaDG3xWUEakm/dU4TJjtK2gaIrx J2F2Dq/bETVuPBqvh68l18SwUvQIWVBm68G2ie6B4cgNAyoC57agKbVUMw0qnYMLXvkO 8kaXlYcR/M7nyEFUCwxKAh3jwkMxbkmatWrXv9DwoDnpiiV0i1xhtQ9gryfKJIZeRFIU w91w== MIME-Version: 1.0 X-Received: by 10.220.90.145 with SMTP id i17mr3666725vcm.25.1363977411596; Fri, 22 Mar 2013 11:36:51 -0700 (PDT) Received: by 10.58.74.197 with HTTP; Fri, 22 Mar 2013 11:36:51 -0700 (PDT) In-Reply-To: <20130322181803.GC91723@graf.pompo.net> References: <201303212030.r2LKUtLS024139@pointyhat.freebsd.org> <4F165A99-DE29-45DF-B965-3C1CE00E88E8@freebsd.org> <20130322181803.GC91723@graf.pompo.net> Date: Fri, 22 Mar 2013 13:36:51 -0500 Message-ID: Subject: Re: Fwd: rxvt-unicode-9.16 failed on amd64 9 From: Jeremy Messenger To: Thierry Thomas Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: gnome@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 18:36:52 -0000 On Fri, Mar 22, 2013 at 1:18 PM, Thierry Thomas wrote= : > Hallo Miwi, > > Le ven 22 mar 13 =E0 0:59:46 +0100, Martin Wilke > =E9crivait : > >> > =3D=3D=3D Checking filesystem state after all packages deleted >> > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >> > list of extra files and directories in / (not present on clean system = but present after everything was deinstalled) >> > 1641893 3 drwxr-xr-x 2 root wheel = 2 Mar 21 20:29 usr/local/lib/girepository-1.0 >> > 1641897 3 drwxr-xr-x 2 root wheel = 2 Mar 21 20:29 usr/local/share/gir-1.0 >> > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D >> > build of /usr/ports/x11/rxvt-unicode ended at Thu Mar 21 20:30:51 UTC = 2013 > > I have checked this, and cannot reproduce the problem here: these > directories are not created by x11/rxvt-unicode. > > It seems they are created by graphics/gdk-pixbuf2, where @dirrmtry is > missing. ( gnome@FreeBSD.org added to Cc: ) Committed it > Best regards, > -- > Th. Thomas. --=20 mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 18:41:06 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id B8E59DD2; Fri, 22 Mar 2013 18:41:06 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-vb0-x230.google.com (mail-vb0-x230.google.com [IPv6:2607:f8b0:400c:c02::230]) by mx1.freebsd.org (Postfix) with ESMTP id 5AACD9CC; Fri, 22 Mar 2013 18:41:06 +0000 (UTC) Received: by mail-vb0-f48.google.com with SMTP id fc21so2744777vbb.35 for ; Fri, 22 Mar 2013 11:41:05 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=MGt9czIkrVGzCXCvp23guM9XZfYcsYzHd1swxfj+/KY=; b=ylm1TGoi2jOnQ6KsyGsA7XMEbFCOgaPniqM2eMtOgNTXk31xiifVDj0eYRjYPXeeQo eePg1Q/Psb09calpArAaAwAqam5DBlGeuuRyE6421AVLwq+KjaQI34HbwH+3HFZzdAC7 TpHopCd44iuZLI5Lo0JLfcIxc/T7dN6TAbeXKn2Cvuh739DYMpoH/Ivd+0dSdMQjbFES 0pTYwkNJXFY9gH4k7QHQ1lNPobA+rMjYIiDyZwl67DZ9A4am3TobF8UPQpZKoQXzwoyI UXRSG/V6L6wKxnPrKFV1wHcIXnHoBkqI23RSE1COIMIhfmbBmjGAdXeNHpobzTHThiEZ KtkQ== MIME-Version: 1.0 X-Received: by 10.52.17.38 with SMTP id l6mr3155885vdd.49.1363977665858; Fri, 22 Mar 2013 11:41:05 -0700 (PDT) Received: by 10.58.74.197 with HTTP; Fri, 22 Mar 2013 11:41:05 -0700 (PDT) In-Reply-To: <201303221729.r2MHTnW8006606@freefall.freebsd.org> References: <201303221729.r2MHTnW8006606@freefall.freebsd.org> Date: Fri, 22 Mar 2013 13:41:05 -0500 Message-ID: Subject: Re: ports/177226: devel/glib20 update: gnome-gmail-notifier won't start and nautilus eats cpu From: Jeremy Messenger To: edwin@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Cc: gnome@freebsd.org, freebsd-ports-bugs@freebsd.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 18:41:06 -0000 > 2) Nautilus is constantly using cpu It has been fixed other days ago. You need to update your gnome-desktop. As for the #1, sorry, I have no idea. It looks like gnome-mail-notifier no longer maintain by upstream for over a year? If no longer maintain, you will have to either fix it or uninstall it. -- mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 20:00:13 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id AC1E5C7E; Fri, 22 Mar 2013 20:00:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 87E671A7; Fri, 22 Mar 2013 20:00:13 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2MK0Drj038982; Fri, 22 Mar 2013 20:00:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2MK0Ddg038981; Fri, 22 Mar 2013 20:00:13 GMT (envelope-from edwin) Date: Fri, 22 Mar 2013 20:00:13 GMT Message-Id: <201303222000.r2MK0Ddg038981@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/177278: graphics/gegl does not compile X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 20:00:13 -0000 Synopsis: graphics/gegl does not compile Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 22 20:00:13 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=177278 From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 20:20:09 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 95F40A3A; Fri, 22 Mar 2013 20:20:09 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 71C89347; Fri, 22 Mar 2013 20:20:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2MKK90U042343; Fri, 22 Mar 2013 20:20:09 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2MKK9qT042342; Fri, 22 Mar 2013 20:20:09 GMT (envelope-from edwin) Date: Fri, 22 Mar 2013 20:20:09 GMT Message-Id: <201303222020.r2MKK9qT042342@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/177282: graphics/inkscape does not compile X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 22 Mar 2013 20:20:09 -0000 Synopsis: graphics/inkscape does not compile Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Fri Mar 22 20:20:09 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=177282 From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 20:30:02 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id BCB7D158 for ; Fri, 22 Mar 2013 20:30:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 97646619 for ; Fri, 22 Mar 2013 20:30:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2MKU2qV044298 for ; Fri, 22 Mar 2013 20:30:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2MKU26r044297; Fri, 22 Mar 2013 20:30:02 GMT (envelope-from gnats) Date: Fri, 22 Mar 2013 20:30:02 GMT Message-Id: <201303222030.r2MKU26r044297@freefall.freebsd.org> To: gnome@FreeBSD.org From: Koop Mast Subject: Re: ports/177282: graphics/inkscape does not compile X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Koop Mast List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Mar 2013 20:30:02 -0000 The following reply was made to PR ports/177282; it has been noted by GNATS. From: Koop Mast To: bug-followup@FreeBSD.org, zaphod@berentweb.com Cc: Subject: Re: ports/177282: graphics/inkscape does not compile Date: Fri, 22 Mar 2013 21:25:36 +0100 Please give us more information. I can see that your using binutils from ports but also tell us which compiler your using then. From owner-freebsd-gnome@FreeBSD.ORG Fri Mar 22 21:50:01 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 3F25B51C for ; Fri, 22 Mar 2013 21:50:01 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 32571D56 for ; Fri, 22 Mar 2013 21:50:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2MLo1ab058885 for ; Fri, 22 Mar 2013 21:50:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2MLo09u058884; Fri, 22 Mar 2013 21:50:00 GMT (envelope-from gnats) Date: Fri, 22 Mar 2013 21:50:00 GMT Message-Id: <201303222150.r2MLo09u058884@freefall.freebsd.org> To: gnome@FreeBSD.org From: Beeblebrox Subject: Re: ports/177282: graphics/inkscape does not compile X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Beeblebrox List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 22 Mar 2013 21:50:01 -0000 The following reply was made to PR ports/177282; it has been noted by GNATS. From: Beeblebrox To: Koop Mast , bug-followup@FreeBSD.org Cc: Subject: Re: ports/177282: graphics/inkscape does not compile Date: Fri, 22 Mar 2013 23:42:04 +0200 Koop Mast wrote: > Please give us more information. I can see that your using binutils from > ports but also tell us which compiler your using then. Hi, Koop. I have lang/gcc installed, and my make.conf does NOT specify a compiler (leaves it to the port). Rene Latan advised that gcc should be (or have link in) /usr/bin. After creating symlinks, # ln -s /usr/local/bin/gcc46 /usr/bin/gcc # ln -s /usr/local/bin/g++46 /usr/bin/g++ Error message not has changed and breaks at same point. BTW, is binutils supposed to be available in world? My /etc/src.conf: WITH_CLANG= yes WITH_CLANG_EXTRAS= yes WITH_CLANG_IS_CC= yes WITH_LIBCPLUSPLUS= yes WITHOUT_GCC=yes WITHOUT_GNU=yes WITHOUT_ACCT= yes WITHOUT_APM= yes WITHOUT_AUTHPF= yes WITHOUT_ASSERT_DEBUG= yes WITHOUT_AUDIT= yes WITHOUT_BIND= yes #WITH_BSD_GREP= yes WITHOUT_BLUETOOTH= yes WITHOUT_CTM= yes #WITHOUT_CVS= yes WITHOUT_FLOPPY= yes WITHOUT_GDB= yes WITHOUT_HTML= yes WITHOUT_INET6= yes WITHOUT_INET6_SUPPORT= yes WITHOUT_IPFW= yes WITHOUT_IPFILTER= yes WITHOUT_MAIL= yes #WITHOUT_NLS= yes #WITHOUT_NLS_CATALOGS= yes WITHOUT_PORTSNAP= yes WITHOUT_SENDMAIL= yes WITHOUT_WIRELESS= yes WITHOUT_WPA_SUPPLICANT_EAPOL= yes #WITHOUT_I4B= yes LOADER_ZFS_SUPPORT= yes From owner-freebsd-gnome@FreeBSD.ORG Sat Mar 23 11:50:15 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 5D41C19F; Sat, 23 Mar 2013 11:50:15 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 36C9A11C; Sat, 23 Mar 2013 11:50:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2NBoF5C032688; Sat, 23 Mar 2013 11:50:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2NBoFek032687; Sat, 23 Mar 2013 11:50:15 GMT (envelope-from edwin) Date: Sat, 23 Mar 2013 11:50:15 GMT Message-Id: <201303231150.r2NBoFek032687@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Subject: Re: ports/177310: deskutils/gnome-main-menu: [PATCH] fix breakage caused by glib2 update X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 23 Mar 2013 11:50:15 -0000 Synopsis: deskutils/gnome-main-menu: [PATCH] fix breakage caused by glib2 update Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sat Mar 23 11:50:14 UTC 2013 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=177310 From owner-freebsd-gnome@FreeBSD.ORG Sat Mar 23 12:01:53 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id A02D16E4 for ; Sat, 23 Mar 2013 12:01:53 +0000 (UTC) (envelope-from develloper.unix@hotmail.fr) Received: from dub0-omc1-s26.dub0.hotmail.com (dub0-omc1-s26.dub0.hotmail.com [157.55.0.225]) by mx1.freebsd.org (Postfix) with ESMTP id 11E0A1D4 for ; Sat, 23 Mar 2013 12:01:52 +0000 (UTC) Received: from DUB002-W135 ([157.55.0.237]) by dub0-omc1-s26.dub0.hotmail.com with Microsoft SMTPSVC(6.0.3790.4675); Sat, 23 Mar 2013 05:00:44 -0700 X-EIP: [pEGGhjqUuHXiPUE/5RUr0tMMGsh/7bXw] X-Originating-Email: [develloper.unix@hotmail.fr] Message-ID: From: Quentin SCHWERKOLT To: "gnome@freebsd.org" Subject: net/glib-networking failed to build Date: Sat, 23 Mar 2013 13:00:44 +0100 Importance: Normal MIME-Version: 1.0 X-OriginalArrivalTime: 23 Mar 2013 12:00:44.0666 (UTC) FILETIME=[0C761DA0:01CE27BE] Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.14 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 23 Mar 2013 12:01:53 -0000 Hi=2C I have just try to build net/glib-networking with gcc 4.7 and it to link li= bproxy on my freebsd 9-1-STABLE amd64 r248610. I have also tried with gcc 4= .6=2C gcc 4.2 and clang 3.2 with the same issue. Here is the build log: =3D=3D=3D> glib-networking-2.34.2 depends on file: /usr/local/sbin/pkg - = found =3D=3D=3D> Fetching all distfiles required by glib-networking-2.34.2 for bu= ilding =3D=3D=3D> Extracting for glib-networking-2.34.2 =3D> SHA256 Checksum OK for gnome2/glib-networking-2.34.2.tar.xz. =3D=3D=3D> Patching for glib-networking-2.34.2 =3D=3D=3D> Applying FreeBSD patches for glib-networking-2.34.2 =3D=3D=3D> glib-networking-2.34.2 depends on file: /usr/local/share/certs= /ca-root-nss.crt - found =3D=3D=3D> glib-networking-2.34.2 depends on package: gsettings-desktop-s= chemas>=3D0 - found =3D=3D=3D> glib-networking-2.34.2 depends on executable: gmake - found =3D=3D=3D> glib-networking-2.34.2 depends on file: /usr/local/bin/intltoo= l-extract - found =3D=3D=3D> glib-networking-2.34.2 depends on shared library: gnutls - fou= nd =3D=3D=3D> glib-networking-2.34.2 depends on shared library: gcrypt - fou= nd =3D=3D=3D> glib-networking-2.34.2 depends on shared library: dbus-1 - fou= nd =3D=3D=3D> glib-networking-2.34.2 depends on shared library: proxy - foun= d =3D=3D=3D> glib-networking-2.34.2 depends on shared library: intl - found =3D=3D=3D> glib-networking-2.34.2 depends on shared library: glib-2.0 - f= ound =3D=3D=3D> glib-networking-2.34.2 depends on shared library: pcre - found =3D=3D=3D> Configuring for glib-networking-2.34.2 checking for a BSD-compatible install... /usr/bin/install -c -o root -g whe= el checking whether build environment is sane... yes checking for a thread-safe mkdir -p... ./install-sh -c -d checking for gawk... gawk checking whether gmake sets $(MAKE)... yes checking whether to enable maintainer-specific portions of Makefiles... yes checking whether gmake supports nested variables... yes checking build system type... amd64-portbld-freebsd9.1 checking host system type... amd64-portbld-freebsd9.1 checking how to print strings... printf checking for style of include used by gmake... GNU checking for gcc... /usr/local/bin/gcc47 checking whether the C compiler works... yes checking for C compiler default output file name... a.out checking for suffix of executables...=20 checking whether we are cross compiling... no checking for suffix of object files... o checking whether we are using the GNU C compiler... yes checking whether /usr/local/bin/gcc47 accepts -g... yes checking for /usr/local/bin/gcc47 option to accept ISO C89... none needed checking dependency style of /usr/local/bin/gcc47... gcc3 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 fgrep... /usr/bin/grep -F checking for ld used by /usr/local/bin/gcc47... /usr/local/bin/ld checking if the linker (/usr/local/bin/ld) is GNU ld... yes checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B checking the name lister (/usr/bin/nm -B) interface... BSD nm checking whether ln -s works... yes checking the maximum length of command line arguments... (cached) 262144 checking whether the shell understands some XSI constructs... yes checking whether the shell understands "+=3D"... no checking how to convert amd64-portbld-freebsd9.1 file names to amd64-portbl= d-freebsd9.1 format... func_convert_file_noop checking how to convert amd64-portbld-freebsd9.1 file names to toolchain fo= rmat... func_convert_file_noop checking for /usr/local/bin/ld option to reload object files... -r checking for objdump... objdump checking how to recognize dependent libraries... pass_all checking for dlltool... no checking how to associate runtime and link libraries... printf %s\n checking for ar... ar checking for archiver @FILE support... no checking for strip... strip checking for ranlib... ranlib checking command to parse /usr/bin/nm -B output from /usr/local/bin/gcc47 o= bject... ok checking for sysroot... no checking for mt... mt checking if mt is a manifest tool... no checking how to run the C preprocessor... /usr/local/bin/cpp47 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 for dlfcn.h... yes checking for objdir... .libs checking if /usr/local/bin/gcc47 supports -fno-rtti -fno-exceptions... no checking for /usr/local/bin/gcc47 option to produce PIC... -fPIC -DPIC checking if /usr/local/bin/gcc47 PIC flag -fPIC -DPIC works... yes checking if /usr/local/bin/gcc47 static flag -static works... yes checking if /usr/local/bin/gcc47 supports -c -o file.o... yes checking if /usr/local/bin/gcc47 supports -c -o file.o... (cached) yes checking whether the /usr/local/bin/gcc47 linker (/usr/local/bin/ld) suppor= ts shared libraries... yes checking whether -lc should be explicitly linked in... no checking dynamic linker characteristics... freebsd9.1 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 checking for gcc... (cached) /usr/local/bin/gcc47 checking whether we are using the GNU C compiler... (cached) yes checking whether /usr/local/bin/gcc47 accepts -g... (cached) yes checking for /usr/local/bin/gcc47 option to accept ISO C89... (cached) none= needed checking dependency style of /usr/local/bin/gcc47... (cached) gcc3 checking whether /usr/local/bin/gcc47 and cc understand -c and -o together.= .. yes checking how to run the C preprocessor... /usr/local/bin/cpp47 checking whether NLS is requested... yes checking for intltool >=3D 0.35.0... 0.41.1 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 perl >=3D 5.8.1... 5.16.2 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 pkg-config... /usr/local/bin/pkg-config checking pkg-config is at least version 0.16... yes checking for GLIB - version >=3D 2.34.0... yes (version 2.34.3) checking for gio-querymodules... /usr/local/bin/gio-querymodules checking for LIBPROXY... yes checking for GSETTINGS_DESKTOP_SCHEMAS... yes checking for GNUTLS... yes checking location of system Certificate Authority list... /usr/local/share/= certs/ca-root-nss.crt checking for PKCS11... yes checking that generated files are newer than configure... done configure: creating ./config.status config.status: creating Makefile config.status: creating po/Makefile.in config.status: creating po/Makefile config.status: creating proxy/libproxy/Makefile config.status: creating proxy/gnome/Makefile config.status: creating proxy/tests/Makefile config.status: creating tls/gnutls/Makefile config.status: creating tls/pkcs11/Makefile config.status: creating tls/tests/Makefile config.status: creating config.h config.status: executing depfiles commands config.status: executing libtool commands config.status: executing default-1 commands config.status: executing po/stamp-it commands Proxy support: gnome libproxy TLS support: gnutls gnutls-pkcs11=20 PKCS#11 Support: p11-kit TLS CA file: /usr/local/share/certs/ca-root-nss.crt =3D=3D=3D> Building for glib-networking-2.34.2 gmake all-recursive gmake[1]: Entering directory `/usr/ports/net/glib-networking/work/glib-netw= orking-2.34.2' Making all in po gmake[2]: Entering directory `/usr/ports/net/glib-networking/work/glib-netw= orking-2.34.2/po' MSGFMT ar.gmo MSGFMT as.gmo MSGFMT bg.gmo MSGFMT be.gmo MSGFMT bn_IN.gmo MSGFMT ca.gmo MSGFMT ca@valencia.gmo MSGFMT cs.gmo MSGFMT da.gmo MSGFMT de.gmo MSGFMT el.gmo MSGFMT en_CA.gmo MSGFMT en_GB.gmo MSGFMT eo.gmo MSGFMT es.gmo MSGFMT et.gmo MSGFMT eu.gmo MSGFMT fa.gmo MSGFMT fi.gmo MSGFMT gl.gmo MSGFMT fr.gmo MSGFMT gu.gmo MSGFMT hi.gmo MSGFMT hu.gmo MSGFMT he.gmo MSGFMT it.gmo MSGFMT id.gmo MSGFMT ja.gmo MSGFMT km.gmo MSGFMT ko.gmo MSGFMT lv.gmo MSGFMT kn.gmo MSGFMT lt.gmo MSGFMT ml.gmo MSGFMT mr.gmo MSGFMT nb.gmo MSGFMT nl.gmo MSGFMT or.gmo MSGFMT pa.gmo MSGFMT pl.gmo MSGFMT pt.gmo MSGFMT pt_BR.gmo MSGFMT ro.gmo MSGFMT ru.gmo MSGFMT sk.gmo MSGFMT sl.gmo MSGFMT sr.gmo MSGFMT sr@latin.gmo MSGFMT ta.gmo MSGFMT sv.gmo MSGFMT te.gmo MSGFMT th.gmo MSGFMT tr.gmo MSGFMT uk.gmo MSGFMT ug.gmo MSGFMT vi.gmo MSGFMT zh_CN.gmo MSGFMT zh_HK.gmo MSGFMT zh_TW.gmo gmake[2]: Leaving directory `/usr/ports/net/glib-networking/work/glib-netwo= rking-2.34.2/po' Making all in proxy/libproxy gmake[2]: Entering directory `/usr/ports/net/glib-networking/work/glib-netw= orking-2.34.2/proxy/libproxy' CC libgiolibproxy_la-glibproxyresolver.lo CC libgiolibproxy_la-libproxy-module.lo CC glib_pacrunner-glibproxyresolver.o CC glib_pacrunner-glibpacrunner.o GEN org.gtk.GLib.PACRunner.service CCLD glib-pacrunner /usr/local/lib/libproxy.so: undefined reference to `std::ctype::_M_wi= den_init() const@GLIBCXX_3.4.11' collect2: error: ld returned 1 exit status gmake[2]: *** [glib-pacrunner] Error 1 gmake[2]: *** Waiting for unfinished jobs.... gmake[2]: Leaving directory `/usr/ports/net/glib-networking/work/glib-netwo= rking-2.34.2/proxy/libproxy' gmake[1]: *** [all-recursive] Error 1 gmake[1]: Leaving directory `/usr/ports/net/glib-networking/work/glib-netwo= rking-2.34.2' gmake: *** [all] Error 2 *** [do-build] Error code 1 Stop in /usr/ports/net/glib-networking. And my make.conf: .if !empty(.CURDIR:M/usr/ports/ports-mgmt/*) || !empty(.CURDIR:M/usr/ports/= */*nvidia*) || \ !empty(.CURDIR:M/usr/ports/*/*-kmod*) || !empty(.CURDIR:M/usr/ports= /multimedia/webcamd*) CC=3Dclang CXX=3Dclang++ CPP=3Dclang-cpp .elif empty(.CURDIR:M/usr/ports/net/openldap*) && empty(.CURDIR:M/usr/ports= /devel/boost-jam*) && \ empty(.CURDIR:M/usr/ports/net/openafs*) && empty(.CURDIR:M/usr/port= s/net-im/libmsn*) && \ empty(.CURDIR:M/usr/ports/audio/libsidplay*) && empty(.CURDIR:M/usr= /ports/net/openldap*) CC=3D/usr/local/bin/gcc47 CXX=3D/usr/local/bin/g++47 CPP=3D/usr/local/bin/cpp47 .elif empty(.CURDIR:M/usr/ports/devel/boost-jam*) && empty(.CURDIR:M/usr/po= rts/net/openafs*) && \ empty(.CURDIR:M/usr/ports/audio/libsidplay*) && empty(.CURDIR:M/usr= /ports/net/openldap*) CC=3D/usr/local/bin/gcc46 CXX=3D/usr/local/bin/g++46 CPP=3D/usr/local/bin/cpp46 .endif DISABLE_VULNERABILITIES=3D #WITH_NEW_XORG=3Dyes WITH_PKGNG=3Dyes KDE4_PREFIX=3D/usr/local WITH_ALSA=3Dyes WITH_CAIRO=3Dyes WITHOUT_CUPS=3Dyes WITH_DBUS=3Dyes WITHOUT_DEBUG=3Dyes WITH_EMACS=3Dyes WITH_FFMPEG=3Dyes WITHOUT_FIREBIRD=3D WITHOUT_GDBM=3Dyes WITH_GETTEXT=3Dyes WITH_GPGME=3Dyes WITH_GSSAPI=3Dyes WITH_GSTREAMER=3Dyes WITH_GTK=3Dyes WITH_GTK2=3Dyes WITH_HAL=3Dyes WITH_IMAGEMAGICK=3Dyes WITH_KDE4=3Dyes WITH_KERBEROS=3Dyes WITH_LAME=3Dyes WITH_LINUX=3Dyes WITH_LINUXTHREADS=3Dyes WITH_MANPAGES=3Dyes WITH_MMAP=3Dyes WITH_MMX=3Dyes WITH_MOZILLA=3Dyes WITHOUT_NLS=3Dyes WITH_NOTIFY=3Dyes WITH_NVIDIA=3Dyes WITH_NVIDIA_GL=3Dyes WITH_OPTIMIZATION=3Dyes WITH_OPTIMIZED_CFLAGS=3Dyes WITH_OPTIMIZED_FLAGS=3Dyes WITH_PCRE=3Dyes WITH_PNG=3Dyes WITH_PTHREADS=3Dyes WITH_QT4=3Dyes WITH_READLINE=3Dyes WITH_SQLITE=3Dyes WITH_SSE=3Dyes WITH_SSE2=3Dyes WITH_X86_ASM=3Dyes # added by use.perl 2013-03-22 22:57:48 PERL_VERSION=3D5.16.2 Cordially. Q. Schwerkolt = From owner-freebsd-gnome@FreeBSD.ORG Sat Mar 23 20:33:51 2013 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.FreeBSD.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 9A299A29; Sat, 23 Mar 2013 20:33:51 +0000 (UTC) (envelope-from meta@vmeta.jp) Received: from glory.vmeta.jp (7c293911.i-revonet.jp [124.41.57.17]) by mx1.freebsd.org (Postfix) with ESMTP id 6B04068A; Sat, 23 Mar 2013 20:33:50 +0000 (UTC) Received: from ssl.vmeta.jp (localhost [127.0.0.1]) by glory.vmeta.jp (Postfix) with ESMTP id 55A0A570; Sun, 24 Mar 2013 05:33:49 +0900 (JST) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Date: Sun, 24 Mar 2013 05:33:49 +0900 From: Koichiro IWAO To: , Subject: updating avahi to 0.6.30 or newer Message-ID: <70153ddef4277f3bb2b78722c932117b@vmeta.jp> X-Sender: meta@vmeta.jp User-Agent: Roundcube Webmail/0.8.4 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 23 Mar 2013 20:33:51 -0000 Hello, is it possible to update avahi to 0.6.30 or newer? I'm trying to update net/remmina 1.0.0 and it requires 0.6.30 at least. It will not very difficult as changes between 0.6.29 and 0.6.30 are quire simple. Relevant ports to be updated: $ make search name=avahi|grep ^Port Port: avahi-0.6.29_1 Port: avahi-app-0.6.29_3 Port: avahi-autoipd-0.6.29 Port: avahi-gtk-0.6.29_2 Port: avahi-libdns-0.6.29 Port: avahi-qt3-0.6.29_1 Port: avahi-qt4-0.6.29 Port: avahi-sharp-0.6.29 Port: py27-avahi-0.6.29_5 Port: net/gir-repository-avahi -- `whois vmeta.jp | nkf -w` meta From owner-freebsd-gnome@FreeBSD.ORG Sat Mar 23 20:46:20 2013 Return-Path: Delivered-To: gnome@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 51718FF7; Sat, 23 Mar 2013 20:46:20 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) by mx1.freebsd.org (Postfix) with ESMTP id 2DB57720; Sat, 23 Mar 2013 20:46:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.6/8.14.6) with ESMTP id r2NKkKRZ033361; Sat, 23 Mar 2013 20:46:20 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.6/8.14.6/Submit) id r2NKkJvO033360; Sat, 23 Mar 2013 20:46:19 GMT (envelope-from mezz) Date: Sat, 23 Mar 2013 20:46:19 GMT Message-Id: <201303232046.r2NKkJvO033360@freefall.freebsd.org> To: zaphod@berentweb.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Subject: Re: ports/177278: graphics/gegl does not compile X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.14 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, 23 Mar 2013 20:46:20 -0000 Synopsis: graphics/gegl does not compile State-Changed-From-To: open->feedback State-Changed-By: mezz State-Changed-When: Sat Mar 23 20:45:29 UTC 2013 State-Changed-Why: I can't reproduce it. Please show the output of 'dot -vV' and 'dot -c'. http://www.freebsd.org/cgi/query-pr.cgi?pr=177278