ports/181391: lang/itcl

Jeff Lawson jeff.lawson at flightaware.com
Mon Aug 19 06:30:01 UTC 2013


>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 at 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:


More information about the freebsd-ports-bugs mailing list