From owner-freebsd-ports-bugs@FreeBSD.ORG Mon Aug 19 06:30:00 2013 Return-Path: Delivered-To: freebsd-ports-bugs@smarthost.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTP id D5A7E102 for ; Mon, 19 Aug 2013 06:30:00 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:1900:2254:206c::16:87]) (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 B43D52538 for ; Mon, 19 Aug 2013 06:30:00 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.7/8.14.7) with ESMTP id r7J6U07I035837 for ; Mon, 19 Aug 2013 06:30:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.7/8.14.7/Submit) id r7J6U03R035836; Mon, 19 Aug 2013 06:30:00 GMT (envelope-from gnats) Resent-Date: Mon, 19 Aug 2013 06:30:00 GMT Resent-Message-Id: <201308190630.r7J6U03R035836@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, Jeff Lawson 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 9461980 for ; Mon, 19 Aug 2013 06:20:25 +0000 (UTC) (envelope-from jeff.lawson@gappi.hou.flightaware.com) Received: from gappi.hou.flightaware.com (gappi.hou.flightaware.com [IPv6:2600:c13:1002:4::1:70]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 5E08E24E5 for ; Mon, 19 Aug 2013 06:20:25 +0000 (UTC) Received: from gappi.hou.flightaware.com (localhost [127.0.0.1]) by gappi.hou.flightaware.com (8.14.4/8.14.4) with ESMTP id r7J6KNit089657 for ; Mon, 19 Aug 2013 06:20:23 GMT (envelope-from jeff.lawson@gappi.hou.flightaware.com) Received: (from jeff.lawson@localhost) by gappi.hou.flightaware.com (8.14.4/8.14.4/Submit) id r7J6KNAv089656; Mon, 19 Aug 2013 06:20:23 GMT (envelope-from jeff.lawson) Message-Id: <201308190620.r7J6KNAv089656@gappi.hou.flightaware.com> Date: Mon, 19 Aug 2013 06:20:23 GMT From: Jeff Lawson To: FreeBSD-gnats-submit@freebsd.org X-Send-Pr-Version: 3.113 Subject: ports/181391: lang/itcl X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: Jeff Lawson List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 Aug 2013 06:30:01 -0000 >Number: 181391 >Category: ports >Synopsis: lang/itcl >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Mon Aug 19 06:30:00 UTC 2013 >Closed-Date: >Last-Modified: >Originator: Jeff Lawson >Release: FreeBSD 8.0-STABLE amd64 >Organization: FlightAware >Environment: System: FreeBSD gappi.hou.flightaware.com 8.0-STABLE FreeBSD 8.0-STABLE #0: Thu Feb 18 14:48:28 CST 2010 root@gappi.hou.flightaware.com:/usr/obj/usr/src/sys/GENERIC amd64 >Description: The Makefile for the lang/itcl port was recently updated to use "sed -r" but the -r option is not supported on older versions of FreeBSD. However, -r is simply an alias for -E which does the same thing. >How-To-Repeat: Just attempt to build lang/itcl (itcl-3.4.1,1) on 8.0-STABLE. Build will fail on post-patch step. >Fix: Apply attached patch. --- itcl.diff begins here --- --- lang/itcl/Makefile.orig 2013-08-19 06:07:29.000000000 +0000 +++ lang/itcl/Makefile 2013-08-19 06:07:35.000000000 +0000 @@ -37,7 +37,7 @@ .include post-patch: - ${REINPLACE_CMD} -r '/^includedir/s|/include|/include/itcl${PORTVERSION:R}|' \ + ${REINPLACE_CMD} -E '/^includedir/s|/include|/include/itcl${PORTVERSION:R}|' \ ${WRKSRC}/${CONFIGURE_SCRIPT} post-build test: --- itcl.diff ends here --- >Release-Note: >Audit-Trail: >Unformatted: