From owner-freebsd-gnome@FreeBSD.ORG Sun Dec 19 14:30:14 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 9A735106566C for ; Sun, 19 Dec 2010 14:30:14 +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 6FA9A8FC17 for ; Sun, 19 Dec 2010 14:30:14 +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 oBJEUEgT060330 for ; Sun, 19 Dec 2010 14:30:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.4/8.14.4/Submit) id oBJEUE6D060326; Sun, 19 Dec 2010 14:30:14 GMT (envelope-from gnats) Date: Sun, 19 Dec 2010 14:30:14 GMT Message-Id: <201012191430.oBJEUE6D060326@freefall.freebsd.org> To: gnome@FreeBSD.org From: Matthias Andree Cc: 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 Reply-To: Matthias Andree 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 14:30:14 -0000 The following reply was made to PR ports/152444; it has been noted by GNATS. From: Matthias Andree To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/152444: devel/dconf does not support parallel builds Date: Sun, 19 Dec 2010 15:22:18 +0100 This is a multi-part message in MIME format. --------------040009050001080900030102 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. --------------040009050001080900030102 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 --------------040009050001080900030102--