I was wondering if I need to uninstall my drivers and KDE before hand as to not confuse things if I build a new kernel and update my ports tree.
Updating the ports tree is a very trivial task which doesn't affect anything other than the ports tree. It can become an issue if you're building some ports and then decide to update the tree at the same time, but otherwise you should be just fine.
Don't forget: installing a port is nothing else but building the software, packaging it and then installing that package.
Updating a kernel can be a little more tricky. In any case there's no need to uninstall drivers (I assume you installed those through the ports collection also?) but you may need to update them. And a good trick for that would be adding something like this to your
/etc/make.conf:
Code:
PORTS_MODULES=x11/nvidia-driver
This tells the build process that as soon as you rebuild the kernel it needs to re-build and re-install
x11/nvidia-driver as well, makes my life a lot easier because I don't have to bother with this manually anymore.
As always: with minor updates (
11.1 to
11.2 for example) this wouldn't be too much of an issue, but with major upgrades (
10.4 to
11.2 for example) it definitely can be.
Hope this can help!