What are the best practices for installing the GD-Lib with FreeBSD-Ports for PHP development on a server?
To install the GD-Lib with FreeBSD-Ports for PHP development on a server, it is recommended to use the `make config` command to enable the GD option in the PHP port. This will ensure that the GD-Lib is installed and enabled for PHP on the server. ``` cd /usr/ports/lang/php make config ``` Choose the GD option from the menu that appears, then proceed with the installation by running: ``` make install clean ```