Listando todos os arquivos instalados por algum pacote MacPorts

32

Como listar todos os arquivos que foram instalados por algum pacote MacPorts?

Por exemplo, no Funtoo (ou no Gentoo), posso obter o mesmo com um comando:

equery b [package name]

Alex Bolotov
fonte

Respostas:

50
port contents installed_port_name
chiggsy
fonte
8
e para qualquer pessoa interessada, a pesquisa inversa (que porto, desde um arquivo) éport provides filename
drfrogsplat
0

No meu caso, os CFLAGS LDFLAGS eram necessários.

# ensure libyaml is installed
port install libyaml +universal

# if you like you can check the location of the installied files (especially the .h file)
# port contents libyaml

# now configure with these options
CFLAGS="-I/opt/local/include/ "  LDFLAGS="-L/opt/local/lib/" ./configure
make
sudo make install
reto
fonte