From owner-svn-ports-all@FreeBSD.ORG Wed Mar 11 18:37:05 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 984E57E8; Wed, 11 Mar 2015 18:37:05 +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 838D7978; Wed, 11 Mar 2015 18:37:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t2BIb5cP055667; Wed, 11 Mar 2015 18:37:05 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t2BIb5Cq055666; Wed, 11 Mar 2015 18:37:05 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201503111837.t2BIb5Cq055666@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 11 Mar 2015 18:37:05 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r381027 - head/graphics/exiv2/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-all@freebsd.org X-Mailman-Version: 2.1.18-1 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: Wed, 11 Mar 2015 18:37:05 -0000 Author: marino Date: Wed Mar 11 18:37:04 2015 New Revision: 381027 URL: https://svnweb.freebsd.org/changeset/ports/381027 QAT: https://qat.redports.org/buildarchive/r381027/ Log: graphics/exiv2: Not jobs safe, so make it jobs safe A dependency on a header was not listed in the vendor makefile, so it is possible that exiv2 breaks on multi-job building. This fixes at least that specific problem. PR: 197749 Submitted by: marino approved by: maintainer timeout Modified: head/graphics/exiv2/files/patch-src-Makefile Modified: head/graphics/exiv2/files/patch-src-Makefile ============================================================================== --- head/graphics/exiv2/files/patch-src-Makefile Wed Mar 11 18:34:27 2015 (r381026) +++ head/graphics/exiv2/files/patch-src-Makefile Wed Mar 11 18:37:04 2015 (r381027) @@ -1,5 +1,14 @@ ---- src/Makefile.orig +--- src/Makefile.orig 2013-12-01 12:13:42 UTC +++ src/Makefile +@@ -215,7 +215,7 @@ ifdef DEP_TRACKING + endif + + # Be sure to rewrite exv_conf.h before compiling anything +-$(SRC): exv_conf.h ++$(SRC) $(EXIV2SRC): exv_conf.h + + exv_conf.h: $(top_srcdir)/config/config.h + LC_ALL=C sed 's/#define \([A-Z]\)/#define EXV_\1/; s/#undef \([A-Z]\)/#undef EXV_\1/' < $< > $@ @@ -231,7 +231,7 @@ lib: $(OBJ) $(EXIV2BIN): lib $(EXIV2OBJ) $(EXIV2COBJ)