Obviously, we do not [yet] have anything pre-built for 10.4, so that is not found. I think downloading the source fails due to GitHub requiring now modern curl, while you have built PPCPorts without it. MacPorts distfiles do not have it, because I have a newer version of vim in its portfile.
There can be a few solutions:
1. Manually fetch the source for needed version of vim from its upstream and place it inside /opt/local/var/macports/distfiles/vim.
2. Modify vim portfile to use the same version which MacPorts has, so that the tarball can be downloaded from MacPorts distfiles.
3. Build PPCPorts against external curl. Or against its own curl (not recommended, but doable).
Option #3 is the only long-term solution, otherwise you will need to go through hacking every time MacPorts do not have a source tarball of needed version.
You can build external curl like this. Configure and install ports in /opt/bootstrap (for example):
Code:
export PATH=/usr/bin:/usr/sbin:/bin:/sbin
cd macports-base
./configure --prefix=/opt/bootstrap --with-applications-dir=/opt/bootstrap/Applications --without-startupitems
make
sudo make install
Then:
Code:
export PATH=/opt/bootstrap/bin:/opt/bootstrap/sbin:/usr/bin:/usr/sbin:/bin:/sbin
cd /opt/bootstrap
sudo ./port -v sync
sudo ./port -v -N install curl -brotli
(Without brotli just to save time, so that cmake-bootstrap is not needed.)
Once that is installed, rebuild the main base as:
Code:
export PATH=/usr/bin:/usr/sbin:/bin:/sbin
cd macports-base
./configure --with-curlprefix=/opt/bootstrap
make
sudo make install
See also:
https://github.com/macos-powerpc/ma...d7cf0dd20fc3ca5ab496564/configure#L1512-L1552