Some months ago I wrote a script to ease configuring a fresh FreeBSD install and it contained among others the following lines:
From what I know now about ports and packages, this is a superfluous solution, isn't it? I am inclined to have instead:Code:# installing gnome
pkg_add -r gnome2
cd /usr/ports/x11/gnome2
make clean
make install clean
May I assume that running make clean and make install clean in sequence is generally a good idea to save on disk space?Code:# installing gnome
cd /usr/ports/x11/gnome2
make clean
make install clean
