Re: Is there a way to build only the port from source, and install dependencies from packages with the make command?

2019-05-03 Thread Samy Mahmoudi
Hi Yuri, With the following in my .zshrc, I just run "ibd" before making a particular port: function ibd () { # Can also make all-depends-list pkg install --yes $(make build-depends-list run-depends-list | sort -u | sed 's/\/usr\/ports\///') } Modify at will. Le mer. 1 mai 2019 à 17:49,

Re: Is there a way to build only the port from source, and install dependencies from packages with the make command?

2019-05-01 Thread Dave Cottlehuber
On Tue, 30 Apr 2019, at 21:17, Adam wrote: > On Tue, Apr 30, 2019 at 12:36 PM Yuri wrote: > > > Sometimes instructions to build some port from source are needed. "cd > > /usr/ports/{caregory}/{port-name} && make" rebuilds everything from > > source, including dependencies. > > > > Is there an

Re: Is there a way to build only the port from source, and install dependencies from packages with the make command?

2019-04-30 Thread Adam
On Tue, Apr 30, 2019 at 12:36 PM Yuri wrote: > Sometimes instructions to build some port from source are needed. "cd > /usr/ports/{caregory}/{port-name} && make" rebuilds everything from > source, including dependencies. > > Is there an easy way to make it install missing dependencies with pkg,

Re: Is there a way to build only the port from source, and install dependencies from packages with the make command?

2019-04-30 Thread Ernie Luzar
David Wolfskill wrote: On Tue, Apr 30, 2019 at 10:35:21AM -0700, Yuri wrote: Sometimes instructions to build some port from source are needed. "cd /usr/ports/{caregory}/{port-name} && make" rebuilds everything from source, including dependencies. Is there an easy way to make it install

Re: Is there a way to build only the port from source, and install dependencies from packages with the make command?

2019-04-30 Thread David Wolfskill
On Tue, Apr 30, 2019 at 10:35:21AM -0700, Yuri wrote: > Sometimes instructions to build some port from source are needed. "cd > /usr/ports/{caregory}/{port-name} && make" rebuilds everything from > source, including dependencies. > > Is there an easy way to make it install missing dependencies

Is there a way to build only the port from source, and install dependencies from packages with the make command?

2019-04-30 Thread Yuri
Sometimes instructions to build some port from source are needed. "cd /usr/ports/{caregory}/{port-name} && make" rebuilds everything from source, including dependencies. Is there an easy way to make it install missing dependencies with pkg, without listing them? I couldn't find such feature.