Phone code list does not reflect recent dialling code changes. Fix: Very simple patch follows (pipe 'uk.phone' through script, redirect stdout to wherever is appropriate): #!/usr/bin/perl while(<>) { s/^(\d+)-(\d+)/$1 $2/; s/^0171(\d*) /020 7$1/; s/^0181(\d*) /020 8$1/; s/^01203(\d*) /024 76$1/; s/^01222(\d*) /029 20$1/; s/^01232(\d*) /028 90$1/; s/^01365(\d*) /028 66$1/; s/^01703(\d*) /023 80$1/; s/^01705(\d*) /023 92$1/; print; } How-To-Repeat: Install port, look at phone codes, compare against back of more recent phone bill. ;)
Responsible Changed From-To: freebsd-ports->brian brian is the maintainer of this port
State Changed From-To: open->closed Committed - thanks.