Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 25 Jan 2016 08:56:54 +0000
From:      Alexey Dokuchaev <danfe@FreeBSD.org>
To:        John Marino <marino@FreeBSD.org>
Cc:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   Re: svn commit: r406930 - head/archivers/file-roller
Message-ID:  <20160125085654.GB95732@FreeBSD.org>
In-Reply-To: <201601221319.u0MDJbbm075196@repo.freebsd.org>
References:  <201601221319.u0MDJbbm075196@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
On Fri, Jan 22, 2016 at 01:19:37PM +0000, John Marino wrote:
> New Revision: 406930
> URL: https://svnweb.freebsd.org/changeset/ports/406930
> 
> Log:
>   archivers/file_roller: Fix ambiguous RUN_DEPENDS
>   
>   file_roller requires the ports version of unzip (I'm assuming based on
>   makefile's specifications).  However, since the full path to unzip
>   was not specified, the base unzip satifies the requirement which results
>   in the archivers/unzip package not being registered as a run dependency.
>  
> [...]
>  RUN_DEPENDS=	gtar:${PORTSDIR}/archivers/gtar \
> -    		unzip:${PORTSDIR}/archivers/unzip
> +    		zipinfo:${PORTSDIR}/archivers/unzip
> +
> +# Port unzip is desired, but specify the uniquely named zipinfo to ensure
> +# archivers/unzip is pulled in.  Using "unzip" is satisfied by base unzip

Another option would be to specify full path of unzip(1), i.e.
${LOCALBASE}/bin/unzip:...  This would also reflect the reality, since if
base unzip(1) is not sufficient beyond trivial usecases (which is probably
the reason why `archivers/file-roller' wants "real" unzip -- e.g. the one
that support encrypted archives and stuff).

Also, "port unzip" reads a bit weird in that comment (cf. "unzip from [the]
ports"), but IMHO specifying full path is 1) more correct, and 2) would not
require such elaborate comment.

You've also introduced trailing whitespace there (in addition to the one in
pkg-descr, existing prior to this commit).

./danfe



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