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

_______________________________________________
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Reply via email to