From owner-freebsd-ports-bugs@FreeBSD.ORG Sat Oct 31 14:50:01 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 29CB71065670 for ; Sat, 31 Oct 2009 14:50:01 +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 E108E8FC0C for ; Sat, 31 Oct 2009 14:50:00 +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 n9VEo0uF065651 for ; Sat, 31 Oct 2009 14:50:00 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n9VEo0hF065650; Sat, 31 Oct 2009 14:50:00 GMT (envelope-from gnats) Resent-Date: Sat, 31 Oct 2009 14:50:00 GMT Resent-Message-Id: <200910311450.n9VEo0hF065650@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 E745F1065670 for ; Sat, 31 Oct 2009 14:41:49 +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 B08F38FC15 for ; Sat, 31 Oct 2009 14:41:49 +0000 (UTC) Received: from snail.stack.nl (snail.stack.nl [IPv6:2001:610:1108:5010::131]) by mx1.stack.nl (Postfix) with ESMTP id 2037435A835 for ; Sat, 31 Oct 2009 15:41:49 +0100 (CET) Received: by snail.stack.nl (Postfix, from userid 1677) id 0BD34228BE; Sat, 31 Oct 2009 15:41:49 +0100 (CET) Message-Id: <20091031144149.0BD34228BE@snail.stack.nl> Date: Sat, 31 Oct 2009 15:41:49 +0100 (CET) From: Jilles Tjoelker To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/140138: archivers/libcomprex: 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: Sat, 31 Oct 2009 14:50:01 -0000 >Number: 140138 >Category: ports >Synopsis: archivers/libcomprex: 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: Sat Oct 31 14:50:00 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 using /bin/sh with r197691 change in it. >Fix: Replace files/patch-configure with the attached patch. Upstream seems dead (last release and commit over 5 years ago). Since nothing depends on this library, the port could perhaps be removed. --- archivers-libcomprex-syntaxfix.patch begins here --- --- work/libcomprex-0.3.3/configure.orig 2009-10-31 02:18:11.000000000 +0100 +++ work/libcomprex-0.3.3/configure 2009-10-31 02:20:08.000000000 +0100 @@ -9263,7 +9263,7 @@ extern_scheme_init="$extern_scheme_init CxSchemeOps *init_curl_scheme_module(void);" load_scheme_mod="$load_scheme_mod init_curl_scheme_module();" else - STATIC_SCHEME_MODS=`echo $STATIC_SCHEME_MODS | sed s/curl//'` + STATIC_SCHEME_MODS=`echo $STATIC_SCHEME_MODS | sed 's/curl//'` fi fi @@ -13655,10 +13655,11 @@ # This can be used to rebuild libtool when needed -LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" +LIBTOOL_DEPS=" /usr/local/share/libtool/config/ltmain.sh" +$ac_aux_dir/ltconfig $LIBTOOL_DEPS # Always use our own libtool. -LIBTOOL='$(SHELL) $(top_builddir)/libtool' +LIBTOOL='$(SHELL) /usr/local/bin/libtool' # Prevent multiple expansion --- archivers-libcomprex-syntaxfix.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: