From owner-freebsd-gnome@FreeBSD.ORG Sun Dec 19 12:52:19 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 BE5AF106566B for ; Sun, 19 Dec 2010 12:52:19 +0000 (UTC) (envelope-from mandree@FreeBSD.org) Received: from unimail.uni-dortmund.de (mx1.HRZ.Uni-Dortmund.DE [129.217.128.51]) by mx1.freebsd.org (Postfix) with ESMTP id 42B9D8FC1C for ; Sun, 19 Dec 2010 12:52:19 +0000 (UTC) Received: from [192.168.0.93] (g230086207.adsl.alicedsl.de [92.230.86.207]) (authenticated bits=0) by unimail.uni-dortmund.de (8.14.4/8.14.4) with ESMTP id oBJCDEou015307 (version=TLSv1/SSLv3 cipher=DHE-RSA-CAMELLIA256-SHA bits=256 verify=NOT); Sun, 19 Dec 2010 13:13:15 +0100 (CET) Message-ID: <4D0DF6DB.1020203@FreeBSD.org> Date: Sun, 19 Dec 2010 13:13:15 +0100 From: Matthias Andree User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.2.13) Gecko/20101207 Lightning/1.0b2 Thunderbird/3.1.7 MIME-Version: 1.0 To: Jeremy Messenger References: <201012190347.oBJ3lAwu035869@freefall.freebsd.org> In-Reply-To: X-Enigmail-Version: 1.1.1 Content-Type: multipart/mixed; boundary="------------040709090503000602070902" Cc: gnome@FreeBSD.org Subject: Re: ports/152444: devel/dconf does not support parallel builds 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, 19 Dec 2010 12:52:19 -0000 This is a multi-part message in MIME format. --------------040709090503000602070902 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit OK, seems I can't properly reproduce this from a 0.5.1 checkout from dconf Git. Strange. Anyways please authorize or commit the attached patch, which fixes the problem for me. It incidentally disposes of the MD5 checksum. No PORTREVISION fix as this shouldn't cause differences in installed files. --------------040709090503000602070902 Content-Type: text/plain; name="patch-ports_devel_dconf" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch-ports_devel_dconf" ===> Updating from CVS M Makefile M distinfo ===> Generating patch ===> Viewing diff with more Index: Makefile =================================================================== RCS file: /home/pcvs/ports/devel/dconf/Makefile,v retrieving revision 1.3 diff -u -u -r1.3 Makefile --- Makefile 25 Nov 2010 11:26:59 -0000 1.3 +++ Makefile 19 Dec 2010 12:11:08 -0000 @@ -27,11 +27,14 @@ USE_LDCONFIG= yes GNU_CONFIGURE= yes -MAKE_JOBS_UNSAFE=yes +MAKE_JOBS_SAFE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" +pre-build: + ${GMAKE} -C ${WRKSRC}/client dconf-client.c libdconf.so.0 + post-install: -${LOCALBASE}/bin/gio-querymodules ${PREFIX}/lib/gio/modules Index: distinfo =================================================================== RCS file: /home/pcvs/ports/devel/dconf/distinfo,v retrieving revision 1.1 diff -u -u -r1.1 distinfo --- distinfo 20 Nov 2010 17:40:04 -0000 1.1 +++ distinfo 19 Dec 2010 12:11:08 -0000 @@ -1,3 +1,2 @@ -MD5 (gnome3/dconf-0.5.1.tar.bz2) = c905497d0255fe2ba58564f9655908ab SHA256 (gnome3/dconf-0.5.1.tar.bz2) = 0083d70e1b5e540d8d4b3f04fa5d17dff4c574136682fe3bdd9b5ecc196ec4f6 SIZE (gnome3/dconf-0.5.1.tar.bz2) = 251287 ===> Done --------------040709090503000602070902--