Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 05 Jan 2012 18:56:04 -0500
From:      Jason Hall <cakersq@gmail.com>
To:        maho@FreeBSD.org
Cc:        ports@FreeBSD.org
Subject:   FreeBSD Port: f2c-20060810_3 - Missing Extract depend unzip
Message-ID:  <4F063894.7020500@gmail.com>

next in thread | raw e-mail | index | archive | help
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




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4F063894.7020500>