From owner-svn-ports-all@FreeBSD.ORG Mon Apr 27 14:34:24 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D72FDA0D; Mon, 27 Apr 2015 14:34:24 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C578F1CB7; Mon, 27 Apr 2015 14:34:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t3REYOcf093914; Mon, 27 Apr 2015 14:34:24 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t3REYOv8093913; Mon, 27 Apr 2015 14:34:24 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201504271434.t3REYOv8093913@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 27 Apr 2015 14:34:24 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r384838 - head/print/ghostscript7 X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 27 Apr 2015 14:34:25 -0000 Author: marino Date: Mon Apr 27 14:34:24 2015 New Revision: 384838 URL: https://svnweb.freebsd.org/changeset/ports/384838 Log: print/ghostscript7: This is not jobs safe This port is doing some king of crazy delete/copy thing with gconfig.h and there's a race where it gets used before it's copied. Mark this port unsafe until further notice; it has failed on me a couple of times. tailored log: rm -f ./obj/../soobj/gconfig.h cp ./obj/../soobj/gconfxx.h ./obj/../soobj/gconfig.h rm -f ./obj/../soobj/gconfig.h cp ./src/gconf.c ./obj/../soobj/gconfig.cOA cp ./obj/../soobj/gconfxx.h ./obj/../soobj/gconfig.h [snip] cp ./obj/../soobj/gconfxx.h ./obj/../soobj/gconfig.h In file included from ./obj/../soobj/iconfig.c:43:0: ./src/gconf.h:34:23: fatal error: ./obj/../soobj/gconfig.h: No such file or directory compilation terminated. Modified: head/print/ghostscript7/Makefile Modified: head/print/ghostscript7/Makefile ============================================================================== --- head/print/ghostscript7/Makefile Mon Apr 27 14:32:09 2015 (r384837) +++ head/print/ghostscript7/Makefile Mon Apr 27 14:34:24 2015 (r384838) @@ -51,6 +51,8 @@ LDFLAGS+= ${XLDFLAGS} XLDFLAGS= -lpthread -L${LOCALBASE}/lib -L${WRKSRC}/gimp-print PLIST_SUB= GS_VERSION="${PORTVERSION}" +MAKE_JOBS_UNSAFE= yes + OPTIONS_DEFINE= X11 DOCS A4SIZE OPTIONS_DEFAULT=X11 DOCS A4SIZE NO_OPTIONS_SORT=yes