From owner-svn-ports-head@FreeBSD.ORG Sat Jun 21 08:19:05 2014 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 ESMTPS id 1BB23EFB; Sat, 21 Jun 2014 08:19: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 08E902BF0; Sat, 21 Jun 2014 08:19:05 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s5L8J4ar041956; Sat, 21 Jun 2014 08:19:04 GMT (envelope-from marino@svn.freebsd.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s5L8J4B8041955; Sat, 21 Jun 2014 08:19:04 GMT (envelope-from marino@svn.freebsd.org) Message-Id: <201406210819.s5L8J4B8041955@svn.freebsd.org> From: John Marino Date: Sat, 21 Jun 2014 08:19:04 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r358676 - head/sysutils/dar/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.18 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: Sat, 21 Jun 2014 08:19:05 -0000 Author: marino Date: Sat Jun 21 08:19:04 2014 New Revision: 358676 URL: http://svnweb.freebsd.org/changeset/ports/358676 QAT: https://qat.redports.org/buildarchive/r358676/ Log: sysutils/dar: Use alternate sed argument to unbreak DragonFly The new version of dar uses the gnu sed -r switch which is not recognized by DragonFly's BSD sed. Switch this to the equivalent -E switch so both FreeBSD and DragonFly are happy. Approved by: general blanket Added: head/sysutils/dar/files/patch-src_libdar_Makefile.in (contents, props changed) Added: head/sysutils/dar/files/patch-src_libdar_Makefile.in ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/sysutils/dar/files/patch-src_libdar_Makefile.in Sat Jun 21 08:19:04 2014 (r358676) @@ -0,0 +1,11 @@ +--- src/libdar/Makefile.in.orig 2014-06-15 16:44:07.000000000 +0000 ++++ src/libdar/Makefile.in +@@ -337,7 +337,7 @@ AM_LDFLAGS = @LTLIBINTL@ $(LD_PROF) + lib_LTLIBRARIES = $(MYLIB) + LIBDAR_MAJOR = `grep LIBDAR_COMPILE_TIME_MAJOR libdar.hpp | cut -f 2 -d "=" | cut -f 1 -d ';' | sed -e 's% %%g'` + LIBDAR_MEDIUM = `grep LIBDAR_COMPILE_TIME_MEDIUM libdar.hpp | cut -f 2 -d "=" | cut -f 1 -d ';' | sed -e 's% %%g'` +-LIBDAR_MEDIUM_000 = `grep LIBDAR_COMPILE_TIME_MEDIUM libdar.hpp | cut -f 2 -d "=" | cut -f 1 -d ';' | sed -r -e 's% %%g' -e 's%([^0-9]|^)([0-9]{1})([^0-9]|$$)%0\2%' -e 's%([^0-9]|^)([0-9]{2})([^0-9]|$$)%0\2%'` ++LIBDAR_MEDIUM_000 = `grep LIBDAR_COMPILE_TIME_MEDIUM libdar.hpp | cut -f 2 -d "=" | cut -f 1 -d ';' | sed -E -e 's% %%g' -e 's%([^0-9]|^)([0-9]{1})([^0-9]|$$)%0\2%' -e 's%([^0-9]|^)([0-9]{2})([^0-9]|$$)%0\2%'` + LIBDAR_MINOR = `grep LIBDAR_COMPILE_TIME_MINOR libdar.hpp | cut -f 2 -d "=" | cut -f 1 -d ';' | sed -e 's% %%g'` + LIBDAR_LIBTOOL_CURRENT = $(LIBDAR_MAJOR)$(LIBDAR_MEDIUM_000) + LIBDAR_LIBTOOL_REVISION = $(LIBDAR_MINOR)