Hello,
I actually build some custom ports on FreeBSD. But I have a problem with the option RUN_DEPENDS. As an example: my application foo needs bar to run, so I have in the Makefile:
I cannot build my package if bar is not installed, even if technically, there is no need of bar to build foo. What is the reason for that and is there a solution? Note that my custom ports are in a private directory and I don't want to mix them with officials ports.
Regards
I actually build some custom ports on FreeBSD. But I have a problem with the option RUN_DEPENDS. As an example: my application foo needs bar to run, so I have in the Makefile:
Code:
RUN_DEPENDS= bar:misc/bar
Regards