From owner-freebsd-gnome@FreeBSD.ORG Sun Jul 1 14:42:21 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 5610B1065672 for ; Sun, 1 Jul 2012 14:42:21 +0000 (UTC) (envelope-from lists@eitanadler.com) Received: from mail-ob0-f182.google.com (mail-ob0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 157598FC14 for ; Sun, 1 Jul 2012 14:42:20 +0000 (UTC) Received: by obbun3 with SMTP id un3so8723252obb.13 for ; Sun, 01 Jul 2012 07:42:20 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=eitanadler.com; s=0xdeadbeef; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type; bh=NAun6eJCLPil+5/CntH0sblgqgxvqrmMdzNhVdOCgd0=; b=pfo4dN+9UHyX+KtkScCwLG+ihau6Aact9uatjssHpwKc6TOoDsaPTq+rLpt1omtTL7 XC2Fm+vXUDfiQYir48w6oyalf3ZzYiVeHbs5XiAN9AtzDkAu1tWtCt0vQoCBp2cGbW0I CApcFXCO/Hjs0e+Aiq3B7dI1lSihtSaCHeDFY= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:x-gm-message-state; bh=NAun6eJCLPil+5/CntH0sblgqgxvqrmMdzNhVdOCgd0=; b=pt3YEgHegotodPpP5Nvu2x1KL+TM/sGuHVH09ZD3UFptoxWAOl/rIj7iTIlGT+UEwP GMiY+23d5o57KyE8arYKapOHGwti0Q/IcUSWA2mUMfhFKdcj4Dd6dndO4XZ7fNABcphm u3cqgJpHdZ407bQMvKzLoOkqb5b6RkQa1M+DKckMBjP6vtD8NJ/uRpoRqSB+BPoAXlKV iwNT2oJUKK7UN98WB8PB9pRZPzi1L1R2B8b+rCxoND1tVsVdf6hNjzYmrh+3YPspAczl 8D3aZ7ALDdw7ibwxZmWgsvTCqlEaOqKmFbpCvu+k3mHtkfD8glZCFYr1MuV9TSadAvOG 3x+w== Received: by 10.60.13.201 with SMTP id j9mr8673079oec.51.1341153740328; Sun, 01 Jul 2012 07:42:20 -0700 (PDT) MIME-Version: 1.0 Received: by 10.182.125.70 with HTTP; Sun, 1 Jul 2012 07:41:50 -0700 (PDT) In-Reply-To: <20120701024401.ED97214DBD8@smtp.hushmail.com> References: <20120701024401.ED97214DBD8@smtp.hushmail.com> From: Eitan Adler Date: Sun, 1 Jul 2012 07:41:50 -0700 Message-ID: To: gnome@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Gm-Message-State: ALoCoQnXvXvBjJdKWXeygwPhIzuWt2pTm5nAOr2MGJZmSOk0fhGOKRSJowluqe/BAjbXouen6B0B Cc: ports-security@freebsd.org Subject: Fwd: [oss-security] Re: ScriptFu Server Buffer Overflow in GIMP <= 2.6 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, 01 Jul 2012 14:42:21 -0000 A vulnerability has been found in a port you maintain. If you haven't yet done so please update the port and write up a VuXML report. If you need help feel free to email ports-security@freebsd.org. ---------- Forwarded message ---------- From: Date: 30 June 2012 19:44 Subject: [oss-security] Re: ScriptFu Server Buffer Overflow in GIMP <= 2.6 To: oss-security@lists.openwall.com Below find a patch for the 2.6.x branch of GIMP to address a potential buffer overflow in the script-fu server (CVE-2012-2763) reported on this list by J. Sheridan (http://www.openwall.com/lists/oss-security/2012/05/31/1) --mancha ====================== Fix for CVE-2012-2763 for GIMP 2.6.x by mancha. Based on commit 76155d79df8d497. Thanks to muks, Kevin, and Ankh for identifying the relevant code change. Ref: Fixed potential buffer overflow in readstr_upto(). ---------- --- a/plug-ins/script-fu/tinyscheme/scheme.c 2012-06-30 +++ b/plug-ins/script-fu/tinyscheme/scheme.c 2012-06-30 @@ -1727,7 +1727,8 @@ static char *readstr_upto(scheme *sc, ch c = inchar(sc); len = g_unichar_to_utf8(c, p); p += len; - } while (c && !is_one_of(delim, c)); + } while ((p - sc->strbuff < sizeof(sc->strbuff)) && + (c && !is_one_of(delim, c))); if(p==sc->strbuff+2 && c_prev=='\\') *p = '\0'; -- Eitan Adler From owner-freebsd-gnome@FreeBSD.ORG Mon Jul 2 09:16:32 2012 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 96B751065670 for ; Mon, 2 Jul 2012 09:16:32 +0000 (UTC) (envelope-from SRS0=Y/42AC=FD=madagascar.hypermart.net=ecotours@yourhostingaccount.com) Received: from mailout15.yourhostingaccount.com (mailout15.yourhostingaccount.com [65.254.253.122]) by mx1.freebsd.org (Postfix) with ESMTP id 5EBB88FC08 for ; Mon, 2 Jul 2012 09:16:32 +0000 (UTC) Received: from mailscan15.yourhostingaccount.com ([10.1.15.15] helo=mailscan15.yourhostingaccount.com) by mailout15.yourhostingaccount.com with esmtp (Exim) id 1SlcGq-0000vY-26 for gnome@freebsd.org; Mon, 02 Jul 2012 04:46:12 -0400 Received: from impout02.yourhostingaccount.com ([10.1.55.2] helo=impout02.yourhostingaccount.com) by mailscan15.yourhostingaccount.com with esmtp (Exim) id 1SlcGp-0007cB-Mt for gnome@freebsd.org; Mon, 02 Jul 2012 04:46:11 -0400 Received: from authsmtp10.yourhostingaccount.com ([10.1.18.10]) by impout02.yourhostingaccount.com with NO UCE id VLmB1j00H0D2B7u01LmBcZ; Mon, 02 Jul 2012 04:46:11 -0400 X-Authority-Analysis: v=2.0 cv=DNMNElxb c=1 sm=1 a=EqUPpVYFH1NlsCwod01dFw==:17 a=ivJRmMhk5ygA:10 a=Dyoqhi_TatcA:10 a=da53CIvu2SUA:10 a=oKNMHU8azEoA:10 a=jPJDawAOAc8A:10 a=Cfj4BQAnxiAA:10 a=rmQgN8h9AAAA:8 a=2KbX33YbAAAA:8 a=dtQm7ZSp7VysWet7jMYA:9 a=Ft8UYL4EG9YA:10 a=2gI1vAumJwWs0gD4Ojj1yg==:117 X-EN-OrigOutIP: 10.1.18.10 X-EN-IMPSID: VLmB1j00H0D2B7u01LmBcZ Received: from am.websupport.sk ([195.210.29.1] helo=madagascar.hypermart.net) by authsmtp10.yourhostingaccount.com with esmtpa (Exim) id 1SlcGp-0002sO-Lh for gnome@freebsd.org; Mon, 02 Jul 2012 04:46:11 -0400 Date: Mon, 2 Jul 2012 10:46:09 +0400 From: =?windows-1251?Q?=CB=E8=ED=F3=F1=FF_=CA=E8=F0=E5=E5=E2=E0?= Organization: nfwnulondbmkb X-Priority: 3 (Normal) Message-ID: <2319825019.2012072104609@madagascar.hypermart.net> To: gnome@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=windows-1251 Content-Transfer-Encoding: 8bit X-EN-UserInfo: 36d264394d294b81600e8b20e2792f14:405c0898dec705cbbf8bba9fddfae210 X-EN-AuthUser: ecotours@madagascar.hypermart.net Sender: Линуся Киреева X-EN-OrigIP: 195.210.29.1 X-EN-OrigHost: am.websupport.sk Cc: Subject: =?windows-1251?b?7O7pIOzg8f7t/w==?= 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, 02 Jul 2012 09:16:32 -0000 Пррривеет! если есть желание узнать друг друга получше..... www.gkorpus.org/myfolder.php там ищи в поиске...!!!))) From owner-freebsd-gnome@FreeBSD.ORG Mon Jul 2 11:07:40 2012 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 06B521065687 for ; Mon, 2 Jul 2012 11:07:40 +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 CCA528FC16 for ; Mon, 2 Jul 2012 11:07:39 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q62B7dfg012988 for ; Mon, 2 Jul 2012 11:07:39 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q62B7dn9012986 for gnome@FreeBSD.org; Mon, 2 Jul 2012 11:07:39 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 2 Jul 2012 11:07:39 GMT Message-Id: <201207021107.q62B7dn9012986@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, 02 Jul 2012 11:07:40 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/169512 gnome [PATCH] x11/yelp update-desktop-database after install o ports/169381 gnome databases/libgda fix build with CLANG o ports/169343 gnome [patch] graphics/cairo: add qt4 surface o ports/169328 gnome net/avahi-app unconditionally overwrites modified conf o ports/168835 gnome graphics/inkscape 0.48.2 will crash throwing exception o ports/168568 gnome x11-toolkits/gtk20 fails to build (minor bug in port) o ports/168464 gnome [patch] graphics/gegl: prevent automake-1.11 rerun f ports/168427 gnome needs path prefix in RUN_DEPENDS in ports-mgmt/package o ports/168220 gnome [patch] misc/shared-mime-info: do not register auto-ge o ports/167645 gnome x11/gnome2: Cannot see KDE software on GNOME applicati o ports/167199 gnome x11-fm/nautilus 2.32.2.1 Gnome2.32 Doesn't auto mount s ports/165227 gnome [UPDATE] libgsf-1.14.22, goffice-0.9.1, gnumeric-1.11. o ports/164222 gnome switching users in gnome3 invokes sanity check f ports/163722 gnome sysutils/gnome-settings-daemon: crash with abort trap p ports/162227 gnome [patch] devel/glade3: update to 3.8.0 o ports/161676 gnome databases/libgda4: [UPDATE] to 4.2.9; improvements o ports/161494 gnome devel/anjuta: gmake[3]: Entering directory `/usr/ports p ports/161164 gnome [PATCH] devel/glade3: update to 3.10.0 p ports/160670 gnome [patch] devel/pkg-config: upgrade to version 0.26 p ports/160490 gnome [PATCH] x11-toolkits/gtk20: drag and drop broken in vn p ports/159928 gnome Updates graphics/clutter to 1.6.16 a ports/159613 gnome [PATCH] misc/gnomehier: use dirrmtry for PREFIX/share/ f ports/148244 gnome x11/gnome2: gnome desktop and HAL prevent umount witho s ports/145301 gnome [patch] sysutils/hal: /usr/local/etc/rc.d/hald startup 24 problems total. From owner-freebsd-gnome@FreeBSD.ORG Mon Jul 2 23:10:19 2012 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CA15310656B7; Mon, 2 Jul 2012 23:10:19 +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 9FD488FC0C; Mon, 2 Jul 2012 23:10:19 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q62NAJeP016989; Mon, 2 Jul 2012 23:10:19 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q62NAJa5016985; Mon, 2 Jul 2012 23:10:19 GMT (envelope-from edwin) Date: Mon, 2 Jul 2012 23:10:19 GMT Message-Id: <201207022310.q62NAJa5016985@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/169618: devel/orbitcpp fix build with clang 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, 02 Jul 2012 23:10:19 -0000 Synopsis: devel/orbitcpp fix build with clang Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Mon Jul 2 23:10:19 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=169618 From owner-freebsd-gnome@FreeBSD.ORG Wed Jul 4 20:00:29 2012 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id E49F31065672; Wed, 4 Jul 2012 20:00:29 +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 B35298FC14; Wed, 4 Jul 2012 20:00:29 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q64K0TwH005360; Wed, 4 Jul 2012 20:00:29 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q64K0T64005356; Wed, 4 Jul 2012 20:00:29 GMT (envelope-from edwin) Date: Wed, 4 Jul 2012 20:00:29 GMT Message-Id: <201207042000.q64K0T64005356@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/169649: [patch] graphics/gegl: do not depend on -lexecinfo, it's unused 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, 04 Jul 2012 20:00:30 -0000 Synopsis: [patch] graphics/gegl: do not depend on -lexecinfo, it's unused Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 4 20:00:29 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=169649 From owner-freebsd-gnome@FreeBSD.ORG Wed Jul 4 20:20:14 2012 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id CF5221065670; Wed, 4 Jul 2012 20:20:14 +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 9E7ED8FC12; Wed, 4 Jul 2012 20:20:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q64KKE8S008387; Wed, 4 Jul 2012 20:20:14 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q64KKEiC008383; Wed, 4 Jul 2012 20:20:14 GMT (envelope-from edwin) Date: Wed, 4 Jul 2012 20:20:14 GMT Message-Id: <201207042020.q64KKEiC008383@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/169650: [patch] graphics/gimp-app: do not depend on -lexecinfo, it's unused 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, 04 Jul 2012 20:20:14 -0000 Synopsis: [patch] graphics/gimp-app: do not depend on -lexecinfo, it's unused Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Wed Jul 4 20:20:14 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=169650 From owner-freebsd-gnome@FreeBSD.ORG Wed Jul 4 20:30:22 2012 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 BD05C1065686 for ; Wed, 4 Jul 2012 20:30:22 +0000 (UTC) (envelope-from joao@matik.com.br) Received: from msrv.matik.com.br (msrv.matik.com.br [187.95.0.181]) by mx1.freebsd.org (Postfix) with ESMTP id 005DD8FC1C for ; Wed, 4 Jul 2012 20:30:21 +0000 (UTC) Received: from pop1.hm.net.br (pop1.hm.net.br [189.7.36.193]) (authenticated bits=0) by msrv.matik.com.br (8.14.5/8.14.5) with ESMTP id q64KUC5W061045 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO) for ; Wed, 4 Jul 2012 17:30:13 -0300 (BRT) (envelope-from joao@matik.com.br) X-Virus-Status: Clean X-Virus-Scanned: clamav-milter 0.97.5 at msrv.matik.com.br X-DKIM: OpenDKIM Filter v2.5.2 msrv.matik.com.br q64KUC5W061045 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=matik.com.br; s=racoon; t=1341433813; bh=lK4i6EWhjsBZStKe09h/OlRQNOuMW0s6cBR/gjQXGtQ=; h=Date:From:To:Subject; b=DYhhuctStV0MdqWVuCVZpHOjxbFFm94OrdnQH4T+U7Kj7iqjNbZl7zQEOf5SSLzMi K2z5zgEdqsyTFTwJt4dlvcwz7B6T0ojrDErJV0Ea4epgeDtlgP+/HSzPVqFGjTfeGi YJULHJMIuuzpJSYw8L3S9ryxY6v2aQ66MDuyW4i8= Authentication-Results: msrv.matik.com.br; sender-id=pass header.from=joao@matik.com.br; auth=pass (PLAIN); spf=pass smtp.mfrom=joao@matik.com.br Date: Wed, 4 Jul 2012 17:30:03 -0300 From: joaoBR To: gnome@freebsd.org Message-ID: <20120704173003.072dd270@pop1.hm.net.br> X-Mailer: Claws Mail 3.8.1 (GTK+ 2.24.6; i386-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: multipart/signed; micalg=PGP-SHA1; boundary="Sig_/4QofTBXKF+7Jl2cWZ1pxtEd"; protocol="application/pgp-signature" X-Spam-Status: No, score=-295.2 required=5.0 tests=AWL=-3.101,BAYES_05=-0.5,DKIM_SIGNED=0.1,DKIM_VALID=-0.1,DKIM_VALID_AU=-0.1,RCVD_IN_BRBL_LASTEXT=1.449,RCVD_IN_NJABL_PROXY=2.224,RCVD_IN_PBL=3.335,RCVD_IN_RP_RNBL=1.31,SPF_PASS=-0.001,TW_BX=0.077,TW_IB=0.077,USER_IN_DKIM_WHITELIST=-100,USER_IN_SPF_WHITELIST=-100,USER_IN_WHITELIST=-100 msrv.matik.com.br 1282; Body=1 Fuz1=1 Fuz2=1 Reported 0 times. [127.0.0.11] [127.0.0.6] [1 mail.matik.com.br.] [127.0.0.2] [127.0.0.9] [187.95.0.181] autolearn=no ASN AS28573 189.7.36.0/22 X-Spam-Checker-Version: SpamAssassin 3.3.2-hm_201202.c (2011-06-06) on msrv.matik.com.br Cc: Subject: oh nice 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, 04 Jul 2012 20:30:22 -0000 --Sig_/4QofTBXKF+7Jl2cWZ1pxtEd Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable ** Port marked as IGNORE: x11/gnome-shell: is marked as broken: Doesn't build very nice to display this after compiling this libxul thing, gjs, clutter and mutter ... how they say? good job ? thank you for having a nice looking hour with my computer! --=20 Jo=E3o Martins (JoaoBR) Infomatik Development Team http://wipserver.matik.com.br +55 11 4249.2222 --Sig_/4QofTBXKF+7Jl2cWZ1pxtEd Content-Type: application/pgp-signature; name=signature.asc Content-Disposition: attachment; filename=signature.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.19 (FreeBSD) iEYEARECAAYFAk/0p9MACgkQCmIEQLX9sjrkTgCfWd/3+b1UkJ46lD3PYhypJrXD NqgAnjhDbfSHxC13udnZ9CGisUoK+OpF =8iXE -----END PGP SIGNATURE----- --Sig_/4QofTBXKF+7Jl2cWZ1pxtEd-- From owner-freebsd-gnome@FreeBSD.ORG Fri Jul 6 03:09:35 2012 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 567F3106566C for ; Fri, 6 Jul 2012 03:09:35 +0000 (UTC) (envelope-from mezz.freebsd@gmail.com) Received: from mail-yw0-f54.google.com (mail-yw0-f54.google.com [209.85.213.54]) by mx1.freebsd.org (Postfix) with ESMTP id 0D7A98FC19 for ; Fri, 6 Jul 2012 03:09:34 +0000 (UTC) Received: by yhfs35 with SMTP id s35so3228495yhf.13 for ; Thu, 05 Jul 2012 20:09:34 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=k/+RW4gpweL90MH3V14Cy8cg5NUXcSn4+pM8q8l+uZU=; b=thG2HZB4haxTC2UpZ+/X8N97p8sDsOLTYii+h/7zgUrd9IsyhQjTOkEyhR6hx04tIk sqaKNq2ryTjTc3asgJO4tVDczz2DcouLx/E+5kVOKvtb2x03a6NZlObuLZM44Pqllofm Vcjn3Ek+fjL6MTxYyOGAhnypcH3grGMpBHxTlMmY4aAxO5t42UqbKQ5+S7G/FnuL4Yc+ 5eALsCKgOmjxySYZ1GD8TyNKAXixQGaPOlfnMZd27EY1Dlxxz98dPvZQlztPvrWNZ1tg tPp2v7EtiVrBfO4fSNl5iySyS/Og6oGQlTtYY3d+cmkTUOcpS6k3s93/aQaEITFskKST I66w== MIME-Version: 1.0 Received: by 10.236.78.36 with SMTP id f24mr33930912yhe.20.1341544174053; Thu, 05 Jul 2012 20:09:34 -0700 (PDT) Received: by 10.101.79.2 with HTTP; Thu, 5 Jul 2012 20:09:34 -0700 (PDT) In-Reply-To: References: Date: Thu, 5 Jul 2012 22:09:34 -0500 Message-ID: From: Jeremy Messenger To: FreeBSD GNOME Users Content-Type: text/plain; charset=ISO-8859-1 Cc: Subject: Re: MATE Desktop. X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2012 03:09:35 -0000 Hello all, Warning, this is a very long email and it's incomplete as you can't run MATE yet. I have replied to my own thread too to correct the information way below. Anyway, at first check here: http://www.marcuscom.com/pipermail/marcuscom-devel/2012-July/001863.html I have completed the 10 repocopied ports from GNOME to MATE and it's untest in the runtime. There are still many ports left that need to be repocopied. I have listed that what need to be repocopied in the TODO-mate at: http://www.marcuscom.com:8080/cgi-bin/cvsweb.cgi/ports-experimental/TODO-mate The tarballs are available at: http://pub.mate-desktop.org/releases/1.2/ I have made some change in the bsd.mate.mk from bsd.gnome.mk following removed the features: -HAVE:Mfoo, A lot of users don't know, hide and lacking OPTIONS stuff. It's not difficult to add autocheck in the Makefile without that HAVE:Mfoo anyway. -foo_USE_GNOME_IMPL, we do not maintain it very well. Also it was not easy to track it down for the other maintainers to figure where the dependencies come from. I think it's best to put a complete dependencies in the ports rather than having IMPL doing it for you. -Remove the gnomeprefix and replace it to something like GCONFPREFIX=--gconf=...., so you can put ${MATECONF_PREFIX} in the Makefile's CONFIGURE_ARGS. There will be no gnomeprefix-like. -Remove the referencehack, yes it works great but it's ugly in the every Makefile. I think that's all. Only a feature that has been added is :build and :run. If anyone have something in mind to improvement or else, let me know and I will see what I can do. I will be away for a week on July 8th to 14th. Feel free to flood in my Inbox relate with the MATE stuff. I will check these emails when I return and continue work on more repocopy ports. If you want to help, feel free to do it too. Keep in mind, you will have to study those MATE ports because there is no document at the moment but you can ask me questions. Cheers, Mezz On Wed, Jun 27, 2012 at 12:24 PM, Jeremy Messenger wrote: > I am forwarding my email from our private list to here to let you know > about that I have begun work on MATE Desktop. If anyone have any good > idea, feedback, improvement or whatever. Feel free to input about it > and I will see what I can do with bsd.mate.mk or so. > > Also, I will remove the referencehack because it was too ugly even > though it works awesome. I prefer to do it in a clean way, but I do > not plan to work on it which is why I will remove it. Same for remove > ${HAVE_GNOME:Mfoobar} feature because of lacking use OPTIONS and > confusing for the users. > > Cheers, > Mezz > > > ---------- Forwarded message ---------- > From: Jeremy Messenger > Date: Wed, Jun 27, 2012 at 11:40 AM > Subject: MATE Desktop. > To: > > > Hello team, > > I have put the GNOME 3.4 on halt because of that glib's thread/mutex > stuff. I have started work on MATE in about 30 minutes ago and it was > easy so far. I have created (actually, repocopy) three ports. The > MATE's tarballs do not have configure, which it's just autogen.sh. I > have created USE_MATE=autogen to make it easy. > > --------------------- > devel/gnome-common -> devel/mate-common > textproc/gnome-doc-utils -> textproc/mate-doc-utils > devel/ORBit2 -> devel/mate-corba > --------------------- > > Here's what mate-common's Makefile looks like: > > --------------------- > PORTNAME= mate-common > PORTVERSION= 1.2.2 > CATEGORIES= devel mate > MASTER_SITES= MATE > DIST_SUBDIR= mate > > MAINTAINER= gnome@FreeBSD.org > COMMENT= Common automake macros for MATE > > USE_XZ= yes > USE_MATE= autogen > USE_GMAKE= yes > USE_AUTOTOOLS= aclocal:env autoconf:env automake:env > GNU_CONFIGURE= yes > --------------------- > > The mate-corba's Makefile. A more MATE port might have the gtk-doc in > the build time because of 'GTK_DOC_CHECK([1.0])' in the configure.in. > I don't see any reason to patch to remove it. > > --------------------- > PORTNAME= mate-corba > PORTVERSION= 1.2.2 > CATEGORIES= devel gnome CATEGORIES= devel mate > MASTER_SITES= MATE > DIST_SUBDIR= mate > [...] > BUILD_DEPENDS= gtkdoc-check:${PORTSDIR}/textproc/gtk-doc > > USE_XZ= yes > USE_MATE= autogen common hack ltverhack USE_MATE= autogen common:build matehack ltverhack > USE_GMAKE= yes > USE_GNOME= glib20 libidl > USE_GETTEXT= yes > USE_LDCONFIG= yes > USE_AUTOTOOLS= aclocal:env autoconf:env automake:env libtool libtoolize:env > GNU_CONFIGURE= yes > CONFIGURE_ARGS= --with-html-dir=${PREFIX}/share/doc \ > --disable-gtk-doc > CPPFLAGS+= -I${LOCALBASE}/include > LDFLAGS+= -L${LOCALBASE}/lib > --------------------- > > Yes, the ltverhack works because I have modified the order of target > use. I know that it's double function from bsd.gnome.mk, but it's only > way that I can think of to make ltverhack works by copy and modified a > bit in bsd.mate.mk at the moment. In the bsd.mate.mk has: > > --------------------- > .if ${USE_MATE:Mautogen}!= "" > > CONFIGURE_ENV+= NOCONFIGURE=yes > > pre-patch: mate-pre-patch pre-configure: mate-pre-configure > mate-pre-patch: mate-pre-configure: > @(cd ${CONFIGURE_WRKSRC} ; ${SETENV} ${CONFIGURE_ENV} ./autogen.sh) > .endif > > .if defined(MATE_PRE_PATCH_SCRIPT) > > pre-patch-script: mate-pre-patch-script <-- Changed target. pre-configure-script: mate-pre-configure-script > mate-pre-patch-script: <-- Changed target. mate-pre-configure-script: > @${MATE_PRE_PATCH_SCRIPT:C/^;//1} > .endif > --------------------- > > Most of components will have no 'mate' prefix. To make it shorter and > the 'USE_MATE' already have 'mate' name in it. Repeat of 'mate' kinds > of drive me crazy. Haha. :-P :-) But if you think I should put 'mate' > in there, let me know. Example, common is mate-common; docutils is > mate-doc-utils, hack is like gnomehack and etc. > > The bsd.mate.mk is kind of very messy right now. I will clean up when > I add a lot of more mate ports to make sure everything is working > correct. Also, I want remove the ${HAVE_GNOME:Mfoobar} feature from > bsd.mate.mk. I want to add something like foo:build, bar:run for build > and run time dependency. Without the :build/:run will be same what it > normal does. > > I will worry about the matehier later when finished with all MATE ports. > > Cheers, > Mezz -- mezz.freebsd@gmail.com - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-gnome@FreeBSD.ORG Fri Jul 6 08:00:44 2012 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 B678E106566B; Fri, 6 Jul 2012 08:00:44 +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 8AC6F8FC14; Fri, 6 Jul 2012 08:00:44 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q6680ix0051508; Fri, 6 Jul 2012 08:00:44 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q6680ikA051504; Fri, 6 Jul 2012 08:00:44 GMT (envelope-from edwin) Date: Fri, 6 Jul 2012 08:00:44 GMT Message-Id: <201207060800.q6680ikA051504@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/169678: games/gcompris: update to 12.05 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2012 08:00:44 -0000 Synopsis: games/gcompris: update to 12.05 Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jul 6 08:00:43 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=169678 From owner-freebsd-gnome@FreeBSD.ORG Fri Jul 6 15:30:28 2012 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id AD0CF106564A; Fri, 6 Jul 2012 15:30:28 +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 80D858FC0C; Fri, 6 Jul 2012 15:30:28 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q66FUSUJ014975; Fri, 6 Jul 2012 15:30:28 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q66FUS8h014969; Fri, 6 Jul 2012 15:30:28 GMT (envelope-from edwin) Date: Fri, 6 Jul 2012 15:30:28 GMT Message-Id: <201207061530.q66FUS8h014969@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/169682: [patch] net/libproxy: unbreak with gcc47/libc++ X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jul 2012 15:30:28 -0000 Synopsis: [patch] net/libproxy: unbreak with gcc47/libc++ Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Fri Jul 6 15:30:27 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=169682 From owner-freebsd-gnome@FreeBSD.ORG Sat Jul 7 08:28:16 2012 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 43F6A106568B for ; Sat, 7 Jul 2012 08:28:16 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from portsmonj.FreeBSD.org (portsmonj.freebsd.org [69.147.83.46]) by mx1.freebsd.org (Postfix) with ESMTP id 3382C8FC08 for ; Sat, 7 Jul 2012 08:28:16 +0000 (UTC) Received: from portsmonj.freebsd.org (portsmonj.freebsd.org [69.147.83.46]) by portsmonj.FreeBSD.org (8.14.5/8.14.4) with ESMTP id q678SGcI086191 for ; Sat, 7 Jul 2012 08:28:16 GMT (envelope-from linimon@FreeBSD.org) Date: Sat, 7 Jul 2012 08:28:16 GMT Message-Id: <201207070828.q678SGcI086191@portsmonj.FreeBSD.org> From: linimon@FreeBSD.org To: gnome@FreeBSD.org Cc: Subject: FreeBSD ports that you maintain which are currently marked broken X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: portmgr-feedback@FreeBSD.org List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2012 08:28:16 -0000 Dear FreeBSD port maintainer: As part of an ongoing effort to reduce the number of problems in the FreeBSD ports system, we periodically notify users of ports that are marked as "broken" in their Makefiles. In many cases these ports are failing to compile on some subset of the FreeBSD build environments. The most common problem is that recent versions of -CURRENT include gcc4.2, which is much stricter than older versions. The next most common problem is that compiles succeed on the i386 architecture (e.g. the common Intel PC), but fail on one or more of the other architectures due to assumptions about things such as size of various types, byte-alignment issues, and so forth. In occasional cases we see that the same port may have different errors in different build environments. The script that runs on the build cluster uses heuristics to try to 'guess' the error type to help you isolate problems, but it is only a rough guide. One more note: on occasion, there are transient build errors seen on the build farm. Unfortunately, there is not yet any way for this algorithm to tell the difference (humans are much, much better at this kind of thing.) The errors are listed below. In the case where the same problem exists on more than one build environment, the URL points to the latest errorlog for that type. (By 'build environment' here we mean 'combination of 7.x/8.x/9.x/-current with target architecture'.) (Note: the dates are included to help you to gauge whether or not the error still applies to the latest version. The program that generates this report is not yet able to determine this automatically.) portname: x11/gnome-shell broken because: Doesn't build build errors: none. overview: http://portsmon.FreeBSD.org/portoverview.py?category=x11&portname=gnome-shell If these errors are ones that you are already aware of, please accept our apologies and ignore this message. On the other hand, if you no longer wish to maintain this port (or ports), please reply with a message stating that, and accept our thanks for your efforts in the past. Every effort has been made to make sure that these error reports really do correspond to a port that you maintain. However, due to the fact that this is an automated process, it may indeed generate false matches. If one of these errors fits that description, please forward this email to the author of this software, Mark Linimon , so that he can attempt to fix the problem in the future. Thanks for your efforts to help improve FreeBSD. From owner-freebsd-gnome@FreeBSD.ORG Sat Jul 7 14:10:17 2012 Return-Path: Delivered-To: gnome@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 407A9106566C; Sat, 7 Jul 2012 14:10:17 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 141028FC17; Sat, 7 Jul 2012 14:10:17 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q67EAGAC098075; Sat, 7 Jul 2012 14:10:16 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q67EAGdX098071; Sat, 7 Jul 2012 14:10:16 GMT (envelope-from edwin) Date: Sat, 7 Jul 2012 14:10:16 GMT Message-Id: <201207071410.q67EAGdX098071@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, gnome@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/169696: Missing dependencies: multimedia/cheese 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, 07 Jul 2012 14:10:17 -0000 Synopsis: Missing dependencies: multimedia/cheese Responsible-Changed-From-To: freebsd-ports-bugs->gnome Responsible-Changed-By: edwin Responsible-Changed-When: Sat Jul 7 14:10:16 UTC 2012 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=169696 From owner-freebsd-gnome@FreeBSD.ORG Sat Jul 7 19:10:06 2012 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 0CAC11065670 for ; Sat, 7 Jul 2012 19: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 CCAC98FC0A for ; Sat, 7 Jul 2012 19:10:05 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q67JA57Y034855 for ; Sat, 7 Jul 2012 19:10:05 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q67JA5Zh034854; Sat, 7 Jul 2012 19:10:05 GMT (envelope-from gnats) Date: Sat, 7 Jul 2012 19:10:05 GMT Message-Id: <201207071910.q67JA5Zh034854@freefall.freebsd.org> To: gnome@FreeBSD.org From: Ruslan Mahmatkhanov Cc: Subject: Re: ports/169678: games/gcompris: update to 12.05 X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Ruslan Mahmatkhanov List-Id: GNOME for FreeBSD -- porting and maintaining List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Jul 2012 19:10:06 -0000 The following reply was made to PR ports/169678; it has been noted by GNATS. From: Ruslan Mahmatkhanov To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/169678: games/gcompris: update to 12.05 Date: Sat, 07 Jul 2012 23:07:03 +0400 There is also buildlog: http://people.freebsd.org/~rm/gcompris-12.05.log Please commit, or approve and I commit this for you. Thanks. -- Regards, Ruslan Tinderboxing kills... the drives.