what is going to happend when installing a port

2009-05-18 Thread Martin Alejandro Paredes Sanchez

Hi:

I would like to know what other ports are going to be installed when I install 
a port

When I installed krb5 I notice it build and install a lot of ports.

maps 
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: what is going to happend when installing a port

2009-05-18 Thread Tim Judd
On Mon, May 18, 2009 at 11:10 PM, Martin Alejandro Paredes Sanchez 
mapsw...@prodigy.net.mx wrote:


 Hi:

 I would like to know what other ports are going to be installed when I
 install
 a port

 When I installed krb5 I notice it build and install a lot of ports.

 maps


make all-depends-list
  will show you everything that will be installed to either build or support
during runtime the ports that will come with the port you're in now.

make missing
  will show you what is lacking on your system to make it compile and run.

make build-depends-list
  Will list the ports required to build said port

make run-depends-list
  will show the ports required to run said port


man ports

Please read the documentation provided, now that we've given you the
document to start reading.  Enjoy your week.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org


Re: what is going to happend when installing a port

2009-05-18 Thread Manolis Kiagias
Martin Alejandro Paredes Sanchez wrote:
 Hi:

 I would like to know what other ports are going to be installed when I 
 install 
 a port

 When I installed krb5 I notice it build and install a lot of ports.

 maps 
   

There are a few things you can try from inside the port directory to see
what else will get installed:

make missing

will show you the ports that are needed by the port you are about to
build that are not currently installed

You may also want to look these up using 'man ports':

make all-depends-list
make run-depends-list
make pretty-print-run-depends-list
make pretty-print-build-depends-list


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to freebsd-questions-unsubscr...@freebsd.org