Getting a portage tarball
The first step to do is to get the tarball of a current portage version. In the
following text we will use portage-2.1.1 as an example (as this is the
current stable version at the time of this writing), please replace that with a
version present in the tree if possible. If your currently installed version of
python reported by python -V is less than 2.4 then you must choose a
version of portage that is compatible with it. If you have at least python 2.3
then use portage-2.1.1.tar.bz2. If you have python 2.2 then use
portage-2.0.51.22.tar.bz2.
Depending on the exact reason portage doesn't work for you anymore it may still
be possible to use it to fetch the tarball for you, so as a first step please
try to run emerge --fetchonly sys-apps/portage, only if that doesn't
work you have to manually fetch the tarball with:
# wget -P /usr/portage/distfiles http://distfiles.gentoo.org/distfiles/portage-2.1.1.tar.bz2
After that you should have the tarball available as
/usr/portage/distfiles/portage-2.1.1.tar.bz2.
Replacing the installed version
The next step is to unpack the tarball to a temporary location, using
/root/portage-recover as example the commands to do that are:
# cd /root
# mkdir portage-recover
# cd portage-recover
# tar xfj /usr/portage/distfiles/portage-2.1.1.tar.bz2
After you have done this it's just a matter of replacing the python and bash
files of your existing installation with the ones from the tarball (in most
cases anyway). To do so please run:
# cd /root/portage-recover/portage-2.1.1
# cp -R pym bin /usr/lib/portage/
If you accidently unmerged portage before or lost
/etc/make.globals for other reasons you should also copy
cnf/make.globals back into /etc, otherwise
portage might behave in strange ways.
If the previous version of portage was less than 2.1 then you should now run
emerge --metadata before continuing to the next step. This is necessary
in order to convert the ebuild metadata to the new format that is used by
portage 2.1 and above. It is okay to run this command even if you are not sure
what the previous version of portage was.
Now you should have a working portage install again. To ensure a consistent
system state however you should now run emerge sys-apps/portage again
immediately.
If you get a command not found error message when you try to run
emerge you have to recreate the symlink:
# ln -s ../lib/portage/bin/emerge /usr/bin/emerge
If these steps didn't work for you your problem is likely not a broken portage
installation but something else beyond the scope of this document. Please
recheck the list of common
problems and also look in bugzilla if the problem is reported there.