On Sun, 7 May 2017 12:58:18 +1000, Douglas Ray <[email protected]> wrote:
> How do you generate a list of all the install targets of > all the ports? > > Is there a "make show-"* for this? Is there a db which > already tracks this? I'm not entirely sure to understand what you're asking but... > I want a procedure to discover, for instance, that > cdda2wav is an executable supplied by the cdrtools > port. If you want to know from which package a binary comes from you can do something like `pkg_info -E $(which cdda2wav)`. If you want to know what are the binaries installed by a port, you can run `grep bin pkg/PLIST`. I hope that helps. > If there isn't a global mechanism for the whole > ports tree, I'd be happy with a way to expand > all the DO_INSTALL targets (without installing). > > thanks for any guidance >
