From owner-freebsd-ports-bugs@FreeBSD.ORG Sun Nov 1 15:00:14 2009 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6D12F106568B for ; Sun, 1 Nov 2009 15:00: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 2F3F18FC14 for ; Sun, 1 Nov 2009 15:00:14 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nA1F0EdL050107 for ; Sun, 1 Nov 2009 15:00:14 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nA1F0ERx050106; Sun, 1 Nov 2009 15:00:14 GMT (envelope-from gnats) Resent-Date: Sun, 1 Nov 2009 15:00:14 GMT Resent-Message-Id: <200911011500.nA1F0ERx050106@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Jilles Tjoelker Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58D34106566B for ; Sun, 1 Nov 2009 14:58:30 +0000 (UTC) (envelope-from jilles@stack.nl) Received: from mx1.stack.nl (relay02.stack.nl [IPv6:2001:610:1108:5010::104]) by mx1.freebsd.org (Postfix) with ESMTP id 2028F8FC19 for ; Sun, 1 Nov 2009 14:58:30 +0000 (UTC) Received: from snail.stack.nl (snail.stack.nl [IPv6:2001:610:1108:5010::131]) by mx1.stack.nl (Postfix) with ESMTP id 078A635A839 for ; Sun, 1 Nov 2009 15:58:29 +0100 (CET) Received: by snail.stack.nl (Postfix, from userid 1677) id E7F60228BE; Sun, 1 Nov 2009 15:58:28 +0100 (CET) Message-Id: <20091101145828.E7F60228BE@snail.stack.nl> Date: Sun, 1 Nov 2009 15:58:28 +0100 (CET) From: Jilles Tjoelker To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/140167: devel/e4graph: syntax error in configure script X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Jilles Tjoelker List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Nov 2009 15:00:14 -0000 >Number: 140167 >Category: ports >Synopsis: devel/e4graph: syntax error in configure script >Confidential: no >Severity: serious >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Sun Nov 01 15:00:13 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Jilles Tjoelker >Release: FreeBSD 9.0-CURRENT i386 >Organization: MCGV Stack >Environment: /bin/sh r197691 or newer >Description: Due to a change in /bin/sh a mismatched single quote inside backticks (`...`) now causes configure to fail. >How-To-Repeat: Try to build the port with a /bin/sh with r197691 change in it. >Fix: Apply this patch to the port Makefile. Alternatively, an upgrade may help. The broken code (tcl.m4) seems to originate with tcl 8.3 or older. --- devel-e4graph-syntaxfix.patch begins here --- --- ports/devel/e4graph/Makefile.orig 2009-08-22 02:18:00.000000000 +0200 +++ ports/devel/e4graph/Makefile 2009-11-01 15:32:50.000000000 +0100 @@ -46,7 +46,8 @@ post-patch: @${REINPLACE_CMD} -e 's|=-O$$|="$${CFLAGS}"|g ; \ s|gcc -shared|$$(CC) -shared|g ; \ - s|$${CONFIG_SHELL-/bin/sh} $$ac_aux_dir|$$ac_aux_dir|' \ + s|$${CONFIG_SHELL-/bin/sh} $$ac_aux_dir|$$ac_aux_dir| ; \ + s:`awk '"'"'{print }'"'"' /etc/.relid'"'"'`:`awk '"'"'{print }'"'"' /etc/.relid`:g' \ ${WRKSRC}/configure @${CHMOD} +x ${WRKSRC}/scripts/ltconfig --- devel-e4graph-syntaxfix.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: