From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 02:30:16 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 100591065693; Sun, 3 Oct 2010 02:30:16 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DAE9D8FC1A; Sun, 3 Oct 2010 02:30:15 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o932UF2Y058789; Sun, 3 Oct 2010 02:30:15 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o932UFt0058779; Sun, 3 Oct 2010 02:30:15 GMT (envelope-from edwin) Date: Sun, 3 Oct 2010 02:30:15 GMT Message-Id: <201010030230.o932UFt0058779@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151166: [patch] converters/fribidi fails to build if devel/glib20 is installed X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 02:30:16 -0000 Synopsis: [patch] converters/fribidi fails to build if devel/glib20 is installed Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sun Oct 3 02:30:14 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151166 From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 02:39:18 2010 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 13A8F1065674 for ; Sun, 3 Oct 2010 02:39:18 +0000 (UTC) (envelope-from jhein@gossamer.timing.com) Received: from mout.perfora.net (mout.perfora.net [74.208.4.195]) by mx1.freebsd.org (Postfix) with ESMTP id D19628FC16 for ; Sun, 3 Oct 2010 02:39:17 +0000 (UTC) Received: from gossamer.timing.com ([206.168.13.144]) by mrelay.perfora.net (node=mrus2) with ESMTP (Nemesis) id 0Lllpg-1OStSp3qBU-00ZHsy; Sat, 02 Oct 2010 22:26:35 -0400 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="xWFuU/5WGn" Content-Transfer-Encoding: 7bit Message-ID: <19623.59863.344335.439131@gossamer.timing.com> Date: Sat, 2 Oct 2010 20:26:31 -0600 To: FreeBSD-gnats-submit@freebsd.org From: John Hein X-send-pr-version: 3.113 X-GNATS-Notify: X-Mailer: VM 8.0.12 under 22.3.1 X-Provags-ID: V02:K0:TUOFRqG1s3V98I7gOv2XAEkoZGWjaD+mjhzu3ROWqKR WfDb6/m4E4YyoUZzwDUhj1TlnllWi4dNSCSqcHKbJdLsG1skx2 BkQe9t+pv5RXaGKmFLPnqBHvB12g3ZddX8lIW0h7Gb2/RmPsCq dcD8ti+0gC6ad7ENlKnvXj20yPsBZqwi/xi2vPLZMkkGDcA3MC g9sT1dULoX6HIb4OhaBog== Cc: gnome@FreeBSD.org Subject: [patch] converters/fribidi fails to build if devel/glib20 is installed X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Hein List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 02:39:18 -0000 --xWFuU/5WGn Content-Type: text/plain; charset=us-ascii Content-Description: message body text Content-Transfer-Encoding: 7bit >Submitter-Id: current-users >Originator: John Hein >Organization: >Confidential: no >Synopsis: [patch] converters/fribidi fails to build if devel/glib20 is installed >Severity: non-critical >Priority: low >Category: ports >Class: sw-bug >Release: >Environment: FreeBSD 7-STABLE >Description: --with-glib=auto is the default 'configure' behavior. But 0.19.2 fails to link if glib is detected at the time configure is run: ../lib/.libs/libfribidi.so: undefined reference to `g_assert' The reason is that g_assert is not defined because glib/gtestutils.h is not included. This was noticed with glib-2.24.2, but likely occurs with other versions of glib, too. It was fixed in cvs upstream ... http://lists.freedesktop.org/archives/fribidi/2010-February/000598.html ... but no new release has been made. For 0.19.2 in ports, just use --without-glib (which is effectively how pointyhat builds it since glib is not a dependency). The patch below does that. It also fixes the URL in pkg-descr. >How-To-Repeat: Install devel/glib20. Then try to build converters/fribidi. >Fix: --xWFuU/5WGn Content-Type: text/plain; name="patch-without-glib" Content-Description: fix fribidi 0.19.2 if glib installed Content-Disposition: inline; filename="patch-without-glib" Content-Transfer-Encoding: 7bit Index: Makefile =================================================================== RCS file: /base/FreeBSD-CVS/ports/converters/fribidi/Makefile,v retrieving revision 1.22 diff -u -p -r1.22 Makefile --- Makefile 23 Aug 2009 17:17:33 -0000 1.22 +++ Makefile 3 Oct 2010 01:18:30 -0000 @@ -42,6 +42,8 @@ MAN3= fribidi_charset_to_unicode.3 frib CONFIGURE_ARGS= --disable-debug .endif +CONFIGURE_ARGS+= --without-glib + post-patch: @${SED} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' < \ ${FILESDIR}/fribidi-config > ${WRKDIR}/fribidi-config Index: pkg-descr =================================================================== RCS file: /base/FreeBSD-CVS/ports/converters/fribidi/pkg-descr,v retrieving revision 1.3 diff -u -p -r1.3 pkg-descr --- pkg-descr 12 Sep 2005 07:29:08 -0000 1.3 +++ pkg-descr 3 Oct 2010 01:23:56 -0000 @@ -17,4 +17,4 @@ every Unicode character will be treated specification. The same is true for the mirroring of characters, which also works for all the characters listed as mirrorable in the Unicode specification. -WWW: http://fribidi.org/wiki/ +WWW: http://fribidi.org/ --xWFuU/5WGn-- From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 03:40:05 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2D19F106564A for ; Sun, 3 Oct 2010 03:40:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 02C5E8FC0C for ; Sun, 3 Oct 2010 03:40:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o933e4lK030620 for ; Sun, 3 Oct 2010 03:40:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o933e4ep030619; Sun, 3 Oct 2010 03:40:04 GMT (envelope-from gnats) Date: Sun, 3 Oct 2010 03:40:04 GMT Message-Id: <201010030340.o933e4ep030619@freefall.freebsd.org> To: gnome@FreeBSD.org From: Anonymous Cc: Subject: Re: ports/151166: [patch] converters/fribidi fails to build if devel/glib20 is installed X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anonymous List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 03:40:05 -0000 The following reply was made to PR ports/151166; it has been noted by GNATS. From: Anonymous To: John Hein Cc: bug-followup@FreeBSD.org Subject: Re: ports/151166: [patch] converters/fribidi fails to build if devel/glib20 is installed Date: Sun, 03 Oct 2010 07:34:13 +0400 I think it affects only default LOCALBASE. With non-default one configure script won't find pkg-config and won't check glib version. From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 14:27:55 2010 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 837E4106564A; Sun, 3 Oct 2010 14:27:55 +0000 (UTC) (envelope-from oberman@es.net) Received: from mailgw.es.net (mail1.es.net [IPv6:2001:400:201:1::2]) by mx1.freebsd.org (Postfix) with ESMTP id 7063B8FC15; Sun, 3 Oct 2010 14:27:55 +0000 (UTC) Received: from ptavv.es.net (ptavv.es.net [IPv6:2001:400:910::29]) by mailgw.es.net (8.14.3/8.14.3) with ESMTP id o93ERqD6031073 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Sun, 3 Oct 2010 07:27:54 -0700 Received: from ptavv.es.net (localhost [127.0.0.1]) by ptavv.es.net (Tachyon Server) with ESMTP id BB39E1CC41; Sun, 3 Oct 2010 07:27:52 -0700 (PDT) To: Joe Marcus Clarke In-reply-to: Your message of "Fri, 01 Oct 2010 13:32:10 EDT." <4CA61B1A.5090104@freebsd.org> Date: Sun, 03 Oct 2010 07:27:52 -0700 From: "Kevin Oberman" Message-Id: <20101003142752.BB39E1CC41@ptavv.es.net> Cc: gnome@freebsd.org Subject: Re: Resetting Gnome environment X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 14:27:55 -0000 > Date: Fri, 01 Oct 2010 13:32:10 -0400 > From: Joe Marcus Clarke > > On 10/1/10 1:24 PM, Kevin Oberman wrote: > > I have a 4 year old system that has gone through several releases of > > Gnome. I suspect I have some bad configuration data from old versions. > > > > I have removed .gconfd, .gnome2 and .local, but I still get much of my > > configuration loaded, including all of my panels and applets and it > > still knows all of my startup apps. > > > > an anyone tell me where this information is stored so that I can flush > > it and get back to a "default" session? > > You forgot ~/.gnome and ~/.gconf. Thanks, Joe. That didn't do anything about my startup programs, but it seems to have cleaned out whatever was causing my problems with things like applets crashing frequently and the like. Any clues as to the location of the startup programs? (Note, this is out of curiosity. They are not causing any problems for me.) -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 Key fingerprint:059B 2DDF 031C 9BA3 14A4 EADA 927D EBB3 987B 3751 From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 15:35:11 2010 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3F226106566B for ; Sun, 3 Oct 2010 15:35:11 +0000 (UTC) (envelope-from marcus@freebsd.org) Received: from av-tac-rtp.cisco.com (hen.cisco.com [64.102.19.198]) by mx1.freebsd.org (Postfix) with ESMTP id EE5F08FC08 for ; Sun, 3 Oct 2010 15:35:10 +0000 (UTC) X-TACSUNS: Virus Scanned Received: from rooster.cisco.com (localhost.cisco.com [127.0.0.1]) by av-tac-rtp.cisco.com (8.13.8+Sun/8.13.8) with ESMTP id o93FZ7gU029822; Sun, 3 Oct 2010 11:35:07 -0400 (EDT) Received: from jclarke-mac.local (jclarke-pc.cisco.com [172.18.254.236]) by rooster.cisco.com (8.13.8+Sun/8.13.8) with ESMTP id o93FZ7pb000861; Sun, 3 Oct 2010 11:35:07 -0400 (EDT) Message-ID: <4CA8A2AB.1090901@freebsd.org> Date: Sun, 03 Oct 2010 11:35:07 -0400 From: Joe Marcus Clarke Organization: FreeBSD, Inc. User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.6; en-US; rv:1.9.2.9) Gecko/20100915 Thunderbird/3.1.4 MIME-Version: 1.0 To: Kevin Oberman References: <20101003142752.BB39E1CC41@ptavv.es.net> In-Reply-To: <20101003142752.BB39E1CC41@ptavv.es.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: gnome@freebsd.org Subject: Re: Resetting Gnome environment X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 15:35:11 -0000 On 10/3/10 10:27 AM, Kevin Oberman wrote: >> Date: Fri, 01 Oct 2010 13:32:10 -0400 >> From: Joe Marcus Clarke >> >> On 10/1/10 1:24 PM, Kevin Oberman wrote: >>> I have a 4 year old system that has gone through several releases of >>> Gnome. I suspect I have some bad configuration data from old versions. >>> >>> I have removed .gconfd, .gnome2 and .local, but I still get much of my >>> configuration loaded, including all of my panels and applets and it >>> still knows all of my startup apps. >>> >>> an anyone tell me where this information is stored so that I can flush >>> it and get back to a "default" session? >> >> You forgot ~/.gnome and ~/.gconf. > > Thanks, Joe. That didn't do anything about my startup programs, but it > seems to have cleaned out whatever was causing my problems with things > like applets crashing frequently and the like. > > Any clues as to the location of the startup programs? (Note, this is out > of curiosity. They are not causing any problems for me.) What startup programs? There's also ~/.dmrc, ~/.config, and ~/.cache in addition to a slew of other per-application paths that you would need to get rid of to truly start from scratch. Joe -- Joe Marcus Clarke FreeBSD GNOME Team :: gnome@FreeBSD.org FreeNode / #freebsd-gnome http://www.FreeBSD.org/gnome From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 15:46:09 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 39C30106566B; Sun, 3 Oct 2010 15:46:09 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 1025C8FC1A; Sun, 3 Oct 2010 15:46:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93Fk8Av022209; Sun, 3 Oct 2010 15:46:08 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93Fk8Xv022205; Sun, 3 Oct 2010 15:46:08 GMT (envelope-from mezz) Date: Sun, 3 Oct 2010 15:46:08 GMT Message-Id: <201010031546.o93Fk8Xv022205@freefall.freebsd.org> To: jhein@symmetricom.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Cc: Subject: Re: ports/151166: [patch] converters/fribidi fails to build if devel/glib20 is installed X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 15:46:09 -0000 Synopsis: [patch] converters/fribidi fails to build if devel/glib20 is installed State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Sun Oct 3 15:45:57 UTC 2010 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=151166 From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 15:50:03 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 07D301065675 for ; Sun, 3 Oct 2010 15:50:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id D24378FC15 for ; Sun, 3 Oct 2010 15:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93Fo2Dh022278 for ; Sun, 3 Oct 2010 15:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93Fo2bH022277; Sun, 3 Oct 2010 15:50:02 GMT (envelope-from gnats) Date: Sun, 3 Oct 2010 15:50:02 GMT Message-Id: <201010031550.o93Fo2bH022277@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/151166: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 15:50:03 -0000 The following reply was made to PR ports/151166; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151166: commit references a PR Date: Sun, 3 Oct 2010 15:45:42 +0000 (UTC) mezz 2010-10-03 15:45:37 UTC FreeBSD ports repository Modified files: converters/fribidi Makefile pkg-descr Log: -Disable glib for it will not enable if it exists in the system. -Update the WWW. PR: ports/151166 Submitted by: John Hein Revision Changes Path 1.23 +3 -2 ports/converters/fribidi/Makefile 1.4 +1 -1 ports/converters/fribidi/pkg-descr _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 15:51:53 2010 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1FE1D106566B; Sun, 3 Oct 2010 15:51:53 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-fx0-f54.google.com (mail-fx0-f54.google.com [209.85.161.54]) by mx1.freebsd.org (Postfix) with ESMTP id 7EF548FC0A; Sun, 3 Oct 2010 15:51:52 +0000 (UTC) Received: by fxm9 with SMTP id 9so3688564fxm.13 for ; Sun, 03 Oct 2010 08:51:51 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:received:in-reply-to :references:date:message-id:subject:from:to:cc:content-type :content-transfer-encoding; bh=f+I18jMxvqu+rIaiw1BX/0PgS1NKQrxASGBIujr0eOo=; b=rPs3Y/JwhVxZe3uq8Aw5lIfwfPUaEwR9hrzh2rh/EC1a8a8D1vV1NyPjNhUnUp3E5V 0EqaYs3g403r9Vxby8sNv6qiVX+fHRZVZl3EFFWKymMuzf7nijwEVuL58ijIhcVGbZjF E6YSbsWWa/J/Bw4QmCr4m30uDUHesZXSLoxoA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type:content-transfer-encoding; b=U4mC9FWr+2qia/RQcGUyjDfmFOepM24X83lK/hGDYz1wa3ayHc5lUefIOYfo5EyLJ/ NNAeYV+AOaYlVNUp7zfvUqWB9ZJwq5FxSiP7cQUJX4ze6BeMMp7uh8tyc5/k7fO5RZs8 f+e8vKipRAtG0z6d+V5O/y2ZCR6piP4MB8Q0w= MIME-Version: 1.0 Received: by 10.223.104.11 with SMTP id m11mr7737777fao.50.1286119543081; Sun, 03 Oct 2010 08:25:43 -0700 (PDT) Received: by 10.223.126.207 with HTTP; Sun, 3 Oct 2010 08:25:43 -0700 (PDT) In-Reply-To: <20101003142752.BB39E1CC41@ptavv.es.net> References: <4CA61B1A.5090104@freebsd.org> <20101003142752.BB39E1CC41@ptavv.es.net> Date: Sun, 3 Oct 2010 10:25:43 -0500 Message-ID: From: Jeremy Messenger To: Kevin Oberman Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: gnome@freebsd.org, Joe Marcus Clarke Subject: Re: Resetting Gnome environment X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 15:51:53 -0000 On Sun, Oct 3, 2010 at 9:27 AM, Kevin Oberman wrote: >> Date: Fri, 01 Oct 2010 13:32:10 -0400 >> From: Joe Marcus Clarke >> >> On 10/1/10 1:24 PM, Kevin Oberman wrote: >> > I have a 4 year old system that has gone through several releases of >> > Gnome. I suspect I have some bad configuration data from old versions. >> > >> > I have removed .gconfd, .gnome2 and .local, but I still get much of my >> > configuration loaded, including all of my panels and applets and it >> > still knows all of my startup apps. >> > >> > an anyone tell me where this information is stored so that I can flush >> > it and get back to a "default" session? >> >> You forgot ~/.gnome and ~/.gconf. > > Thanks, Joe. That didn't do anything about my startup programs, =A0but it > seems to have cleaned out whatever was causing my problems with things > like applets crashing frequently and the like. > > Any clues as to the location of the startup programs? (Note, this is out > of curiosity. They are not causing any problems for me.) I think it's in the ~/.config/. You might want to check in there before remove that directory. Because GNOME isn't alone that storage in the ~/.config/. Cheers, Mezz > -- > R. Kevin Oberman, Network Engineer > Energy Sciences Network (ESnet) > Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) > E-mail: oberman@es.net =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0 =A0Phone: +1 510 4= 86-8634 > Key fingerprint:059B 2DDF 031C 9BA3 14A4 =A0EADA 927D EBB3 987B 3751 --=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 Sun Oct 3 16:00:16 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 417FA106566C for ; Sun, 3 Oct 2010 16:00:16 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 3056D8FC14 for ; Sun, 3 Oct 2010 16:00:16 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93G0G1C032675 for ; Sun, 3 Oct 2010 16:00:16 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93G0GR3032657; Sun, 3 Oct 2010 16:00:16 GMT (envelope-from gnats) Date: Sun, 3 Oct 2010 16:00:16 GMT Message-Id: <201010031600.o93G0GR3032657@freefall.freebsd.org> To: gnome@FreeBSD.org From: John Hein Cc: Subject: Re: ports/151166: [patch] converters/fribidi fails to build if devel/glib20 is installed X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Hein List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 16:00:16 -0000 The following reply was made to PR ports/151166; it has been noted by GNATS. From: John Hein To: Anonymous Cc: bug-followup@FreeBSD.org Subject: Re: ports/151166: [patch] converters/fribidi fails to build if devel/glib20 is installed Date: Sun, 3 Oct 2010 09:53:19 -0600 Anonymous wrote at 07:34 +0400 on Oct 3, 2010: > I think it affects only default LOCALBASE. With non-default one > configure script won't find pkg-config and won't check glib version. Sure. Putting it another way, if pkg-config is not in your path or glib-2.0.pc is not in PKG_CONFIG_PATH and/or the pkg-config default search path, then fribidi's configure will not detect glib and the build of fribidi will not fail. But in most cases I think it's accurate to say that if someone has devel/glib20 installed, fribidi's build will fail. From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 16:08:06 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD33C1065674; Sun, 3 Oct 2010 16:08:06 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id B4B908FC12; Sun, 3 Oct 2010 16:08:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93G866s044533; Sun, 3 Oct 2010 16:08:06 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93G86vf044529; Sun, 3 Oct 2010 16:08:06 GMT (envelope-from mezz) Date: Sun, 3 Oct 2010 16:08:06 GMT Message-Id: <201010031608.o93G86vf044529@freefall.freebsd.org> To: chris@geonumerical.org, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Cc: Subject: Re: ports/150441: Unable to build devel/py-dbus port X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 16:08:06 -0000 Synopsis: Unable to build devel/py-dbus port State-Changed-From-To: feedback->closed State-Changed-By: mezz State-Changed-When: Sun Oct 3 16:07:20 UTC 2010 State-Changed-Why: Committed a fix by disable API build if epydoc exists. Thanks for report! http://www.freebsd.org/cgi/query-pr.cgi?pr=150441 From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 16:10:06 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9518E106564A for ; Sun, 3 Oct 2010 16:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6B4CA8FC14 for ; Sun, 3 Oct 2010 16:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93GA6NE044703 for ; Sun, 3 Oct 2010 16:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93GA65u044702; Sun, 3 Oct 2010 16:10:06 GMT (envelope-from gnats) Date: Sun, 3 Oct 2010 16:10:06 GMT Message-Id: <201010031610.o93GA65u044702@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/150441: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 16:10:06 -0000 The following reply was made to PR ports/150441; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/150441: commit references a PR Date: Sun, 3 Oct 2010 16:07:12 +0000 (UTC) mezz 2010-10-03 16:07:08 UTC FreeBSD ports repository Modified files: devel/py-dbus Makefile Log: Disable build the api document. It will build if epydoc exists in system and it can cause a few users to get build failure for some reason. PR: ports/150441 Reported by: Chris Revision Changes Path 1.38 +2 -1 ports/devel/py-dbus/Makefile _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 16:22:59 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C747106566C; Sun, 3 Oct 2010 16:22:59 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 337FA8FC12; Sun, 3 Oct 2010 16:22:59 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93GMxur064928; Sun, 3 Oct 2010 16:22:59 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93GMxvm064924; Sun, 3 Oct 2010 16:22:59 GMT (envelope-from mezz) Date: Sun, 3 Oct 2010 16:22:59 GMT Message-Id: <201010031622.o93GMxvm064924@freefall.freebsd.org> To: buganini@gmail.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Cc: Subject: Re: ports/150870: [patch] let sysutils/brasero recognize cdrecord version properly X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 16:22:59 -0000 Synopsis: [patch] let sysutils/brasero recognize cdrecord version properly State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Sun Oct 3 16:22:48 UTC 2010 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=150870 From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 16:30:09 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B568A10656A7 for ; Sun, 3 Oct 2010 16:30:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 8B3CF8FC1D for ; Sun, 3 Oct 2010 16:30:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93GU9Ra065377 for ; Sun, 3 Oct 2010 16:30:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93GU9DM065376; Sun, 3 Oct 2010 16:30:09 GMT (envelope-from gnats) Date: Sun, 3 Oct 2010 16:30:09 GMT Message-Id: <201010031630.o93GU9DM065376@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/150870: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 16:30:09 -0000 The following reply was made to PR ports/150870; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/150870: commit references a PR Date: Sun, 3 Oct 2010 16:22:39 +0000 (UTC) mezz 2010-10-03 16:22:34 UTC FreeBSD ports repository Modified files: sysutils/brasero Makefile Removed files: sysutils/brasero/files patch-plugins-cdrtools-burn-cdrecord.c Log: The patch is no longer need with the update of sysutils/cdrtools as it was for the old version. The patch break with new cdrtools. PR: ports/150870 Submitted by: Kuan-Chung Chiu Revision Changes Path 1.33 +1 -1 ports/sysutils/brasero/Makefile 1.2 +0 -10 ports/sysutils/brasero/files/patch-plugins-cdrtools-burn-cdrecord.c (dead) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 16:51:58 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F142B1065674; Sun, 3 Oct 2010 16:51:58 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C8C9D8FC1C; Sun, 3 Oct 2010 16:51:58 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93GpwmE095976; Sun, 3 Oct 2010 16:51:58 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93GpwJx095972; Sun, 3 Oct 2010 16:51:58 GMT (envelope-from mezz) Date: Sun, 3 Oct 2010 16:51:58 GMT Message-Id: <201010031651.o93GpwJx095972@freefall.freebsd.org> To: joe@zircon.seattle.wa.us, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Cc: Subject: Re: ports/142549: sysutils/hal: hald cannot find DVD/CS anymore X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 16:51:59 -0000 Synopsis: sysutils/hal: hald cannot find DVD/CS anymore State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Sun Oct 3 16:51:39 UTC 2010 State-Changed-Why: Feedback timeout. http://www.freebsd.org/cgi/query-pr.cgi?pr=142549 From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 17:04:46 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BF403106566C; Sun, 3 Oct 2010 17:04:46 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 95FC28FC1F; Sun, 3 Oct 2010 17:04:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93H4kPq008575; Sun, 3 Oct 2010 17:04:46 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93H4jji008571; Sun, 3 Oct 2010 17:04:45 GMT (envelope-from mezz) Date: Sun, 3 Oct 2010 17:04:45 GMT Message-Id: <201010031704.o93H4jji008571@freefall.freebsd.org> To: takawata@init-main.com, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Cc: Subject: Re: ports/138410: finance/gnucash quote price editor adds price data as wrong date. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 17:04:46 -0000 Synopsis: finance/gnucash quote price editor adds price data as wrong date. State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Sun Oct 3 17:04:21 UTC 2010 State-Changed-Why: Committed, thanks! It will be great if you can submit this patch to its bug tracker. http://www.freebsd.org/cgi/query-pr.cgi?pr=138410 From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 17:10:04 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5ED8C106566C for ; Sun, 3 Oct 2010 17:10:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 34FE48FC0A for ; Sun, 3 Oct 2010 17:10:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93HA4Cq008722 for ; Sun, 3 Oct 2010 17:10:04 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93HA4LK008721; Sun, 3 Oct 2010 17:10:04 GMT (envelope-from gnats) Date: Sun, 3 Oct 2010 17:10:04 GMT Message-Id: <201010031710.o93HA4LK008721@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/138410: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 17:10:04 -0000 The following reply was made to PR ports/138410; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/138410: commit references a PR Date: Sun, 3 Oct 2010 17:04:12 +0000 (UTC) mezz 2010-10-03 17:04:08 UTC FreeBSD ports repository Modified files: finance/gnucash Makefile Added files: finance/gnucash/files patch-src_app-utils_guile-util.c Log: Fix the quote price editor adds price data as wrong date. Bump the PORTREVISION. More details by the submitter: "gnucash quote price editor consume date string and convert the string by strptime(3) then get time_t by mktime(3). And struct tm, a mktime argument is not initialized and mktime detects insane structure and returns -1. So the entry is always added as epoch -1 date." PR: ports/138410 Submitted by: Takanori Watanabe Revision Changes Path 1.148 +1 -1 ports/finance/gnucash/Makefile 1.1 +11 -0 ports/finance/gnucash/files/patch-src_app-utils_guile-util.c (new) _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 17:10:06 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 47CB3106564A for ; Sun, 3 Oct 2010 17:10:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 37E468FC15 for ; Sun, 3 Oct 2010 17:10:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93HA65C008743 for ; Sun, 3 Oct 2010 17:10:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93HA6GU008742; Sun, 3 Oct 2010 17:10:06 GMT (envelope-from gnats) Date: Sun, 3 Oct 2010 17:10:06 GMT Message-Id: <201010031710.o93HA6GU008742@freefall.freebsd.org> To: gnome@FreeBSD.org From: Anonymous Cc: Subject: Re: ports/151166: [patch] converters/fribidi fails to build if devel/glib20 is installed X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anonymous List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 17:10:06 -0000 The following reply was made to PR ports/151166; it has been noted by GNATS. From: Anonymous To: John Hein Cc: bug-followup@FreeBSD.org Subject: Re: ports/151166: [patch] converters/fribidi fails to build if devel/glib20 is installed Date: Sun, 03 Oct 2010 21:02:53 +0400 John Hein writes: > Anonymous wrote at 07:34 +0400 on Oct 3, 2010: > > I think it affects only default LOCALBASE. With non-default one > > configure script won't find pkg-config and won't check glib version. > > Sure. Putting it another way, if pkg-config is not in your path or FYI, pkg-config *is* in my PATH. If I move PKG_CHECK_MODULES out of if-then-else condition it works, it also works if I define PKG_CONFIG in environment. From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 17:14:27 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D25EA1065672; Sun, 3 Oct 2010 17:14:27 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A981B8FC13; Sun, 3 Oct 2010 17:14:27 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93HERvU019189; Sun, 3 Oct 2010 17:14:27 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93HERwt019185; Sun, 3 Oct 2010 17:14:27 GMT (envelope-from mezz) Date: Sun, 3 Oct 2010 17:14:27 GMT Message-Id: <201010031714.o93HERwt019185@freefall.freebsd.org> To: O.Seibert@cs.ru.nl, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Cc: Subject: Re: ports/143260: devel/gobject-introspection writes files in $HOME X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 17:14:27 -0000 Synopsis: devel/gobject-introspection writes files in $HOME State-Changed-From-To: open->patched State-Changed-By: mezz State-Changed-When: Sun Oct 3 17:12:25 UTC 2010 State-Changed-Why: Committed a fix in MarcusCom CVS by get it put in ${WRKDIR} instead of $HOME: http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports/devel/gobject-introspection/ http://www.freebsd.org/cgi/query-pr.cgi?pr=143260 From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 17:18:46 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5B1071065695; Sun, 3 Oct 2010 17:18:46 +0000 (UTC) (envelope-from mezz@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 32BF28FC0A; Sun, 3 Oct 2010 17:18:46 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93HIkmq019406; Sun, 3 Oct 2010 17:18:46 GMT (envelope-from mezz@freefall.freebsd.org) Received: (from mezz@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93HIjUU019402; Sun, 3 Oct 2010 17:18:45 GMT (envelope-from mezz) Date: Sun, 3 Oct 2010 17:18:45 GMT Message-Id: <201010031718.o93HIjUU019402@freefall.freebsd.org> To: sunpoet@sunpoet.net, mezz@FreeBSD.org, gnome@FreeBSD.org From: mezz@FreeBSD.org Cc: Subject: Re: ports/151099: [PATCH] misc/pciids: update to 20100827 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 17:18:46 -0000 Synopsis: [PATCH] misc/pciids: update to 20100827 State-Changed-From-To: open->closed State-Changed-By: mezz State-Changed-When: Sun Oct 3 17:18:32 UTC 2010 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=151099 From owner-freebsd-gnome@FreeBSD.ORG Sun Oct 3 17:20:05 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 741A3106564A for ; Sun, 3 Oct 2010 17:20:05 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 64B9D8FC12 for ; Sun, 3 Oct 2010 17:20:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o93HK5RL019505 for ; Sun, 3 Oct 2010 17:20:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o93HK5ws019504; Sun, 3 Oct 2010 17:20:05 GMT (envelope-from gnats) Date: Sun, 3 Oct 2010 17:20:05 GMT Message-Id: <201010031720.o93HK5ws019504@freefall.freebsd.org> To: gnome@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/151099: commit references a PR X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 03 Oct 2010 17:20:05 -0000 The following reply was made to PR ports/151099; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151099: commit references a PR Date: Sun, 3 Oct 2010 17:18:27 +0000 (UTC) mezz 2010-10-03 17:18:23 UTC FreeBSD ports repository Modified files: misc/pciids Makefile distinfo Log: Update to 20100827. PR: ports/151099 Submitted by: sunpoet Revision Changes Path 1.21 +2 -2 ports/misc/pciids/Makefile 1.20 +3 -3 ports/misc/pciids/distinfo _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-gnome@FreeBSD.ORG Mon Oct 4 01:50:02 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F2C1F106564A for ; Mon, 4 Oct 2010 01:50:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id C82788FC14 for ; Mon, 4 Oct 2010 01:50:02 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o941o2la047907 for ; Mon, 4 Oct 2010 01:50:02 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o941o23H047905; Mon, 4 Oct 2010 01:50:02 GMT (envelope-from gnats) Date: Mon, 4 Oct 2010 01:50:02 GMT Message-Id: <201010040150.o941o23H047905@freefall.freebsd.org> To: gnome@FreeBSD.org From: John Hein Cc: Subject: Re: ports/151166: [patch] converters/fribidi fails to build if devel/glib20 is installed X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Hein List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Oct 2010 01:50:03 -0000 The following reply was made to PR ports/151166; it has been noted by GNATS. From: John Hein To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/151166: [patch] converters/fribidi fails to build if devel/glib20 is installed Date: Sun, 3 Oct 2010 19:48:45 -0600 For the sake of PR posterity, upstream comments on the need (or not) for glib... http://lists.freedesktop.org/archives/fribidi/2010-October/000605.html Basically, it's currently not needed (but I imagine for some platforms might help with portability issues). From owner-freebsd-gnome@FreeBSD.ORG Mon Oct 4 11:07:20 2010 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5CDA91065672 for ; Mon, 4 Oct 2010 11:07:20 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 311C78FC08 for ; Mon, 4 Oct 2010 11:07:20 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o94B7K31066167 for ; Mon, 4 Oct 2010 11:07:20 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o94B7JY4066165 for gnome@FreeBSD.org; Mon, 4 Oct 2010 11:07:19 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 4 Oct 2010 11:07:19 GMT Message-Id: <201010041107.o94B7JY4066165@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: gnome@FreeBSD.org Cc: Subject: Current problem reports assigned to gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 04 Oct 2010 11:07:20 -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 -------------------------------------------------------------------------------- p ports/150432 gnome [FIX] x11/libcapplet does not build on OSVERSION >= 80 f ports/150400 gnome devel/gio-fam-backend refuses to install p ports/150350 gnome I have upgraded the graphics/cairo port to 1.10.0 f ports/149945 gnome x11-toolkits/vte: fails to build p ports/149629 gnome [PATCH] lang/gjs: update to 0.7 f ports/149405 gnome ports-mgmt/gnome-packagekit: The backend exited unexpe o 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 p ports/143260 gnome devel/gobject-introspection writes files in $HOME p ports/141033 gnome [PATCH] allow to build devel/libsoup without gnome o ports/140533 gnome bsd.gnome.mk - mtree may get parameters w/o space s ports/140216 gnome [patch] devel/nspr does not check POLLHUP in PR_Connec s ports/137367 gnome net/libproxy: add menu option to configure dependence o ports/132304 gnome ports/devel/dbus misses /var/db/dbus/machine-id in dis 14 problems total. From owner-freebsd-gnome@FreeBSD.ORG Tue Oct 5 23:54:54 2010 Return-Path: Delivered-To: gnome@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 66D9D1065673 for ; Tue, 5 Oct 2010 23:54:54 +0000 (UTC) (envelope-from pav@FreeBSD.org) Received: from raven.customer.vol.cz (raven.customer.vol.cz [195.250.144.108]) by mx1.freebsd.org (Postfix) with ESMTP id C6C488FC2B for ; Tue, 5 Oct 2010 23:54:52 +0000 (UTC) Received: from [192.168.0.23] (ip-62-245-117-217.net.upcbroadband.cz [62.245.117.217]) (authenticated bits=0) by raven.customer.vol.cz (8.14.3/8.14.3) with ESMTP id o95NRleQ055161; Wed, 6 Oct 2010 01:27:48 +0200 (CEST) (envelope-from pav@FreeBSD.org) From: Pav Lucistnik To: gnome@FreeBSD.org Content-Type: multipart/signed; micalg="pgp-sha1"; protocol="application/pgp-signature"; boundary="=-QM0KbYi4rRxaXqQsy8Xf" Date: Wed, 06 Oct 2010 01:27:46 +0200 Message-ID: <1286321266.42871.64.camel@hood.oook.cz> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 FreeBSD GNOME Team Port X-Scanned-By: MIMEDefang 2.68 on 195.250.144.108 X-Milter: Spamilter (Reciever: raven.customer.vol.cz; Sender-ip: 62.245.117.217; Sender-helo: [192.168.0.23]; ) Cc: mezz@FreeBSD.org Subject: [Fwd: libcapplet-1.4.0.5_13 failed on amd64 8] X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: pav@FreeBSD.org List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Oct 2010 23:54:54 -0000 --=-QM0KbYi4rRxaXqQsy8Xf Content-Type: text/plain; charset="ISO-8859-2" Content-Transfer-Encoding: quoted-printable -------- P=F8eposlan=E1 zpr=E1va -------- > Od: User Ports-amd64 > Komu: cvs@oook.cz, itetcu@FreeBSD.org > P=F8edm=ECt: libcapplet-1.4.0.5_13 failed on amd64 8 > Datum: Tue, 5 Oct 2010 15:58:36 GMT >=20 > You can also find this build log at >=20 > http://pointyhat.FreeBSD.org/errorlogs/amd64-errorlogs/a.8.201010051408= 33/libcapplet-1.4.0.5_13.log >=20 > building libcapplet-1.4.0.5_13 on gohan61.freebsd.org > in directory /y/pkgbuild/8/20101005140833/chroot/18 > building for: 8.0-RELEASE-p2 amd64 > maintained by: gnome@FreeBSD.org > port directory: /usr/ports/x11/libcapplet > Makefile ident: $FreeBSD: ports/x11/libcapplet/Makefile,v 1.21 2010/10/02= 21:04:04 mezz Exp $ > build started at Tue Oct 5 15:56:59 UTC 2010 > FETCH_DEPENDS=3D > PATCH_DEPENDS=3D > EXTRACT_DEPENDS=3D > BUILD_DEPENDS=3DORBit-0.5.17_5.tbz bash-4.1.7_2.tbz docbook-1.4.tbz docbo= ok-4.1_4.tbz docbook-4.2.tbz docbook-4.3.tbz docbook-4.4_2.tbz docbook-4.5_= 2.tbz docbook-5.0_1.tbz docbook-sk-4.1.2_4.tbz docbook-xml-4.2_1.tbz docboo= k-xml-4.3.tbz docbook-xml-4.4_1.tbz docbook-xml-4.5.tbz docbook-xsl-1.75.2.= tbz esound-0.2.41.tbz getopt-1.1.4_2.tbz gettext-0.18.1.1.tbz glib-1.2.10_1= 3.tbz gnome-libs-1.4.2_16.tbz gnomehier-2.3_12.tbz gtk-1.2.10_22.tbz imlib-= 1.9.15_12.tbz inputproto-2.0.tbz iso8879-1986_2.tbz jbigkit-1.6.tbz jpeg-8_= 3.tbz kbproto-1.0.4.tbz libICE-1.0.6,1.tbz libSM-1.1.1_2,1.tbz libX11-1.3.3= _1,1.tbz libXau-1.0.5.tbz libXdmcp-1.0.3.tbz libXext-1.1.1,1.tbz libXi-1.3,= 1.tbz libXpm-3.5.7.tbz libXt-1.0.7.tbz libaudiofile-0.2.7.tbz libgcrypt-1.4= .6.tbz libgpg-error-1.8.tbz libiconv-1.13.1_1.tbz libpthread-stubs-0.3_3.tb= z libungif-4.1.4_5.tbz libxcb-1.7.tbz libxml-1.8.17_4.tbz libxml2-2.7.7.tbz= libxslt-1.1.26_2.tbz perl-5.10.1_2.tbz pkg-config-0.25_1.tbz png-1.4.3.tbz= python26-2.6.6.tbz > rarian-0.8.1.tbz tiff-4.0.0.tbz xextproto-7.1.1.tbz xmlcatmgr-2.2.tbz x= mlcharent-0.3_2.tbz xproto-7.0.16.tbz > RUN_DEPENDS=3DORBit-0.5.17_5.tbz bash-4.1.7_2.tbz docbook-1.4.tbz docbook= -4.1_4.tbz docbook-4.2.tbz docbook-4.3.tbz docbook-4.4_2.tbz docbook-4.5_2.= tbz docbook-5.0_1.tbz docbook-sk-4.1.2_4.tbz docbook-xml-4.2_1.tbz docbook-= xml-4.3.tbz docbook-xml-4.4_1.tbz docbook-xml-4.5.tbz docbook-xsl-1.75.2.tb= z esound-0.2.41.tbz getopt-1.1.4_2.tbz gettext-0.18.1.1.tbz glib-1.2.10_13.= tbz gnome-libs-1.4.2_16.tbz gnomehier-2.3_12.tbz gtk-1.2.10_22.tbz imlib-1.= 9.15_12.tbz inputproto-2.0.tbz iso8879-1986_2.tbz jbigkit-1.6.tbz jpeg-8_3.= tbz kbproto-1.0.4.tbz libICE-1.0.6,1.tbz libSM-1.1.1_2,1.tbz libX11-1.3.3_1= ,1.tbz libXau-1.0.5.tbz libXdmcp-1.0.3.tbz libXext-1.1.1,1.tbz libXi-1.3,1.= tbz libXpm-3.5.7.tbz libXt-1.0.7.tbz libaudiofile-0.2.7.tbz libgcrypt-1.4.6= .tbz libgpg-error-1.8.tbz libiconv-1.13.1_1.tbz libpthread-stubs-0.3_3.tbz = libungif-4.1.4_5.tbz libxcb-1.7.tbz libxml-1.8.17_4.tbz libxml2-2.7.7.tbz l= ibxslt-1.1.26_2.tbz perl-5.10.1_2.tbz pkg-config-0.25_1.tbz png-1.4.3.tbz p= ython26-2.6.6.tbz r > arian-0.8.1.tbz tiff-4.0.0.tbz xextproto-7.1.1.tbz xmlcatmgr-2.2.tbz xml= charent-0.3_2.tbz xproto-7.0.16.tbz > prefixes: LOCALBASE=3Dusr/local > add_pkg > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D> License check disabled, port has not defined LICENSE > =3D> libcapplet-1.4.0.5.tar.bz2 doesn't seem to exist in /tmp/distfiles/g= nome. > =3D> Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/po= rts/distfiles/gnome/. > libcapplet-1.4.0.5.tar.bz2 6023 B 12 kBps > =3D> MD5 Checksum OK for gnome/libcapplet-1.4.0.5.tar.bz2. > =3D> SHA256 Checksum OK for gnome/libcapplet-1.4.0.5.tar.bz2. > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > add_pkg > =3D=3D=3D> License check disabled, port has not defined LICENSE > =3D=3D=3D> Extracting for libcapplet-1.4.0.5_13 > =3D> MD5 Checksum OK for gnome/libcapplet-1.4.0.5.tar.bz2. > =3D> SHA256 Checksum OK for gnome/libcapplet-1.4.0.5.tar.bz2. > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > add_pkg > =3D=3D=3D> Patching for libcapplet-1.4.0.5_13 > =3D=3D=3D> Applying FreeBSD patches for libcapplet-1.4.0.5_13 > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > add_pkg ORBit-0.5.17_5.tbz bash-4.1.7_2.tbz docbook-1.4.tbz docbook-4.1_4= .tbz docbook-4.2.tbz docbook-4.3.tbz docbook-4.4_2.tbz docbook-4.5_2.tbz do= cbook-5.0_1.tbz docbook-sk-4.1.2_4.tbz docbook-xml-4.2_1.tbz docbook-xml-4.= 3.tbz docbook-xml-4.4_1.tbz docbook-xml-4.5.tbz docbook-xsl-1.75.2.tbz esou= nd-0.2.41.tbz getopt-1.1.4_2.tbz gettext-0.18.1.1.tbz glib-1.2.10_13.tbz gn= ome-libs-1.4.2_16.tbz gnomehier-2.3_12.tbz gtk-1.2.10_22.tbz imlib-1.9.15_1= 2.tbz inputproto-2.0.tbz iso8879-1986_2.tbz jbigkit-1.6.tbz jpeg-8_3.tbz kb= proto-1.0.4.tbz libICE-1.0.6,1.tbz libSM-1.1.1_2,1.tbz libX11-1.3.3_1,1.tbz= libXau-1.0.5.tbz libXdmcp-1.0.3.tbz libXext-1.1.1,1.tbz libXi-1.3,1.tbz li= bXpm-3.5.7.tbz libXt-1.0.7.tbz libaudiofile-0.2.7.tbz libgcrypt-1.4.6.tbz l= ibgpg-error-1.8.tbz libiconv-1.13.1_1.tbz libpthread-stubs-0.3_3.tbz libung= if-4.1.4_5.tbz libxcb-1.7.tbz libxml-1.8.17_4.tbz libxml2-2.7.7.tbz libxslt= -1.1.26_2.tbz perl-5.10.1_2.tbz pkg-config-0.25_1.tbz png-1.4.3.tbz python2= 6-2.6.6.tbz raria > n-0.8.1.tbz tiff-4.0.0.tbz xextproto-7.1.1.tbz xmlcatmgr-2.2.tbz xmlchar= ent-0.3_2.tbz xproto-7.0.16.tbz > adding dependencies > pkg_add ORBit-0.5.17_5.tbz > pkg_add bash-4.1.7_2.tbz > pkg_add docbook-1.4.tbz > + Creating /usr/local/share/sgml/catalog > + Registering CATALOG catalog.ports (SGML) > + Creating /usr/local/share/sgml/catalog.ports > + Creating /usr/local/share/xml/catalog > + Registering nextCatalog catalog.ports (XML) > + Creating /usr/local/share/xml/catalog.ports >=20 > The following catalogs are installed: >=20 > 1) ${PREFIX}/share/sgml/catalog >=20 > The top level catalog for SGML stuff. It is not changed > by any ports/packages except textproc/xmlcatmgr. >=20 > 2) ${PREFIX}/share/sgml/catalog.ports >=20 > This catalog is for handling SGML stuff installed under > ${PREFIX}/share/sgml. It is changed by ports/packages. >=20 > 3) ${PREFIX}/share/xml/catalog >=20 > The top level catalog for XML stuff. It is not changed > by any ports/packages except textproc/xmlcatmgr. >=20 > 4) ${PREFIX}/share/xml/catalog.ports >=20 > This catalog is for handling XML stuff installed under > ${PREFIX}/share/xml. It is changed by ports/packages. >=20 > pkg_add docbook-4.1_4.tbz > skipping docbook-4.1_4, already added > pkg_add docbook-4.2.tbz > skipping docbook-4.2, already added > pkg_add docbook-4.3.tbz > skipping docbook-4.3, already added > pkg_add docbook-4.4_2.tbz > skipping docbook-4.4_2, already added > pkg_add docbook-4.5_2.tbz > skipping docbook-4.5_2, already added > pkg_add docbook-5.0_1.tbz > skipping docbook-5.0_1, already added > pkg_add docbook-sk-4.1.2_4.tbz > skipping docbook-sk-4.1.2_4, already added > pkg_add docbook-xml-4.2_1.tbz > skipping docbook-xml-4.2_1, already added > pkg_add docbook-xml-4.3.tbz > skipping docbook-xml-4.3, already added > pkg_add docbook-xml-4.4_1.tbz > skipping docbook-xml-4.4_1, already added > pkg_add docbook-xml-4.5.tbz > skipping docbook-xml-4.5, already added > pkg_add docbook-xsl-1.75.2.tbz > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.36' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.36' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.37' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.37' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.38' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.38' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.39' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.39' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.40' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.40' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.41' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.41' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.42' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.42' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.43' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.43' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.44' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.44' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.45' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.45' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.46' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.46' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.47' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.47' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.48' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.48' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.49' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.49' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.50.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.50.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.51.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.51.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.51.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.51.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.52.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.52.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.52.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.52.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.52.2' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.52.2' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.53.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.53.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.54.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.54.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.54.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.54.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.55.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.55.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.56.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.56.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.56.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.56.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.57.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.57.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.58.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.58.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.58.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.58.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.59.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.59.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.59.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.59.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.59.2' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.59.2' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.60.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.60.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.60.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.60.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.61.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.61.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.61.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.61.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.61.2' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.61.2' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.61.3' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.61.3' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.62.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.62.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.62.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.62.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.62.2' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.62.2' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.62.3' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.62.3' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.62.4' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.62.4' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.63.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.63.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.64.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.64.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.64.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.64.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.65.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.65.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.65.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.65.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.66.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.66.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.66.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.66.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.67.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.67.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.67.2' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.67.2' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.68.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.68.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.68.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.68.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.69.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.69.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.69.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.69.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.70.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.70.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.70.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.70.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.71.0' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.71.0' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.71.1' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/1.71.1' of type `rewriteURI' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/current' of type `rewriteSystem' > xmlcatmgr: entry already exists for `http://docbook.sourceforge.net/relea= se/xsl/current' of type `rewriteURI' > pkg_add esound-0.2.41.tbz >=20 > The ESounD daemon (esd) must be started on a per-user basis. This is typ= ically > done by the Session Manager in GNOME. However, if you are not using the > GNOME Desktop, you will need to add something like the following to your > X Windows initialization script: >=20 > esd -terminate -nobeeps -as 2 >=20 > pkg_add getopt-1.1.4_2.tbz > pkg_add gettext-0.18.1.1.tbz > skipping gettext-0.18.1.1, already added > pkg_add glib-1.2.10_13.tbz > skipping glib-1.2.10_13, already added > pkg_add gnome-libs-1.4.2_16.tbz > ./etc/CORBA missing (created) > ./etc/CORBA/servers missing (created) > ./etc/X11 missing (created) > ./etc/X11/serverconfig missing (created) > ./etc/X11/starthere missing (created) > ./etc/X11/sysconfig missing (created) > ./etc/gconf missing (created) > ./etc/gconf/gconf.xml.defaults missing (created) > ./etc/gconf/gconf.xml.mandatory missing (created) > ./etc/gconf/gconf.xml.system missing (created) > ./etc/gconf/schemas missing (created) > ./etc/gnome missing (created) > ./etc/gnome/config missing (created) > ./etc/gnome-vfs-2.0 missing (created) > ./etc/gnome-vfs-2.0/modules missing (created) > ./etc/sound missing (created) > ./etc/sound/events missing (created) > ./etc/vfs missing (created) > ./etc/vfs/modules missing (created) > ./etc/xdg missing (created) > ./etc/xdg/autostart missing (created) > ./include/gconf missing (created) > ./include/gdkcardimage missing (created) > ./include/gnome-1.0 missing (created) > ./lib/GConf missing (created) > ./lib/bonobo missing (created) > ./lib/bonobo/monikers missing (created) > ./lib/bonobo/plugin missing (created) > ./lib/gnome-vfs-2.0 missing (created) > ./lib/gnome-vfs-2.0/modules missing (created) > ./lib/vfs missing (created) > ./lib/vfs/modules missing (created) > ./libdata/bonobo missing (created) > ./libdata/bonobo/servers missing (created) > ./share/applets missing (created) > ./share/applets/Amusements missing (created) > ./share/applets/Clocks missing (created) > ./share/applets/Monitors missing (created) > ./share/applets/Multimedia missing (created) > ./share/applets/Network missing (created) > ./share/applets/Utility missing (created) > ./share/application-registry missing (created) > ./share/capplets missing (created) > ./share/control-center missing (created) > ./share/control-center/Desktop missing (created) > ./share/control-center/Documents missing (created) > ./share/control-center/Peripherals missing (created) > ./share/control-center/Session missing (created) > ./share/control-center/capplets missing (created) > ./share/control-center/keybindings missing (created) > ./share/control-center-2.0 missing (created) > ./share/control-center-2.0/capplets missing (created) > ./share/doc/libgda missing (created) > ./share/games missing (created) > ./share/gnome missing (created) > ./share/gnome/apps missing (created) > ./share/gnome/apps/Applications missing (created) > ./share/gnome/apps/Audio missing (created) > ./share/gnome/apps/Development missing (created) > ./share/gnome/apps/Games missing (created) > ./share/gnome/apps/Graphics missing (created) > ./share/gnome/apps/Internet missing (created) > ./share/gnome/apps/Multimedia missing (created) > ./share/gnome/apps/Settings missing (created) > ./share/gnome/apps/Settings/Desktop missing (created) > ./share/gnome/apps/Settings/Documents missing (created) > ./share/gnome/apps/Settings/Peripherals missing (created) > ./share/gnome/apps/Settings/Session missing (created) > ./share/gnome/apps/System missing (created) > ./share/gnome/apps/Utilities missing (created) > ./share/gnome/autostart missing (created) > ./share/gnome/help missing (created) > ./share/gnome/help/fdl missing (created) > ./share/gnome/help/fdl/C missing (created) > ./share/gnome/help/gpl missing (created) > ./share/gnome/help/gpl/C missing (created) > ./share/gnome/help/lgpl missing (created) > ./share/gnome/help/lgpl/C missing (created) > ./share/gnome/panel missing (created) > ./share/gnome/ui missing (created) > ./share/gnome/wm-properties missing (created) > ./share/gnome-2.0 missing (created) > ./share/gnome-2.0/ui missing (created) > ./share/gnome-about missing (created) > ./share/gnome-control-center missing (created) > ./share/gnome-control-center/keybindings missing (created) > ./share/images missing (created) > ./share/mc missing (created) > ./share/mc/templates missing (created) > ./share/mime-info missing (created) > ./share/oaf missing (created) > ./share/omf missing (created) > ./share/pixmaps/document-icons missing (created) > ./share/pixmaps/splash missing (created) > ./share/sgml/docbook/gnome-customization-0.1 missing (created) > ./share/sounds missing (created) > ./share/vala missing (created) > ./share/vala/vapi missing (created) > ./share/vfolders missing (created) > ./share/xmodmap missing (created) >=20 > =3D=3D=3D=3D > Note that some of the standard modules are provided as separate > ports since they require extra dependencies: >=20 > bsddb databases/py-bsddb > gdbm databases/py-gdbm > sqlite3 databases/py-sqlite3 > tkinter x11-toolkits/py-tkinter >=20 > Install them as needed. > =3D=3D=3D=3D >=20 > Removing stale symlinks from /usr/bin... > Skipping /usr/bin/perl > Skipping /usr/bin/perl5 > Done. > Creating various symlinks in /usr/bin... > Symlinking /usr/local/bin/perl5.10.1 to /usr/bin/perl > Symlinking /usr/local/bin/perl5.10.1 to /usr/bin/perl5 > Done. > Cleaning up /etc/make.conf... Done. > Spamming /etc/make.conf... Done. > Cleaning up /etc/manpath.config... Done. > Spamming /etc/manpath.config... Done. >=20 >=20 > ***************************************************************** > Although libxcb can yield dramatic improvements in speed, > memory footprint, and responsiveness, and will probably > become the default Xlib for X.org/freedesktop.org, it is > still experimental software. Some broken callers will abort() > on locking assertion failures. As a temporary workaround, set > LIBXCB_ALLOW_SLOPPY_LOCK in your environment to skip the abort(). > This may result in noisy stacktrace printing. > ***************************************************************** >=20 > pkg_add gnomehier-2.3_12.tbz > skipping gnomehier-2.3_12, already added > pkg_add gtk-1.2.10_22.tbz > skipping gtk-1.2.10_22, already added > pkg_add imlib-1.9.15_12.tbz > skipping imlib-1.9.15_12, already added > pkg_add inputproto-2.0.tbz > skipping inputproto-2.0, already added > pkg_add iso8879-1986_2.tbz > skipping iso8879-1986_2, already added > pkg_add jbigkit-1.6.tbz > skipping jbigkit-1.6, already added > pkg_add jpeg-8_3.tbz > skipping jpeg-8_3, already added > pkg_add kbproto-1.0.4.tbz > skipping kbproto-1.0.4, already added > pkg_add libICE-1.0.6,1.tbz > skipping libICE-1.0.6,1, already added > pkg_add libSM-1.1.1_2,1.tbz > skipping libSM-1.1.1_2,1, already added > pkg_add libX11-1.3.3_1,1.tbz > skipping libX11-1.3.3_1,1, already added > pkg_add libXau-1.0.5.tbz > skipping libXau-1.0.5, already added > pkg_add libXdmcp-1.0.3.tbz > skipping libXdmcp-1.0.3, already added > pkg_add libXext-1.1.1,1.tbz > skipping libXext-1.1.1,1, already added > pkg_add libXi-1.3,1.tbz > skipping libXi-1.3,1, already added > pkg_add libXpm-3.5.7.tbz > skipping libXpm-3.5.7, already added > pkg_add libXt-1.0.7.tbz > skipping libXt-1.0.7, already added > pkg_add libaudiofile-0.2.7.tbz > skipping libaudiofile-0.2.7, already added > pkg_add libgcrypt-1.4.6.tbz > skipping libgcrypt-1.4.6, already added > pkg_add libgpg-error-1.8.tbz > skipping libgpg-error-1.8, already added > pkg_add libiconv-1.13.1_1.tbz > skipping libiconv-1.13.1_1, already added > pkg_add libpthread-stubs-0.3_3.tbz > skipping libpthread-stubs-0.3_3, already added > pkg_add libungif-4.1.4_5.tbz > skipping libungif-4.1.4_5, already added > pkg_add libxcb-1.7.tbz > skipping libxcb-1.7, already added > pkg_add libxml-1.8.17_4.tbz > skipping libxml-1.8.17_4, already added > pkg_add libxml2-2.7.7.tbz > skipping libxml2-2.7.7, already added > pkg_add libxslt-1.1.26_2.tbz > skipping libxslt-1.1.26_2, already added > pkg_add perl-5.10.1_2.tbz > skipping perl-5.10.1_2, already added > pkg_add pkg-config-0.25_1.tbz > skipping pkg-config-0.25_1, already added > pkg_add png-1.4.3.tbz > skipping png-1.4.3, already added > pkg_add python26-2.6.6.tbz > skipping python26-2.6.6, already added > pkg_add rarian-0.8.1.tbz > skipping rarian-0.8.1, already added > pkg_add tiff-4.0.0.tbz > skipping tiff-4.0.0, already added > pkg_add xextproto-7.1.1.tbz > skipping xextproto-7.1.1, already added > pkg_add xmlcatmgr-2.2.tbz > skipping xmlcatmgr-2.2, already added > pkg_add xmlcharent-0.3_2.tbz > skipping xmlcharent-0.3_2, already added > pkg_add xproto-7.0.16.tbz > skipping xproto-7.0.16, already added > =3D=3D=3D> libcapplet-1.4.0.5_13 depends on executable: pkg-config - fo= und > =3D=3D=3D> libcapplet-1.4.0.5_13 depends on shared library: esd.2 - fou= nd > =3D=3D=3D> libcapplet-1.4.0.5_13 depends on shared library: glib-12.3 -= found > =3D=3D=3D> libcapplet-1.4.0.5_13 depends on shared library: gnome.5 - f= ound > =3D=3D=3D> libcapplet-1.4.0.5_13 depends on shared library: gtk-12.2 - = found > =3D=3D=3D> libcapplet-1.4.0.5_13 depends on shared library: xml.5 - fou= nd > =3D=3D=3D> libcapplet-1.4.0.5_13 depends on shared library: Imlib.5 - f= ound > =3D=3D=3D> libcapplet-1.4.0.5_13 depends on shared library: ORBit.2 - f= ound > =3D=3D=3D> Configuring for libcapplet-1.4.0.5_13 > =3D=3D=3D> Building for libcapplet-1.4.0.5_13 > "/usr/share/mk/bsd.compat.mk", line 35: warning: NOPROFILE is deprecated = in favour of NO_PROFILE > /usr/local/bin/orbit-idl control-center.idl > :9: Warning: `new_multi_capplet' underscores within identifiers ar= e discouraged for use with C-language IDL mappings > touch my_control_center_idl > cc -fpic -DPIC -O2 -pipe -fno-strict-aliasing -std=3Dgnu89 -I. -I/usr/lo= cal/include -I/usr/local/include/gtk12 -I/usr/local/include/gnome-1.0 -I/u= sr/local/include -I/usr/local/include/glib12 -I/usr/local/include/orbit-1.= 0 -std=3Dgnu99 -fstack-protector -c capplet-widget-libs.c -o capplet-widge= t-libs.So > cc -fpic -DPIC -O2 -pipe -fno-strict-aliasing -std=3Dgnu89 -I. -I/usr/lo= cal/include -I/usr/local/include/gtk12 -I/usr/local/include/gnome-1.0 -I/u= sr/local/include -I/usr/local/include/glib12 -I/usr/local/include/orbit-1.= 0 -std=3Dgnu99 -fstack-protector -c capplet-widget.c -o capplet-widget.So > cc -fpic -DPIC -O2 -pipe -fno-strict-aliasing -std=3Dgnu89 -I. -I/usr/lo= cal/include -I/usr/local/include/gtk12 -I/usr/local/include/gnome-1.0 -I/u= sr/local/include -I/usr/local/include/glib12 -I/usr/local/include/orbit-1.= 0 -std=3Dgnu99 -fstack-protector -c control-center-common.c -o control-cen= ter-common.So > cc -fpic -DPIC -O2 -pipe -fno-strict-aliasing -std=3Dgnu89 -I. -I/usr/lo= cal/include -I/usr/local/include/gtk12 -I/usr/local/include/gnome-1.0 -I/u= sr/local/include -I/usr/local/include/glib12 -I/usr/local/include/orbit-1.= 0 -std=3Dgnu99 -fstack-protector -c control-center-skels.c -o control-cent= er-skels.So > control-center-skels.c: In function '_ORBIT_skel_GNOME_capplet_revert': > control-center-skels.c:54: warning: implicit declaration of function 'all= oca' > control-center-skels.c:54: warning: incompatible implicit declaration of = built-in function 'alloca' > control-center-skels.c: In function '_ORBIT_skel_GNOME_capplet_ok': > control-center-skels.c:84: warning: incompatible implicit declaration of = built-in function 'alloca' > control-center-skels.c: In function '_ORBIT_skel_GNOME_control_center_reg= ister_capplet': > control-center-skels.c:266: warning: incompatible implicit declaration of= built-in function 'alloca' > cc -fpic -DPIC -O2 -pipe -fno-strict-aliasing -std=3Dgnu89 -I. -I/usr/lo= cal/include -I/usr/local/include/gtk12 -I/usr/local/include/gnome-1.0 -I/u= sr/local/include -I/usr/local/include/glib12 -I/usr/local/include/orbit-1.= 0 -std=3Dgnu99 -fstack-protector -c control-center-stubs.c -o control-cent= er-stubs.So > control-center-stubs.c: In function 'GNOME_control_center_register_capple= t_new': > control-center-stubs.c:697: warning: implicit declaration of function 'al= loca' > control-center-stubs.c:697: warning: incompatible implicit declaration of= built-in function 'alloca' > building shared library libcapplet.so.5 > capplet-widget.So(.text+0x0): In function `g_bit_nth_lsf': > : multiple definition of `g_bit_nth_lsf' > control-center-common.So(.text+0x0): first defined here > capplet-widget.So(.text+0x20): In function `g_bit_nth_msf': > : multiple definition of `g_bit_nth_msf' > control-center-common.So(.text+0x20): first defined here > capplet-widget.So(.text+0x50): In function `g_bit_storage': > : multiple definition of `g_bit_storage' > control-center-common.So(.text+0x50): first defined here > capplet-widget.So(.text+0x60): In function `iiop_byteswap': > : multiple definition of `iiop_byteswap' > control-center-common.So(.text+0x60): first defined here > capplet-widget-libs.So(.text+0x0): In function `g_bit_nth_lsf': > : multiple definition of `g_bit_nth_lsf' > control-center-common.So(.text+0x0): first defined here > capplet-widget-libs.So(.text+0x20): In function `g_bit_nth_msf': > : multiple definition of `g_bit_nth_msf' > control-center-common.So(.text+0x20): first defined here > capplet-widget-libs.So(.text+0x50): In function `g_bit_storage': > : multiple definition of `g_bit_storage' > control-center-common.So(.text+0x50): first defined here > capplet-widget-libs.So(.text+0x60): In function `iiop_byteswap': > : multiple definition of `iiop_byteswap' > control-center-common.So(.text+0x60): first defined here > control-center-stubs.So(.text+0x0): In function `g_bit_nth_lsf': > : multiple definition of `g_bit_nth_lsf' > control-center-common.So(.text+0x0): first defined here > control-center-stubs.So(.text+0x20): In function `g_bit_nth_msf': > : multiple definition of `g_bit_nth_msf' > control-center-common.So(.text+0x20): first defined here > control-center-stubs.So(.text+0x50): In function `g_bit_storage': > : multiple definition of `g_bit_storage' > control-center-common.So(.text+0x50): first defined here > control-center-stubs.So(.text+0x60): In function `iiop_byteswap': > : multiple definition of `iiop_byteswap' > control-center-common.So(.text+0x60): first defined here > control-center-skels.So(.text+0x0): In function `g_bit_nth_lsf': > : multiple definition of `g_bit_nth_lsf' > control-center-common.So(.text+0x0): first defined here > control-center-skels.So(.text+0x20): In function `g_bit_nth_msf': > : multiple definition of `g_bit_nth_msf' > control-center-common.So(.text+0x20): first defined here > control-center-skels.So(.text+0x50): In function `g_bit_storage': > : multiple definition of `g_bit_storage' > control-center-common.So(.text+0x50): first defined here > control-center-skels.So(.text+0x60): In function `iiop_byteswap': > : multiple definition of `iiop_byteswap' > control-center-common.So(.text+0x60): first defined here > *** Error code 1 >=20 > Stop in /work/a/ports/x11/libcapplet/work/libcapplet-1.4.0.5. > *** Error code 1 >=20 > Stop in /a/ports/x11/libcapplet. > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=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/libcapplet ended at Tue Oct 5 15:58:33 UTC 2010 >=20 --=20 --=20 Pav Lucistnik The Linimon's Rule: The More You Close, The More Will Come --=-QM0KbYi4rRxaXqQsy8Xf Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.10 (FreeBSD) iEYEABECAAYFAkyrtHIACgkQntdYP8FOsoLWOQCgmmGvYImM2xZ2LCjKUkPEgHK5 wOwAoKDWKaFl0oHVor6qt/6HWVKMJ9rb =Ok9U -----END PGP SIGNATURE----- --=-QM0KbYi4rRxaXqQsy8Xf-- From owner-freebsd-gnome@FreeBSD.ORG Wed Oct 6 11:34:15 2010 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 996061065672; Wed, 6 Oct 2010 11:34:15 +0000 (UTC) (envelope-from sunpoet@sunpoet.net) Received: from mail-px0-f182.google.com (mail-px0-f182.google.com [209.85.212.182]) by mx1.freebsd.org (Postfix) with ESMTP id 73B898FC20; Wed, 6 Oct 2010 11:34:15 +0000 (UTC) Received: by pxi17 with SMTP id 17so2309270pxi.13 for ; Wed, 06 Oct 2010 04:34:15 -0700 (PDT) Received: by 10.114.15.18 with SMTP id 18mr15249912wao.182.1286364855075; Wed, 06 Oct 2010 04:34:15 -0700 (PDT) Received: from sunpoet.net (sunpoet.net [220.133.12.240]) by mx.google.com with ESMTPS id r37sm1232439wak.23.2010.10.06.04.34.12 (version=TLSv1/SSLv3 cipher=RC4-MD5); Wed, 06 Oct 2010 04:34:14 -0700 (PDT) Sender: Sunpoet Hsieh Received: by sunpoet.net (Postfix, from userid 1000) id 730872AEC52A; Wed, 6 Oct 2010 19:32:55 +0800 (CST) To: FreeBSD-gnats-submit@freebsd.org From: Sunpoet Po-Chuan Hsieh X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20101006113255.730872AEC52A@sunpoet.net> Date: Wed, 6 Oct 2010 19:32:55 +0800 (CST) Cc: gnome@FreeBSD.org Subject: [PATCH] misc/pciids: update to 20101005, add LICENSE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Oct 2010 11:34:15 -0000 >Submitter-Id: current-users >Originator: Sunpoet Po-Chuan Hsieh >Organization: >Confidential: no >Synopsis: [PATCH] misc/pciids: update to 20101005, add LICENSE >Severity: non-critical >Priority: low >Category: ports >Class: update >Release: FreeBSD 8.1-STABLE amd64 >Environment: System: FreeBSD bonjour.sunpoet.net 8.1-STABLE FreeBSD 8.1-STABLE #0: Sun Jul 25 00:09:24 CST 2010 >Description: - Update to 20101005 - Add LICENSE Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99 >How-To-Repeat: >Fix: --- pciids-20101005.patch begins here --- Index: Makefile =================================================================== RCS file: /home/ncvs/ports/misc/pciids/Makefile,v retrieving revision 1.21 diff -u -u -r1.21 Makefile --- Makefile 3 Oct 2010 17:18:23 -0000 1.21 +++ Makefile 6 Oct 2010 11:33:43 -0000 @@ -6,14 +6,15 @@ # $MCom: ports/misc/pciids/Makefile,v 1.11 2008/03/23 06:57:57 marcus Exp $ PORTNAME= pciids -PORTVERSION= 20100827 +PORTVERSION= 20101005 CATEGORIES= misc -MASTER_SITES= ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR= sunpoet +MASTER_SITES= LOCAL/sunpoet MAINTAINER= gnome@FreeBSD.org COMMENT= Database of all known ID's used in PCI devices +LICENSE= BSD GPLv2 GPLv3 + USE_BZIP2= yes NO_BUILD= yes PLIST_FILES= %%DATADIR%%/pci.ids Index: distinfo =================================================================== RCS file: /home/ncvs/ports/misc/pciids/distinfo,v retrieving revision 1.20 diff -u -u -r1.20 distinfo --- distinfo 3 Oct 2010 17:18:23 -0000 1.20 +++ distinfo 6 Oct 2010 11:33:43 -0000 @@ -1,3 +1,3 @@ -MD5 (pciids-20100827.tar.bz2) = 93d4beb741dfbaf88a97ba8aa4008494 -SHA256 (pciids-20100827.tar.bz2) = d6557b2180d46781cb3025470bb49b85657a77a996bb21d2898d2eb48f38b6c7 -SIZE (pciids-20100827.tar.bz2) = 162720 +MD5 (pciids-20101005.tar.bz2) = 54b858ac1f7bb9735e697845fb478922 +SHA256 (pciids-20101005.tar.bz2) = d6ba29c59c20bccaae9d9c0767dd3c0169ad074b797b96428365bca859c25817 +SIZE (pciids-20101005.tar.bz2) = 163410 --- pciids-20101005.patch ends here --- From owner-freebsd-gnome@FreeBSD.ORG Wed Oct 6 11:40:12 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1532D1065693; Wed, 6 Oct 2010 11:40:12 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id E18BE8FC1B; Wed, 6 Oct 2010 11:40:11 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o96BeBng086651; Wed, 6 Oct 2010 11:40:11 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o96BeBxA086641; Wed, 6 Oct 2010 11:40:11 GMT (envelope-from edwin) Date: Wed, 6 Oct 2010 11:40:11 GMT Message-Id: <201010061140.o96BeBxA086641@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151256: [PATCH] misc/pciids: update to 20101005, add LICENSE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Oct 2010 11:40:12 -0000 Synopsis: [PATCH] misc/pciids: update to 20101005, add LICENSE Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Wed Oct 6 11:40:11 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151256 From owner-freebsd-gnome@FreeBSD.ORG Wed Oct 6 13:30:06 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C09621065670 for ; Wed, 6 Oct 2010 13:30:06 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id AA3808FC13 for ; Wed, 6 Oct 2010 13:30:06 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o96DU6kF000824 for ; Wed, 6 Oct 2010 13:30:06 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o96DU6c8000820; Wed, 6 Oct 2010 13:30:06 GMT (envelope-from gnats) Date: Wed, 6 Oct 2010 13:30:06 GMT Message-Id: <201010061330.o96DU6c8000820@freefall.freebsd.org> To: gnome@FreeBSD.org From: Anonymous Cc: Subject: Re: ports/151256: [PATCH] misc/pciids: update to 20101005, add LICENSE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Anonymous List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Oct 2010 13:30:06 -0000 The following reply was made to PR ports/151256; it has been noted by GNATS. From: Anonymous To: Sunpoet Po-Chuan Hsieh Cc: bug-followup@FreeBSD.org Subject: Re: ports/151256: [PATCH] misc/pciids: update to 20101005, add LICENSE Date: Wed, 06 Oct 2010 17:23:19 +0400 Sunpoet Po-Chuan Hsieh writes: > MAINTAINER= gnome@FreeBSD.org > COMMENT= Database of all known ID's used in PCI devices > > +LICENSE= BSD GPLv2 GPLv3 > + You probably want to add `LICENSE_COMB = dual' or it'll fail like below $ make LICENSES_ASK= ===> License not correctly defined: multiple licenses in LICENSE, but LICENSE_COMB is set to single (or undefined) *** Error code 1 From owner-freebsd-gnome@FreeBSD.ORG Wed Oct 6 14:20:03 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8DCDD1065670 for ; Wed, 6 Oct 2010 14:20:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 5AE478FC19 for ; Wed, 6 Oct 2010 14:20:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o96EK3ap053487 for ; Wed, 6 Oct 2010 14:20:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o96EK3je053486; Wed, 6 Oct 2010 14:20:03 GMT (envelope-from gnats) Date: Wed, 6 Oct 2010 14:20:03 GMT Message-Id: <201010061420.o96EK3je053486@freefall.freebsd.org> To: gnome@FreeBSD.org From: Sunpoet Po-Chuan Hsieh Cc: Subject: Re: ports/151256: [PATCH] misc/pciids: update to 20101005, add LICENSE X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Sunpoet Po-Chuan Hsieh List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Oct 2010 14:20:03 -0000 The following reply was made to PR ports/151256; it has been noted by GNATS. From: Sunpoet Po-Chuan Hsieh To: Anonymous Cc: bug-followup@FreeBSD.org Subject: Re: ports/151256: [PATCH] misc/pciids: update to 20101005, add LICENSE Date: Wed, 6 Oct 2010 22:09:24 +0800 --xesSdrSSBC0PokLI Content-Type: multipart/mixed; boundary="5/uDoXvLw7AC5HRs" Content-Disposition: inline --5/uDoXvLw7AC5HRs Content-Type: text/plain; charset=utf-8 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Thank swellk.@gmail.com. The updated patch is attached. --=20 4096R/CC57E36B 8AD8 68F2 7D2B 0A10 7E9B 8CC0 DC44 247E CC57 E36B Sunpoet Po-Chuan Hsieh , --5/uDoXvLw7AC5HRs Content-Type: text/x-diff; charset=utf-8 Content-Disposition: attachment; filename="pciids.patch" Content-Transfer-Encoding: quoted-printable Index: Makefile =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/misc/pciids/Makefile,v retrieving revision 1.21 diff -u -r1.21 Makefile --- Makefile 3 Oct 2010 17:18:23 -0000 1.21 +++ Makefile 6 Oct 2010 14:06:25 -0000 @@ -6,14 +6,16 @@ # $MCom: ports/misc/pciids/Makefile,v 1.11 2008/03/23 06:57:57 marcus E= xp $ =20 PORTNAME=3D pciids -PORTVERSION=3D 20100827 +PORTVERSION=3D 20101005 CATEGORIES=3D misc -MASTER_SITES=3D ${MASTER_SITE_LOCAL} -MASTER_SITE_SUBDIR=3D sunpoet +MASTER_SITES=3D LOCAL/sunpoet =20 MAINTAINER=3D gnome@FreeBSD.org COMMENT=3D Database of all known ID's used in PCI devices =20 +LICENSE=3D BSD GPLv2 GPLv3 +LICENSE_COMB=3D dual + USE_BZIP2=3D yes NO_BUILD=3D yes PLIST_FILES=3D %%DATADIR%%/pci.ids Index: distinfo =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/ncvs/ports/misc/pciids/distinfo,v retrieving revision 1.20 diff -u -r1.20 distinfo --- distinfo 3 Oct 2010 17:18:23 -0000 1.20 +++ distinfo 6 Oct 2010 14:06:25 -0000 @@ -1,3 +1,3 @@ -MD5 (pciids-20100827.tar.bz2) =3D 93d4beb741dfbaf88a97ba8aa4008494 -SHA256 (pciids-20100827.tar.bz2) =3D d6557b2180d46781cb3025470bb49b85657a7= 7a996bb21d2898d2eb48f38b6c7 -SIZE (pciids-20100827.tar.bz2) =3D 162720 +MD5 (pciids-20101005.tar.bz2) =3D 54b858ac1f7bb9735e697845fb478922 +SHA256 (pciids-20101005.tar.bz2) =3D d6ba29c59c20bccaae9d9c0767dd3c0169ad0= 74b797b96428365bca859c25817 +SIZE (pciids-20101005.tar.bz2) =3D 163410 --5/uDoXvLw7AC5HRs-- --xesSdrSSBC0PokLI Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.16 (FreeBSD) iQIcBAEBAgAGBQJMrIMTAAoJENxEJH7MV+NrPs8QAMqMWFnxbSl+VJcvrNc7Id2F QPguDcKXqKc27Igj/ZhLyE6oPwi+SkPcxj9KKFLYdK9CgRAHiX8C8Ge5gUlWLaAn dkEZ7tPPW/fM9WPtQiQVcGWCXZUBU8Q+sQCB3bmbA9s8zQhjJWNhSm9kp69NDpwe J7a1PlpNT/B4jtC7X5w2ysPrAVkmORsYxhBholothQCp5MZ/+l/B5zXD5OIvUVoo J4sR3GUuQ4ugFwNzDpGJZWXZ5/ew7S3AhGw1j/r8ipHZENYNLSqLbJWcBAmz845k gD36DMxnG3Jqw6BMWPLR14M3oBegr7mqj0oiID36/q1577eQ2nNhIaMCPQbNk2DD LJtT3kNsh5HFWH0uWXXU8rXzd3iU82gBBplwfaHCGy6LJQqszFc9+tZb9ByMIrys tYbgNqvridGR3S17TvunlDb06CpKmEUaICXbkTXM67IotrpAsHM0v4DyiGC94YqD bCVj2h1oGDtBW0zb+Ij+GuL2JuOQSvU1Iu4l7mvDwkGLFzXC2c2SRW4aeastauoi f53HWtRcLjL4lynNm2OlX2/4I3gwX4/eIQFDMkTW8DcJNWm/tdlEoR54AS8O86zr 5KCNqtZAzHqOKGofEYrM7rkkVLFbeglXxGalWE7mx0LVt5xG2vcipkRaSUZaSj2O pjx4b8hGpd6lhHBY+ACe =KIOf -----END PGP SIGNATURE----- --xesSdrSSBC0PokLI-- From owner-freebsd-gnome@FreeBSD.ORG Sat Oct 9 07:20:08 2010 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 70534106564A; Sat, 9 Oct 2010 07:20:08 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 47DEC8FC16; Sat, 9 Oct 2010 07:20:08 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.4/8.14.4) with ESMTP id o997K8xb082280; Sat, 9 Oct 2010 07:20:08 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id o997K8Dt082270; Sat, 9 Oct 2010 07:20:08 GMT (envelope-from edwin) Date: Sat, 9 Oct 2010 07:20:08 GMT Message-Id: <201010090720.o997K8Dt082270@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/151331: net port: devel/dbus fix startup on diskless systems X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Oct 2010 07:20:08 -0000 Synopsis: net port: devel/dbus fix startup on diskless systems Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sat Oct 9 07:20:07 UTC 2010 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=151331