From owner-freebsd-questions@FreeBSD.ORG Sat Feb 5 01:04:58 2011 Return-Path: Delivered-To: freebsd-questions@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 555E81065693 for ; Sat, 5 Feb 2011 01:04:58 +0000 (UTC) (envelope-from bf1783@googlemail.com) Received: from mail-gy0-f182.google.com (mail-gy0-f182.google.com [209.85.160.182]) by mx1.freebsd.org (Postfix) with ESMTP id 141298FC12 for ; Sat, 5 Feb 2011 01:04:57 +0000 (UTC) Received: by gyf3 with SMTP id 3so1195083gyf.13 for ; Fri, 04 Feb 2011 17:04:57 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:reply-to:date:message-id:subject :from:to:cc:content-type; bh=XwI/nl5Lx/YGRC3vgJiDJz9Bxo1qs8jcF16cv99neFM=; b=qyW1L32+UvH0Fn+NN1ks1Y8W/hE+vcPf1TcdBSHtuwJSHT5xgIooY0I3U1+XxhzRHW cz8213Hi48IcBxSYUWMTNrN1c/24xH3+9tiNOQTsepvi5YraduQ+wd9NIhMtx8GmCgOY /CijDSFBy+lZLvh0bTebi++GYW8tz7CFDwA+E= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:date:message-id:subject:from:to:cc :content-type; b=ZZbjEHdKdj8iwbu0gnULA6rokdFghQWXw1wnsWAegtlausJtXppGVCy7tiruWRyNFc jwXieG4NvDIu8Ohw8/AoX0u8jdcVBceEFSzsSh9vN6QFoVcm4hI34Axh5XSQBRUz+q9/ XShaY0eQ0cFc4XF8p4hJDqzRPHTnQs80f5DWs= MIME-Version: 1.0 Received: by 10.236.103.38 with SMTP id e26mr3565399yhg.88.1296867067119; Fri, 04 Feb 2011 16:51:07 -0800 (PST) Received: by 10.236.105.197 with HTTP; Fri, 4 Feb 2011 16:51:07 -0800 (PST) Date: Fri, 4 Feb 2011 19:51:07 -0500 Message-ID: From: "b. f." To: Rem P Roberti Content-Type: text/plain; charset=ISO-8859-1 Cc: freebsd-questions@FreeBSD.org Subject: Re: Why can't I install icu? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: bf1783@gmail.com List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 05 Feb 2011 01:04:58 -0000 > Icu is a necessary dependency for Gimp, but I can't get it to install. > I checked UPDATING and it states that icu4 is now deprecated, and one > should install /devel/icu. But when I try to do that the file that is > downloaded is icu4c, and the install goes along until it chokes with > this error message: > > SUMMARY: > ******* [Total error count: 1] > Errors in > [/tsformat/ccaltst/TestCalendar] > Elapsed Time: 00:00:48.205 > *** Error code 1 > Stop in /usr/ports/devel/icu. > > Very frustrating. I need to get Gimp onto my computer, and I can > install it as a package, but if I try to upgrade the program the upgrade > always chokes on icu at the same place, and with the same error message. > > Anyone? Try again, with a clean build, after having made sure that you've removed all remnants of the earlier icu versions; and make a transcript of the build: pkg_delete -fv "icu2-*" "icu-*" script /tmp/icu.log make -C /usr/ports/devel/icu deinstall clean install exit If the problem still occurs, then you should file a problem report: http://www.freebsd.org/doc/en_US.ISO8859-1/articles/problem-reports/article.html Make sure you attach the config.log from the failed build (look for it in the work directory of the port before cleaning up), as well as the transcript (/tmp/icu.log) of the failed build. If there aren't any pre-built binary packages of the latest versions of icu and gimp available, and you don't want to wait for them to be produced, or for the problem to be fixed; and (as apparently is the case) the build is working, but only the post-build tests are failing; then first disable the tests and then try to build and install icu. You can do that by editing the port Makefile and commenting-out the following line: post-build test regression-test: iotest cintltst intltest (Of course, this change will probably be wiped out each time you update your ports tree.) b.