From owner-freebsd-ports@FreeBSD.ORG Fri Jan 6 00:22:03 2012 Return-Path: Delivered-To: ports@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E9E0D106564A; Fri, 6 Jan 2012 00:22:01 +0000 (UTC) (envelope-from cakersq@gmail.com) Received: from mail-qy0-f182.google.com (mail-qy0-f182.google.com [209.85.216.182]) by mx1.freebsd.org (Postfix) with ESMTP id 91DCD8FC08; Fri, 6 Jan 2012 00:22:01 +0000 (UTC) Received: by qcse13 with SMTP id e13so846668qcs.13 for ; Thu, 05 Jan 2012 16:22:00 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=message-id:date:from:user-agent:mime-version:to:cc:subject :content-type:content-transfer-encoding; bh=RT/OEL+Z4VbLWP3hO2dNNJ68/W2KBNjS7IxMULB92Z8=; b=lM293xkqnLkyvVigokTNJTP7dwq3snrkXcJhaUHM3XdopEcbaBvtJ+28YQC5LyLVeb mT8z6dnigD4v+u9ihf2p1jfQkTjyMckiKLMLbyl9rvyEFIHG/tlcn+FTZuMgX+6uxDO/ RK+Qo1FDWJNcTqC9C6kgNRXuYd/8Ysvwi1fa0= Received: by 10.229.75.141 with SMTP id y13mr1413658qcj.135.1325807766516; Thu, 05 Jan 2012 15:56:06 -0800 (PST) Received: from [192.168.1.2] (pool-108-48-75-106.washdc.fios.verizon.net. [108.48.75.106]) by mx.google.com with ESMTPS id co15sm22105025qab.1.2012.01.05.15.56.05 (version=SSLv3 cipher=OTHER); Thu, 05 Jan 2012 15:56:05 -0800 (PST) Message-ID: <4F063894.7020500@gmail.com> Date: Thu, 05 Jan 2012 18:56:04 -0500 From: Jason Hall User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:9.0) Gecko/20111222 Thunderbird/9.0.1 MIME-Version: 1.0 To: maho@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: FreeBSD Port: f2c-20060810_3 - Missing Extract depend unzip X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Jan 2012 00:22:04 -0000 Hello, In FreeBSD 9.0, "unzip" was added to the base install. As a result, the PORT fails to extract properly, because it is trying to use /usr/local/bin/unzip, instead of the built in /usr/bin/unzip. The reason is the "EXTRACT_DEPENDS=unzip:${PORTSDIR}/archivers/unzip" line in the Makefile, because "unzip" is found, so archivers/unzip port is not installed, and the ${UNZIP_CMD} attempts to run /usr/local/bin/unzip. I'd recommend either setting EXTRACT_DEPENDS=/usr/local/bin/unzip, or using the USE_ZIP variable, which does that automatically. This will force the install of the additional archivers/unzip port. Alternatively, checking for /usr/bin/unzip and using that instead of ${UNZIP_CMD} will allow that use without installing another port. Thanks, -Jason