A french guy is providing up to date bases :
http://cache.univ-tlse1.fr/documentations/cache/squidguard_en.htmlA little script to do, and the bases are recreated every night.
Attention : script done with a hammer, i'm not a guru, juste tried to make something working.. Feel free to make it better and publish it

first, create /root/update
ftpbatch : (to get the files by ftp)
#!/bin/sh
cd /root/update
ftp -v ftp.univ-tlse1.fr << EOT
bin
cd /pub/reseau/cache/squidguard_contrib
get publicite.tar.gz
get adult.tar.gz
bye
traitement : (to untar and copy text files, then update just porn database, add is not automatic for me, i don't need it)
#!/bin/sh
cd /root/update
tar xzf adult.tar.gz
cp /root/update/adult/domains /usr/local/squidGuard/db/porn
cp /root/update/adult/urls /usr/local/squidGuard/db/porn
rm -v /root/update/adult/domains
rm -v /root/update/adult/urls
rm -v publicite.tar.gz
rm -v adult.tar.gz
squidGuard -C all ###### <--- or just "porn" if U want
kill -HUP cat /var/run/squid.pid
echo "C'est fini"