Mendaftar semua file yang diinstal oleh beberapa paket MacPorts

32

Bagaimana cara membuat daftar semua file yang diinstal oleh beberapa paket MacPorts?

Sebagai contoh di Funtoo (atau di Gentoo) saya dapat melakukan hal yang sama dengan perintah:

equery b [package name]

Alex Bolotov
sumber

Jawaban:

50
port contents installed_port_name
chiggs
sumber
8
dan bagi siapa pun yang tertarik, pencarian sebaliknya (yang disediakan oleh port file) adalahport provides filename
drfrogsplat
0

Dalam kasus saya LDFLAGS CFLAGS diperlukan.

# 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
sumber