From owner-svn-ports-head@FreeBSD.ORG Wed Jul 31 07:43:54 2013 Return-Path: Delivered-To: svn-ports-head@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 ESMTP id 778D420C; Wed, 31 Jul 2013 07:43:54 +0000 (UTC) (envelope-from danfe@FreeBSD.org) 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)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 4BEFF2F13; Wed, 31 Jul 2013 07:43:54 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.7/8.14.7) with ESMTP id r6V7hspP063037; Wed, 31 Jul 2013 07:43:54 GMT (envelope-from danfe@svn.freebsd.org) Received: (from danfe@localhost) by svn.freebsd.org (8.14.7/8.14.5/Submit) id r6V7hrA1063035; Wed, 31 Jul 2013 07:43:53 GMT (envelope-from danfe@svn.freebsd.org) Message-Id: <201307310743.r6V7hrA1063035@svn.freebsd.org> From: Alexey Dokuchaev Date: Wed, 31 Jul 2013 07:43:53 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r324014 - in head/graphics/volpack: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 31 Jul 2013 07:43:54 -0000 Author: danfe Date: Wed Jul 31 07:43:53 2013 New Revision: 324014 URL: http://svnweb.freebsd.org/changeset/ports/324014 Log: Try to properly fix parallel builds instead of marking port as -jX unsafe. Modified: head/graphics/volpack/Makefile head/graphics/volpack/files/patch-Makefile.in Modified: head/graphics/volpack/Makefile ============================================================================== --- head/graphics/volpack/Makefile Wed Jul 31 07:25:25 2013 (r324013) +++ head/graphics/volpack/Makefile Wed Jul 31 07:43:53 2013 (r324014) @@ -13,7 +13,6 @@ COMMENT= Portable software library for v LICENSE= BSD GNU_CONFIGURE= yes -MAKE_JOBS_UNSAFE= yes PLIST_FILES= lib/libvolpack.a \ include/volpack.h Modified: head/graphics/volpack/files/patch-Makefile.in ============================================================================== --- head/graphics/volpack/files/patch-Makefile.in Wed Jul 31 07:25:25 2013 (r324013) +++ head/graphics/volpack/files/patch-Makefile.in Wed Jul 31 07:43:53 2013 (r324014) @@ -1,6 +1,6 @@ --- Makefile.in.orig 1994-12-12 21:21:47.000000000 +0100 -+++ Makefile.in 2012-06-05 13:26:24.552254340 +0200 -@@ -175,7 +175,7 @@ ++++ Makefile.in 2013-07-31 15:38:51.000000000 +0800 +@@ -175,25 +175,13 @@ cc -o makeopts makeopts.c vp_opts.c: makeopts Makefile @@ -8,8 +8,28 @@ + ./makeopts vp_opts.c $(CFLAGS) $(COMP_SRCS): $(COMP_IN) - @for i in $(COMP_SRCS) ; \ -@@ -239,10 +239,9 @@ +- @for i in $(COMP_SRCS) ; \ +- do \ +- rm -f $$i ;\ +- echo "$(M4) -DSourceFile=$$i $(COMP_IN) > $$i" ;\ +- $(M4) -DSourceFile=$$i $(COMP_IN) > $$i; \ +- chmod -w $$i; \ +- done ++ $(M4) -DSourceFile=$@ $(COMP_IN) > $@ && chmod -w $@ + + $(WARP_SRCS): $(WARP_IN) +- @for i in $(WARP_SRCS) ; \ +- do \ +- rm -f $$i ;\ +- echo "$(M4) -DSourceFile=$$i $(WARP_IN) > $$i" ;\ +- $(M4) -DSourceFile=$$i $(WARP_IN) > $$i; \ +- chmod -w $$i; \ +- done ++ $(M4) -DSourceFile=$@ $(WARP_IN) > $@ && chmod -w $@ + + examples: libvolpack.a + cd examples; make +@@ -239,10 +227,9 @@ done; @cd $(SRC_DIR)/man/src; for i in *.3; \ do \