On 03/02/2017 06:28, Karli Sjöberg wrote: This error:
> [release103amd64-default-job-01] Extracting rubygem-rack-protection2-
> 2.0.0.beta2: .......... done
> ===> rubygem-sinatra2-2.0.0.beta2 depends on executable: rubygem-
> rack-protection2 - not found
> *** Error code 1
derives from this RUN_DEPENDS line:
> RUN_DEPENDS= rubygem-rack>=2.0:www/rubygem-rack \
> rubygem-rack-protection2:www/rubygem-rack-protection2 \
^^^^^^^^^^^^^^^^^^^^^^^^^^^
The left hand side of a *_DEPENDS line is not always a package name.
Without any comparison to a version number or any fully qualified path,
it means that the ports should look for an executable
'rubygem-rack-protection2' on your path. That doesn't exist, obviously.
To force the comparison to use the package name try:
RUN_DEPENDS= rubygem-rack>=2.0:www/rubygem-rack \
rubygem-rack-protection2>0:www/rubygem-rack-protection2 ...
Cheers,
Matthew
signature.asc
Description: OpenPGP digital signature
