From owner-freebsd-ports-bugs@FreeBSD.ORG Thu Aug 19 18:00:51 2004 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2DEA16A50B for ; Thu, 19 Aug 2004 18:00:51 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C9D043D55 for ; Thu, 19 Aug 2004 18:00:51 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) i7JI0pet036135 for ; Thu, 19 Aug 2004 18:00:51 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7JI0pGj036134; Thu, 19 Aug 2004 18:00:51 GMT (envelope-from gnats) Resent-Date: Thu, 19 Aug 2004 18:00:51 GMT Resent-Message-Id: <200408191800.i7JI0pGj036134@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, Matthias Andree Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70DDD16A4CE for ; Thu, 19 Aug 2004 17:58:40 +0000 (GMT) Received: from unimail.uni-dortmund.de (mx1.HRZ.Uni-Dortmund.DE [129.217.128.51]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAFAE43D67 for ; Thu, 19 Aug 2004 17:58:39 +0000 (GMT) (envelope-from matthias.andree@web.de) Received: from m2a2.myip.org (v8ejy9atqym4c5kz@p5487C434.dip.t-dialin.net [84.135.196.52]) (authenticated bits=0)i7JHwRlq026825; Thu, 19 Aug 2004 19:58:32 +0200 (CEST) Received: by merlin.emma.line.org (Postfix, from userid 1001) id 8B8A21B252; Thu, 19 Aug 2004 18:42:19 +0200 (CEST) Message-Id: <20040819164219.8B8A21B252@merlin.emma.line.org> Date: Thu, 19 Aug 2004 18:42:19 +0200 (CEST) From: Matthias Andree To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: ports/70670: [MAINTAINER] ftp/ftpcopy: fix locale-dependent build failure X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Aug 2004 18:00:51 -0000 >Number: 70670 >Category: ports >Synopsis: [MAINTAINER] ftp/ftpcopy: fix locale-dependent build failure >Confidential: no >Severity: serious >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: maintainer-update >Submitter-Id: current-users >Arrival-Date: Thu Aug 19 18:00:50 GMT 2004 >Closed-Date: >Last-Modified: >Originator: Matthias Andree >Release: FreeBSD 5.2-CURRENT i386 >Organization: >Environment: System: FreeBSD merlin.emma.line.org 5.2-CURRENT FreeBSD 5.2-CURRENT #3: Tue Jul 27 03:49:21 CEST 2004 >Description: Fix a locale-dependent build failure. ftpcopy doesn't compile in the LC_COLLATE="de_DE.ISO8859-1" for instance because tr '[a-z]]' '[A-Z]' doesn't work as expected on FreeBSD and maps "int" to "INU". Bcc: Uwe Ohse, upstream maintainer Added file(s): - files/patch-aa Generated with FreeBSD Port Tools 0.63 >How-To-Repeat: >Fix: --- ftpcopy-0.6.7.patch begins here --- diff -ruN --exclude=CVS /usr/ports/ftp/ftpcopy/files/patch-aa /root/ports/ftp/ftpcopy/files/patch-aa --- /usr/ports/ftp/ftpcopy/files/patch-aa Thu Jan 1 01:00:00 1970 +++ /root/ports/ftp/ftpcopy/files/patch-aa Thu Aug 19 18:34:41 2004 @@ -0,0 +1,11 @@ +--- src/typesize.sh.orig Tue Jul 27 13:24:17 2004 ++++ src/typesize.sh Thu Aug 19 18:30:43 2004 +@@ -21,7 +21,7 @@ + : + else + x=$? +- p=`echo $i | sed 's/ /_/g' | tr "[a-z]]" "[A-Z]"` ++ p=`echo $i | sed 's/ /_/g' | env LC_COLLATE=C tr "[:lower:]" "[:upper:]"` + echo "#define SIZEOF_$p $x /* systype-info */" + fi + fi --- ftpcopy-0.6.7.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: