I found on some sites, no matter what I did the calendar was crawled by some search engines. I solved this problem by replacing the calendar.php in the standard geeklog install with this:
<?php
// modified calendar.php to disable calender completely
require_once('lib-common.php');
$url = $_CONF['site_url'];
header ('Location: ' . $url);
?>