Date: Mon, 19 Aug 2013 06:20:23 GMT From: Jeff Lawson <jeff.lawson@flightaware.com> To: FreeBSD-gnats-submit@freebsd.org Subject: ports/181391: lang/itcl Message-ID: <201308190620.r7J6KNAv089656@gappi.hou.flightaware.com> Resent-Message-ID: <201308190630.r7J6U03R035836@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
>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 <bsd.port.pre.mk> 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:
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201308190620.r7J6KNAv089656>