I'm trying to build a port which depends on apache-ant
.
I thought I could run make build-depends-list
to see all dependencies required by this port:
# make build-depends-list
/usr/ports/devel/apache-ant
/usr/ports/java/jdk16
/usr/ports/math/gmp
But after installing everything, the port had a dependency list which was a mile long:
apache-ant-1.8.1 desktop-file-utils-0.15_2 gamin-0.1.10_4 gettext-0.18.1.1 gio-fam-backend-2.26.1 glib-2.26.1_1 gmp-5.0.1 inputproto-2.0 javavmwrapper-2.3.5 kbproto-1.0.4 libX11-1.3.3_1,1 libXau-1.0.5 libXdmcp-1.0.3 libXext-1.1.1,1 libXi-1.3,1 libXtst-1.1.0 libiconv-1.13.1_1 libpthread-stubs-0.3_3 libxcb-1.7 pcre-8.12 perl-5.10.1_3 pkg-config-0.25_1 python26-2.6.6 recordproto-1.14 unzip-6.0 xextproto-7.1.1 xproto
This dependency list is a rude surprise, and I would like to know about it before I commit to installing a port.
How can I see all dependencies, and all subdependencies for a port?
You are very close. Try this instead:
That will recurse through all dependencies and print them for you. To test different build scenarios and how they affect the dependency list, try things like:
Here is the full set of dependency print targets:
Cheers, Greg
To list ports on which depends:
To list ports which require :
-- Answer from this website:http://daemon-notes.com/tips (thanks to Ross)
You would have to recursively get all subdependencies as well. There probably are some tools for that in the ports-mgmt category...
I use portmaster(8) for port management. It always gathers (sub)dependencies before compiling and installing a port:
Most dependency lists are hard to parse at a glance. I prefer using this wrapper script by [email protected], because it displays a nice, nested list with both upward and downward dependencies:
Running it without arguments can produce a very long list, because it shows all dependency chains for all files, so I usually only recommend running it for a particular port.
few years after ...
my solution for get packages installed (for backup purpose)
I have solution for FreeBSD 12+ (bash)
but U can change pkg command from create to install and change run to build