From owner-freebsd-ports@FreeBSD.ORG Fri Jan 6 01:38:24 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 803A2106564A for ; Fri, 6 Jan 2012 01:38:24 +0000 (UTC) (envelope-from maho.nakata@gmail.com) Received: from mail-iy0-f182.google.com (mail-iy0-f182.google.com [209.85.210.182]) by mx1.freebsd.org (Postfix) with ESMTP id 492E28FC1D for ; Fri, 6 Jan 2012 01:38:24 +0000 (UTC) Received: by iadj38 with SMTP id j38so2493993iad.13 for ; Thu, 05 Jan 2012 17:38:23 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=sender:date:message-id:to:cc:subject:from:in-reply-to:references :x-mailer:mime-version:content-type:content-transfer-encoding; bh=NVow37oJ55OQ5cesVOJZHCMGRY9egeRvJIaR8m1KWEc=; b=qRZg5c0zn2+THIeBVY47I4mVWNg86AduJTwMRyMLcvAAGF5iz4Jx7gwwmMd7JtsIvF bpJ3gewjcj/wjoWqIbLu5hb5DiimN9EfE3TXWRqojRmdLHndnsGGgvN4GhdEvKUDIPJc +nlezJx/Qnh5fKKwOn16X1/Uhj9muWNPTzxbE= Received: by 10.42.72.135 with SMTP id o7mr4180706icj.45.1325812188632; Thu, 05 Jan 2012 17:09:48 -0800 (PST) Received: from localhost (rikad42.riken.jp. [134.160.214.42]) by mx.google.com with ESMTPS id i2sm95318686igq.6.2012.01.05.17.09.46 (version=SSLv3 cipher=OTHER); Thu, 05 Jan 2012 17:09:47 -0800 (PST) Sender: Maho NAKATA Date: Fri, 06 Jan 2012 10:09:45 +0900 (JST) Message-Id: <20120106.100945.2287292023885110707.chat95@mac.com> To: cakersq@gmail.com From: Maho NAKATA In-Reply-To: <4F063894.7020500@gmail.com> References: <4F063894.7020500@gmail.com> X-Mailer: Mew version 6.3 on Emacs 23.3 / Mule 6.0 (HANACHIRUSATO) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: Re: 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 01:38:24 -0000 Hi Jason Ok, hopefully I'll fix it in this weekend. or - if clean patch is available and you're a committer, please commit. thanks Nakata Maho From: Jason Hall Subject: FreeBSD Port: f2c-20060810_3 - Missing Extract depend unzip Date: Thu, 05 Jan 2012 18:56:04 -0500 > 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 >