From owner-freebsd-gnome@FreeBSD.ORG Mon Jan 20 14:00:56 2014 Return-Path: Delivered-To: gnome@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 978AF17E; Mon, 20 Jan 2014 14:00:56 +0000 (UTC) Received: from smtpout6.timeweb.ru (smtpout6.timeweb.ru [92.53.117.39]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 507421271; Mon, 20 Jan 2014 14:00:56 +0000 (UTC) Received: from [213.148.20.85] (helo=hive.panopticon) by smtp.timeweb.ru with esmtpsa (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.76) (envelope-from ) id 1W5FPK-0002x7-FH; Mon, 20 Jan 2014 18:00:54 +0400 Received: from hades.panopticon (hades.panopticon [192.168.0.32]) by hive.panopticon (Postfix) with ESMTP id 2A21FE71; Mon, 20 Jan 2014 18:00:54 +0400 (MSK) Received: by hades.panopticon (Postfix, from userid 1000) id 2325291BD; Mon, 20 Jan 2014 18:00:53 +0400 (MSK) To: FreeBSD-gnats-submit@freebsd.org Subject: [PATCH] x11-fm/nautilus: disable g-ir-scanner cache From: Dmitry Marakasov X-send-pr-version: 3.113 X-GNATS-Notify: Message-Id: <20140120140054.2325291BD@hades.panopticon> Date: Mon, 20 Jan 2014 18:00:53 +0400 (MSK) Cc: gnome@FreeBSD.org X-BeenThere: freebsd-gnome@freebsd.org X-Mailman-Version: 2.1.17 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, 20 Jan 2014 14:00:56 -0000 >Submitter-Id: current-users >Originator: Dmitry Marakasov >Organization: >Confidential: no >Synopsis: [PATCH] x11-fm/nautilus: disable g-ir-scanner cache >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 10.0-RELEASE amd64 >Environment: System: FreeBSD hades.panopticon 10.0-RELEASE FreeBSD 10.0-RELEASE #0 r260807: Fri Jan 17 13:14:28 MSK >Description: - Disable g-ir-scanner cache to not pollute /root/.cache on build - Use new LIB_DEPENDS syntax Port maintainer (gnome@FreeBSD.org) is cc'd. Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: SVN) >How-To-Repeat: >Fix: --- nautilus-2.32.2.1_4.patch begins here --- Index: Makefile =================================================================== --- Makefile (revision 340395) +++ Makefile (working copy) @@ -13,9 +13,9 @@ COMMENT?= File manager for the GNOME desktop BUILD_DEPENDS= g-ir-compiler:${PORTSDIR}/devel/gobject-introspection -LIB_DEPENDS= exif:${PORTSDIR}/graphics/libexif \ - unique-1.0:${PORTSDIR}/x11-toolkits/unique \ - exempi:${PORTSDIR}/textproc/exempi +LIB_DEPENDS= libexif.so:${PORTSDIR}/graphics/libexif \ + libunique-1.0.so:${PORTSDIR}/x11-toolkits/unique \ + libexempi.so:${PORTSDIR}/textproc/exempi CONFLICTS= nautilus-3.[0-9]* @@ -30,7 +30,8 @@ LIBPNG="-L${LOCALBASE}/lib -lpng -lz" CPPFLAGS+= -I${LOCALBASE}/include CONFIGURE_ARGS= --enable-static --disable-packagekit -MAKE_ENV= G_CHARSET_ALIAS="${LOCALBASE}/libdata/charset.alias" +MAKE_ENV= G_CHARSET_ALIAS="${LOCALBASE}/libdata/charset.alias" \ + GI_SCANNER_DISABLE_CACHE=yes GCONF_SCHEMAS= apps_nautilus_preferences.schemas --- nautilus-2.32.2.1_4.patch ends here ---