I have a freebsd system on which I usually manage ports with portmaster. As php55 was EOL'ed in July 2016, I upgraded php55 to php56 with portmaster -o /usr/ports/lang/php56 php5-5.5.24
. Worked like a charm.
When updating ports later on (portmaster -a
), I found that there are PHP helpers like archivers/php55-bz2
still around. Newer versions (e.g. archivers/php56-bz2
) cannot be installed because they collide with the old ones and the old ones cannot be removed because the corresponding directories are no longer there.
How do I force-remove the old php55 helpers so I can install the new php56 versions?