for me, I solved this problem with this script, use: sh script
libicui18n.s0.38
it scans every lib in /usr/local  for the string libicui18n.so.38
and than finds the package that has that lib,
finally it builds the ports that have that string.

=======================================
t=/tmp/$$
find /usr/local -name "*.so" | \
while read x
do
        if grep $1 $x
        then
                pkg_info -qW $x >> $t
                echo found in $x
        fi
done
if [ -s $t ]
then
        portmaster $(sort -u $t)
fi
rm -f $t
========================================

_______________________________________________
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"

Reply via email to