Re: Ports: how to install dependencies from binaries?

2020-04-09 Thread Marc Espie
On Tue, Apr 07, 2020 at 11:29:50PM -0400, Daniel Jakots wrote: > On Wed, 8 Apr 2020 13:12:54 +1000, Stuart Longland > wrote: > > > Silly question… how do you install the dependencies of a port from > > binaries automatically? > > https://man.openbsd.org/bsd.port.mk#FETCH_PACKAGES but it doesn't

Re: Ports: how to install dependencies from binaries?

2020-04-08 Thread Stuart Henderson
I wrote: > On 2020-04-08, Stuart Longland wrote: > > > Situation is this: I'm wanting to add OPUS support to Asterisk as I have > > an ATA that supports this CODEC, it'd nice to be able to transcode this > > to other formats. I have a work-in-progress patch to the 'asterisk' > > port for doing

Re: Ports: how to install dependencies from binaries?

2020-04-08 Thread Allan Streib
Daniel Jakots writes: > On Wed, 8 Apr 2020 13:12:54 +1000, Stuart Longland > wrote: > >> Silly question… how do you install the dependencies of a port from >> binaries automatically? > > https://man.openbsd.org/bsd.port.mk#FETCH_PACKAGES but it doesn't work > very reliably, sadly. > I didn't

Re: Ports: how to install dependencies from binaries?

2020-04-08 Thread Stuart Henderson
On 2020-04-08, Stuart Longland wrote: > Hi all, > > Silly question… how do you install the dependencies of a port from > binaries automatically? Apart from the other answers, you can cut down the dep list in many of the larger multi-package ports. FLAVOR="$(make show=FLAVORS:Mno_*)" make [...]

Re: Ports: how to install dependencies from binaries?

2020-04-07 Thread Stuart Longland
On 8/4/20 1:29 pm, Daniel Jakots wrote: > https://man.openbsd.org/bsd.port.mk#FETCH_PACKAGES but it doesn't work > very reliably, sadly. Many thanks Daniel and Raf, must've missed seeing that. I'll give it a shot and see how we go. Even if it works 30% of the time, it should speed things up a

Re: Ports: how to install dependencies from binaries?

2020-04-07 Thread Raf Czlonka
On Wed, Apr 08, 2020 at 04:12:54AM BST, Stuart Longland wrote: > Hi all, > > Silly question… how do you install the dependencies of a port from > binaries automatically? > > Situation is this: I'm wanting to add OPUS support to Asterisk as I have > an ATA that supports this CODEC, it'd nice to

Re: Ports: how to install dependencies from binaries?

2020-04-07 Thread Daniel Jakots
On Wed, 8 Apr 2020 13:12:54 +1000, Stuart Longland wrote: > Silly question… how do you install the dependencies of a port from > binaries automatically? https://man.openbsd.org/bsd.port.mk#FETCH_PACKAGES but it doesn't work very reliably, sadly. Cheers, Daniel

Ports: how to install dependencies from binaries?

2020-04-07 Thread Stuart Longland
Hi all, Silly question… how do you install the dependencies of a port from binaries automatically? Situation is this: I'm wanting to add OPUS support to Asterisk as I have an ATA that supports this CODEC, it'd nice to be able to transcode this to other formats. I have a work-in-progress patch