--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1.prerm
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1.prerm
@@ -0,0 +1,32 @@
+#!/bin/bash
+
+set -e
+
+. /usr/share/debconf/confmodule
+
+if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi
+${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*" 1>&2 }
+
+db_get virtuoso-opensource-6.1/register-odbc-dsn || true
+if [ "$RET" = "true" ]; then
+	odbcinst -u -s -l -n VOS || true
+fi
+
+# removing from list of owners of this question removes us from it's choices
+db_unregister virtuoso-opensource/primary-server
+
+# now check to see if we were the current default vos-server
+# (if so we need to delete the broken links)
+if db_get virtuoso-opensource/primary-server; then
+  db_metaget virtuoso-opensource/primary-server owners
+  db_subst virtuoso-opensource/primary-server choices $RET
+  db_metaget virtuoso-opensource/primary-server value
+  if [ "virtuoso-opensource-6.1" = "$RET" ] ; then
+		# prompt the user for a new choice
+    db_fset virtuoso-opensource/primary-server seen false
+    db_input medium virtuoso-opensource/primary-server || true
+    db_go || true
+  fi
+fi
+
+#DEBHELPER#
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1.init
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1.init
@@ -0,0 +1,301 @@
+#!/bin/sh
+#
+# Example init.d script with LSB support.
+#
+# Please read this init.d carefully and modify the sections to
+# adjust it to the program you want to run.
+#
+# Copyright (c) 2007 Javier Fernandez-Sanguino <jfs@debian.org>
+#
+# This is free software; you may redistribute it and/or modify
+# it under the terms of the GNU General Public License as
+# published by the Free Software Foundation; either version 2,
+# or (at your option) any later version.
+#
+# This is distributed in the hope that it will be useful, but
+# WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License with
+# the Debian operating system, in /usr/share/common-licenses/GPL;  if
+# not, write to the Free Software Foundation, Inc., 59 Temple Place,
+# Suite 330, Boston, MA 02111-1307 USA
+#
+### BEGIN INIT INFO
+# Provides:          virtuoso-opensource-6.1
+# Required-Start:    $network $local_fs $remote_fs
+# Required-Stop:     $remote_fs
+# Should-Start:      $named
+# Should-Stop:
+# Default-Start:     2 3 4 5
+# Default-Stop:      0 1 6
+# Short-Description: Virtuoso OpenSource Edition
+# Description:       This file should be used to start/stop the virtuoso-t
+#                    daemon for the default installed database.
+### END INIT INFO
+
+PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
+
+DAEMON=/usr/bin/virtuoso-t
+NAME=virtuoso-opensource-6.1
+SHORTNAME=virtuoso
+DESC="Virtuoso OpenSource Edition 6.1"
+DBPATH=/var/lib/virtuoso-opensource-6.1/db
+LOGDIR=/var/log/virtuoso-opensource-6.1  # Log directory to use
+
+PIDFILE=/var/run/$NAME.pid
+
+test -x $DAEMON || exit 0
+
+. /lib/lsb/init-functions
+
+# Default options, these can be overriden by the information
+# at /etc/default/$NAME
+DAEMON_OPTS=""          # Additional options given to the server
+
+DIETIME=60              # Time to wait for the server to die, in seconds
+                        # If this value is set too low you might not
+                        # let some servers to die gracefully and
+                        # 'restart' will not work
+
+STARTTIME=1             # Time to wait for the server to start, in seconds
+                        # If this value is set each time the server is
+                        # started (on start or restart) the script will
+                        # stall to try to determine if it is running
+                        # If it is not set and the server takes time
+                        # to setup a pid file the log message might
+                        # be a false positive (says it did not start
+                        # when it actually did)
+
+LOGFILE=$LOGDIR/$NAME.log  # Server logfile
+# DAEMONUSER=$NAME   # Users to run the daemons as. If this value
+                        # is set start-stop-daemon will chuid the server
+
+# Include defaults if available
+if [ -f /etc/default/$NAME ] ; then
+    . /etc/default/$NAME
+fi
+
+# Use this if you want the user to explicitly set 'RUN' in
+# /etc/default/
+if [ "x$RUN" != "xyes" -a "x$2" != "xignoredefault" ] ; then
+    log_failure_msg "$NAME disabled, /etc/default/$NAME."
+    exit 0
+fi
+
+# Check that the user exists (if we set a user)
+# Does the user exist?
+if [ -n "$DAEMONUSER" ] ; then
+    if getent passwd | grep -q "^$DAEMONUSER:"; then
+        # Obtain the uid and gid
+        DAEMONUID=`getent passwd |grep "^$DAEMONUSER:" | awk -F : '{print $3}'`
+        DAEMONGID=`getent passwd |grep "^$DAEMONUSER:" | awk -F : '{print $4}'`
+    else
+        log_failure_msg "The user $DAEMONUSER, required to run $NAME does not exist."
+        exit 1
+    fi
+fi
+
+
+set -e
+
+running_pid() {
+# Check if a given process pid's cmdline matches a given name
+    pid=$1
+    name=$2
+    [ -z "$pid" ] && return 1
+    [ ! -d /proc/$pid ] &&  return 1
+    cmd=`cat /proc/$pid/cmdline | tr "\000" "\n"|head -n 1 |cut -d : -f 1`
+    # Is this the expected server
+    [ "$cmd" != "$name" ] &&  return 1
+    return 0
+}
+
+running() {
+# Check if the process is running looking at /proc
+# (works for all users)
+
+    # No pidfile, probably no daemon present
+    [ ! -f "$PIDFILE" ] && return 1
+    pid=`cat $PIDFILE`
+    running_pid $pid $DAEMON || return 1
+    return 0
+}
+
+start_server() {
+# Start the process using the wrapper
+        if [ -z "$DAEMONUSER" ] ; then
+            start-stop-daemon --start --quiet \
+                        --chdir $DBPATH --exec $DAEMON \
+                        -- $DAEMON_OPTS
+            errcode=$?
+        else
+# if we are using a daemonuser then change the user id
+            start-stop-daemon --start --quiet \
+                        --chuid $DAEMONUSER \
+                        --chdir $DBPATH --exec $DAEMON \
+                        -- $DAEMON_OPTS
+            errcode=$?
+        fi
+        # Write the pid file using the process id from virtuoso.lck
+        sed 's/VIRT_PID=//' $DBPATH/$SHORTNAME.lck > /var/run/$NAME.pid
+        return $errcode
+}
+
+stop_server() {
+# Stop the process using the wrapper
+        if [ -z "$DAEMONUSER" ] ; then
+            killproc -p $PIDFILE $DAEMON
+            errcode=$?
+        else
+# if we are using a daemonuser then look for process that match
+            start-stop-daemon --stop --quiet --pidfile $PIDFILE \
+                        --user $DAEMONUSER \
+                        --exec $DAEMON
+            errcode=$?
+        fi
+
+        return $errcode
+}
+
+reload_server() {
+    [ ! -f "$PIDFILE" ] && return 1
+    pid=pidofproc $PIDFILE # This is the daemon's pid
+    # Send a SIGHUP
+    kill -1 $pid
+    return $?
+}
+
+force_stop() {
+# Force the process to die killing it manually
+    [ ! -e "$PIDFILE" ] && return
+    if running ; then
+        kill -15 $pid
+        # Is it really dead?
+        sleep "$DIETIME"s
+        if running ; then
+            kill -9 $pid
+            sleep "$DIETIME"s
+            if running ; then
+                echo "Cannot kill $NAME (pid=$pid)!"
+                exit 1
+            fi
+        fi
+    fi
+    rm -f $PIDFILE
+}
+
+
+case "$1" in
+  start)
+        log_daemon_msg "Starting $DESC " "$NAME"
+        # Check if it's running first
+        if running ;  then
+            log_progress_msg "apparently already running"
+            log_end_msg 0
+            exit 0
+        fi
+        if start_server ; then
+            # NOTE: Some servers might die some time after they start,
+            # this code will detect this issue if STARTTIME is set
+            # to a reasonable value
+            [ -n "$STARTTIME" ] && sleep $STARTTIME # Wait some time
+            if  running ;  then
+                # It's ok, the server started and is running
+                log_end_msg 0
+            else
+                # It is not running after we did start
+                log_end_msg 1
+            fi
+        else
+            # Either we could not start it
+            log_end_msg 1
+        fi
+        ;;
+  stop)
+        log_daemon_msg "Stopping $DESC" "$NAME"
+        if running ; then
+            # Only stop the server if we see it running
+            errcode=0
+            stop_server || errcode=$?
+            log_end_msg $errcode
+        else
+            # If it's not running don't do anything
+            log_progress_msg "apparently not running"
+            log_end_msg 0
+            exit 0
+        fi
+        ;;
+  force-stop)
+        # First try to stop gracefully the program
+        $0 stop
+        if running; then
+            # If it's still running try to kill it more forcefully
+            log_daemon_msg "Stopping (force) $DESC" "$NAME"
+            errcode=0
+            force_stop || errcode=$?
+            log_end_msg $errcode
+        fi
+        ;;
+  restart|force-reload)
+        log_daemon_msg "Restarting $DESC" "$NAME"
+        errcode=0
+        stop_server || errcode=$?
+        # Wait some sensible amount, some server need this
+        [ -n "$DIETIME" ] && sleep $DIETIME
+        start_server || errcode=$?
+        [ -n "$STARTTIME" ] && sleep $STARTTIME
+        running || errcode=$?
+        log_end_msg $errcode
+        ;;
+  status)
+
+        log_daemon_msg "Checking status of $DESC" "$NAME"
+        if running ;  then
+            log_progress_msg "running"
+            log_end_msg 0
+        else
+            log_progress_msg "apparently not running"
+            log_end_msg 1
+            exit 1
+        fi
+        ;;
+  # Use this if the daemon cannot reload
+  reload)
+        log_warning_msg "Reloading $NAME daemon: not implemented, as the daemon"
+        log_warning_msg "cannot re-read the config file (use restart)."
+        ;;
+  # And this if it cann
+  #reload)
+          #
+          # If the daemon can reload its config files on the fly
+          # for example by sending it SIGHUP, do it here.
+          #
+          # If the daemon responds to changes in its config file
+          # directly anyway, make this a do-nothing entry.
+          #
+          # log_daemon_msg "Reloading $DESC configuration files" "$NAME"
+          # if running ; then
+          #    reload_server
+          #    if ! running ;  then
+          # Process died after we tried to reload
+          #       log_progress_msg "died on reload"
+          #       log_end_msg 1
+          #       exit 1
+          #    fi
+          # else
+          #    log_progress_msg "server is not running"
+          #    log_end_msg 1
+          #    exit 1
+          # fi
+                                                                                    #;;
+
+  *)
+        N=/etc/init.d/$NAME
+        echo "Usage: $N {start|stop|force-stop|restart|force-reload|status}" >&2
+        exit 1
+        ;;
+esac
+
+exit 0
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/watch
+++ virtuoso-opensource-6.1.2+dfsg1/debian/watch
@@ -0,0 +1,3 @@
+version=3
+opts=dversionmangle=s/\.dfsg\.[0-9]*// \
+http://sf.net/virtuoso/virtuoso-opensource-([0-9.]+)\.tar\.gz
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1.dirs
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1.dirs
@@ -0,0 +1,8 @@
+usr/share/virtuoso-opensource-6.1/
+usr/lib/virtuoso-opensource-6.1/
+usr/lib/virtuoso-opensource-6.1/hosting/
+var/log/virtuoso-opensource-6.1/
+var/lib/virtuoso-opensource-6.1/
+var/lib/virtuoso-opensource-6.1/db
+var/lib/virtuoso-opensource-6.1/vsp
+etc/virtuoso-opensource-6.1/
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1-bin.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1-bin.install
@@ -0,0 +1,4 @@
+usr/bin/isql-vt
+usr/bin/isqlw-vt
+usr/bin/virt_mail
+usr/bin/virtuoso-t
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1-bin.manpages
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1-bin.manpages
@@ -0,0 +1,7 @@
+debian/ISQL-VT.1
+debian/isql-vt.1
+debian/isqlw-vt.1
+debian/VIRT_MAIL.1
+debian/virt_mail.1
+debian/VIRTUOSO-T.1
+debian/virtuoso-t.1
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-vad-tutorial.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-vad-tutorial.install
@@ -0,0 +1 @@
+usr/share/virtuoso/vad/tutorial_dav.vad
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-vad-bpel.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-vad-bpel.install
@@ -0,0 +1 @@
+usr/share/virtuoso/vad/bpel_dav.vad
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/odbc.ini
+++ virtuoso-opensource-6.1.2+dfsg1/debian/odbc.ini
@@ -0,0 +1,5 @@
+[VOS]
+Driver = /usr/lib/odbc/virtodbc.so
+Description = Virtuoso OpenSource Edition
+Address = localhost:1111
+
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1.postinst
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1.postinst
@@ -0,0 +1,141 @@
+#!/bin/bash
+
+set -e
+
+. /usr/share/debconf/confmodule
+
+if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi
+${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*" 1>&2 }
+
+FILE_INI="/etc/virtuoso-opensource-6.1/virtuoso.ini"
+FILE_ODBC_DSN="/usr/share/virtuoso-opensource-6.1/odbc.ini"
+
+# import existing defaults if we have them (to check run state)
+if [ -f /etc/default/virtuoso-opensource-6.1 ] ; then
+	. /etc/default/virtuoso-opensource-6.1
+fi
+
+# are we changing the web server port?
+db_get virtuoso-opensource-6.1/db-server-port && DB_PORT="$RET"
+if DB_PORT=$(printf "%d" $DB_PORT 2> /dev/null); then
+	inifile +inifile $FILE_INI +section Parameters \
+		+key ServerPort +value $DB_PORT || true
+fi
+
+# are we changing the database server port?
+db_get virtuoso-opensource-6.1/http-server-port && HTTP_PORT="$RET"
+if HTTP_PORT=$(printf "%d" $HTTP_PORT 2> /dev/null); then
+	inifile +inifile $FILE_INI +section HTTPServer \
+		+key ServerPort +value $HTTP_PORT || true
+fi
+
+# update the list of potential default servers
+db_metaget virtuoso-opensource/primary-server owners && OWNERS="$RET"
+db_metaget virtuoso-opensource/primary-server choices && CHOICES="$RET"
+if [ "$OWNERS" != "$CHOICES" ]; then
+	db_subst virtuoso-opensource/primary-server choices $OWNERS
+	db_fset virtuoso-opensource/primary-server seen false
+fi
+
+# if there's more than one option then prompt user to choose
+if [ "$CHOICES" != "virtuoso-opensource-6.1" ]; then
+	db_input medium virtuoso-opensource/primary-server || true
+	db_go || true
+fi
+
+# there doesn't seem to be a way to set the log file path globally or
+# in configure so this will have to suffice for now:
+INI_LOG_FILE="inifile +inifile $FILE_INI +section Database +key ErrorLogFile"
+
+# if we have a default relative filename here then move under /var/log
+LOG_FILE="$($INI_LOG_FILE)"
+if [ "$LOG_FILE" == "virtuoso.log" ]; then
+  $INI_LOG_FILE +value /var/log/virtuoso-opensource-6.1/$LOG_FILE || true
+fi
+
+INI_VSP_ROOT="inifile +inifile $FILE_INI +section HTTPServer +key ServerRoot"
+INI_PLUGINS="inifile +inifile $FILE_INI +section Plugins +key LoadPath"
+INI_DSN_SERVER="inifile +inifile $FILE_ODBC_DSN +section VOS +key Address"
+
+# relocate libs etc. under the private versioned package dir
+$INI_VSP_ROOT +value /var/lib/virtuoso-opensource-6.1/vsp || true
+$INI_PLUGINS +value /usr/lib/virtuoso-opensource-6.1/hosting || true
+
+# we need to start the service to change the passwords so the
+# debhelper code gets dumped and we'll do it here instead...
+if [ -x "/etc/init.d/virtuoso-opensource-6.1" ]; then
+	update-rc.d virtuoso-opensource-6.1 defaults > /dev/null
+	invoke-rc.d virtuoso-opensource-6.1 start ignoredefault && VT_EXIT=$?
+fi
+
+# get the new admin password
+db_get virtuoso-opensource-6.1/dba-password && DBA_PW="$RET"
+
+# clear password from debconf db
+db_set virtuoso-opensource-6.1/dba-password ""
+db_set virtuoso-opensource-6.1/dba-password-again ""
+
+# Forget +pwdold dba +pwdba $DBA_PW +pwddav $DBA_PW (does work but
+# always exits 101 EVEN IF THE PASSWORD WAS NOT CHANGED)
+# So we're going to change the passwords via isql:
+SQL_DBAPW="EXEC=SET PASSWORD dba $DBA_PW;"
+SQL_DAVPW="EXEC=UPDATE SYS_USERS SET U_PASSWORD='$DBA_PW' WHERE U_NAME='dav';"
+
+# There seems to be a bug in 5.0.11 where the password change is lost
+# with an error on the Roll Forward (SQL Error: 22023 : SR005) if we
+# don't push it to the db before shutting down the server.
+SQL_CHECKPOINT="EXEC=checkpoint;"
+
+# if we have a new password, change it...
+if [ $VT_EXIT ] && [ -n "$DBA_PW" ]; then
+	# first see if we can change the dba password:
+	if isql-vt $DB_PORT dba dba "$SQL_DBAPW" &> /dev/null; then
+		# now change the DAV admin password also:
+		if isql-vt $DB_PORT dba $DBA_PW "$SQL_DAVPW" &> /dev/null; then
+			# the new password works, so everything seems to be ok!
+			isql-vt $DB_PORT dba $DBA_PW "$SQL_CHECKPOINT" &> /dev/null || true
+
+			# register this default instance as a DSN then we're done here
+			db_get virtuoso-opensource-6.1/register-odbc-dsn || true
+			if [ "$RET" = "true" ]; then
+				$INI_DSN_SERVER +value "localhost:$DB_PORT" || true
+				odbcinst -i -s -l -f $FILE_ODBC_DSN 1>&2 || true
+			fi
+		else
+			# the password was not changed for some reason
+			db_input critical virtuoso-opensource-6.1/error-setting-password || true
+		fi
+	else
+		# error connecting to server or non-default password
+		db_input critical virtuoso-opensource-6.1/error-setting-password || true
+	fi
+
+# default install process (i.e. no new admin password was given)...
+else
+	if [ $VT_EXIT ]; then
+		# let's check to see if the password is actually default
+		# (could be manual reconfigure or re-install after changing it)
+		if isql-vt $DB_PORT dba dba -K &> /dev/null; then
+			# it's a default pw so make sure the daemon is disabled
+			sed "s/RUN=yes/RUN=no/" -i /etc/default/virtuoso-opensource-6.1
+			echo "Warning: The current Virtuoso database uses default passwords."
+			echo "The Virtuoso daemon has been disabled for security reasons."
+			echo "You can reconfigure the package to change these passwords."
+			db_input high virtuoso-opensource-6.1/note-disabled || true
+		fi
+	else
+		# couldn't even start the daemon, something's broken!
+		db_input critical virtuoso-opensource-6.1/error-setting-password || true
+	fi
+fi
+
+# Stop the server if it was force-started
+if [ "x$RUN" == "xno" -a -x "/etc/init.d/virtuoso-opensource-6.1" ]; then
+	invoke-rc.d virtuoso-opensource-6.1 stop ignoredefault && VT_EXIT=$?
+fi
+
+db_go || true
+db_stop && exit
+
+# dh tag retained to prevent warnings only:
+#DEBHELPER#
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1.config
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1.config
@@ -0,0 +1,48 @@
+#!/bin/bash
+
+set -e
+
+. /usr/share/debconf/confmodule
+
+if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi
+${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*" 1>&2 }
+
+# get a new password for DBA and DAV users
+while :; do
+	RET=""
+	db_input high virtuoso-opensource-6.1/dba-password || true
+	db_go
+	db_get virtuoso-opensource-6.1/dba-password
+	DBA_PW="$RET"
+	if [ -z "$DBA_PW" ]; then
+		# if no password is given, leave it to postint to handle
+		break
+	fi
+	# otherwise prompt to confirm the password
+	db_input high virtuoso-opensource-6.1/dba-password-again || true
+	db_go
+	db_get virtuoso-opensource-6.1/dba-password-again
+	if [ "$RET" == "$DBA_PW" ]; then
+		DBA_PW=''
+		break
+	fi
+	# no match, so try again...
+	db_input critical virtuoso-opensource-6.1/password-mismatch
+	db_set virtuoso-opensource-6.1/dba-password "" 
+	db_set virtuoso-opensource-6.1/dba-password-again ""
+	db_go
+done
+
+# see if they want to change the ports in advance
+db_input low virtuoso-opensource-6.1/http-server-port || true
+db_input low virtuoso-opensource-6.1/db-server-port || true
+
+# maybe register a DSN for the default instance?
+db_get libvirtodbc0/register-odbc-driver || true
+if [ "$RET" = "true" ] && [ -e /usr/bin/odbcinst ]; then
+	# default to true since odbcinst is available
+	db_set virtuoso-opensource-6.1/register-odbc-dsn "true" || true
+	db_input low virtuoso-opensource-6.1/register-odbc-dsn || true
+fi
+
+db_go || true
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/README.source
+++ virtuoso-opensource-6.1.2+dfsg1/debian/README.source
@@ -0,0 +1,2 @@
+This package uses quilt to apply patches. Please refer to:
+/usr/share/doc/quilt/README.source
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-vad-rdfmappers.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-vad-rdfmappers.install
@@ -0,0 +1 @@
+usr/share/virtuoso/vad/rdf_mappers_dav.vad
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-vad-syncml.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-vad-syncml.install
@@ -0,0 +1 @@
+usr/share/virtuoso/vad/syncml_dav.vad
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-vad-ods.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-vad-ods.install
@@ -0,0 +1 @@
+usr/share/virtuoso/vad/ods_*_dav.vad
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/libvirtodbc0.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/libvirtodbc0.install
@@ -0,0 +1,2 @@
+usr/lib/virtodbc*.so usr/lib/odbc/
+../odbcinst.ini usr/share/libvirtodbc0/
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1.logrotate
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1.logrotate
@@ -0,0 +1,7 @@
+/var/log/virtuoso-opensource-6.1/*.log {
+rotate 12
+weekly
+compress
+postrotate
+endscript
+}
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/odbcinst.ini
+++ virtuoso-opensource-6.1.2+dfsg1/debian/odbcinst.ini
@@ -0,0 +1,2 @@
+[Virtuoso]
+Driver = /usr/lib/odbc/virtodbc.so
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-vad-sparqldemo.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-vad-sparqldemo.install
@@ -0,0 +1 @@
+usr/share/virtuoso/vad/sparql_demo_dav.vad
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1.install
@@ -0,0 +1,3 @@
+usr/lib/virtuoso/hosting/*.so usr/lib/virtuoso-opensource-6.1/hosting/
+var/lib/virtuoso/db/virtuoso.ini etc/virtuoso-opensource-6.1/
+../odbc.ini usr/share/virtuoso-opensource-6.1/
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/libvirtodbc0.prerm
+++ virtuoso-opensource-6.1.2+dfsg1/debian/libvirtodbc0.prerm
@@ -0,0 +1,15 @@
+#!/bin/bash
+
+set -e
+
+. /usr/share/debconf/confmodule
+
+if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi
+${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*" 1>&2 }
+
+db_get libvirtodbc0/register-odbc-driver || true
+if [ "$RET" = "true" ]; then
+	odbcinst -u -d -n Virtuoso || true
+fi
+
+#DEBHELPER#
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/docs
+++ virtuoso-opensource-6.1.2+dfsg1/debian/docs
@@ -0,0 +1,4 @@
+NEWS
+README
+debian/TODO.Debian
+debian/NEWS.Debian
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1.postrm
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1.postrm
@@ -0,0 +1,31 @@
+#!/bin/bash
+
+set -e
+
+. /usr/share/debconf/confmodule
+
+if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi
+${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*" 1>&2 }
+
+FILE_INI="/etc/virtuoso-opensource-6.1/virtuoso.ini"
+FILE_ODBC_DSN="/usr/share/virtuoso-opensource-6.1/odbc.ini"
+
+if [ "$1" == "purge" ]; then
+	# log files can go without warning...
+	rm -rf /var/log/virtuoso-opensource-6.1
+
+	# ...but get explicit confirmation before removing databases
+  db_input high virtuoso-opensource-6.1/check-remove-databases || true
+  db_go || true
+  db_get virtuoso-opensource-6.1/check-remove-databases || true
+  if [ "$RET" == "true" ]; then
+    rm -rf /var/lib/virtuoso-opensource-6.1
+  fi
+
+  rm -f $FILE_INI
+  rm -f $FILE_ODBC_DSN
+
+	update-rc.d virtuoso-opensource-6.1 remove >/dev/null || exit $?
+fi
+
+#DEBHELPER#
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-vad-conductor.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-vad-conductor.install
@@ -0,0 +1 @@
+usr/share/virtuoso/vad/conductor_dav.vad
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-vad-doc.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-vad-doc.install
@@ -0,0 +1 @@
+usr/share/virtuoso/vad/doc_dav.vad
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/copyright
+++ virtuoso-opensource-6.1.2+dfsg1/debian/copyright
@@ -0,0 +1,1412 @@
+This package was debianized by:
+
+    Obey Arthur Liu <arthur@milliways.fr> on Sat, 11 Apr 2009 21:04:53 +0200
+
+It was downloaded from:
+
+    <http://sourceforge.net/projects/virtuoso/>
+
+Upstream Authors:
+
+    OpenLink Software's Virtuoso Open-Source Edition project
+    OpenLink Virtuoso Maintainer <vos.admin@openlinksw.com>
+
+Copyright:
+
+    <Copyright (C) 2009 OpenLink Software>
+
+License:
+
+    This package is free software; you can redistribute it and/or modify
+    it under the terms of the GNU General Public License as published by
+    the Free Software Foundation, version 2 dated June 1991.
+
+    This package is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+    GNU General Public License for more details.
+
+    You should have received a copy of the GNU General Public License
+    along with this package; if not, write to the Free Software
+    Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+    OpenSSL exemption
+    -----------------
+
+    This project may be compiled/linked with the OpenSSL library. If so, the
+    following exemption is added to the above license:
+
+        In addition, as a special exemption, OpenLink Software gives
+        permission to link the code of its release of Virtuoso with the
+        OpenSSL project's "OpenSSL" library (or with modified versions
+        of it that use the same license as the "OpenSSL" library), and
+        distribute the linked executables. You must obey the GNU General
+        Public License in all respects for all of the code used other
+        than "OpenSSL".
+
+
+    Client Protocol Driver exemptions
+    ---------------------------------
+
+        In addition, as a special exemption, OpenLink Software gives
+        permission to use the unmodified client libraries (ODBC, JDBC,
+        ADO.NET, OleDB, Jena, Sesame and Redland providers) in your own
+        application whether open-source or not, with no obligation to use
+        the GPL on the resulting application. In all other respects you
+        must abide by the terms of the GPL.
+
+    On Debian systems, the complete text of the GNU General
+    Public License version 2 can be found in `/usr/share/common-licenses/GPL-2'.
+
+Additional copyrights:
+
+    OpenLink Software Virtuso Open-Source Edition (VOS) contains
+    included or optional functionalities for which the copyright statements
+    are listed in CREDITS and reproduced below.
+
+    OpenSSL
+    <http://www.openssl.org/>
+    
+        This product includes software developed by the OpenSSL Project for use
+        in the OpenSSL Toolkit.
+    
+        This product includes cryptographic software written by Eric Young
+        (eay@cryptsoft.com).
+    
+        This product includes software written by Tim Hudson
+        (tjh@cryptsoft.com)
+    
+        OpenSSL is distributed under the terms of the OpenSSL License:
+        <http://www.openssl.org/source/license.html>
+
+        Copyright (c) 1998-2008 The OpenSSL Project.  All rights reserved.
+       
+        Redistribution and use in source and binary forms, with or without
+        modification, are permitted provided that the following conditions
+        are met:
+       
+        1. Redistributions of source code must retain the above copyright
+           notice, this list of conditions and the following disclaimer.
+       
+        2. Redistributions in binary form must reproduce the above copyright
+           notice, this list of conditions and the following disclaimer in
+           the documentation and/or other materials provided with the
+           distribution.
+       
+        3. All advertising materials mentioning features or use of this
+           software must display the following acknowledgment:
+           "This product includes software developed by the OpenSSL Project
+           for use in the OpenSSL Toolkit. (http://www.openssl.org/)"
+       
+        4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
+           endorse or promote products derived from this software without
+           prior written permission. For written permission, please contact
+           openssl-core@openssl.org.
+       
+        5. Products derived from this software may not be called "OpenSSL"
+           nor may "OpenSSL" appear in their names without prior written
+           permission of the OpenSSL Project.
+       
+        6. Redistributions of any form whatsoever must retain the following
+           acknowledgment:
+           "This product includes software developed by the OpenSSL Project
+           for use in the OpenSSL Toolkit (http://www.openssl.org/)"
+       
+        THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
+        EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+        IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+        PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE OpenSSL PROJECT OR
+        ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+        SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
+        NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+        LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+        HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+        STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+        ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+        OF THE POSSIBILITY OF SUCH DAMAGE.
+       
+        This product includes cryptographic software written by Eric Young
+        (eay@cryptsoft.com).  This product includes software written by Tim
+        Hudson (tjh@cryptsoft.com).
+       
+    
+        As cryptographic software, OpenSSL may be subject to export
+        restrictions: <http://www.openssl.org/support/faq.html#LEGAL1>
+    
+    
+    Tidy - HTML parser and pretty printer
+    <http://www.w3.org/People/Raggett/tidy/>
+    
+        This product includes Tidy developed by the World Wide Web Consortium.
+    
+        Tidy is distributed under the terms of the W3C License:
+        <http://tidy.sourceforge.net/license.html>
+
+        Copyright (c) 1998-2003 World Wide Web Consortium
+        (Massachusetts Institute of Technology, European Research 
+        Consortium for Informatics and Mathematics, Keio University).
+        All Rights Reserved.
+        
+        This software and documentation is provided "as is," and
+        the copyright holders and contributing author(s) make no
+        representations or warranties, express or implied, including
+        but not limited to, warranties of merchantability or fitness
+        for any particular purpose or that the use of the software or
+        documentation will not infringe any third party patents,
+        copyrights, trademarks or other rights. 
+        
+        The copyright holders and contributing author(s) will not be held
+        liable for any direct, indirect, special or consequential damages
+        arising out of any use of the software or documentation, even if
+        advised of the possibility of such damage.
+        
+        Permission is hereby granted to use, copy, modify, and distribute
+        this source code, or portions hereof, documentation and executables,
+        for any purpose, without fee, subject to the following restrictions:
+        
+        1. The origin of this source code must not be misrepresented.
+        2. Altered versions must be plainly marked as such and must
+           not be misrepresented as being the original source.
+        3. This Copyright notice may not be removed or altered from any
+           source or altered source distribution.
+         
+        The copyright holders and contributing author(s) specifically
+        permit, without fee, and encourage the use of this source code
+        as a component for supporting the Hypertext Markup Language in
+        commercial products. If you use this source code in a product,
+        acknowledgment is not required but would be appreciated.
+    
+    
+    PCRE
+    <http://www.pcre.org/>
+    
+        This product includes the Perl-Compatible Regular-Expression Library
+        (PCRE) by Phillip Hazel.
+    
+        PCRE is distributed under the terms of the BSD license:
+        <http://www.pcre.org/license.txt>
+
+        PCRE LICENCE
+        ------------
+        
+        PCRE is a library of functions to support regular expressions whose syntax
+        and semantics are as close as possible to those of the Perl 5 language.
+        
+        Release 8 of PCRE is distributed under the terms of the "BSD" licence, as
+        specified below. The documentation for PCRE, supplied in the "doc"
+        directory, is distributed under the same terms as the software itself.
+        
+        The basic library functions are written in C and are freestanding. Also
+        included in the distribution is a set of C++ wrapper functions.
+        
+        
+        THE BASIC LIBRARY FUNCTIONS
+        ---------------------------
+        
+        Written by:       Philip Hazel
+        Email local part: ph10
+        Email domain:     cam.ac.uk
+        
+        University of Cambridge Computing Service,
+        Cambridge, England.
+        
+        Copyright (c) 1997-2009 University of Cambridge
+        All rights reserved.
+        
+        
+        THE C++ WRAPPER FUNCTIONS
+        -------------------------
+        
+        Contributed by:   Google Inc.
+        
+        Copyright (c) 2007-2008, Google Inc.
+        All rights reserved.
+        
+        
+        THE "BSD" LICENCE
+        -----------------
+        
+        Redistribution and use in source and binary forms, with or without
+        modification, are permitted provided that the following conditions are met:
+        
+            * Redistributions of source code must retain the above copyright notice,
+              this list of conditions and the following disclaimer.
+        
+            * Redistributions in binary form must reproduce the above copyright
+              notice, this list of conditions and the following disclaimer in the
+              documentation and/or other materials provided with the distribution.
+        
+            * Neither the name of the University of Cambridge nor the name of Google
+              Inc. nor the names of their contributors may be used to endorse or
+              promote products derived from this software without specific prior
+              written permission.
+        
+        THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+        AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+        IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+        ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+        LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+        CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+        SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+        INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+        CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+        ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+        POSSIBILITY OF SUCH DAMAGE.
+    
+    
+    OAT
+    <http://sourceforge.net/projects/oat/>
+    
+        Virtuoso uses the OpenLink AJAX Toolkit (OAT) in the Data Space
+        application suite, distributable under the terms of the GNU Public
+        License v2: <http://www.gnu.org/copyleft/gpl.html>
+    
+    
+    SHA1 Javascript
+    
+        Virtuoso uses a Javsscript implementation of the Secure Hash Algorithm
+        (SHA1) as defined in FIPS PUB 180-1, written by Paul Johnston
+    
+        SHA1 is distributable under the terms of the BSD license
+        <http://pajhome.org.uk/crypt/md5>
+    
+    
+    Perl
+    <http://www.perl.com/>
+    
+        Virtuoso may be linked against libperl.so to provide a Perl hosting
+        environment.
+    
+        Perl is distributed under the terms of the Artistic License:
+        <http://www.perl.com/language/misc/Artistic.html>
+    
+    
+    Python
+    <http://www.python.org>
+    
+        Virtuoso may be linked against libpython.so to provide a Python hosting
+        environment.
+    
+        Python is distributed under the terms of the Python License:
+        <http://www.python.org/psf/license/>
+
+        PYTHON SOFTWARE FOUNDATION LICENSE VERSION 2
+        --------------------------------------------
+        
+        1. This LICENSE AGREEMENT is between the Python Software Foundation
+        ("PSF"), and the Individual or Organization ("Licensee") accessing and
+        otherwise using this software ("Python") in source or binary form and
+        its associated documentation.
+        
+        2. Subject to the terms and conditions of this License Agreement, PSF
+        hereby grants Licensee a nonexclusive, royalty-free, world-wide
+        license to reproduce, analyze, test, perform and/or display publicly,
+        prepare derivative works, distribute, and otherwise use Python
+        alone or in any derivative version, provided, however, that PSF's
+        License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
+        2001, 2002, 2003, 2004, 2005, 2006 Python Software Foundation; All Rights
+        Reserved" are retained in Python alone or in any derivative version 
+        prepared by Licensee.
+        
+        3. In the event Licensee prepares a derivative work that is based on
+        or incorporates Python or any part thereof, and wants to make
+        the derivative work available to others as provided herein, then
+        Licensee hereby agrees to include in any such work a brief summary of
+        the changes made to Python.
+        
+        4. PSF is making Python available to Licensee on an "AS IS"
+        basis.  PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+        IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
+        DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+        FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON WILL NOT
+        INFRINGE ANY THIRD PARTY RIGHTS.
+        
+        5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+        FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+        A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON,
+        OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+        
+        6. This License Agreement will automatically terminate upon a material
+        breach of its terms and conditions.
+        
+        7. Nothing in this License Agreement shall be deemed to create any
+        relationship of agency, partnership, or joint venture between PSF and
+        Licensee.  This License Agreement does not grant permission to use PSF
+        trademarks or trade name in a trademark sense to endorse or promote
+        products or services of Licensee, or any third party.
+        
+        8. By copying, installing or otherwise using Python, Licensee
+        agrees to be bound by the terms and conditions of this License
+        Agreement.
+        
+        
+        BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
+        -------------------------------------------
+        
+        BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
+        
+        1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
+        office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
+        Individual or Organization ("Licensee") accessing and otherwise using
+        this software in source or binary form and its associated
+        documentation ("the Software").
+        
+        2. Subject to the terms and conditions of this BeOpen Python License
+        Agreement, BeOpen hereby grants Licensee a non-exclusive,
+        royalty-free, world-wide license to reproduce, analyze, test, perform
+        and/or display publicly, prepare derivative works, distribute, and
+        otherwise use the Software alone or in any derivative version,
+        provided, however, that the BeOpen Python License is retained in the
+        Software, alone or in any derivative version prepared by Licensee.
+        
+        3. BeOpen is making the Software available to Licensee on an "AS IS"
+        basis.  BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+        IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
+        DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+        FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
+        INFRINGE ANY THIRD PARTY RIGHTS.
+        
+        4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
+        SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
+        AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
+        DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+        
+        5. This License Agreement will automatically terminate upon a material
+        breach of its terms and conditions.
+        
+        6. This License Agreement shall be governed by and interpreted in all
+        respects by the law of the State of California, excluding conflict of
+        law provisions.  Nothing in this License Agreement shall be deemed to
+        create any relationship of agency, partnership, or joint venture
+        between BeOpen and Licensee.  This License Agreement does not grant
+        permission to use BeOpen trademarks or trade names in a trademark
+        sense to endorse or promote products or services of Licensee, or any
+        third party.  As an exception, the "BeOpen Python" logos available at
+        http://www.pythonlabs.com/logos.html may be used according to the
+        permissions granted on that web page.
+        
+        7. By copying, installing or otherwise using the software, Licensee
+        agrees to be bound by the terms and conditions of this License
+        Agreement.
+        
+        
+        CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
+        ---------------------------------------
+        
+        1. This LICENSE AGREEMENT is between the Corporation for National
+        Research Initiatives, having an office at 1895 Preston White Drive,
+        Reston, VA 20191 ("CNRI"), and the Individual or Organization
+        ("Licensee") accessing and otherwise using Python 1.6.1 software in
+        source or binary form and its associated documentation.
+        
+        2. Subject to the terms and conditions of this License Agreement, CNRI
+        hereby grants Licensee a nonexclusive, royalty-free, world-wide
+        license to reproduce, analyze, test, perform and/or display publicly,
+        prepare derivative works, distribute, and otherwise use Python 1.6.1
+        alone or in any derivative version, provided, however, that CNRI's
+        License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
+        1995-2001 Corporation for National Research Initiatives; All Rights
+        Reserved" are retained in Python 1.6.1 alone or in any derivative
+        version prepared by Licensee.  Alternately, in lieu of CNRI's License
+        Agreement, Licensee may substitute the following text (omitting the
+        quotes): "Python 1.6.1 is made available subject to the terms and
+        conditions in CNRI's License Agreement.  This Agreement together with
+        Python 1.6.1 may be located on the Internet using the following
+        unique, persistent identifier (known as a handle): 1895.22/1013.  This
+        Agreement may also be obtained from a proxy server on the Internet
+        using the following URL: http://hdl.handle.net/1895.22/1013".
+        
+        3. In the event Licensee prepares a derivative work that is based on
+        or incorporates Python 1.6.1 or any part thereof, and wants to make
+        the derivative work available to others as provided herein, then
+        Licensee hereby agrees to include in any such work a brief summary of
+        the changes made to Python 1.6.1.
+        
+        4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
+        basis.  CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+        IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
+        DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+        FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
+        INFRINGE ANY THIRD PARTY RIGHTS.
+        
+        5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+        1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+        A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
+        OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+        
+        6. This License Agreement will automatically terminate upon a material
+        breach of its terms and conditions.
+        
+        7. This License Agreement shall be governed by the federal
+        intellectual property law of the United States, including without
+        limitation the federal copyright law, and, to the extent such
+        U.S. federal law does not apply, by the law of the Commonwealth of
+        Virginia, excluding Virginia's conflict of law provisions.
+        Notwithstanding the foregoing, with regard to derivative works based
+        on Python 1.6.1 that incorporate non-separable material that was
+        previously distributed under the GNU General Public License (GPL), the
+        law of the Commonwealth of Virginia shall govern this License
+        Agreement only as to issues arising under or with respect to
+        Paragraphs 4, 5, and 7 of this License Agreement.  Nothing in this
+        License Agreement shall be deemed to create any relationship of
+        agency, partnership, or joint venture between CNRI and Licensee.  This
+        License Agreement does not grant permission to use CNRI trademarks or
+        trade name in a trademark sense to endorse or promote products or
+        services of Licensee, or any third party.
+        
+        8. By clicking on the "ACCEPT" button where indicated, or by copying,
+        installing or otherwise using Python 1.6.1, Licensee agrees to be
+        bound by the terms and conditions of this License Agreement.
+        
+                ACCEPT
+        
+        
+        CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
+        --------------------------------------------------
+        
+        Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
+        The Netherlands.  All rights reserved.
+        
+        Permission to use, copy, modify, and distribute this software and its
+        documentation for any purpose and without fee is hereby granted,
+        provided that the above copyright notice appear in all copies and that
+        both that copyright notice and this permission notice appear in
+        supporting documentation, and that the name of Stichting Mathematisch
+        Centrum or CWI not be used in advertising or publicity pertaining to
+        distribution of the software without specific, written prior
+        permission.
+        
+        STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
+        THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+        FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
+        FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+        WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+        ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+        OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+    
+    
+    Ruby
+    <http://www.ruby-lang.org/>
+    
+        Virtuoso may be linked against libruby.so to provide a Ruby hosting
+        environment.
+    
+        Ruby is distributed under the terms of the Ruby License:
+        <http://www.ruby-lang.org/en/about/license.txt>
+
+        RUBY LICENSE
+        
+        Ruby is copyrighted free software by Yukihiro Matsumoto <matz@netlab.co.jp>.
+        You can redistribute it and/or modify it under either the terms of the GPL
+        (see COPYING.txt file), or the conditions below:
+        
+          1. You may make and give away verbatim copies of the source form of the
+             software without restriction, provided that you duplicate all of the
+             original copyright notices and associated disclaimers.
+        
+          2. You may modify your copy of the software in any way, provided that
+             you do at least ONE of the following:
+        
+             a) place your modifications in the Public Domain or otherwise
+                make them Freely Available, such as by posting said
+        	    modifications to Usenet or an equivalent medium, or by allowing
+        	    the author to include your modifications in the software.
+        
+             b) use the modified software only within your corporation or
+                organization.
+        
+             c) rename any non-standard executables so the names do not conflict
+        	    with standard executables, which must also be provided.
+        
+             d) make other distribution arrangements with the author.
+        
+          3. You may distribute the software in object code or executable
+             form, provided that you do at least ONE of the following:
+        
+             a) distribute the executables and library files of the software,
+        	    together with instructions (in the manual page or equivalent)
+        	    on where to get the original distribution.
+        
+             b) accompany the distribution with the machine-readable source of
+        	    the software.
+        
+             c) give non-standard executables non-standard names, with
+                instructions on where to get the original software distribution.
+        
+             d) make other distribution arrangements with the author.
+        
+          4. You may modify and include the part of the software into any other
+             software (possibly commercial).  But some files in the distribution
+             are not written by the author, so that they are not under this terms.
+        
+             They are gc.c(partly), utils.c(partly), regex.[ch], st.[ch] and some
+             files under the ./missing directory.  See each file for the copying
+             condition.
+        
+          5. The scripts and library files supplied as input to or produced as 
+             output from the software do not automatically fall under the
+             copyright of the software, but belong to whomever generated them, 
+             and may be sold commercially, and may be aggregated with this
+             software.
+        
+          6. THIS SOFTWARE IS PROVIDED "AS IS" AND WITHOUT ANY EXPRESS OR
+             IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
+             WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
+             PURPOSE.
+    
+    
+    PHP
+    <http://www.php.net/>
+    
+        Virtuoso may be linked against libphp5.so to provide a PHP hosting
+        environment.
+    
+        PHP is distributed under the terms of the PHP License:
+        <http://php.net/license/>
+
+        -------------------------------------------------------------------- 
+                          The PHP License, version 3.01
+        Copyright (c) 1999 - 2009 The PHP Group. All rights reserved.
+        -------------------------------------------------------------------- 
+        
+        Redistribution and use in source and binary forms, with or without
+        modification, is permitted provided that the following conditions
+        are met:
+        
+          1. Redistributions of source code must retain the above copyright
+             notice, this list of conditions and the following disclaimer.
+         
+          2. Redistributions in binary form must reproduce the above copyright
+             notice, this list of conditions and the following disclaimer in
+             the documentation and/or other materials provided with the
+             distribution.
+         
+          3. The name "PHP" must not be used to endorse or promote products
+             derived from this software without prior written permission. For
+             written permission, please contact group@php.net.
+          
+          4. Products derived from this software may not be called "PHP", nor
+             may "PHP" appear in their name, without prior written permission
+             from group@php.net.  You may indicate that your software works in
+             conjunction with PHP by saying "Foo for PHP" instead of calling
+             it "PHP Foo" or "phpfoo"
+         
+          5. The PHP Group may publish revised and/or new versions of the
+             license from time to time. Each version will be given a
+             distinguishing version number.
+             Once covered code has been published under a particular version
+             of the license, you may always continue to use it under the terms
+             of that version. You may also choose to use such covered code
+             under the terms of any subsequent version of the license
+             published by the PHP Group. No one other than the PHP Group has
+             the right to modify the terms applicable to covered code created
+             under this License.
+        
+          6. Redistributions of any form whatsoever must retain the following
+             acknowledgment:
+             "This product includes PHP software, freely available from
+             <http://www.php.net/software/>".
+        
+        THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND 
+        ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
+        THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A 
+        PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE PHP
+        DEVELOPMENT TEAM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, 
+        INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES 
+        (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 
+        SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+        HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+        STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+        ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+        OF THE POSSIBILITY OF SUCH DAMAGE.
+        
+        -------------------------------------------------------------------- 
+        
+        This software consists of voluntary contributions made by many
+        individuals on behalf of the PHP Group.
+        
+        The PHP Group can be contacted via Email at group@php.net.
+        
+        For more information on the PHP Group and the PHP project, 
+        please see <http://www.php.net>.
+        
+        PHP includes the Zend Engine, freely available at
+        <http://www.zend.com>.
+    
+    
+    Java
+    <http://www.java.com/>
+    
+        Virtuoso may be linked against libjvm.so to provide a Java hosting
+        environment.
+    
+        Use of this module requires a JVM to be installed such as one from
+        <http://www.java.com/>
+    
+    
+    Readline
+    <http://directory.fsf.org/readline.html>
+    
+        Virtuoso Open-Source Edition may be compiled against the readline
+        library.
+    
+        Readline is distributed under the terms of the GNU Public License
+        version 2 or later:
+        <http://www.gnu.org/licenses/info/GPLv2orLater.html>
+    
+        This library is not present in OpenLink Virtuoso (commercial edition).
+    
+    
+    OpenLDAP
+    <http://www.openldap.org/>
+    
+        Virtuoso may be linked against OpenLdap to provide dynamic
+        authentication lookups against existing LDAP servers.
+    
+        OpenLDAP is distributed under the terms of the OpenLDAP Public License:
+        <http://www.openldap.org/software/release/license.html>
+
+        The OpenLDAP Public License
+          Version 2.8, 17 August 2003
+        
+        Redistribution and use of this software and associated documentation
+        ("Software"), with or without modification, are permitted provided
+        that the following conditions are met:
+        
+        1. Redistributions in source form must retain copyright statements
+           and notices,
+        
+        2. Redistributions in binary form must reproduce applicable copyright
+           statements and notices, this list of conditions, and the following
+           disclaimer in the documentation and/or other materials provided
+           with the distribution, and
+        
+        3. Redistributions must contain a verbatim copy of this document.
+        
+        The OpenLDAP Foundation may revise this license from time to time.
+        Each revision is distinguished by a version number.  You may use
+        this Software under terms of this license revision or under the
+        terms of any subsequent revision of the license.
+        
+        THIS SOFTWARE IS PROVIDED BY THE OPENLDAP FOUNDATION AND ITS
+        CONTRIBUTORS ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
+        INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+        AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT
+        SHALL THE OPENLDAP FOUNDATION, ITS CONTRIBUTORS, OR THE AUTHOR(S)
+        OR OWNER(S) OF THE SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
+        INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+        BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+        LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
+        CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+        LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
+        ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+        POSSIBILITY OF SUCH DAMAGE.
+        
+        The names of the authors and copyright holders must not be used in
+        advertising or otherwise to promote the sale, use or other dealing
+        in this Software without specific, written prior permission.  Title
+        to copyright in this Software shall at all times remain with copyright
+        holders.
+        
+        OpenLDAP is a registered trademark of the OpenLDAP Foundation.
+        
+        Copyright 1999-2003 The OpenLDAP Foundation, Redwood City,
+        California, USA.  All Rights Reserved.  Permission to copy and
+        distribute verbatim copies of this document is granted.
+    
+    
+    GTK+
+    <http://www.gtk.org/>
+    
+        Parts of Virtuoso may be linked against the Gimp Toolkit graphical
+        library (GTK+).
+    
+        GTK+ is distributed under the terms of the GNU Lesser General Public
+        License (LGPL): <http://www.gnu.org/licenses/lgpl.html>.
+    
+    
+    WBXML2
+    <http://libwbxml.aymerick.com>
+    
+        Parts of Virtuoso may be linked against the WBXML2 library.
+    
+        WBXML2 is distributed under the terms of the GNU Lesser General Public
+        License (LGPL): <http://www.gnu.org/licenses/lgpl.html>.
+    
+    
+    Handle System Client Library
+    <http://handle.net>
+    
+       Parts of Virtuoso may be linked against the Handle System Client library.
+    
+       The Handle System Client Library is distributed under the terms of
+       the Handle.NET Software Client Library (VER. 5) -- C Version License:
+       <http://hdl.handle.net/4263537/5027>
+
+        HANDLE.NET(C) SOFTWARE
+        CLIENT LIBRARY (ver. 5) -- C Version
+        
+        1. This LICENSE AGREEMENT is between the Corporation for National Research
+        Initiatives, having an office at 1895 Preston White Drive, Reston,
+        VA 20191-5434 ("CNRI"), and the Individual or Organization ("Licensee") that
+        has installed or otherwise used the HANDLE.NET: CLIENT LIBRARY (ver. 5) --
+        C Version ("Software"). Licensee shall be deemed to have entered into,
+        signed and agreed to be bound by the terms and conditions of this License
+        Agreement upon such installation or other use.
+        
+        2. Subject to the terms and conditions of this License Agreement, CNRI hereby
+        grants Licensee a nonexclusive, worldwide, royalty-free license to install,
+        reproduce, modify, display and/or perform publicly, prepare derivative works,
+        and distribute the Software to the public, with or without modification, in
+        source or binary form, provided, however, that CNRI's copyright notice:
+        "Copyright (C) 2009 Corporation for National Research Initiatives;
+        All Rights Reserved" and the following text (omitting the quotes), are both
+        retained in the Software alone or in any derivative version prepared by
+        Licensee:
+        "HANDLE.NET: CLIENT LIBRARY (ver. 5) -- C Version is made available subject
+        to CNRI's License Agreement located at: hdl:4263537/5027; it may also be
+        obtained at: http://hdl.handle.net/4263537/5027."
+        
+        3. CNRI is making the Software available to Licensee on an "AS IS" basis.
+        CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF
+        EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND DISCLAIMS ANY REPRESENTATION
+        OR WARRANTY OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT
+        THE USE OF THE SOFTWARE WILL NOT INFRINGE ANY THIRD PARTY RIGHTS.
+        
+        4. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USER OF THS SOFTWARE FOR
+        ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS A RESULT OF
+        USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY DERIVATIVE THEREOF, EVEN
+        IF ADVISED OF THE POSSIBILITY THEREOF.
+        
+        5. This License Agreement will automatically terminate upon a material breach
+        of its terms and conditions.
+        
+        6. This License Agreement shall be governed by and interpreted in all respects
+        by the law of the State of Virginia, excluding Virginia's conflict of law
+        provisions. Nothing in this License Agreement shall be deemed to create any
+        relationship of agency, partnership, or joint venture between CNRI and
+        Licensee. This License Agreement does not grant permission to use CNRI
+        trademarks or trade name in a trademark sense to endorse or promote products
+        or services of Licensee, or any third party.
+    
+    
+    sysexits.h
+    
+       Copyright (c) 1987, 1993
+        The Regents of the University of California.  All rights reserved.
+       
+       Redistribution and use in source and binary forms, with or without
+       modification, are permitted provided that the following conditions
+       are met:
+       1. Redistributions of source code must retain the above copyright
+          notice, this list of conditions and the following disclaimer.
+       2. Redistributions in binary form must reproduce the above copyright
+          notice, this list of conditions and the following disclaimer in the
+          documentation and/or other materials provided with the distribution.
+       4. Neither the name of the University nor the names of its contributors
+          may be used to endorse or promote products derived from this software
+          without specific prior written permission.
+       
+       THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
+       ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+       IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+       ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
+       FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+       DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+       OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+       HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+       LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
+       OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+       SUCH DAMAGE.
+       
+        @(#)sysexits.h	8.1 (Berkeley) 6/2/93
+    
+    
+    
+    RedLand
+    
+       Copyright (C) 2000-2008, Openlink Software,  http://www.openlinksw.com/
+       
+       This package is Free Software and part of Redland http://librdf.org/
+       
+       It is licensed under the following three licenses as alternatives:
+         1. GNU Lesser General Public License (LGPL) V2.1 or any newer version
+         2. GNU General Public License (GPL) V2 or any newer version
+         3. Apache License, V2.0 or any newer version
+       
+       You may not use this file except in compliance with at least one of
+       the above three licenses.
+       
+       See LICENSE.html or LICENSE.txt at the top of this package for the
+       complete terms and further detail along with the license texts for
+       the licenses in COPYING.LIB, COPYING and LICENSE-2.0.txt respectively.
+    
+    
+    Apache JSP 2.0
+    
+      Copyright 2004 The Apache Software Foundation
+    
+      Licensed under the Apache License, Version 2.0 (the "License");
+      you may not use this file except in compliance with the License.
+      You may obtain a copy of the License at
+    
+          http://www.apache.org/licenses/LICENSE-2.0
+    
+      Unless required by applicable law or agreed to in writing, software
+      distributed under the License is distributed on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+      See the License for the specific language governing permissions and
+      limitations under the License.
+    
+    
+    Code Syntax Highlighter (with updated FSF address)
+    
+       Copyright (C) 2004 Dream Projections Inc.
+       
+       This program is free software; you can redistribute it and/or
+       modify it under the terms of the GNU General Public License
+       as published by the Free Software Foundation; either version 2
+       of the License, or (at your option) any later version.
+       
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+       
+       You should have received a copy of the GNU General Public License
+       along with this program; if not, write to the Free Software
+       Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+    
+    
+    iODBC driver manager (with updated FSF address)
+    
+       Copyright (C) 1999-2005 by OpenLink Software <iodbc@openlinksw.com>
+       All Rights Reserved.
+     
+       This software is released under the terms of either of the following
+       licenses:
+     
+           - GNU Library General Public License (see LICENSE.LGPL) 
+           - The BSD License (see LICENSE.BSD).
+     
+       While not mandated by the BSD license, any patches you make to the
+       iODBC source code may be contributed back into the iODBC project
+       at your discretion. Contributions will benefit the Open Source and
+       Data Access community as a whole. Submissions may be made at:
+     
+           http://www.iodbc.org
+     
+     
+       GNU Library Generic Public License Version 2
+       ============================================
+       This library is free software; you can redistribute it and/or
+       modify it under the terms of the GNU Library General Public
+       License as published by the Free Software Foundation; either
+       version 2 of the License, or (at your option) any later version.
+     
+       This library is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+       Library General Public License for more details.
+     
+       You should have received a copy of the GNU Library General Public
+       License along with this library; if not, write to the Free
+       Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+       MA 02110-1301, USA.
+     
+     
+       The BSD License
+       ===============
+       Redistribution and use in source and binary forms, with or without
+       modification, are permitted provided that the following conditions
+       are met:
+     
+       1. Redistributions of source code must retain the above copyright
+          notice, this list of conditions and the following disclaimer.
+       2. Redistributions in binary form must reproduce the above copyright
+          notice, this list of conditions and the following disclaimer in
+          the documentation and/or other materials provided with the
+          distribution.
+       3. Neither the name of OpenLink Software Inc. nor the names of its
+          contributors may be used to endorse or promote products derived
+          from this software without specific prior written permission.
+     
+       THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+       "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+       LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+       A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL OPENLINK OR
+       CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+       EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+       PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+       PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+       LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+       NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+       SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+    
+    
+    UUID library
+    
+       Copyright (C) 1996, 1997, 1998 Theodore Ts'o.
+      
+       %Begin-Header%
+       Redistribution and use in source and binary forms, with or without
+       modification, are permitted provided that the following conditions
+       are met:
+       1. Redistributions of source code must retain the above copyright
+          notice, and the entire permission notice in its entirety,
+          including the disclaimer of warranties.
+       2. Redistributions in binary form must reproduce the above copyright
+          notice, this list of conditions and the following disclaimer in the
+          documentation and/or other materials provided with the distribution.
+       3. The name of the author may not be used to endorse or promote
+          products derived from this software without specific prior
+          written permission.
+       
+       THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
+       WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+       OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE, ALL OF
+       WHICH ARE HEREBY DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE
+       LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+       CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
+       OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
+       BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+       LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+       (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
+       USE OF THIS SOFTWARE, EVEN IF NOT ADVISED OF THE POSSIBILITY OF SUCH
+       DAMAGE.
+       %End-Header%
+    
+    
+    CKEditor
+    
+       Software License Agreement
+       ==========================
+       
+       CKEditor - The text editor for Internet - http://ckeditor.com
+       Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
+       
+       Licensed under the terms of any of the following licenses at your
+       choice:
+       
+        - GNU General Public License Version 2 or later (the "GPL")
+          http://www.gnu.org/licenses/gpl.html
+          (See Appendix A)
+       
+        - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
+          http://www.gnu.org/licenses/lgpl.html
+          (See Appendix B)
+       
+        - Mozilla Public License Version 1.1 or later (the "MPL")
+          http://www.mozilla.org/MPL/MPL-1.1.html
+          (See Appendix C)
+       
+       You are not required to, but if you want to explicitly declare the
+       license you have chosen to be bound to when using, reproducing,
+       modifying and distributing this software, just include a text file
+       titled "legal.txt" in your version of this software, indicating your
+       license choice. In any case, your choice will not restrict any
+       recipient of your version of this software to use, reproduce, modify
+       and distribute this software under any of the above licenses.
+       
+       Sources of Intellectual Property Included in CKEditor
+       =====================================================
+       
+       Where not otherwise indicated, all CKEditor content is authored by
+       CKSource engineers and consists of CKSource-owned intellectual
+       property. In some specific instances, CKEditor will incorporate work
+       done by developers outside of CKSource with their express permission.
+       
+       YUI Test: At _source/tests/yuitest.js can be found part of the source
+       code of YUI, which is licensed under the terms of the BSD License
+       (http://developer.yahoo.com/yui/license.txt). YUI is Copyright (C)
+       2008, Yahoo! Inc.
+       
+       Trademarks
+       ==========
+       
+       CKEditor is a trademark of CKSource - Frederico Knabben. All other brand
+       and product names are trademarks, registered trademarks or service
+       marks of their respective holders.
+    
+    
+    Ajax Engine
+    
+       Software License Agreement (BSD License)
+       
+       Copyright (c) 2005-2009 by Matthias Hertel, http://www.mathertel.de/
+       
+       All rights reserved.
+       
+       Redistribution and use in source and binary forms, with or without
+       modification, are permitted provided that the following conditions are
+       met:
+       
+           * Redistributions of source code must retain the above copyright
+             notice, this list of conditions and the following disclaimer.
+           * Redistributions in binary form must reproduce the above copyright
+             notice, this list of conditions and the following disclaimer in
+             the documentation and/or other materials provided with the
+             distribution.
+           * Neither the name of the copyright owners nor the names of its
+             contributors may be used to endorse or promote products derived
+             from this software without specific prior written permission.
+       
+       THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+       "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+       LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+       PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
+       OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+       EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+       PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+       PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+       LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+       NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+       SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+    
+    
+    WebFX
+    
+                        Copyright (c) 1999 - 2005 Erik Arvidsson                   
+       
+       This software is provided "as is", without warranty of any kind, express or 
+       implied, including  but not limited  to the warranties of  merchantability, 
+       fitness for a particular purpose and noninfringement. In no event shall the 
+       authors or  copyright  holders be  liable for any claim,  damages or  other 
+       liability, whether  in an  action of  contract, tort  or otherwise, arising 
+       from,  out of  or in  connection with  the software or  the  use  or  other 
+       dealings in the software.                                                   
+       
+       This  software is  available under the  three different licenses  mentioned 
+       below.  To use this software you must chose, and qualify, for one of those. 
+
+       The WebFX Non-Commercial License          http://webfx.eae.net/license.html 
+       Permits  anyone the right to use the  software in a  non-commercial context 
+       free of charge.                                                             
+
+         The WebFX Non Commercial license only applies if all of the following
+         statements are true and not broken.
+         
+            1. The header in the P/C (1) may not be removed or modified.
+            2. The P/C is used in a non-commercial or non-profit environment (2).
+                  1. No money is put into the environment except the cost of the
+                     web space and domain name.
+                     You may of course also put money into hardware and software
+                     that run the environment.
+                     This means that no one can get paid to maintain the
+                     environment.
+                     No company, organization or institute can back up the
+                     environment financially. Non-profit organizations (3) are
+                     excluded.
+                  2. The environment that the P/C is used in cannot make any
+                     profit.
+                     This means that you cannot sell anything, directly or
+                     indirectly using the environment.
+                     You cannot use the P/C in an environment that act as a
+                     promotion/commercial for a commercial product.
+                     Commercial banners can be used as long as the income from
+                     these does not exceed the cost to maintain the environment.
+                     Donations are allowed.
+            3. The P/C may be freely modified as long as 1 - 2 are not broken.
+               Any work based on the P/C also fall under this license.
+               This means that if you base any work on the P/C then the new
+               product cannot be used commercially.
+            4. The P/C may be freely distributed as long as 1 - 3 are not
+               broken.
+               This means that the P/C cannot be redistributed to any third
+               commercial part because this would break 2.
+               This also means that if the P/C is included in a widget pack
+               (component library) then the widget pack (or parts of it that
+               uses the P/C) may not be used in a commercial environment.
+         
+         (1) P/C - product/component provided by WebFX.
+         (2) Environment - Program that uses the product/component. This
+             includes web sites, intranets and offline programs.
+         (3) Non-profit organization - a non-profit organization is a
+             organization that has no intention of making money in any way and
+             all work is done for charity.
+
+       The WebFX Commercial license           http://webfx.eae.net/commercial.html 
+       Permits the  license holder the right to use  the software in a  commercial 
+       context. Such license must be specifically obtained, however it's valid for 
+       any number of  implementations of the licensed software.                    
+
+         The WebFX Commercial License permits the inclusion of the products for
+         which a license has been obtained (hereby referred to as the products)
+         in any current or future product produced by the license holding
+         corporation (hereby referred to as the corporation) with the exception
+         of the following product-types:
+         
+             * Individual or combined sale of the products as a stand-alone
+               offer.
+             * Individual or combined sale of the products as part of a
+               components package or web development aid.
+         
+         The products may be included simply as enhancements to another product.
+         The products may be included simply as a part of another product. The
+         corporation may never profit directly from sale of the products, only
+         from the application they are included in. All intellectual property
+         rights and source code right will remain in the possession of WebFX and
+         the affected author.
+         
+         The products may not be resold. Neither may products deviated from the
+         original code, or products produced by reverse engineering the original
+         code, be sold or in any other way be profitable for the corporation.
+         If The products are included in a service offered by the corporation a
+         license must be obtained for each company the service is sold to.
+         
+         The license is valid only for the products and only for the purchased
+         version of those, with the following exceptions.
+         
+             * Minor updates.
+             * Major updates released within one (1) month of the purchase.
+             * The product has been discontinued and replaced by another product
+               within one (1) month of the purchase.
+         
+         A minor update consists of bug fixes and patches that may include some
+         enhancements and small, added features to the product. Minor updates
+         are signified by minor version number changes. For example, a minor
+         update from version 3.0 would be 3.1 or 3.01).
+         
+         A major upgrade consists of major enhancements and new features added
+         to the product. Major upgrades are signified by a major version number
+         change. For example, a major upgrade from version 3.0 would be 4.0.
+         
+         The corporation is entitled to a free update, if one or more of the
+         above criteria are met. Updates not addressed above requires a new
+         license, which can be purchased at rebated price if the old one is
+         revoked. 
+
+       GPL - The GNU General Public License    http://www.gnu.org/licenses/gpl.txt 
+       Permits anyone the right to use and modify the software without limitations 
+       as long as proper  credits are given  and the original  and modified source 
+       code are included. Requires  that the final product, software derivate from 
+       the original  source or any  software  utilizing a GPL  component, such  as 
+       this, is also licensed under the GPL license.                               
+    
+    
+    Berlin SPARQL Benchmark
+    
+       Copyright (C) 2000-2008 Hewlett-Packard Development Company, LP
+       Copyright (C) 2008 Andreas Schultz
+       
+       This program is free software: you can redistribute it and/or modify
+       it under the terms of the GNU General Public License as published by
+       the Free Software Foundation, either version 3 of the License, or
+       any later version.
+    
+       This program is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+       GNU General Public License for more details.
+    
+       You should have received a copy of the GNU General Public License
+       along with this program.  If not, see <http://www.gnu.org/licenses/>.
+    
+    
+    JavaScript RSA MD5
+    
+       A JavaScript implementation of the RSA Data Security, Inc. MD5 Message
+       Digest Algorithm, as defined in RFC 1321.
+       Version 2.1 Copyright (C) Paul Johnston 1999 - 2002.
+       Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
+       Distributed under the BSD License
+
+       License to copy and use this software is granted provided that it is
+       identified as the "RSA Data Security, Inc. MD5 Message-Digest Algorithm"
+       in all material mentioning or referencing this software or this function.
+       
+       License is also granted to make and use derivative works provided that
+       such works are identified as "derived from the RSA Data Security, Inc.
+       MD5 Message-Digest Algorithm" in all material mentioning or referencing
+       the derived work.
+       
+       RSA Data Security, Inc. makes no representations concerning either the
+       merchantability of this software or the suitability of this software for
+       any particular purpose. It is provided "as is" without express or
+       implied warranty of any kind.
+       
+       These notices must be retained in any copies of any part of this
+       documentation and/or software.
+
+       Copyright (c) 1998 - 2009, Paul Johnston & Contributors
+       All rights reserved.
+       
+       Redistribution and use in source and binary forms, with or without
+       modification, are permitted provided that the following conditions are
+       met:
+       
+       Redistributions of source code must retain the above copyright notice,
+       this list of conditions and the following disclaimer. Redistributions in
+       binary form must reproduce the above copyright notice, this list of
+       conditions and the following disclaimer in the documentation and/or
+       other materials provided with the distribution.
+       
+       Neither the name of the author nor the names of its contributors may be
+       used to endorse or promote products derived from this software without
+       specific prior written permission.
+       
+       THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+       "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
+       TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+       PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
+       OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+       EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+       PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+       PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+       LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
+       NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+       SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+    
+    
+    mm_menu
+    
+       mm_menu 20MAR2002 Version 6.0
+       Andy Finnell, March 2002
+       Copyright (c) 2000-2002 Macromedia, Inc.
+      
+       based on menu.js
+       by gary smith, July 1997
+       Copyright (c) 1997-1999 Netscape Communications Corp.
+      
+       Netscape grants you a royalty free license to use or modify this
+       software provided that this copyright notice appears on all copies.
+       This software is provided "AS IS," without a warranty of any kind.
+    
+    DocBk XML
+    
+       DocBk XML V3.1.7 DTD
+       Copyright (C) 1998, 1999 Norman Walsh
+       http://nwalsh.com/docbook/xml/
+       
+       You may distribute this DTD under the same terms as DocBook.
+       
+       Please direct all questions and comments about this DTD to
+       Norman Walsh, <ndw@nwalsh.com>.
+       
+       This DTD is based on the DocBook V3.1 DTD from OASIS:
+       
+         [DocBook is] Copyright 1992, 1993, 1994, 1995, 1996, 1998,
+         1999 HaL Computer Systems, Inc., O'Reilly & Associates, Inc.,
+         ArborText, Inc., Fujitsu Software Corporation, and the
+         Organization for the Advancement of Structured Information
+         Standards (OASIS).
+       
+         Permission to use, copy, modify and distribute the DocBook
+         DTD and its accompanying documentation for any purpose and
+         without fee is hereby granted in perpetuity, provided that
+         the above copyright notice and this paragraph appear in all
+         copies.  The copyright holders make no representation about
+         the suitability of the DTD for any purpose.  It is provided
+         "as is" without expressed or implied warranty.
+    
+    
+    MD5 in Java JDK Beta-2 (with updated FSF address)
+    
+       MD5 in Java JDK Beta-2
+       written Santeri Paavolainen, Helsinki Finland 1996
+       (c) Santeri Paavolainen, Helsinki Finland 1996
+      
+       This library is free software; you can redistribute it and/or
+       modify it under the terms of the GNU Library General Public
+       License as published by the Free Software Foundation; either
+       version 2 of the License, or (at your option) any later version.
+      
+       This library is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+       Library General Public License for more details.
+      
+       You should have received a copy of the GNU Library General Public
+       License along with this library; if not, write to the Free
+       Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
+       MA 02110-1301, USA.
+      
+       See http://www.cs.hut.fi/~santtu/java/ for more information on this
+       class.
+      
+       This is rather straight re-implementation of the reference implementation
+       given in RFC1321 by RSA.
+      
+       Passes MD5 test suite as defined in RFC1321.
+      
+      
+       This Java class has been derived from the RSA Data Security, Inc. MD5
+       Message-Digest Algorithm and its reference implementation.
+    
+    
+    Reentrent string tokenizer - Generic version (with updated FSF address)
+    
+       Copyright (C) 1991, 1996 Free Software Foundation, Inc.
+       This file is part of the GNU C Library.
+       
+       The GNU C Library is free software; you can redistribute it and/or
+       modify it under the terms of the GNU Library General Public License as
+       published by the Free Software Foundation; either version 2 of the
+       License, or (at your option) any later version.
+       
+       The GNU C Library is distributed in the hope that it will be useful,
+       but WITHOUT ANY WARRANTY; without even the implied warranty of
+       MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+       Library General Public License for more details.
+       
+       You should have received a copy of the GNU Library General Public
+       License along with the GNU C Library; see the file COPYING.LIB.  If
+       not, write to the Free Software Foundation, Inc.,
+       51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
+    
+    
+    OpenLayers Map Viewer Library
+    
+       Copyright 2005-2008 MetaCarta, Inc., released under the Clear BSD license.
+       Please see http://svn.openlayers.org/trunk/openlayers/license.txt
+       for the full text of the license.
+       
+       Includes compressed code under the following licenses:
+       
+       (For uncompressed versions of the code used please see the
+       OpenLayers SVN repository: <http://openlayers.org/>)
+       
+       
+       Contains portions of Prototype.js:
+       
+       Prototype JavaScript framework, version 1.4.0
+        (c) 2005 Sam Stephenson <sam@conio.net>
+       
+        Prototype is freely distributable under the terms of an MIT-style license.
+        For details, see the Prototype web site: http://prototype.conio.net/
+       
+       
+       Contains portions of Rico <http://openrico.org/>
+       
+       Copyright 2005 Sabre Airline Solutions
+       
+       Licensed under the Apache License, Version 2.0 (the "License"); you
+       may not use this file except in compliance with the License. You
+       may obtain a copy of the License at
+       
+              http://www.apache.org/licenses/LICENSE-2.0
+       
+       Unless required by applicable law or agreed to in writing, software
+       distributed under the License is distributed on an "AS IS" BASIS,
+       WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+       implied. See the License for the specific language governing
+       permissions and limitations under the License.
+
+
+    MD5 and SHA routines, Johnston
+
+       MD5 and SHA routines, along with their supplemental sub-routines are
+       Copyright (C) Paul Johnston 1999 - 2002.
+       Other contributors: Greg Holt, Andrew Kepert, Ydnar, Lostinet
+       Distributed under the BSD License
+
+
+The Debian packaging is:
+
+    Copyright (C) 2009-2010 Obey Arthur Liu <arthur@milliways.fr>
+    Copyright (C) 2009-2010 Will Daniels <mail@willdaniels.co.uk>
+    Copyright (C) 2009 Olivier Berger <olivier.berger@it-sudparis.eu>
+    Copyright (C) 2008 Miriam Ruiz <little_miry@yahoo.es>
+
+    and is licensed under the GPL version 3,
+    see `/usr/share/common-licenses/GPL-3'.
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-vad-isparql.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-vad-isparql.install
@@ -0,0 +1 @@
+usr/share/virtuoso/vad/isparql_dav.vad
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-5.5.pc
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-5.5.pc
@@ -0,0 +1,8 @@
+prefix=/usr
+exec_prefix=${prefix}
+libdir=${prefix}/lib/cli/virtuoso-5.5
+
+Name: OpenLink.Data
+Description: Virtuoso .NET Data Connector
+Version: 5.5.3015.1
+Libs: -r:${libdir}/OpenLink.Data.Virtuoso.dll
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1.default
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1.default
@@ -0,0 +1,15 @@
+# Defaults for the virtuoso initscript, from virtuoso-opensource
+
+# This is the directory from where the database files are
+# placed, defined by a relative path in the configfile
+DBPATH=/var/lib/virtuoso-opensource-6.1/db
+
+# Please edit /etc/virtuoso-opensource-6.1/virtuoso.ini first
+# Removing the +wait breaks the init script!
+DAEMON_OPTS="+wait +configfile /etc/virtuoso-opensource-6.1/virtuoso.ini"
+
+# Remember to change passwords right after startup.
+# Read README.Debian for information on how to do so.
+
+# Set to 'yes' to start virtuoso, set to 'no' otherwise
+RUN=yes
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/libvirtuoso5.5-cil.installcligac
+++ virtuoso-opensource-6.1.2+dfsg1/debian/libvirtuoso5.5-cil.installcligac
@@ -0,0 +1 @@
+/usr/lib/cli/virtuoso-5.5/OpenLink.Data.Virtuoso.dll
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/README.Debian
+++ virtuoso-opensource-6.1.2+dfsg1/debian/README.Debian
@@ -0,0 +1,60 @@
+         Debian Readme for
+OpenLink Virtuoso Open-Source Edition
+=====================================
+
+0) Debian packaging notes
+   ----------------------
+
+Are notably not available:
+ * PHP bindings
+ * Java-based bindings (sesame, jena...)
+ * Tutorial binaries
+
+1) Initial setup
+   -------------
+
+Edit /etc/default/virtuoso to make virtuoso run.
+
+2) Accounts
+   --------
+
+A few accounts are pre-defined on first startup:
+
++------+------+--------------------------------------------------------------+
+| User | Pass | Usage                                                        |
++------+------+--------------------------------------------------------------+
+| dba  | dba  | Default Database Administrator account.                      |
+| dav  | dav  | WebDAV Administrator account.                                |
+| vad  | vad  | WebDAV account for internal use in VAD (disabled by default) |
+| demo | demo | Default demo user for the demo database.                     |
+| soap | soap | SQL User for demonstrating SOAP services.                    |
+| fori | fori | SQL user account for 'Forums' tutorial in the Demo database. |
++------+------+--------------------------------------------------------------+
+
+It is therefore important to change these passwords immediately after the
+installation.
+
+Debconf prompts will permit to change the default password. Otherwise, use the
+following instructions.
+
+The database password can be changed using the Interactive SQL utility
+(/usr/bin/isql-vt). The ISQL interface will try to login with the default
+user and password if none are passed as parameters. To change the current
+user's password, use the following statement:
+
+set password <old password> <new password>
+
+Note that the password is an identifier, so take care to use proper quotation.
+
+You can also use the graphical Virtuoso Administration Interface to administer
+Virtuoso database users.
+
+The other accounts must have their passwords set in a different way. Either use
+the GUI in Administration Interface at http://127.0.0.1:8890/conductor/ under
+"WebDAV Administration / WebDAV services / Users Administrator" or use the SQL
+statement:
+
+update WS.WS.SYS_DAV_USER set U_PASSWORD='<new password>'
+where U_NAME='<username>'
+    
+ -- Obey Arthur Liu <arthur@milliways.fr>  Tue, 22 Dec 2009 16:49:42 +0100
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-vad-demo.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-vad-demo.install
@@ -0,0 +1 @@
+usr/share/virtuoso/vad/demo_dav.vad
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1.templates
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1.templates
@@ -0,0 +1,113 @@
+# These templates have been reviewed by the debian-l10n-english
+# team
+#
+# If modifications/additions/rewording are needed, please ask
+# debian-l10n-english@lists.debian.org for advice.
+#
+# Even minor modifications require translation updates and such
+# changes should be coordinated with translators and reviewers.
+
+Template: virtuoso-opensource-6.1/dba-password
+Type: password
+_Description: Password for DBA and DAV users:
+ Following installation, users and passwords in Virtuoso can be managed
+ using the command line tools (see the full documentation) or via
+ the Conductor web application which is installed by default at
+ http://localhost:8890/conductor.
+ .
+ Two users ("dba" and "dav") are created by default, with administrative
+ access to Virtuoso. Secure passwords must be chosen for these users
+ in order to complete the installation.
+ .
+ If you leave this blank, the daemon will be disabled
+ unless a non-default password already exists.
+
+Template: virtuoso-opensource-6.1/dba-password-again
+Type: password
+_Description: Administrative users password confirmation:
+
+Template: virtuoso-opensource-6.1/password-mismatch
+Type: error
+_Description: Password mismatch
+ The two passwords you entered were not the same. Please enter a
+ password again.
+
+Template: virtuoso-opensource-6.1/note-disabled
+Type: note
+_Description: No initial password set, daemon disabled
+ For security reasons, the default Virtuoso instance is disabled because
+ no administration password was provided.
+ .
+ You can enable the daemon manually by setting RUN to "yes" in
+ /etc/default/virtuoso-opensource-6.1. The default DBA user
+ password will then be "dba".
+
+Template: virtuoso-opensource-6.1/error-setting-password
+Type: error
+_Description: Unable to set password for the Virtuoso DBA user
+ An error occurred while setting the password for the Virtuoso
+ administrative user. This may have happened because the account
+ already has a password, or because of a communication problem with
+ the Virtuoso server.
+ .
+ If the database already existed then it will have retained the original
+ password. If there was some other problem then the default password
+ ("dba") is used.
+ .
+ It is recommended to check the passwords for the users "dba" and "dav"
+ immediately after installation. 
+
+Template: virtuoso-opensource-6.1/check-remove-databases
+Type: boolean
+Default: false
+_Description: Remove all Virtuoso databases?
+ The /var/lib/virtuoso directory which contains the Virtuoso databases is
+ about to be removed.
+ .
+ If you're removing the Virtuoso package in order to later install a more
+ recent version, or if a different Virtuoso package is already using it,
+ you can choose to keep databases.
+
+Template: virtuoso-opensource-6.1/http-server-port
+Type: string
+Default: 8890
+_Description: HTTP server port:
+ Virtuoso provides a web server capable of hosting HTML and VSP pages
+ (with optional support for other languages). If you are installing this
+ instance as a public web server directly on the Internet, you probably want
+ to choose 80 as web server port.
+ .
+ Please note that the default web server root directory is /var/lib/virtuoso/vsp and will be
+ empty unless you also install the package containing the standard Virtuoso
+ start page.
+
+Template: virtuoso-opensource-6.1/db-server-port
+Type: string
+Default: 1111
+_Description: Database server port:
+ You may change here the port on which the Virtuoso database server will
+ listen for connections.
+ .
+ Modifying this default value can improve security on servers that
+ might be targets for unauthorized intrusion.         
+
+Template: virtuoso-opensource-6.1/register-odbc-dsn
+Type: boolean
+Default: false
+_Description: Register an ODBC system DSN for Virtuoso?
+ An ODBC manager (unixodbc or iODBC) is already installed on this system,
+ and the Virtuoso ODBC driver is installed.
+ .
+ The default Virtuoso instance can be automatically added to the list of
+ available System Data Sources (and automatically deleted from the list
+ when this package is removed).
+ .
+ If you choose this option, the DSN will be named "VOS". User and
+ password details are omitted from the DSN for security reasons.
+
+Template: virtuoso-opensource/primary-server
+Type: select
+Choices: ${choices}
+_Description: Default Virtuoso server package:
+ Please choose the version of virtuoso-server that will be linked to by the
+ default (unversioned) names, for init scripts and client tools.
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/gbp.conf
+++ virtuoso-opensource-6.1.2+dfsg1/debian/gbp.conf
@@ -0,0 +1,29 @@
+[DEFAULT]
+pristine-tar = True
+filter-pristine-tar = True
+filter = [
+	"appsrc/ODS-Gallery/www-root/js/slideshow.js",
+	"debian/*",
+	"binsrc/hibernate/*.jar",
+	"binsrc/jena/*.jar",
+	"binsrc/oat/toolkit/webclip.js",
+	"binsrc/sesame/*.jar",
+	"binsrc/sesame2/*.jar",
+	"binsrc/sesame3/*.jar",
+	"binsrc/tutorial/bin/*.dll",
+	"binsrc/tutorial/hosting/ho_s_2/*.dll",
+	"binsrc/tutorial/hosting/ho_s_3/*.dll",
+	"binsrc/tutorial/hosting/ho_s_4/*.dll",
+	"binsrc/tutorial/hosting/ho_s_5/*.dll",
+	"binsrc/tutorial/hosting/ho_s_10/*.dll",
+	"binsrc/tutorial/hosting/ho_s_11/*.dll",
+	"binsrc/tutorial/hosting/ho_s_12/bin/*.dll",
+	"binsrc/tutorial/hosting/ho_s_14/*.dll",
+	"binsrc/tutorial/hosting/ho_s_15/COM/VirtCOMServer/*.dll",
+	"binsrc/tutorial/hosting/ho_s_15/COM/VirtCOMServer/Debug/*.dll",
+	"binsrc/tutorial/services/so_s_32/*.dll",
+	"binsrc/vsp/soapdemo/*.jar",
+	"docsrc/stylesheets/docbook",
+	"libsrc/JDBCDriverType4/*.jar",
+	"libsrc/util/pcrelib",
+	]
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/inifile.1.xml
+++ virtuoso-opensource-6.1.2+dfsg1/debian/inifile.1.xml
@@ -0,0 +1,152 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+
+  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
+  <!ENTITY dhfirstname "Obey Arthur">
+  <!ENTITY dhsurname   "Liu">
+  <!-- dhusername could also be set to "&firstname; &surname;". -->
+  <!ENTITY dhusername  "Obey Arthur Liu">
+  <!ENTITY dhemail     "arthur@milliways.fr">
+  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
+       allowed: see man(7), man(1) and
+       http://www.tldp.org/HOWTO/Man-Page/q2.html. -->
+  <!ENTITY dhsection   "1">
+  <!-- TITLE should be something like "User commands" or similar (see
+       http://www.tldp.org/HOWTO/Man-Page/q2.html). -->
+  <!ENTITY dhtitle     "virtuoso-opensource User Manual">
+  <!ENTITY dhucpackage "INIFILE">
+  <!ENTITY dhpackage   "inifile">
+]>
+
+<refentry>
+  <refentryinfo>
+    <title>&dhtitle;</title>
+    <productname>&dhpackage;</productname>
+    <authorgroup>
+      <author>
+       <firstname>&dhfirstname;</firstname>
+        <surname>&dhsurname;</surname>
+        <contrib>Wrote this manpage for the Debian system.</contrib>
+        <address>
+          <email>&dhemail;</email>
+        </address>
+      </author>
+    </authorgroup>
+    <copyright>
+      <year>2009</year>
+      <holder>&dhusername;</holder>
+    </copyright>
+    <legalnotice>
+      <para>This manual page was written for the Debian system
+        (and may be used by others).</para>
+      <para>Permission is granted to copy, distribute and/or modify this
+        document under the terms of the GNU General Public License,
+        Version 2 or (at your option) any later version published by
+        the Free Software Foundation.</para>
+      <para>On Debian systems, the complete text of the GNU General Public
+        License can be found in
+        <filename>/usr/share/common-licenses/GPL</filename>.</para>
+    </legalnotice>
+  </refentryinfo>
+  <refmeta>
+    <refentrytitle>&dhucpackage;</refentrytitle>
+    <manvolnum>&dhsection;</manvolnum>
+  </refmeta>
+  <refnamediv>
+    <refname>&dhpackage;</refname>
+    <refpurpose>OpenLink Virtuoso Opensource ini File Editor</refpurpose>
+  </refnamediv>
+  <refsynopsisdiv>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+      <!-- These are several examples, how syntaxes could look -->
+      <arg choice="opt"><option>-fcnskv</option></arg>
+      <arg choice="opt"><option>+inifile <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+create</option></arg>
+      <arg choice="opt"><option>+nocreate</option></arg>
+      <arg choice="opt"><option>+section <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+key <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+value <parameter>arg</parameter></option></arg>
+    </cmdsynopsis>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+      <!-- Normally the help and version options make the programs stop
+           right after outputting the requested information. -->
+      <arg choice="opt"><option>+help</option></arg>
+    </cmdsynopsis>
+  </refsynopsisdiv>
+  <refsect1 id="description">
+    <title>DESCRIPTION</title>
+    <para>This manual page documents briefly the
+      <command>&dhpackage;</command> command.</para>
+    <para>This manual page was written for the Debian distribution
+      because the original program does not have a manual page.
+      Instead, it has documentation in the 'doc' VAD package.</para>
+    <para><command>&dhpackage;</command> is the OpenLink Virtuoso server</para>
+  </refsect1>
+  <refsect1 id="options">
+    <title>OPTIONS</title>
+    <para>A summary of options is included below.  For a complete description,
+          see the 'doc' VAD package.</para>
+    <variablelist>
+      <!-- Use the variablelist.term.separator and the
+           variablelist.term.break.after parameters to
+           control the term elements. -->
+      <varlistentry>
+        <term><option>+inifile</option></term>
+        <listitem>
+          <para>use this ini file</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+create</option></term>
+        <listitem>
+          <para>create the ini file if it does not exist (default)</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+nocreate</option></term>
+        <listitem>
+          <para>do not create the ini file if it does not exist</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+section</option></term>
+        <listitem>
+          <para>name of the section</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+key</option></term>
+        <listitem>
+          <para>name of the key</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+value</option></term>
+        <listitem>
+          <para>the value you want to write</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+  </refsect1>
+  <refsect1 id="files">
+    <title>FILES</title>
+    <variablelist>
+      <varlistentry>
+        <term><filename>/etc/virtuoso/virtuoso.ini</filename></term>
+        <listitem>
+          <para>The configuration file to control the behaviour of
+          the main instance of <application>&dhpackage;</application>.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+  </refsect1>
+  <refsect1 id="see_also">
+    <title>SEE ALSO</title>
+    <!-- In alpabetical order. -->
+    <para>The programs are documented fully by the 'doc' VAD package.</para>
+  </refsect1>
+</refentry>
+
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/libvirtodbc0.config
+++ virtuoso-opensource-6.1.2+dfsg1/debian/libvirtodbc0.config
@@ -0,0 +1,18 @@
+#!/bin/bash
+
+set -e
+
+. /usr/share/debconf/confmodule
+
+if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi
+${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*" 1>&2 }
+
+if [ -e /usr/bin/odbcinst ]; then
+	db_title "Virtuoso ODBC Setup"
+
+	# default to true since odbcinst is available
+	db_set libvirtodbc0/register-odbc-driver "true" || true
+	db_input medium libvirtodbc0/register-odbc-driver || true
+	db_go
+fi
+exit 0
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/control
+++ virtuoso-opensource-6.1.2+dfsg1/debian/control
@@ -0,0 +1,280 @@
+Source: virtuoso-opensource
+Section: database
+Priority: optional
+Maintainer: Obey Arthur Liu <arthur@milliways.fr>
+Standards-Version: 3.9.0
+Homepage: http://virtuoso.openlinksw.com/wiki/main/Main/
+Vcs-Browser: https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi?p=pkg-virtuoso/pkg-virtuoso.git
+Vcs-Git: git://scm.alioth.debian.org/git/pkg-virtuoso/pkg-virtuoso.git
+Build-Depends: cdbs, debhelper (>= 7), quilt, autotools-dev, autoconf (>=2.57),
+ automake (>=1.10), libtool (>=1.5.16), flex (>=2.5.4), bison (>=1.35),
+ gperf (>=2.7.2), gawk (>=3.1.1), m4 (>=1.4.1), make (>=3.79.1),
+ libssl-dev (>=0.9.7), libreadline5-dev, zlib1g-dev, libxml2-dev, libpcre3-dev,
+ net-tools,
+ mono-gmcs (>= 1.0) [i386 kfreebsd-i386 powerpc amd64 kfreebsd-amd64 ia64 arm armeb armel sparc s390],
+ cli-common-dev (>= 0.4.4) [i386 kfreebsd-i386 powerpc amd64 kfreebsd-amd64 ia64 arm armeb armel sparc s390],
+ libmono-corlib2.0-cil (>= 1.2.6) [i386 kfreebsd-i386 powerpc amd64 kfreebsd-amd64 ia64 arm armeb armel sparc s390],
+ libmono-system-data2.0-cil (>= 1.0) [i386 kfreebsd-i386 powerpc amd64 kfreebsd-amd64 ia64 arm armeb armel sparc s390],
+ libmono-system2.0-cil (>= 1.2.6) [i386 kfreebsd-i386 powerpc amd64 kfreebsd-amd64 ia64 arm armeb armel sparc s390],
+ docbook2x, po-debconf, libwbxml2-dev, libmagickwand-dev
+
+Package: virtuoso-opensource
+Architecture: all
+Depends: virtuoso-opensource-6.1, ${misc:Depends}
+Recommends: virtuoso-server, virtuoso-vsp-startpage, virtuoso-vad-conductor
+Suggests: virtuoso-vad-doc, virtuoso-vad-demo, virtuoso-vad-tutorial,
+ virtuoso-vad-rdfmappers, virtuoso-vad-sparqldemo, virtuoso-vad-syncml,
+ virtuoso-vad-bpel, virtuoso-vad-isparql, virtuoso-vad-ods
+Description: high-performance database
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ Virtuoso supports SPARQL embedded into SQL for querying RDF data stored
+ in its database. SPARQL benefits from low-level support in the engine
+ itself, such as SPARQL-aware type-casting rules and a dedicated IRI data
+ type.
+ .
+ Install this metapackage for the full suite of packages that make up
+ Virtuoso OSE ("Open-Source Edition").
+
+Package: virtuoso-server
+Architecture: all
+Depends: virtuoso-opensource-6.1, ${misc:Depends}
+Description: high-performance database - server dependency package
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This is an empty package depending on the current "best" version of the
+ Virtuoso server framework, as recommended by the maintainers (currently
+ virtuoso-opensource-6.1). Install this package if in doubt about
+ which version you need.
+
+Package: virtuoso-minimal
+Architecture: all
+Depends: virtuoso-opensource-6.1-bin, libvirtodbc0, ${misc:Depends}
+Description: high-performance database - core dependency package
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This is an empty package depending on the current "best" version of the
+ core Virtuoso binaries, as recommended by the maintainers (currently
+ virtuoso-opensource-6.1-bin). This should usually be depended on by
+ all packages which use Virtuoso as an embedded database.
+
+Package: virtuoso-opensource-6.1
+Architecture: any
+Depends: virtuoso-opensource-6.1-common (= ${binary:Version}),
+ virtuoso-opensource-6.1-bin (= ${binary:Version}),
+ libvirtodbc0 (= ${binary:Version}), ${shlibs:Depends}, ${misc:Depends}
+Description: high-performance database - support files
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package provides the Virtuoso server framework.
+
+Package: virtuoso-opensource-6.1-common
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: high-performance database - common files
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains files common to all versions of Virtuoso.
+
+Package: virtuoso-opensource-6.1-bin
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: high-performance database - binaries
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains the core Virtuoso binaries.
+
+Package: virtuoso-vsp-startpage
+Architecture: all
+Depends: ${misc:Depends}, virtuoso-opensource
+Description: high-performance database - web interface files
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains the files for Virtuoso's web interface.
+
+Package: virtuoso-vad-conductor
+Architecture: all
+Depends: ${misc:Depends}, virtuoso-opensource
+Description: high-performance database - conductor module
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains the Virtuoso Application Distribution module
+ for the administration interface.
+
+Package: virtuoso-vad-doc
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, virtuoso-opensource
+Description: high-performance database - documentation module
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains the Virtuoso Application Distribution module
+ for the documentation.
+
+Package: virtuoso-vad-demo
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, virtuoso-opensource
+Description: high-performance database - demo module
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains the Virtuoso Application Distribution module
+ for the demonstration application.
+
+Package: virtuoso-vad-tutorial
+Section: doc
+Architecture: all
+Depends: ${misc:Depends}, virtuoso-opensource
+Description: high-performance database - tutorial module
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains the Virtuoso Application Distribution module
+ for the tutorial application.
+
+Package: virtuoso-vad-rdfmappers
+Architecture: all
+Depends: ${misc:Depends}, virtuoso-opensource
+Description: high-performance database - RDF mappers module
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains the Virtuoso Application Distribution module
+ for the RDF mappers application.
+
+Package: virtuoso-vad-sparqldemo
+Architecture: all
+Depends: ${misc:Depends}, virtuoso-opensource
+Description: high-performance database - SPARQL demo module
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains the Virtuoso Application Distribution module
+ for the SPARQL demo application.
+
+Package: virtuoso-vad-syncml
+Architecture: all
+Depends: ${misc:Depends}, virtuoso-opensource
+Description: high-performance database - SyncML module
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains the Virtuoso Application Distribution module
+ for Synchronization Markup Language support.
+
+Package: virtuoso-vad-bpel
+Architecture: all
+Depends: ${misc:Depends}, virtuoso-opensource
+Description: high-performance database - BPEL module
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains the Virtuoso Application Distribution module
+ for Business Process Execution Language support.
+
+Package: virtuoso-vad-isparql
+Architecture: all
+Depends: ${misc:Depends}, virtuoso-opensource
+Description: high-performance database - iSPARQL module
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains the Virtuoso Application Distribution module
+ for iSPARQL support.
+
+Package: virtuoso-vad-ods
+Architecture: all
+Depends: ${misc:Depends}, virtuoso-opensource
+Description: high-performance database - Open Data Spaces module
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains the Virtuoso Application Distribution module
+ for Open Data Spaces support.
+
+Package: libvirtodbc0
+Depends: virtuoso-opensource-6.1-common (= ${binary:Version}),
+ odbcinst, ${shlibs:Depends}, ${misc:Depends}
+Architecture: any
+Description: high-performance database - ODBC libraries
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains the Virtuoso ODBC client libraries.
+
+Package: libvirtuoso5.5-cil
+Section: cli-mono
+Architecture: i386 kfreebsd-i386 powerpc amd64 kfreebsd-amd64 ia64 arm armeb armel sparc s390
+Depends: ${cli:Depends}, ${misc:Depends}
+Description: high-performance database - Mono assemblies
+ OpenLink Virtuoso is a high-performance object-relational SQL database.
+ It provides transactions, a smart SQL compiler, hot backup, SQL:1999
+ support, a powerful stored-procedure language supporting server-side
+ Java or .NET, and more. It supports all major data-access interfaces,
+ including ODBC, JDBC, ADO.NET, and OLE/DB.
+ .
+ This package contains Virtuoso's ADO.NET data provider for Mono.
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/changelog
+++ virtuoso-opensource-6.1.2+dfsg1/debian/changelog
@@ -0,0 +1,67 @@
+virtuoso-opensource (6.1.2+dfsg1-1) unstable; urgency=low
+
+  * New upstream release.
+  * Bump standards to 3.9.0.
+  * Retroactively fix typo in closed bug in previous upload changelog.
+  * Improve init/postinst sequence to avoid mangling /etc/default.
+  * Fix missing odbcinst dependency for the postinst of libvirtodbc0,
+    thanks Jonathan Thomas <echidnaman@kubuntu.org>.
+  * Shorten tests initialization timeouts to 60 seconds to prevent buildd
+    resources tie-ups. Thanks Marc 'HE' Brockschmidt <he@debian.org>
+    (Closes: #581267).
+  * Debconf translation update:
+    - Danish (Joe Dalton) (Closes: #587431)
+
+ -- Obey Arthur Liu <arthur@milliways.fr>  Sun, 11 Jul 2010 11:11:42 -0700
+
+virtuoso-opensource (6.1.1+dfsg1-1) unstable; urgency=medium
+
+  * New upstream release.
+  * Correctly fix FTBFS on s390 related to SHM (closes: #574018).
+  * Fix FTBFS on alpha due to recent binutils change (closes: 575942).
+  * Fix missing-debian-source-format lintian warning.
+
+  [Christian Perrier]
+  * Debconf templates and debian/control reviewed by the debian-l10n-
+    english team as part of the Smith review project. Closes: #573404
+  * [Debconf translation updates]
+    - Czech (Michal Simunek).  Closes: #573772
+    - Russian (Yuri Kozlov).  Closes: #573861
+    - Portuguese (Américo Monteiro).  Closes: #573927
+    - Vietnamese (Clytie Siddall).  Closes: #574430
+    - French (David Prévot).  Closes: #575042
+    - Italian (Vincenzo Campanella).  Closes: #575099
+    - German (Martin Eberhard Schauer).  Closes: #575594
+    - Swedish (Martin Ågren).  Closes: #575635
+    - Spanish (Francisco Javier Cuadrado).  Closes: #575373
+
+ -- Obey Arthur Liu <arthur@milliways.fr>  Sun, 04 Apr 2010 13:21:42 +0200
+
+virtuoso-opensource (6.1.0+dfsg2-3) unstable; urgency=high
+
+  * Emergency rollback of the fix for FTBFS on armel from 6.1.0+dfsg2-2
+    causing database binary format incompatibility, closes: #575173.
+    There should be no data loss.
+
+ -- Obey Arthur Liu <arthur@milliways.fr>  Wed, 24 Mar 2010 02:03:42 +0100
+
+virtuoso-opensource (6.1.0+dfsg2-2) unstable; urgency=medium
+
+  * Set ODBC registration debconf question for libvirtodbc0 to low priority,
+    defaults to Yes.
+  * Fix FTBFS on kFreeBSD.
+  * Fix FTBFS on armel. Thanks to Sune Vuorela <debian@pusling.com>.
+  * Fix FTBFS on s390 by complying with Debian CLI policy, closes: #574018.
+  * Fix lintian errors referring to old-fsf-address.
+  * Added README.source pointing to quilt README.
+
+ -- Obey Arthur Liu <arthur@milliways.fr>  Mon, 15 Mar 2010 14:04:42 +0200
+
+virtuoso-opensource (6.1.0+dfsg2-1) unstable; urgency=low
+
+  * Initial release (Closes: #508048)
+  * Many thanks to the following people who helped bring this package into
+    existence: Sune Vuorela <debian@pusling.com>, Will Daniels
+    <mail@willdaniels.co.uk> and Miriam Ruiz <little_miry@yahoo.es>.
+
+ -- Obey Arthur Liu <arthur@milliways.fr>  Mon, 22 Feb 2010 22:42:42 +0100
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/isql-vt.1.xml
+++ virtuoso-opensource-6.1.2+dfsg1/debian/isql-vt.1.xml
@@ -0,0 +1,144 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+
+  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
+  <!ENTITY dhfirstname "Obey Arthur">
+  <!ENTITY dhsurname   "Liu">
+  <!-- dhusername could also be set to "&firstname; &surname;". -->
+  <!ENTITY dhusername  "Obey Arthur Liu">
+  <!ENTITY dhemail     "arthur@milliways.fr">
+  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
+       allowed: see man(7), man(1) and
+       http://www.tldp.org/HOWTO/Man-Page/q2.html. -->
+  <!ENTITY dhsection   "1">
+  <!-- TITLE should be something like "User commands" or similar (see
+       http://www.tldp.org/HOWTO/Man-Page/q2.html). -->
+  <!ENTITY dhtitle     "virtuoso-opensource User Manual">
+  <!ENTITY dhucpackage "ISQL-VT">
+  <!ENTITY dhpackage   "isql-vt">
+  <!ENTITY dhucpackagealt "ISQLW-VT">
+  <!ENTITY dhpackagealt   "isqlw-vt">
+]>
+
+<refentry>
+  <refentryinfo>
+    <title>&dhtitle;</title>
+    <productname>&dhpackage;</productname>
+    <authorgroup>
+      <author>
+       <firstname>&dhfirstname;</firstname>
+        <surname>&dhsurname;</surname>
+        <contrib>Wrote this manpage for the Debian system.</contrib>
+        <address>
+          <email>&dhemail;</email>
+        </address>
+      </author>
+    </authorgroup>
+    <copyright>
+      <year>2009</year>
+      <holder>&dhusername;</holder>
+    </copyright>
+    <legalnotice>
+      <para>This manual page was written for the Debian system
+        (and may be used by others).</para>
+      <para>Permission is granted to copy, distribute and/or modify this
+        document under the terms of the GNU General Public License,
+        Version 2 or (at your option) any later version published by
+        the Free Software Foundation.</para>
+      <para>On Debian systems, the complete text of the GNU General Public
+        License can be found in
+        <filename>/usr/share/common-licenses/GPL</filename>.</para>
+    </legalnotice>
+  </refentryinfo>
+  <refmeta>
+    <refentrytitle>&dhucpackage;</refentrytitle>
+    <manvolnum>&dhsection;</manvolnum>
+  </refmeta>
+  <refnamediv>
+    <refname>&dhpackage;</refname>
+    <refpurpose>OpenLink Virtuoso Opensource SQL Interface</refpurpose>
+  </refnamediv>
+  <refnamediv>
+    <refname>&dhpackagealt;</refname>
+    <refpurpose>OpenLink Virtuoso Opensource SQL Interface (Unicode)</refpurpose>
+  </refnamediv>
+  <refsynopsisdiv>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+      <!-- Normally the help and version options make the programs stop
+           right after outputting the requested information. -->
+      <arg choice="opt"><option>HOST
+        <arg choice="opt"><option>:PORT</option></arg>
+      </option></arg>
+      <arg choice="opt"><option>UID</option></arg>
+      <arg choice="opt"><option>PWD</option></arg>
+      <arg choice="plain">file1</arg>
+      <arg choice="plain">file2</arg>
+      <arg choice="plain">...</arg>
+    </cmdsynopsis>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+      <!-- Normally the help and version options make the programs stop
+           right after outputting the requested information. -->
+      <arg choice="opt"><option>-H <parameter>server_addr</parameter></option></arg>
+      <arg choice="opt"><option>-S <parameter>server_port</parameter></option></arg>
+      <arg choice="opt"><option>-U <parameter>username</parameter></option></arg>
+      <arg choice="opt"><option>-P <parameter>password</parameter></option></arg>
+      <arg choice="opt"><option>-E</option></arg>
+      <arg choice="opt"><option>-X <parameter>pkcs12_file</parameter></option></arg>
+      <arg choice="opt"><option>-K</option></arg>
+      <arg choice="opt"><option>-C</option></arg>
+      <arg choice="opt"><option>-b <parameter>num</parameter></option></arg>
+    </cmdsynopsis>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+      <!-- Normally the help and version options make the programs stop
+           right after outputting the requested information. -->
+      <arg choice="plain">-?</arg>
+    </cmdsynopsis>
+  </refsynopsisdiv>
+  <refsect1 id="description">
+    <title>DESCRIPTION</title>
+    <para>This manual page documents briefly the
+      <command>&dhpackage;</command> command.</para>
+    <para>This manual page was written for the Debian distribution
+      because the original program does not have a manual page.
+      Instead, it has documentation in the 'doc' VAD package.</para>
+    <para><command>&dhpackage;</command> is the OpenLink Virtuoso Interactive SQL Interface</para>
+  </refsect1>
+  <refsect1 id="options">
+    <title>OPTIONS</title>
+    <para>A summary of options is included below.  For a complete description,
+          see the 'doc' VAD package.</para>
+    <variablelist>
+      <!-- Use the variablelist.term.separator and the
+           variablelist.term.break.after parameters to
+           control the term elements. -->
+      <varlistentry>
+        <term><option>--help</option></term>
+        <listitem>
+          <para>outputs help</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+  </refsect1>
+  <refsect1 id="files">
+    <title>FILES</title>
+    <variablelist>
+      <varlistentry>
+        <term><filename>/etc/virtuoso/virtuoso.ini</filename></term>
+        <listitem>
+          <para>The configuration file to control the behaviour of
+          the main instance of <application>&dhpackage;</application>.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+  </refsect1>
+  <refsect1 id="see_also">
+    <title>SEE ALSO</title>
+    <!-- In alpabetical order. -->
+    <para>The programs are documented fully by the 'doc' VAD package.</para>
+  </refsect1>
+</refentry>
+
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/rules
+++ virtuoso-opensource-6.1.2+dfsg1/debian/rules
@@ -0,0 +1,61 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/rules/patchsys-quilt.mk
+include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/utils.mk
+
+DEB_AUTO_UPDATE_ACLOCAL = 1.11
+DEB_AUTO_UPDATE_AUTOCONF = 2.61
+DEB_AUTO_UPDATE_AUTOMAKE = 1.11
+DEB_AUTO_UPDATE_LIBTOOL = pre
+
+DEB_AUTOMAKE_ARGS += -Wno-portability
+
+DEB_CONFIGURE_EXTRA_FLAGS = --with-layout=debian \
+		--program-transform-name='s/isql$$/isql-vt/;s/isqlw/isqlw-vt/' \
+		--with-readline --without-internal-zlib
+
+ifeq ($(DEB_BUILD_ARCH),alpha)
+		EXTRA_LDFLAGS += -Wl,--no-relax
+endif
+
+DEB_CONFIGURE_SCRIPT_ENV += \
+		LDFLAGS="-Wl,-z,defs -Wl,--no-undefined -Wl,--as-needed $(EXTRA_LDFLAGS)" \
+		MONO_DISABLE_SHM=1
+
+DEB_DH_INSTALL_ARGS := --sourcedir=debian/tmp
+
+# update-rc.d is manually called in virtuoso-opensource-6.1.postinst
+# See note there.
+DEB_DH_INSTALLINIT_ARGS += --noscripts
+
+# Disabled for now
+#DEB_MAKE_INVOKE += -j
+#.NOTPARALLEL:
+
+clean::
+	debconf-updatepo
+
+build/virtuoso-opensource-6.1::
+	cd debian; find . -name "*.?.xml" -exec docbook2x-man --solinks {} \;
+
+cleanbuilddir/virtuoso-opensource-6.1::
+	rm -f debian/*.1
+
+build/libvirtuoso5.5-cil::
+	$(MAKE) -C binsrc/VirtuosoClient.Net -f Makefile.mono
+	chmod -x binsrc/VirtuosoClient.Net/OpenLink.Data.Virtuoso.dll
+
+cleanbuilddir/libvirtuoso5.5-cil::
+	$(MAKE) -C binsrc/VirtuosoClient.Net -f Makefile.mono clean
+
+binary-install/libvirtuoso5.5-cil::
+	dh_installcligac
+
+binary-predeb/libvirtuoso5.5-cil::
+	dh_makeclilibs
+	dh_clideps -d
+
+get-orig-source:
+	-uscan --download --verbose
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1-common.manpages
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1-common.manpages
@@ -0,0 +1,2 @@
+debian/INIFILE.1
+debian/inifile.1
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/NEWS.Debian
+++ virtuoso-opensource-6.1.2+dfsg1/debian/NEWS.Debian
@@ -0,0 +1,24 @@
+virtuoso-opensource (6.1.0+dfsg2-3) unstable; urgency=high
+
+  This version introduces an emergency rollback of a defective patch
+  introduced in the 6.1.0+dfsg2-2 of this package.
+  This patch modifies the binary format of the Virtuoso database that is
+  internally consistent but is not compatible with previous versions.
+  It is likely that data corruption has happened if the 6.1.0+dfsg2-2 version
+  has been executed over database files created in previous versions.
+  Installing 6.1.0+dfsg2-3 introduces back the correct format.
+  Any database files manipulated by the 6.1.0+dfsg2-2 version need to be
+  deleted.
+
+  The default Virtuoso database is located in:
+  /var/lib/virtuoso-opensource-6.1/db/
+  To remove it:
+  # rm -rf /var/lib/virtuoso-opensource-6.1/db/
+
+  For the benefit of KDE/Nepomuk users, the Nepomuk database is located in:
+  ~/.kde/share/apps/nepomuk/repository/
+  To remove it:
+  $ rm -rf ~/.kde/share/apps/nepomuk/repository/
+
+ -- Obey Arthur Liu <arthur@milliways.fr>  Wed, 24 Mar 2010 02:03:42 +0100
+
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/libvirtodbc0.dirs
+++ virtuoso-opensource-6.1.2+dfsg1/debian/libvirtodbc0.dirs
@@ -0,0 +1,2 @@
+usr/lib/odbc
+usr/share/libvirtodbc0
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/libvirtodbc0.templates
+++ virtuoso-opensource-6.1.2+dfsg1/debian/libvirtodbc0.templates
@@ -0,0 +1,18 @@
+# These templates have been reviewed by the debian-l10n-english
+# team
+#
+# If modifications/additions/rewording are needed, please ask
+# debian-l10n-english@lists.debian.org for advice.
+#
+# Even minor modifications require translation updates and such
+# changes should be coordinated with translators and reviewers.
+
+Template: libvirtodbc0/register-odbc-driver
+Type: boolean
+Default: false
+_Description: Register the Virtuoso ODBC driver?
+ An ODBC manager (unixodbc or iODBC)  is already installed on this system.
+ .
+ The Virtuoso ODBC driver can be automatically added to the list of
+ available ODBC drivers (and automatically deleted from the list
+ when this package is removed).
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virt_mail.1.xml
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virt_mail.1.xml
@@ -0,0 +1,158 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+
+  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
+  <!ENTITY dhfirstname "Obey Arthur">
+  <!ENTITY dhsurname   "Liu">
+  <!-- dhusername could also be set to "&firstname; &surname;". -->
+  <!ENTITY dhusername  "Obey Arthur Liu">
+  <!ENTITY dhemail     "arthur@milliways.fr">
+  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
+       allowed: see man(7), man(1) and
+       http://www.tldp.org/HOWTO/Man-Page/q2.html. -->
+  <!ENTITY dhsection   "1">
+  <!-- TITLE should be something like "User commands" or similar (see
+       http://www.tldp.org/HOWTO/Man-Page/q2.html). -->
+  <!ENTITY dhtitle     "virtuoso-opensource User Manual">
+  <!ENTITY dhucpackage "VIRT_MAIL">
+  <!ENTITY dhpackage   "virt_mail">
+]>
+
+<refentry>
+  <refentryinfo>
+    <title>&dhtitle;</title>
+    <productname>&dhpackage;</productname>
+    <authorgroup>
+      <author>
+       <firstname>&dhfirstname;</firstname>
+        <surname>&dhsurname;</surname>
+        <contrib>Wrote this manpage for the Debian system.</contrib>
+        <address>
+          <email>&dhemail;</email>
+        </address>
+      </author>
+    </authorgroup>
+    <copyright>
+      <year>2009</year>
+      <holder>&dhusername;</holder>
+    </copyright>
+    <legalnotice>
+      <para>This manual page was written for the Debian system
+        (and may be used by others).</para>
+      <para>Permission is granted to copy, distribute and/or modify this
+        document under the terms of the GNU General Public License,
+        Version 2 or (at your option) any later version published by
+        the Free Software Foundation.</para>
+      <para>On Debian systems, the complete text of the GNU General Public
+        License can be found in
+        <filename>/usr/share/common-licenses/GPL</filename>.</para>
+    </legalnotice>
+  </refentryinfo>
+  <refmeta>
+    <refentrytitle>&dhucpackage;</refentrytitle>
+    <manvolnum>&dhsection;</manvolnum>
+  </refmeta>
+  <refnamediv>
+    <refname>&dhpackage;</refname>
+    <refpurpose>OpenLink Virtuoso Opensource Mail Interface</refpurpose>
+  </refnamediv>
+  <refsynopsisdiv>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+      <!-- These are several examples, how syntaxes could look -->
+      <arg choice="opt"><option>-clhsm</option></arg>
+      <arg choice="opt"><option>+configfile <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+local <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+host <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+sender <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+mailer <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+debug</option></arg>
+    </cmdsynopsis>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+      <!-- Normally the help and version options make the programs stop
+           right after outputting the requested information. -->
+      <arg choice="opt"><option>+help</option></arg>
+    </cmdsynopsis>
+  </refsynopsisdiv>
+  <refsect1 id="description">
+    <title>DESCRIPTION</title>
+    <para>This manual page documents briefly the
+      <command>&dhpackage;</command> command.</para>
+    <para>This manual page was written for the Debian distribution
+      because the original program does not have a manual page.
+      Instead, it has documentation in the 'doc' VAD package.</para>
+    <para><command>&dhpackage;</command> is the OpenLink Virtuoso Mail Interface</para>
+  </refsect1>
+  <refsect1 id="options">
+    <title>OPTIONS</title>
+    <para>A summary of options is included below.  For a complete description,
+          see the 'doc' VAD package.</para>
+    <variablelist>
+      <!-- Use the variablelist.term.separator and the
+           variablelist.term.break.after parameters to
+           control the term elements. -->
+      <varlistentry>
+        <term><option>+configfile</option></term>
+        <listitem>
+          <para>configuration file to use</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+local</option></term>
+        <listitem>
+          <para>local recipient (for sendmail mode only)</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+host</option></term>
+        <listitem>
+          <para>local host/domain (for sendmail mode only)</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+sender</option></term>
+        <listitem>
+          <para>envelope sender (for sendmail mode only)</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+mailer</option></term>
+        <listitem>
+          <para>mailer in use</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+debug</option></term>
+        <listitem>
+          <para>debug mode</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+help</option></term>
+        <listitem>
+          <para>outputs help</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+  </refsect1>
+  <refsect1 id="files">
+    <title>FILES</title>
+    <variablelist>
+      <varlistentry>
+        <term><filename>/etc/virtuoso/virtuoso.ini</filename></term>
+        <listitem>
+          <para>The configuration file to control the behaviour of
+          the main instance of <application>&dhpackage;</application>.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+  </refsect1>
+  <refsect1 id="see_also">
+    <title>SEE ALSO</title>
+    <!-- In alpabetical order. -->
+    <para>The programs are documented fully by the 'doc' VAD package.</para>
+  </refsect1>
+</refentry>
+
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/libvirtodbc0.postinst
+++ virtuoso-opensource-6.1.2+dfsg1/debian/libvirtodbc0.postinst
@@ -0,0 +1,50 @@
+#!/bin/sh
+# postinst script for virtuoso-opensource
+#
+# see: dh_installdeb(1)
+
+set -e
+. /usr/share/debconf/confmodule
+
+if [ -n "$DEBIAN_SCRIPT_DEBUG" ]; then set -v -x; DEBIAN_SCRIPT_TRACE=1; fi
+${DEBIAN_SCRIPT_TRACE:+ echo "#42#DEBUG# RUNNING $0 $*" 1>&2 }
+
+# summary of how this script can be called:
+#        * <postinst> `configure' <most-recently-configured-version>
+#        * <old-postinst> `abort-upgrade' <new version>
+#        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
+#          <new-version>
+#        * <postinst> `abort-remove'
+#        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
+#          <failed-install-package> <version> `removing'
+#          <conflicting-package> <version>
+# for details, see http://www.debian.org/doc/debian-policy/ or
+# the debian-policy package
+
+# Always add in the postinst, always delete in the prerm -- this way,
+# we'll always have a good reference count in odbcinst.ini.
+db_get low libvirtodbc0/register-odbc-driver || true
+if [ "$RET" = "true" ]; then
+    odbcinst -i -d -f /usr/share/libvirtodbc0/odbcinst.ini 1>&2
+fi
+
+case "$1" in
+    configure)
+        #ldconfig
+    ;;
+
+    abort-upgrade|abort-remove|abort-deconfigure)
+    ;;
+
+    *)
+        echo "postinst called with unknown argument \`$1'" >&2
+        exit 1
+    ;;
+esac
+
+# dh_installdeb will replace this with shell code automatically
+# generated by other debhelper scripts.
+
+#DEBHELPER#
+
+exit 0
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-t.1.xml
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-t.1.xml
@@ -0,0 +1,229 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
+"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
+
+  <!-- Fill in your name for FIRSTNAME and SURNAME. -->
+  <!ENTITY dhfirstname "Obey Arthur">
+  <!ENTITY dhsurname   "Liu">
+  <!-- dhusername could also be set to "&firstname; &surname;". -->
+  <!ENTITY dhusername  "Obey Arthur Liu">
+  <!ENTITY dhemail     "arthur@milliways.fr">
+  <!-- SECTION should be 1-8, maybe w/ subsection other parameters are
+       allowed: see man(7), man(1) and
+       http://www.tldp.org/HOWTO/Man-Page/q2.html. -->
+  <!ENTITY dhsection   "1">
+  <!-- TITLE should be something like "User commands" or similar (see
+       http://www.tldp.org/HOWTO/Man-Page/q2.html). -->
+  <!ENTITY dhtitle     "virtuoso-opensource User Manual">
+  <!ENTITY dhucpackage "VIRTUOSO-T">
+  <!ENTITY dhpackage   "virtuoso-t">
+]>
+
+<refentry>
+  <refentryinfo>
+    <title>&dhtitle;</title>
+    <productname>&dhpackage;</productname>
+    <authorgroup>
+      <author>
+       <firstname>&dhfirstname;</firstname>
+        <surname>&dhsurname;</surname>
+        <contrib>Wrote this manpage for the Debian system.</contrib>
+        <address>
+          <email>&dhemail;</email>
+        </address>
+      </author>
+    </authorgroup>
+    <copyright>
+      <year>2009</year>
+      <holder>&dhusername;</holder>
+    </copyright>
+    <legalnotice>
+      <para>This manual page was written for the Debian system
+        (and may be used by others).</para>
+      <para>Permission is granted to copy, distribute and/or modify this
+        document under the terms of the GNU General Public License,
+        Version 2 or (at your option) any later version published by
+        the Free Software Foundation.</para>
+      <para>On Debian systems, the complete text of the GNU General Public
+        License can be found in
+        <filename>/usr/share/common-licenses/GPL</filename>.</para>
+    </legalnotice>
+  </refentryinfo>
+  <refmeta>
+    <refentrytitle>&dhucpackage;</refentrytitle>
+    <manvolnum>&dhsection;</manvolnum>
+  </refmeta>
+  <refnamediv>
+    <refname>&dhpackage;</refname>
+    <refpurpose>OpenLink Virtuoso Opensource Server</refpurpose>
+  </refnamediv>
+  <refsynopsisdiv>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+      <!-- These are several examples, how syntaxes could look -->
+      <arg choice="opt"><option>-fcnCbDARwMKrBd</option></arg>
+      <arg choice="opt"><option>+foreground</option></arg>
+      <arg choice="opt"><option>+configfile <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+no-checkpoint</option></arg>
+      <arg choice="opt"><option>+checkpoint-only</option></arg>
+      <arg choice="opt"><option>+backup-dump</option></arg>
+      <arg choice="opt"><option>+crash-dump</option></arg>
+      <arg choice="opt"><option>+configfile <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+restore-crash-dump</option></arg>
+      <arg choice="opt"><option>+wait</option></arg>
+      <arg choice="opt"><option>+more <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+dumpkeys <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+restore-backup <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+backup-dirs <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+debug</option></arg>
+      <arg choice="opt"><option>+pwdold <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+pwddba <parameter>arg</parameter></option></arg>
+      <arg choice="opt"><option>+pwddav <parameter>arg</parameter></option></arg>
+    </cmdsynopsis>
+    <cmdsynopsis>
+      <command>&dhpackage;</command>
+      <!-- Normally the help and version options make the programs stop
+           right after outputting the requested information. -->
+      <arg choice="opt"><option>+help</option></arg>
+    </cmdsynopsis>
+  </refsynopsisdiv>
+  <refsect1 id="description">
+    <title>DESCRIPTION</title>
+    <para>This manual page documents briefly the
+      <command>&dhpackage;</command> command.</para>
+    <para>This manual page was written for the Debian distribution
+      because the original program does not have a manual page.
+      Instead, it has documentation in the 'doc' VAD package.</para>
+    <para><command>&dhpackage;</command> is the OpenLink Virtuoso server</para>
+  </refsect1>
+  <refsect1 id="options">
+    <title>OPTIONS</title>
+    <para>A summary of options is included below.  For a complete description,
+          see the 'doc' VAD package.</para>
+    <variablelist>
+      <!-- Use the variablelist.term.separator and the
+           variablelist.term.break.after parameters to
+           control the term elements. -->
+      <varlistentry>
+        <term><option>+foreground</option></term>
+        <listitem>
+          <para>run in the foreground</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+configfile</option></term>
+        <listitem>
+          <para>use alternate configuration file</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+no-checkpoint</option></term>
+        <listitem>
+          <para>do not checkpoint on startup</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+checkpoint-only</option></term>
+        <listitem>
+          <para>exit as soon as checkpoint on startup is complete</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+backup-dump</option></term>
+        <listitem>
+          <para>dump database into the transaction log, then exit</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+crash-dump</option></term>
+        <listitem>
+          <para>dump inconsistent database into the transaction log, then exit</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+crash-dump-data-ini</option></term>
+        <listitem>
+          <para>specify the DB ini to use for reading the data to dump</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+restore-crash-dump</option></term>
+        <listitem>
+          <para>restore from a crash-dump</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+wait</option></term>
+        <listitem>
+          <para>wait for background initialization to complete</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+mode</option></term>
+        <listitem>
+          <para>specify mode options for server startup (onbalr)</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+dumpkeys</option></term>
+        <listitem>
+          <para>specify key id(s) to dump on crash dump (default : all)</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+restore-backup</option></term>
+        <listitem>
+          <para>default backup directories</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+backup-dirs</option></term>
+        <listitem>
+          <para>run in the foreground</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+debug</option></term>
+        <listitem>
+          <para>Show additional debugging info</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+pwdold</option></term>
+        <listitem>
+          <para>Old DBA password</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+pwddba</option></term>
+        <listitem>
+          <para>New DBA password</para>
+        </listitem>
+      </varlistentry>
+      <varlistentry>
+        <term><option>+pwddav</option></term>
+        <listitem>
+          <para>New DAV password</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+  </refsect1>
+  <refsect1 id="files">
+    <title>FILES</title>
+    <variablelist>
+      <varlistentry>
+        <term><filename>/etc/virtuoso/virtuoso.ini</filename></term>
+        <listitem>
+          <para>The configuration file to control the behaviour of
+          the main instance of <application>&dhpackage;</application>.</para>
+        </listitem>
+      </varlistentry>
+    </variablelist>
+  </refsect1>
+  <refsect1 id="see_also">
+    <title>SEE ALSO</title>
+    <!-- In alpabetical order. -->
+    <para>The programs are documented fully by the 'doc' VAD package.</para>
+  </refsect1>
+</refentry>
+
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/TODO.Debian
+++ virtuoso-opensource-6.1.2+dfsg1/debian/TODO.Debian
@@ -0,0 +1,40 @@
+   Debian Packaging TODO list for
+OpenLink Virtuoso Open-Source Edition
+=====================================
+
+Severity: Normal
+ * Fix soname versioning or make libraries private.
+   Libraries like the ODBC drivers are not versioned upstream in the soname.
+   Versioning them would require coordination with upstream. Making them
+   private with a --libdir=/usr/lib/virtuoso ./configure option seems to break
+   VAD packages building.
+
+Severity: Wishlist
+ * Remove the shiped W3C Tidy library.
+   A very old version of Tidy is shipped. This version is no longer in Debian.
+   The current Debian version has a very different API. The problem is that
+   Virtuoso re-exports the Tidy API through its plugin API, so we can't just
+   replace Tidy with the new version, even though there are provisions in the
+   code to do so (see libsrc/Wi/bif_tidy.c for OLD_TIDY).
+
+ * Fix parallel building.
+   Some fixes have been applied to make main compilation mostly work. There
+   were some issues with shell scripts trampling on each other (see
+   libsrc/plugin/Makefile.am for example). It still doesn't work though.
+   The tests during VAD packages building fail, at least for the "demo" VAD
+   package. I'm not sure whether this is due to buggy main compiled code, VAD
+   packages building or test harness.
+   Disabling the "demo" VAD seems to make it work but the target that creates
+   the /var/lib/virtuoso/db/virtuoso.ini isn't run, which is suspicious.
+
+Severity: Unknown
+ * Have a look at VAD packages building for path issues.
+   There seems to be a lot of "file not found" errors during the building of
+   VAD packages, particularly concerning image files and so on. It looks like
+   the problem comes from VAD packages building shell scripts not honoring the
+   PREFIX parameter from the ./configure script.
+
+Severity: Wishlist
+ * Package runtime hosting for Mono (ASP.NET), Java, PHP and Python.
+   Not sure how much work this will be, but currently Mono at least needs a
+   custom patched build.
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/libvirtuoso5.5-cil.links
+++ virtuoso-opensource-6.1.2+dfsg1/debian/libvirtuoso5.5-cil.links
@@ -0,0 +1 @@
+usr/lib/pkgconfig/virtuoso-5.5.pc	usr/lib/pkgconfig/virtuoso.pc
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-vsp-startpage.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-vsp-startpage.install
@@ -0,0 +1 @@
+var/lib/virtuoso/vsp/* var/lib/virtuoso-opensource-6.1/vsp/
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/virtuoso-opensource-6.1-common.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/virtuoso-opensource-6.1-common.install
@@ -0,0 +1 @@
+usr/bin/inifile
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/libvirtuoso5.5-cil.install
+++ virtuoso-opensource-6.1.2+dfsg1/debian/libvirtuoso5.5-cil.install
@@ -0,0 +1,2 @@
+../../binsrc/VirtuosoClient.Net/*.dll /usr/lib/cli/virtuoso-5.5
+../virtuoso-5.5.pc /usr/lib/pkgconfig
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/compat
+++ virtuoso-opensource-6.1.2+dfsg1/debian/compat
@@ -0,0 +1 @@
+7
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/source/format
+++ virtuoso-opensource-6.1.2+dfsg1/debian/source/format
@@ -0,0 +1 @@
+1.0
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/patches/ftbfs-kfreebsd.patch
+++ virtuoso-opensource-6.1.2+dfsg1/debian/patches/ftbfs-kfreebsd.patch
@@ -0,0 +1,15 @@
+Description: FTBFS on kFreeBSD
+ Fix preprocessor environment detection to properly recognize kFreeBSD.
+Author: Obey Arthur Liu <arthur@milliways.fr>
+Last-Update: 2010-02-28
+--- a/libsrc/Dk/Dksystem.h
++++ b/libsrc/Dk/Dksystem.h
+@@ -141,7 +141,7 @@
+ #endif
+ 
+ #include <errno.h>
+-#if !defined(linux) && !defined(__APPLE__) && !defined (WIN32) && !defined (__CYGWIN__) && !defined(__FreeBSD__) && !defined (__cplusplus)
++#if !defined(linux) && !defined(__APPLE__) && !defined (WIN32) && !defined (__CYGWIN__) && !defined(__FreeBSD__) && !defined (__cplusplus) && !defined(__GLIBC__)
+ extern char *sys_errlist[];
+ extern int sys_nerr;
+ #endif
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/patches/build-generated-code-multiple-outputs.patch
+++ virtuoso-opensource-6.1.2+dfsg1/debian/patches/build-generated-code-multiple-outputs.patch
@@ -0,0 +1,58 @@
+Description: generated code multiple outputs
+ Fix one point of parallel building breakage.
+Author: Obey Arthur Liu <arthur@milliways.fr>
+Last-Update: 2009-12-28
+--- a/libsrc/plugin/Makefile.am
++++ b/libsrc/plugin/Makefile.am
+@@ -93,15 +93,45 @@
+ 	export_gate_virtuoso.c import_gate_virtuoso.c import_gate_virtuoso.h \
+ 	export_plugin_lang25.c import_plugin_lang25.c import_plugin_lang25.h
+ 
+-$(generated_code): .generated
++# This is still wrong:
++# <http://www.gnu.org/software/hello/manual/automake/Multiple-Outputs.html>
++#$(generated_code): .generated
++#
++#.generated: Makefile.am gen_all_gates.sh gen_gate.sh gate_virtuoso.h plugin_lang25.h plugin_msdtc.h
++#	cd $(top_srcdir)/libsrc/plugin; ./gen_all_gates.sh
++#	-rm -rf tmp
++#	touch .generated
++
++# This is correct:
++generated_code-stamp: Makefile gen_all_gates.sh gen_gate.sh gate_virtuoso.h plugin_lang25.h plugin_msdtc.h
++	echo "GENCODE=+= stamp"
++	@rm -f generated_code-temp
++	@touch generated_code-temp
++	@cd $(top_srcdir)/libsrc/plugin; ./gen_all_gates.sh
++	@rm -rf tmp
++	@mv -f generated_code-temp $@
+ 
+-.generated: Makefile.am gen_all_gates.sh gen_gate.sh gate_virtuoso.h plugin_lang25.h plugin_msdtc.h
+-	cd $(top_srcdir)/libsrc/plugin; ./gen_all_gates.sh
+-	-rm -rf tmp
+-	touch .generated
++$(generated_code): generated_code-stamp
++	## Recover from the removal of $@
++	@if test -f $@; then :; else \
++		trap 'rm -rf generated_code-lock generated_code-stamp' 1 2 13 15; \
++		if mkdir generated_code-lock 2>/dev/null; then \
++	## This code is being executed by the first process.
++	rm -f generated_code-stamp; \
++		echo "GENCODE=+= stamp"; \
++		$(MAKE) $(AM_MAKEFLAGS) generated_code-stamp; \
++		rmdir generated_code-lock; \
++		else \
++	## This code is being executed by the follower processes.
++	## Wait until the first process is done.
++		while test -d generated_code-lock; do sleep 1; echo "//+//"; done; \
++	## Succeed if and only if the first process succeeded.
++		test -f generated_code-stamp; exit $$?; \
++		fi; \
++	fi
+ 
+ BUILT_SOURCES	= $(generated_code)
+-DISTCLEANFILES	= $(generated_code) .generated
++DISTCLEANFILES	= $(generated_code) generated_code-stamp generated_code-lock generated_code-temp
+ 
+ 
+ # ----------------------------------------------------------------------
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/patches/build-short-timeout.patch
+++ virtuoso-opensource-6.1.2+dfsg1/debian/patches/build-short-timeout.patch
@@ -0,0 +1,1511 @@
+Description: Shorten test initialization timeouts
+ Shorten timeouts in tests for virtuoso initialization to 60 seconds. This
+ causes resources tie-ups on buildds where a FTBFS result in a silently
+ binary.
+Author: Obey Arthur Liu <arthur@milliways.fr>
+Last-Update: 2010-05-12
+--- a/appsrc/ODS-Addressbook/make_vad.sh
++++ b/appsrc/ODS-Addressbook/make_vad.sh
+@@ -93,7 +93,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/appsrc/ODS-Blog/make_vad.sh
++++ b/appsrc/ODS-Blog/make_vad.sh
+@@ -112,7 +112,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+     then
+--- a/appsrc/ODS-Bookmark/make_vad.sh
++++ b/appsrc/ODS-Bookmark/make_vad.sh
+@@ -97,7 +97,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/appsrc/ODS-Briefcase/make_vad.sh
++++ b/appsrc/ODS-Briefcase/make_vad.sh
+@@ -113,7 +113,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/appsrc/ODS-Calendar/make_vad.sh
++++ b/appsrc/ODS-Calendar/make_vad.sh
+@@ -96,7 +96,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/appsrc/ODS-Community/make_vad.sh
++++ b/appsrc/ODS-Community/make_vad.sh
+@@ -100,7 +100,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/appsrc/ODS-Discussion/make_vad.sh
++++ b/appsrc/ODS-Discussion/make_vad.sh
+@@ -110,7 +110,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+ 	then
+--- a/appsrc/ODS-FeedManager/make_vad.sh
++++ b/appsrc/ODS-FeedManager/make_vad.sh
+@@ -96,7 +96,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/appsrc/ODS-Framework/make_vad.sh
++++ b/appsrc/ODS-Framework/make_vad.sh
+@@ -138,7 +138,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ]
+   then
+--- a/appsrc/ODS-Framework/oauth/make_vad.sh
++++ b/appsrc/ODS-Framework/oauth/make_vad.sh
+@@ -188,7 +188,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/appsrc/ODS-Gallery/make_vad.sh
++++ b/appsrc/ODS-Gallery/make_vad.sh
+@@ -101,7 +101,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/appsrc/ODS-Polls/make_vad.sh
++++ b/appsrc/ODS-Polls/make_vad.sh
+@@ -95,7 +95,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/appsrc/ODS-WebMail/make_vad.sh
++++ b/appsrc/ODS-WebMail/make_vad.sh
+@@ -96,7 +96,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/appsrc/ODS-Wiki/make_vad.sh
++++ b/appsrc/ODS-Wiki/make_vad.sh
+@@ -131,7 +131,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/binsrc/b3s/make_vad.sh
++++ b/binsrc/b3s/make_vad.sh
+@@ -203,7 +203,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ]
+   then
+--- a/binsrc/bpel/make_vad.sh
++++ b/binsrc/bpel/make_vad.sh
+@@ -254,7 +254,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+ 	then
+--- a/binsrc/hosting/mono/tests/tclrsrv.sh
++++ b/binsrc/hosting/mono/tests/tclrsrv.sh
+@@ -217,7 +217,7 @@
+       ddate=`date`
+       starth=`date | cut -f 2 -d :`
+       starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-      timeout=600
++      timeout=60
+       rm -f *.lck
+       $SERVER +foreground -c tclr.ini $* 1>/dev/null & 
+       stat="true"
+--- a/binsrc/isparql/make_vad.sh
++++ b/binsrc/isparql/make_vad.sh
+@@ -117,7 +117,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ]
+     then
+--- a/binsrc/rdf_mappers/make_vad.sh
++++ b/binsrc/rdf_mappers/make_vad.sh
+@@ -234,7 +234,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/binsrc/samples/demo/make_vad.sh
++++ b/binsrc/samples/demo/make_vad.sh
+@@ -115,7 +115,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/binsrc/samples/demo/mkdemo.sh
++++ b/binsrc/samples/demo/mkdemo.sh
+@@ -140,7 +140,7 @@
+ 
+ START_SERVER()
+ {
+-  timeout=180
++  timeout=60
+ 
+   ECHO "Starting Virtuoso DEMO server ..."
+   if [ "z$HOST_OS" != "z" ] 
+--- a/binsrc/samples/demo/mkdoc.sh
++++ b/binsrc/samples/demo/mkdoc.sh
+@@ -161,7 +161,7 @@
+ {
+    if [ "z$DEMODB" = "z" ]
+    then
+-       timeout=180
++       timeout=60
+ 
+        ECHO "Starting Virtuoso server ..."
+        if [ "z$HOST_OS" != "z" ] 
+--- a/binsrc/samples/sparql_demo/make_vad.sh
++++ b/binsrc/samples/sparql_demo/make_vad.sh
+@@ -113,7 +113,7 @@
+     ddate=`date`
+     starth=`date | cut -f 2 -d :`
+     starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-    timeout=600
++    timeout=60
+     $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+     then
+--- a/binsrc/sync/make_vad.sh
++++ b/binsrc/sync/make_vad.sh
+@@ -104,7 +104,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "x$HOST_OS" != "x" ]
+   then
+--- a/binsrc/tutorial/make_vad.sh
++++ b/binsrc/tutorial/make_vad.sh
+@@ -104,7 +104,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "z$HOST_OS" != "z" ] 
+   then
+--- a/binsrc/vsp/admin/debug/make_vad.sh
++++ b/binsrc/vsp/admin/debug/make_vad.sh
+@@ -70,7 +70,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   $myrm -f *.lck
+   if [ "x$HOST_OS" != "x" ]
+ 	then
+--- a/binsrc/vspx/suite/vspx_suite.sh
++++ b/binsrc/vspx/suite/vspx_suite.sh
+@@ -44,7 +44,7 @@
+   ddate=`date`
+   starth=`date | cut -f 2 -d :`
+   starts=`date | cut -f 3 -d :|cut -f 1 -d " "`
+-  timeout=600
++  timeout=60
+   rm -f *.lck
+   $SERVER
+   stat="true"
+--- a/binsrc/yacutia/mkvad.sh
++++ b/binsrc/yacutia/mkvad.sh
+@@ -148,7 +148,7 @@
+ 
+ START_SERVER()
+ {
+-  timeout=120
++  timeout=60
+ 
+   ECHO "Starting Virtuoso server ..."
+   if [ "z$HOST_OS" != "z" ]
+--- a/binsrc/bpel/tests/tpcc/run.sh
++++ b/binsrc/bpel/tests/tpcc/run.sh
+@@ -167,17 +167,17 @@
+ cat ../dbservices.wsdl | sed -e "s/HTTPPORTDB/$HTTPPORTDB/g" > bpeltpcc/dbservices.wsdl
+ cat ../tdservices.wsdl | sed -e "s/HTTPPORTTD/$HTTPPORTTD/g" > bpeltpcc/tdservices.wsdl
+ MakeConfig $DS1 $HTTPPORTBP
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ cd ..
+ 
+ cd db
+ MakeConfig $DS2 $HTTPPORTDB
+-START_SERVER $DS2 1000
++START_SERVER $DS2 60
+ cd ..
+ 
+ cd td
+ MakeConfig $DS3 $HTTPPORTTD
+-START_SERVER $DS3 1000
++START_SERVER $DS3 60
+ cd ..
+ 
+ # Configure endpoint hosts
+--- a/binsrc/tests/biftest/tests/tjavavm.sh
++++ b/binsrc/tests/biftest/tests/tjavavm.sh
+@@ -103,7 +103,7 @@
+ MAKECFG_FILE ../../suite/$TESTCFGFILE $PORT $CFGFILE
+ 
+ SHUTDOWN_SERVER
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < java_ts.sql
+ 
+--- a/binsrc/tests/biftest/thook.sh
++++ b/binsrc/tests/biftest/thook.sh
+@@ -23,7 +23,7 @@
+ 
+ OUTPUT=thook.output
+ ISQL=../isql
+-TIMEOUT=1000
++TIMEOUT=60
+ HOST_OS=`uname -s | grep WIN`
+ SERVER=./virtuoso-iodbc-sample-t
+ PORT=${PORT-1111}
+@@ -169,7 +169,7 @@
+ echo $ISQL $DSN dba dba PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT "EXEC=raw_exit()" >> $OUTPUT
+ $ISQL $DSN dba dba PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT "EXEC=raw_exit()" >> $OUTPUT
+ rm -rf virtuoso.db virtuoso.log virtuoso.lck virtuoso.trx core
+-START_SERVER $PORT 1000
++START_SERVER $PORT $TIMEOUT
+ RUN $ISQL $DSN dba dba PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT thook.sql
+ 
+ RUN $ISQL $DSN MANAGER MANAGER PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT thook1.sql
+--- a/binsrc/tests/dotnet/test_server.sh
++++ b/binsrc/tests/dotnet/test_server.sh
+@@ -149,7 +149,7 @@
+ 
+ if [ -f VirtuosoClientSuite/OpenLink.Data.$CLIENT ] ; then
+ 
+-START_SERVER $PORT 10000
++START_SERVER $PORT 60
+ 
+ cd VirtuosoClientSuite
+ if [ "x$DTC_TEST" != "x" ]
+--- a/binsrc/tests/lubm/tlubm.sh
++++ b/binsrc/tests/lubm/tlubm.sh
+@@ -40,7 +40,7 @@
+ fi
+ 
+ SHUTDOWN_SERVER
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ BANNER "LUBM LOAD"
+ 
+--- a/binsrc/tests/suite/bpel.sh
++++ b/binsrc/tests/suite/bpel.sh
+@@ -225,7 +225,7 @@
+ if [ "$TEST_ECHO" = "yes" ] ; then
+ 
+ CNT=`expr $CNT + 1`
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ 
+ LOG "ECHO BPEL script test"
+ DoCommand $DS1 "vad_install ('bpel_filesystem.vad', 0, 1);" "bpel_filesystem.vad install"
+@@ -260,7 +260,7 @@
+ DSN=$DS1
+ SHUTDOWN_SERVER
+ CNT=`expr $CNT + 1`
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ cp ../bpel_filesystem.vad ./
+ DoCommand $DS1 "vad_install ('bpel_filesystem.vad', 0, 1);" "bpel_filesystem.vad install"
+ #DoCommand $DS1 "trace_on('soap');" "TRACE ON"
+@@ -336,7 +336,7 @@
+ MakeConfig $DS2 $HP2
+ DSN=$DS2
+ SHUTDOWN_SERVER
+-START_SERVER $DS2 1000
++START_SERVER $DS2 60
+ RUN $ISQL $DS2 PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < ../fault1/ini2.sql
+ #DoCommand $DS2 "vhost_define (lpath=>'/BPELREQ/', ppath=>'/SOAP/', soap_user=>'DBA');" "Request vhost"
+ cd ../fault1
+@@ -345,7 +345,7 @@
+ DSN=$DS1
+ SHUTDOWN_SERVER
+ CNT=`expr $CNT + 1`
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ cp ../bpel_filesystem.vad ./
+ DoCommand $DS1 "vad_install ('bpel_filesystem.vad', 0, 1);" "bpel_filesystem.vad install"
+ DoCommand $DS1 "create user BPELTEST;" "create user BPELTEST"
+@@ -356,13 +356,13 @@
+ RUN $ISQL $DS1 BPELTEST BPELTEST PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT -u 'http_port_two=$HP2' < ini.sql
+ SHUTDOWN_SERVER
+ CNT=`expr $CNT + 1`
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ RUN $ISQL $DS1 BPELTEST BPELTEST PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT -u 'http_port_two=$HP2' < check.sql
+ DSN=$DS2
+ SHUTDOWN_SERVER
+ RUN $ISQL $DS1 BPELTEST BPELTEST PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT -u 'http_port_two=$HP2' < inv.sql
+ cd ../fault1_req
+-START_SERVER $DS2 1000
++START_SERVER $DS2 60
+ cd ../fault1
+ DSN=$DS1
+ RUN $ISQL $DS1 dba dba PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT -u 'http_port_two=$HP2' < processXQuery/ini.sql
+--- a/binsrc/tests/suite/byteorder.sh
++++ b/binsrc/tests/suite/byteorder.sh
+@@ -87,7 +87,7 @@
+ 
+ SHUTDOWN_SERVER
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < byteorder.sql
+ 
+--- a/binsrc/tests/suite/gtkbench.sh
++++ b/binsrc/tests/suite/gtkbench.sh
+@@ -70,7 +70,7 @@
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+ SHUTDOWN_SERVER
+-START_SERVER $PORT 1000 
++START_SERVER $PORT 60 
+ 
+ LOG "Creating the schema"
+ RUN $GTKBENCH $LOGIN -C
+--- a/binsrc/tests/suite/inprocess.sh
++++ b/binsrc/tests/suite/inprocess.sh
+@@ -36,7 +36,7 @@
+ rm -f $DBLOGFILE
+ rm -f $DBFILE
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $INS $DSN 1000 100 dba dba usedt
+ if test $STATUS -ne 0
+--- a/binsrc/tests/suite/large_db.sh
++++ b/binsrc/tests/suite/large_db.sh
+@@ -44,7 +44,7 @@
+ then
+ 
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < large_db_5g.sql
+ 
+@@ -69,7 +69,7 @@
+ LOG "Staring server with  $OBACKUP_REP_OPTION large_"
+ RUN $SERVER $FOREGROUND_OPTION $OBACKUP_REP_OPTION "large_"
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < large_db_check.sql
+ 
+ SHUTDOWN_SERVER
+@@ -104,7 +104,7 @@
+ 
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < large_db_3g.sql
+ 
+@@ -126,7 +126,7 @@
+ LOG "Staring server with  $OBACKUP_REP_OPTION large_"
+ RUN $SERVER $FOREGROUND_OPTION $OBACKUP_REP_OPTION "large_"
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < large_db_3g_check.sql
+ 
+ SHUTDOWN_SERVER
+@@ -162,7 +162,7 @@
+ 
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < large_db_5g.sql
+ 
+--- a/binsrc/tests/suite/msdtc.sh
++++ b/binsrc/tests/suite/msdtc.sh
+@@ -146,7 +146,7 @@
+ 
+ LOGFILE=../msdtc.output
+ cp -r ../plugins ./
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ cd ..
+ 
+ rm -rf msdtc2
+@@ -156,7 +156,7 @@
+ mkINI "virtuoso.ini" $DS2
+ 
+ cp -r ../plugins ./
+-START_SERVER $DS2 1000
++START_SERVER $DS2 60
+ cd ..
+ 
+ LOGFILE=msdtc.output
+@@ -218,7 +218,7 @@
+ sleep 10
+ 
+ 
+-START_SERVER $DS2 1000
++START_SERVER $DS2 60
+ cd ..
+ 
+ RUN $ISQL $DS2 PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < msdtc_conn_check.sql
+@@ -244,7 +244,7 @@
+ 
+ LOGFILE=../msdtc.output
+ cp -r ../plugins ./
+-START_SERVER $DS3 1000
++START_SERVER $DS3 60
+ cd ..
+ 
+ RUN $ISQL $DS2 PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < msdtc_conn_check.sql
+--- a/binsrc/tests/suite/nwxml.sh
++++ b/binsrc/tests/suite/nwxml.sh
+@@ -35,7 +35,7 @@
+ cp "${HOME}/binsrc/samples/demo/noise.txt" .
+ rm -f $DELETEMASK
+ MAKECFG_FILE_WITH_HTTP $TESTCFGFILE $PORT $HTTPPORT $CFGFILE
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tlogft1.sql
+ if test $STATUS -ne 0
+@@ -45,7 +45,7 @@
+ fi
+ 
+ STOP_SERVER
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tlogft2.sql
+ if test $STATUS -ne 0
+@@ -98,7 +98,7 @@
+ #fi
+ 
+ STOP_SERVER
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ #RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < nwxml3b.sql
+ #if test $STATUS -ne 0
+@@ -151,7 +151,7 @@
+ fi
+ 
+ STOP_SERVER
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ #RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < nwxmltype3b.sql
+ #if test $STATUS -ne 0
+--- a/binsrc/tests/suite/obackup.sh
++++ b/binsrc/tests/suite/obackup.sh
+@@ -46,7 +46,7 @@
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+ SHUTDOWN_SERVER
+-START_SERVER $PORT 1000 $NO_CP_OPT
++START_SERVER $PORT 60 $NO_CP_OPT
+ 
+ RUN $INS $DSN 100000  100
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < nwdemo_norefs.sql
+@@ -55,7 +55,7 @@
+ 
+ RUN $ISQL $DSN '"EXEC=shutdown();"' ERRORS=STDOUT
+ 
+-START_SERVER $PORT 1000 $NO_CP_OPT
++START_SERVER $PORT 60 $NO_CP_OPT
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < nwdemo_update.sql
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < obackup.sql
+@@ -69,7 +69,7 @@
+ echo "Staring server with  $OBACKUP_REP_OPTION nwdemo_i_#"
+ RUN $SERVER $FOREGROUND_OPTION $OBACKUP_REP_OPTION "nwdemo_i_#" $OBACKUP_DIRS_OPTION nw1,nw2,nw3,nw4,nw5
+ 
+-START_SERVER $PORT 1000 $NO_CP_OPT
++START_SERVER $PORT 60 $NO_CP_OPT
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < obackup1.sql
+ 
+@@ -83,7 +83,7 @@
+ echo "Staring server with  $OBACKUP_REP_OPTION nwdemo_i_#"
+ RUN $SERVER $FOREGROUND_OPTION $OBACKUP_REP_OPTION "nwdemo_i_#" $OBACKUP_DIRS_OPTION nw1,nw2,nw3,nw4,nw5
+ 
+-START_SERVER $PORT 1000 $NO_CP_OPT
++START_SERVER $PORT 60 $NO_CP_OPT
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < obackupck.sql
+ 
+@@ -102,7 +102,7 @@
+ echo "Staring server with  $OBACKUP_REP_OPTION vvv"
+ RUN $SERVER $FOREGROUND_OPTION $OBACKUP_REP_OPTION "vvv"
+ 
+-START_SERVER $PORT 1000 $NO_CP_OPT
++START_SERVER $PORT 60 $NO_CP_OPT
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < obackup_userck2.sql
+ 
+@@ -127,7 +127,7 @@
+ 
+ RUN $ISQL $DSN '"EXEC=shutdown();"' ERRORS=STDOUT
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ echo "Updating tpcc table, stage 1"
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tpcc_update1.sql
+@@ -139,7 +139,7 @@
+ echo "Staring server with  $OBACKUP_REP_OPTION tpcc_k_#"
+ RUN $SERVER $FOREGROUND_OPTION $OBACKUP_REP_OPTION "tpcc_k_#"
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ echo "Checking tpcc database"
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < ob_tpcc_check.sql
+@@ -154,7 +154,7 @@
+ echo "Staring server with  $OBACKUP_REP_OPTION tpcc_i_#"
+ RUN $SERVER $FOREGROUND_OPTION $OBACKUP_REP_OPTION "tpcc_i_#"
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ echo "Checking tpcc database..."
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < ob_tpcc_check.sql
+--- a/binsrc/tests/suite/oledb.sh
++++ b/binsrc/tests/suite/oledb.sh
+@@ -116,7 +116,7 @@
+ 
+ #REGISTER_PROVIDER
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < nwdemo.sql
+ if [ $STATUS -ne 0 ]; then
+--- a/binsrc/tests/suite/rtest.sh
++++ b/binsrc/tests/suite/rtest.sh
+@@ -65,7 +65,7 @@
+ cd remote1
+ MAKECFG_FILE ../$TESTCFGFILE $DS1 $CFGFILE
+ ln -s ../words.esp words.esp
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ cd ..
+ 
+ rm -rf remote2
+@@ -73,7 +73,7 @@
+ cd remote2
+ MAKECFG_FILE ../$TESTCFGFILE $DS2 $CFGFILE
+ ln -s ../words.esp words.esp
+-START_SERVER $DS2 1000
++START_SERVER $DS2 60
+ cd ..
+ 
+ LOG "Loading base tables"
+@@ -162,7 +162,7 @@
+ fi
+ 
+ cd remote1
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ cd ..
+ 
+ RUN $ISQL $DS2 PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < rtest5.sql
+--- a/binsrc/tests/suite/tblob_recode.sh
++++ b/binsrc/tests/suite/tblob_recode.sh
+@@ -86,7 +86,7 @@
+ 
+ SHUTDOWN_SERVER
+ rm -f $DBLOGFILE $DBFILE
+-START_SERVER $PORT 1000 
++START_SERVER $PORT 60 
+ 
+ gunzip -c pdd_txt.gz >pdd.txt
+ 
+--- a/binsrc/tests/suite/tclstart.sh
++++ b/binsrc/tests/suite/tclstart.sh
+@@ -52,4 +52,4 @@
+ export BACKUP_DUMP_OPTION CRASH_DUMP_OPTION TESTCFGFILE SERVER
+ 
+ . ./test_fn.sh
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+--- a/binsrc/tests/suite/tcpt.sh
++++ b/binsrc/tests/suite/tcpt.sh
+@@ -37,7 +37,7 @@
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+ STOP_SERVER
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $INS $DSN 100000 1
+ 
+@@ -45,7 +45,7 @@
+ 
+ rm -f $LOCKFILE
+ #exit;
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tcptck.sql
+ 
+@@ -60,14 +60,14 @@
+ rm -f $DBFILE
+ rm -f *.cpt-after-recov *.trx-after-recov *.cpt
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $INS $DSN 100000 1
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT -u "FLAG=2" < tcptdt.sql
+ 
+ rm -f $LOCKFILE
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tcptck.sql
+ 
+--- a/binsrc/tests/suite/tdav.sh
++++ b/binsrc/tests/suite/tdav.sh
+@@ -81,7 +81,7 @@
+ _dsn=$DSN
+ DSN=$DS1
+ SHUTDOWN_SERVER
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ CHECK_HTTP_PORT $HTTPPORT
+ 
+ 
+--- a/binsrc/tests/suite/tdav_meta.sh
++++ b/binsrc/tests/suite/tdav_meta.sh
+@@ -89,7 +89,7 @@
+ _dsn=$DSN
+ DSN=$DS1
+ SHUTDOWN_SERVER
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ CHECK_HTTP_PORT $HTTPPORT
+ 
+ LOG "test1"
+--- a/binsrc/tests/suite/tdbp.sh
++++ b/binsrc/tests/suite/tdbp.sh
+@@ -183,7 +183,7 @@
+ 
+ SHUTDOWN_SERVER
+ rm -f $DBLOGFILE $DBFILE
+-START_SERVER $PORT 1000 
++START_SERVER $PORT 60 
+ 
+ gunzip -c pdd_txt.gz >pdd.txt
+ 
+@@ -234,7 +234,7 @@
+ LOG "Removing database"
+ rm -f $DBLOGFILE $DBFILE
+ LOG "Starting an empty database"
+-START_SERVER $PORT 1000 
++START_SERVER $PORT 60 
+ 
+ 
+ GenPUMP2 $SAVDSN t2.args
+@@ -245,7 +245,7 @@
+ DoCommand  $SAVDSN 'select U_NAME, U_PASSWORD, U_GROUP, U_ID, U_DATA, U_IS_ROLE, U_SQL_ENABLE from "DB"."DBA"."SYS_USERS";' "Getting users"
+ 
+ STOP_SERVER
+-START_SERVER $PORT 1000 
++START_SERVER $PORT 60 
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tmulgrp2.sql
+ if test $STATUS -ne 0
+--- a/binsrc/tests/suite/tdconv.sh
++++ b/binsrc/tests/suite/tdconv.sh
+@@ -210,7 +210,7 @@
+ 
+ SHUTDOWN_SERVER
+ rm -f $DBLOGFILE $DBFILE
+-START_SERVER $PORT 1000 
++START_SERVER $PORT 60 
+ 
+ 
+ 
+--- a/binsrc/tests/suite/tdrop.sh
++++ b/binsrc/tests/suite/tdrop.sh
+@@ -73,7 +73,7 @@
+ rm -f $DBFILE
+ MakeIni
+ 
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ 
+ 
+ LOG "FILLING TPC-C DB"
+@@ -86,7 +86,7 @@
+ ../tpcc "localhost:$DS1" $USR $PWD i 1 
+ 
+ SHUTDOWN_SERVER
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ 
+ #RUN $ISQL $DS1 '"EXEC=load tdrop1.sql;"' ERRORS=stdout >> $LOGFILE 
+ 
+@@ -108,13 +108,13 @@
+ 
+ SHUTDOWN_SERVER
+ 
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ RUN $ISQL $DS1 PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tdrop1.sql
+ # Kill the server with raw_exit
+ RUN $ISQL $DS1 '"EXEC=raw_exit();"' ERRORS=stdout
+ 
+ # check dropped table
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ RUN $ISQL $DS1 PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tdrop2.sql
+ 
+ SHUTDOWN_SERVER
+--- a/binsrc/tests/suite/testall.sh
++++ b/binsrc/tests/suite/testall.sh
+@@ -150,7 +150,7 @@
+ #
+ #  Start the server once:
+ #
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ 
+ 
+@@ -273,7 +273,7 @@
+ #
+ rm -f $DELETEMASK
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ LOG "Getting the status of database into file ident.txt"
+ if $ISQL $DSN "EXEC=status();" VERBOSE=OFF ERRORS=STDOUT > ident.txt
+--- a/binsrc/tests/suite/thttp.sh
++++ b/binsrc/tests/suite/thttp.sh
+@@ -799,7 +799,7 @@
+      BLOG_TEST=0  
+      LOG "ODS & Blog2 VAD packages are not built"
+    fi
+-   START_SERVER $PORT 1000
++   START_SERVER $PORT 60
+    sleep 1
+    if [ $BLOG_TEST -eq 1 ]
+    then
+--- a/binsrc/tests/suite/timsg.sh
++++ b/binsrc/tests/suite/timsg.sh
+@@ -73,7 +73,7 @@
+    ;;
+ esac   
+ 
+-START_SERVER $PORT 1000 
++START_SERVER $PORT 60 
+ 
+ #make another test file, the original text_1947.db.test is no longer in the db
+ cp words.esp test_1947.db.test
+--- a/binsrc/tests/suite/tjdbc.sh
++++ b/binsrc/tests/suite/tjdbc.sh
+@@ -41,7 +41,7 @@
+ rm -f $DBFILE
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ ECHO "STARTED: JDBC 2 Test suite"
+ cd $JDBCDIR
+@@ -81,7 +81,7 @@
+ rm -f $DBFILE
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ ECHO "STARTED: JDBC 3 Test suite"
+ cd $JDBCDIR
+--- a/binsrc/tests/suite/tpcd.sh
++++ b/binsrc/tests/suite/tpcd.sh
+@@ -58,7 +58,7 @@
+ mkdir tpcdremote1
+ cd tpcdremote1
+ MAKECFG_FILE ../$TESTCFGFILE $DS1 $CFGFILE
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ cd ..
+ 
+ LOG
+@@ -91,7 +91,7 @@
+ mkdir tpcdremote2
+ cd tpcdremote2
+ MAKECFG_FILE ../$TESTCFGFILE $DS2 $CFGFILE
+-START_SERVER $DS2 1000
++START_SERVER $DS2 60
+ cd ..
+ 
+ LOG
+--- a/binsrc/tests/suite/tproviders.sh
++++ b/binsrc/tests/suite/tproviders.sh
+@@ -51,7 +51,7 @@
+ NIGHTLY_PORT=$PORT
+ export NIGHTLY_PORT
+ 
+-START_SERVER $PORT 1000 
++START_SERVER $PORT 60 
+ 
+ #
+ #   Run Jena tests
+--- a/binsrc/tests/suite/tproxy.sh
++++ b/binsrc/tests/suite/tproxy.sh
+@@ -243,7 +243,7 @@
+    GenHTML
+    GenVSP
+    STOP_SERVER
+-   START_SERVER $DSN 1000
++   START_SERVER $DSN 60
+    sleep 1
+    cd ..
+ 
+--- a/binsrc/tests/suite/trecov.sh
++++ b/binsrc/tests/suite/trecov.sh
+@@ -35,7 +35,7 @@
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+ SHUTDOWN_SERVER
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < treg1.sql
+ 
+@@ -101,7 +101,7 @@
+ cp $DBFILE $DBFILE.r1
+ cp $DBLOGFILE $DBLOGFILE.r1
+ cp $SRVMSGLOGFILE $SRVMSGLOGFILE.r1
+-START_SERVER $PORT 2000
++START_SERVER $PORT 60
+ 
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < recovck1.sql
+@@ -175,7 +175,7 @@
+     exit 3
+ fi
+ 
+-START_SERVER $PORT 3000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < recovck1.sql
+ if test $STATUS -ne 0
+@@ -230,7 +230,7 @@
+     exit 3
+ fi
+ 
+-START_SERVER $PORT 3000
++START_SERVER $PORT 60
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < recovck1.sql
+ if test $STATUS -ne 0
+ then
+@@ -281,7 +281,7 @@
+     exit 3
+ fi
+ 
+-START_SERVER $PORT 3000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < recovck1.sql
+ if test $STATUS -ne 0
+@@ -344,7 +344,7 @@
+ ## now check for results
+ 
+ RUN ls -la virtuoso.*
+-START_SERVER $PORT 3000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < recovck1_noreg.sql
+ if test $STATUS -ne 0
+--- a/binsrc/tests/suite/trecov_schema.sh
++++ b/binsrc/tests/suite/trecov_schema.sh
+@@ -45,7 +45,7 @@
+ esac	  
+ 
+ SHUTDOWN_SERVER
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < treg1.sql
+ 
+@@ -103,7 +103,7 @@
+ fi
+ 
+ SHUTDOWN_SERVER
+-START_SERVER $PORT 3000
++START_SERVER $PORT 60
+ LOG "Next we do a checkpoint third time and then kill database server with"
+ LOG "raw_exit() after which we should get Lost Connection to Server -error."
+ #RUN $ISQL $DSN '"EXEC=checkpoint; raw_exit();"' ERRORS=STDOUT
+@@ -155,7 +155,7 @@
+ ## now check for results
+ 
+ RUN ls -la virtuoso.*
+-START_SERVER $PORT 3000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < recovck1_noreg.sql
+ if test $STATUS -ne 0
+--- a/binsrc/tests/suite/trepl.sh
++++ b/binsrc/tests/suite/trepl.sh
+@@ -284,7 +284,7 @@
+ MakeConfig $DBNAME1 $http1 $DS1
+ CHECK_PORT $http1
+ ECHO "Starting server 'rep1'"
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ cd ..
+ 
+ # Second replication server configuration
+@@ -293,7 +293,7 @@
+ MakeConfig $DBNAME2 $http2 $DS2
+ CHECK_PORT $http2
+ ECHO "Starting server 'rep2'"
+-START_SERVER $DS2 1000
++START_SERVER $DS2 60
+ cd ..
+ 
+ if [ $_nservers -gt 2 ]
+@@ -302,7 +302,7 @@
+  MakeConfig $DBNAME3 $http3 $DS3
+  CHECK_PORT $http3
+  ECHO "Starting server 'rep3'"
+- START_SERVER $DS3 1000
++ START_SERVER $DS3 60
+  cd ..
+  fi
+ }
+--- a/binsrc/tests/suite/treplh.sh
++++ b/binsrc/tests/suite/treplh.sh
+@@ -175,14 +175,14 @@
+ MakeConfig $DBNAME1 $http1 $DS1
+ CHECK_PORT $http1
+ ECHO "Starting server 'rep1'"
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ cd ..
+ 
+ cd rep3
+ MakeConfig $DBNAME3 $http3 $DS3
+ CHECK_PORT $http3
+ ECHO "Starting server 'rep3'"
+-START_SERVER $DS3 1000
++START_SERVER $DS3 60
+ cd ..
+ 
+ SILENT=0
+--- a/binsrc/tests/suite/tsec.sh
++++ b/binsrc/tests/suite/tsec.sh
+@@ -36,7 +36,7 @@
+ rm -f $DBLOGFILE
+ rm -f $DBFILE
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $INS $DSN 20 100
+ # note that the test script filename has to be given as the fourth
+@@ -147,7 +147,7 @@
+ 
+ 
+ SHUTDOWN_SERVER
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ #BUGZILLA 6057
+ 
+--- a/binsrc/tests/suite/tsoap12.sh
++++ b/binsrc/tests/suite/tsoap12.sh
+@@ -4273,7 +4273,7 @@
+ sav_log=$LOGFILE
+ LOGFILE=tsoap12.output
+ export LOGFILE 
+-START_SERVER $DSN 1000
++START_SERVER $DSN 60
+ LOGFILE=$sav_log
+ export LOGFILE
+ 
+--- a/binsrc/tests/suite/tsparql.sh
++++ b/binsrc/tests/suite/tsparql.sh
+@@ -42,7 +42,7 @@
+ STOP_SERVER
+ rm -f $DELETEMASK
+ MAKECFG_FILE_WITH_HTTP $TESTCFGFILE $PORT $HTTPPORT $CFGFILE
+-START_SERVER $DSN 1000
++START_SERVER $DSN 60
+ sleep 5
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT -u "HTTPPORT=$HTTPPORT" -u "HTTPPORT1=$HTTPPORT1" < tsparql.sql
+--- a/binsrc/tests/suite/tsparql_demo.sh
++++ b/binsrc/tests/suite/tsparql_demo.sh
+@@ -45,7 +45,7 @@
+ rm -f $DBLOGFILE
+ rm -f $DBFILE
+ MAKECFG_FILE_WITH_HTTP $TESTCFGFILE $PORT $HTTPPORT $CFGFILE
+-START_SERVER $DSN 1000
++START_SERVER $DSN 60
+ sleep 5
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < nwdemo.sql
+--- a/binsrc/tests/suite/tsql.sh
++++ b/binsrc/tests/suite/tsql.sh
+@@ -37,7 +37,7 @@
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ RUN $INS $DSN 100000  100
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tcptrb3.sql
+ if test $STATUS -ne 0
+@@ -56,7 +56,7 @@
+ RUN $ISQL $DSN '"EXEC=raw_exit();"' ERRORS=STDOUT
+ 
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tcptrb2.sql
+ if test $STATUS -ne 0
+@@ -68,7 +68,7 @@
+ 
+ 
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < twords.sql
+ if test $STATUS -ne 0
+--- a/binsrc/tests/suite/tsql2.sh
++++ b/binsrc/tests/suite/tsql2.sh
+@@ -38,7 +38,7 @@
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+ SHUTDOWN_SERVER
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $INS $DSN 20 100
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tschema1.sql
+--- a/binsrc/tests/suite/tsql3.sh
++++ b/binsrc/tests/suite/tsql3.sh
+@@ -37,7 +37,7 @@
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+ SHUTDOWN_SERVER
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tnull.sql
+ if test $STATUS -ne 0
+@@ -229,7 +229,7 @@
+     mv $CFGFILE BACK_$CFGFILE
+     cat BACK_$CFGFILE | sed -e "s/ADD_VIEWS/1/g" > $CFGFILE
+     cat $CFGFILE >> $LOGFILE
+-    START_SERVER $PORT 1000
++    START_SERVER $PORT 60
+ 
+     RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT -u follow_std=0 < tviewqual.sql
+     if test $STATUS -ne 0
+--- a/binsrc/tests/suite/tsqllite.sh
++++ b/binsrc/tests/suite/tsqllite.sh
+@@ -34,13 +34,13 @@
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+ STOP_SERVER
+-#START_SERVER $PORT 1000
++#START_SERVER $PORT 60
+ 
+ BANNER "STARTED SERIES OF SQL TESTS (tsqllite.sh)"
+ 
+ #SHUTDOWN_SERVER
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < twords.sql
+ if test $STATUS -ne 0
+--- a/binsrc/tests/suite/tsqlo.sh
++++ b/binsrc/tests/suite/tsqlo.sh
+@@ -91,7 +91,7 @@
+ rm -f $DBFILE
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ LOG "Loading base tables"
+ RUN $INS $DSN 1000 20 dba dba
+@@ -157,7 +157,7 @@
+ rm -f $DBFILE
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ LOG "Loading base tables"
+ RUN $INS $DSN 1000 20 dba dba
+@@ -195,14 +195,14 @@
+ mkdir oremote1
+ cd oremote1
+ MAKECFG_FILE ../$TESTCFGFILE $DS1 $CFGFILE
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ cd ..
+ 
+ rm -rf oremote2
+ mkdir oremote2
+ cd oremote2
+ MAKECFG_FILE ../$TESTCFGFILE $DS2 $CFGFILE
+-START_SERVER $DS2 1000
++START_SERVER $DS2 60
+ cd ..
+ 
+ fi
+--- a/binsrc/tests/suite/tstriping.sh
++++ b/binsrc/tests/suite/tstriping.sh
+@@ -56,7 +56,7 @@
+ 
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ 
+ RUN $ISQL $DS1 ERRORS=STDOUT VERBOSE=OFF PROMPT=OFF < toutdsk.sql 
+ if test $STATUS -ne 0
+@@ -67,7 +67,7 @@
+ fi
+ SHUTDOWN_SERVER
+ 
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ RUN $ISQL $DS1 ERRORS=STDOUT VERBOSE=OFF PROMPT=OFF < toutdskck.sql 
+ if test $STATUS -ne 0
+ then
+--- a/binsrc/tests/suite/tsxml.sh
++++ b/binsrc/tests/suite/tsxml.sh
+@@ -39,7 +39,7 @@
+ cat $TESTCFGFILE | sed -e "s/PORT/$PORT/g" -e "s/CASE_MODE/$CASE_MODE/g" > $CFGFILE
+ 
+ # SHUTDOWN_SERVER
+-# START_SERVER $PORT 1000 
++# START_SERVER $PORT 60 
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < schemasource/load_tables.isql
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < schemasource/vsputils.isql
+--- a/binsrc/tests/suite/ttutorial.sh
++++ b/binsrc/tests/suite/ttutorial.sh
+@@ -118,7 +118,7 @@
+ cp tmp.ini $CFGFILE
+ rm tmp.ini
+ 
+-START_SERVER $PORT 1000 
++START_SERVER $PORT 60 
+ sleep 1
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT EXEC="'status()'"
+ if test $STATUS -ne 0
+--- a/binsrc/tests/suite/tupgrade_recov.sh
++++ b/binsrc/tests/suite/tupgrade_recov.sh
+@@ -36,7 +36,7 @@
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+ SHUTDOWN_SERVER
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < treg1.sql
+ 
+@@ -100,7 +100,7 @@
+ STOP_SERVER
+ 
+ sleep 5
+-START_SERVER $PORT 2000
++START_SERVER $PORT 60
+ 
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < recovck1.sql
+@@ -150,7 +150,7 @@
+ fi
+ 
+ rm -f $DBFILE
+-START_SERVER $PORT 3000 -R
++START_SERVER $PORT 60 -R
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < recovck1.sql
+ if test $STATUS -ne 0
+@@ -176,7 +176,7 @@
+ mv backup.log $DBLOGFILE
+ rm -f $DBFILE
+ 
+-START_SERVER $PORT 3000 -R
++START_SERVER $PORT 60 -R
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < recovck1.sql
+ if test $STATUS -ne 0
+ then
+@@ -203,7 +203,7 @@
+ fi
+ 
+ rm -f $DBFILE
+-START_SERVER $PORT 3000 -R
++START_SERVER $PORT 60 -R
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < recovck1.sql
+ if test $STATUS -ne 0
+--- a/binsrc/tests/suite/tvad.sh
++++ b/binsrc/tests/suite/tvad.sh
+@@ -74,13 +74,13 @@
+   #SHUTDOWN_SERVER
+   STOP_SERVER
+   
+-  START_SERVER $PORT 1000 
++  START_SERVER $PORT 60 
+ 
+   RUN $ISQL $DSN dba dba PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tvadbtest.sql 
+ 
+   STOP_SERVER
+   rm -f $DBLOGFILE
+-  START_SERVER $PORT 1000 
++  START_SERVER $PORT 60 
+ }
+ 
+  
+@@ -249,7 +249,7 @@
+ 
+ SHUTDOWN_SERVER
+ rm -f $DBLOGFILE $DBFILE
+-START_SERVER $PORT 1000 
++START_SERVER $PORT 60 
+ 
+ DoCommand  $DSN "select \"DB\".\"DBA\".\"VAD_PACK\" ('t1.xml', '', 't1.vad');" "VAD_PACK 1"
+ DoCommand  $DSN "select \"DB\".\"DBA\".\"VAD_PACK\" ('t2.xml', '', 't2.vad');" "VAD_PACK 2"
+--- a/binsrc/tests/suite/tvad2.sh
++++ b/binsrc/tests/suite/tvad2.sh
+@@ -72,13 +72,13 @@
+   echo "+ " $ISQL $_dsn dba dba ERRORS=STDOUT VERBOSE=OFF PROMPT=OFF "EXEC=$command" $*   >> $LOGFILE 
+ 
+   SHUTDOWN_SERVER
+-  START_SERVER $PORT 1000 
++  START_SERVER $PORT 60 
+ 
+   RUN $ISQL $DSN dba dba PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tvadbtest.sql 
+ 
+   STOP_SERVER
+   rm -f $DBLOGFILE
+-  START_SERVER $PORT 1000 
++  START_SERVER $PORT 60 
+ }
+ 
+  
+@@ -94,7 +94,7 @@
+ 
+ SHUTDOWN_SERVER
+ rm -f $DBLOGFILE $DBFILE
+-START_SERVER $PORT 1000 
++START_SERVER $PORT 60 
+ 
+ DoCommand  $DSN "select \"DB\".\"DBA\".\"VAD_PACK\" ('vad_test1.xml', '', 'vad_test1.vad');" "VAD_PACK 1"
+ DoCommand  $DSN "select \"DB\".\"DBA\".\"VAD_PACK\" ('vad_test2.xml', '', 'vad_test2.vad');" "VAD_PACK 2"
+--- a/binsrc/tests/suite/tvsp.sh
++++ b/binsrc/tests/suite/tvsp.sh
+@@ -38,7 +38,7 @@
+ MAKECFG_FILE $TESTCFGFILE $PORT $CFGFILE
+ 
+ SHUTDOWN_SERVER
+-START_SERVER $PORT 1000
++START_SERVER $PORT 60
+ 
+ RUN $ISQL $DSN PROMPT=OFF VERBOSE=OFF ERRORS=STDOUT < tvsp.sql
+ 
+--- a/binsrc/tests/suite/tvspx.sh
++++ b/binsrc/tests/suite/tvspx.sh
+@@ -303,7 +303,7 @@
+ #MakeIni
+ MakeConfig 
+ CHECK_PORT $TPORT
+-START_SERVER $DSN 1000
++START_SERVER $DSN 60
+ sleep 1
+ cd ..
+ DoCommand $DSN "DB.DBA.VHOST_DEFINE ('*ini*', '*ini*', '/', '/', 0, 0, NULL,  NULL, NULL, NULL, 'dba', NULL, NULL, 0);"
+--- a/binsrc/tests/suite/tvspxex.sh
++++ b/binsrc/tests/suite/tvspxex.sh
+@@ -2597,7 +2597,7 @@
+ #MakeIni
+ MakeConfig 
+ CHECK_PORT $TPORT
+-START_SERVER $DSN 1000
++START_SERVER $DSN 60
+ sleep 1
+ 
+ 
+--- a/binsrc/tests/suite/twcopy.sh
++++ b/binsrc/tests/suite/twcopy.sh
+@@ -598,7 +598,7 @@
+ 
+ 
+ MakeIni
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ CHECK_HTTP_PORT $TPORT
+ cd ..
+ 
+--- a/binsrc/tests/suite/twiki.sh
++++ b/binsrc/tests/suite/twiki.sh
+@@ -132,7 +132,7 @@
+ 	    LOG "ODS & Blog2 VAD packages are not built"
+ 	fi
+ 
+-	START_SERVER $DSN 1000
++	START_SERVER $DSN 60
+ 	sleep 1
+ 
+ 
+--- a/binsrc/tests/suite/txslt.sh
++++ b/binsrc/tests/suite/txslt.sh
+@@ -133,7 +133,7 @@
+ mkdir xslt
+ cd xslt
+ MakeConfig $DS1 $HTTP_PORT
+-START_SERVER $DS1 1000
++START_SERVER $DS1 60
+ cd ..
+ 
+ MakeSQLXML
+--- a/binsrc/tests/tpcrun/tpc_run.sh
++++ b/binsrc/tests/tpcrun/tpc_run.sh
+@@ -184,7 +184,7 @@
+     BANNER "INITIALIZE TPC BENCHMARK DATABASE"
+ 
+     STOP_SERVER
+-    START_SERVER $PORT 1000
++    START_SERVER $PORT 60
+ 
+     RUN $ISQL $PORT dba dba ../tpccddk.sql
+     if test $STATUS -ne 0
+@@ -225,7 +225,7 @@
+     BANNER "STARTING TPC BENCHMARK DATABASE TEST"
+ 
+ #    STOP_SERVER
+-    START_SERVER $PORT 1000
++    START_SERVER $PORT 60
+ 
+     #
+     #  Start manual checkpointing (XXX is this really necessary)
+@@ -307,7 +307,7 @@
+     SHUTDOWN_SERVER
+     rm -f *.db *.trx
+     RUN $SERVER $FOREGROUND_OPTION $OBACKUP_REP_OPTION "tpcc-" 
+-    START_SERVER $PORT 1000
++    START_SERVER $PORT 60
+     RUN $ISQL $PORT PROMPT=OFF VERBOSE=OFF  < tpc_back.sql
+     if test $STATUS -ne 0
+     then
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/patches/series
+++ virtuoso-opensource-6.1.2+dfsg1/debian/patches/series
@@ -0,0 +1,8 @@
+build-short-timeout.patch
+ftbfs-kfreebsd.patch
+repack-oat.patch
+repack-tutorial.patch
+repack-pcre.patch
+repack-zlib.patch
+build-generated-code-multiple-outputs.patch
+build-gmake-to-make.patch
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/patches/repack-pcre.patch
+++ virtuoso-opensource-6.1.2+dfsg1/debian/patches/repack-pcre.patch
@@ -0,0 +1,110 @@
+Description: Fix PCRE related code after repacking
+ Fix a few usages of PCRE after total removal through repacking.
+Author: Obey Arthur Liu <arthur@milliways.fr>
+Last-Update: 2010-02-17
+--- a/configure.in
++++ b/configure.in
+@@ -485,6 +485,8 @@
+ AC_CHECK_LIB(socket, socket, [VLIBS="-lsocket $VLIBS"], [], $VLIBS) # SVR4 sockets
+ fi
+ AC_CHECK_LIB(m, cos, [VLIBS="-lm $VLIBS"]) # complex math
++# Added by Debian maintainer, replaces shipped pcre
++AC_CHECK_LIB(pcre, pcre_compile)
+ 
+ ##########################################################################
+ ##									##
+--- a/libsrc/Wi/bif_regexp.c
++++ b/libsrc/Wi/bif_regexp.c
+@@ -28,7 +28,9 @@
+ #include "multibyte.h"
+ #include "srvmultibyte.h"
+ 
+-#include "util/pcrelib/pcre.h"
++// Debian maintainer: replaced by external PCRE
++// #include "util/pcrelib/pcre.h"
++#include "pcre.h"
+ 
+ /*
+    typedef struct rx_query_s {
+--- a/libsrc/Wi/xqf.c
++++ b/libsrc/Wi/xqf.c
+@@ -38,7 +38,9 @@
+ #include "xpf.h"
+ #include "xqf.h"
+ 
+-#include "util/pcrelib/pcre.h"
++// Debian maintainer: replaced by external PCRE
++// #include "util/pcrelib/pcre.h"
++#include "pcre.h"
+ 
+ #define ecm_isname(c) \
+   ( ((c) & ~0xFF) ? (ecm_utf8props[(c)] & ECM_ISNAME) : \
+--- a/libsrc/util/Makefile.am
++++ b/libsrc/util/Makefile.am
+@@ -85,24 +85,26 @@
+ 	virt_mbsnrtowcs.c \
+ 	virt_wcrtomb.c \
+ 	virt_wcs_mask.c \
+-	virt_wcsnrtombs.c \
+-	pcrelib/pcre_chartables.c \
+-	pcrelib/pcre_compile.c \
+-	pcrelib/pcre_config.c \
+-	pcrelib/pcre_dfa_exec.c \
+-	pcrelib/pcre_exec.c \
+-	pcrelib/pcre_fullinfo.c \
+-	pcrelib/pcre_get.c \
+-	pcrelib/pcre_globals.c \
+-	pcrelib/pcre_newline.c \
+-	pcrelib/pcre_ord2utf8.c \
+-	pcrelib/pcre_study.c \
+-	pcrelib/pcre_tables.c \
+-	pcrelib/pcre_try_flipped.c \
+-	pcrelib/pcre_ucd.c \
+-	pcrelib/pcre_valid_utf8.c \
+-	pcrelib/pcre_version.c \
+-	pcrelib/pcre_xclass.c
++	virt_wcsnrtombs.c
++# From above:
++# Debian maintainer: Replaced by external PCRE
++#	pcrelib/pcre_chartables.c \
++#	pcrelib/pcre_compile.c \
++#	pcrelib/pcre_config.c \
++#	pcrelib/pcre_dfa_exec.c \
++#	pcrelib/pcre_exec.c \
++#	pcrelib/pcre_fullinfo.c \
++#	pcrelib/pcre_get.c \
++#	pcrelib/pcre_globals.c \
++#	pcrelib/pcre_newline.c \
++#	pcrelib/pcre_ord2utf8.c \
++#	pcrelib/pcre_study.c \
++#	pcrelib/pcre_tables.c \
++#	pcrelib/pcre_try_flipped.c \
++#	pcrelib/pcre_ucd.c \
++#	pcrelib/pcre_valid_utf8.c \
++#	pcrelib/pcre_version.c \
++#	pcrelib/pcre_xclass.c
+ 
+ 
+ BUILT_SOURCES = getdate.c
+@@ -121,14 +123,16 @@
+ 	getdate.y \
+ 	MSG_BG.bin \
+ 	MSG_EN.bin \
+-	pcrelib/AUTHORS \
+-	pcrelib/LICENCE \
+-	pcrelib/*.c \
+-	pcrelib/*.h \
+-	pcrelib/*.src \
+ 	win32/ptrlong.h \
+ 	win32/syslog.c \
+ 	win32/syslog.h \
+ 	winlog.mc \
+ 	winlog.rc
++# From above:
++# Debian maintainer: Replaced by external PCRE
++#	pcrelib/AUTHORS \
++#	pcrelib/LICENCE \
++#	pcrelib/*.c \
++#	pcrelib/*.h \
++#	pcrelib/*.src
+ 
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/patches/ftbfs-armel.patch
+++ virtuoso-opensource-6.1.2+dfsg1/debian/patches/ftbfs-armel.patch
@@ -0,0 +1,48 @@
+Description: FTBFS on armel
+ Fix fragile memory manipulation preprocessor macros on little endian archs.
+Author: Sune Vuorela <debian@pusling.com>
+Last-Update: 2010-03-14
+--- a/libsrc/Wi/widisk.h
++++ b/libsrc/Wi/widisk.h
+@@ -229,12 +229,20 @@
+ 
+ #else
+ 
++// Debian maintainer: armel compatibility
++#if 0
+ #define LONG_SET(p, l) \
+   *((int32*) (p)) = (l)
++#endif
++static inline void LONG_SET(unsigned char *p, int32 l) { int32 x = l; memcpy(p, &x, 4);  }
+ 
+ 
++// Debian maintainer: armel compatibility
++#if 0
+ #define LONG_REF(p) \
+   (* ((int32*) (p)))
++#endif
++static inline int32 LONG_REF(unsigned char *p) { int32 ret; memcpy(&ret, p, 4); return ret; }
+ 
+ #endif
+ 
+@@ -270,12 +278,20 @@
+ 
+ #define UINT32PL(p)  ((unsigned int32*)(p))
+ 
++// Debian maintainer: armel compatibility
++#if 0
+ #define INT64_REF(place) \
+   (((int64) (UINT32PL(place)[0])) << 32 | UINT32PL(place)[1])
++#endif
++static inline int64 INT64_REF(unsigned char *p) { int64 ret; memcpy(&ret, p, 8); return ret; }
+ 
++// Debian maintainer: armel compatibility
++#if 0
+ #define INT64_SET(place, v) \
+   {((unsigned int32*)(place))[0] = (v) >> 32; \
+   ((unsigned int32*)(place))[1] = (int32)(v); }
++#endif
++static inline void INT64_SET(unsigned char *place, int64 v) { int64 x = v; memcpy(place, &x, 8);  }
+ 
+ #endif
+ 
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/patches/build-gmake-to-make.patch
+++ virtuoso-opensource-6.1.2+dfsg1/debian/patches/build-gmake-to-make.patch
@@ -0,0 +1,15 @@
+Description: gmake to make
+ Use make instead of gmake in the build system.
+Author: Obey Arthur Liu <arthur@milliways.fr>
+Last-Update: 2010-02-17
+--- a/binsrc/sqldoc/vspx_doc.sh
++++ b/binsrc/sqldoc/vspx_doc.sh
+@@ -41,7 +41,7 @@
+ fi
+ pwddir=`pwd`
+ cd "${cutterdir}"
+-gmake
++make
+ cd "${pwddir}"
+ 
+ begin_xml ()
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/patches/repack-oat.patch
+++ virtuoso-opensource-6.1.2+dfsg1/debian/patches/repack-oat.patch
@@ -0,0 +1,14 @@
+Description: Fix OAT related code after repacking
+ Fix a few usages of OAT after partial removal through repacking.
+Author: Obey Arthur Liu <arthur@milliways.fr>
+Last-Update: 2010-07-11
+--- a/binsrc/oat/toolkit/loader.js
++++ b/binsrc/oat/toolkit/loader.js
+@@ -1652,7 +1652,6 @@
+ 	svgsparql:"geometry",
+ 	timeline:["slider","tlscale","resize"],
+ 	tree:"ghostdrag",
+-	webclip:"webclipbinding",
+ 	win:["drag","layers"],
+ 	ws:["xml","soap","ajax","schema","connection"],
+ 	xml:["xpath"],
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/patches/repack-zlib.patch
+++ virtuoso-opensource-6.1.2+dfsg1/debian/patches/repack-zlib.patch
@@ -0,0 +1,240 @@
+Description: Fix zlib related code after repacking
+ Fix a few usages of zlib after total removal through repacking.
+Author: Obey Arthur Liu <arthur@milliways.fr>
+Last-Update: 2010-02-17
+--- a/libsrc/Wi/bif_file.c
++++ b/libsrc/Wi/bif_file.c
+@@ -4668,7 +4668,11 @@
+   level = 6;
+ 
+   err = deflateInit2 (&(s->stream), level,
+-      Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, strategy);
++      Z_DEFLATED, -MAX_WBITS, 9, strategy);
++      // Debian maintainer: was:
++      //Z_DEFLATED, -MAX_WBITS, DEF_MEM_LEVEL, strategy);
++      // DEX_MEM_LEVEL hardcoded at 9, which is the value that
++      // results from upstream shipped zlib build anyway
+ 
+   s->stream.next_out = s->outbuf = (Byte *) dk_alloc (Z_BUFSIZE);
+   if (err != Z_OK || s->outbuf == Z_NULL)
+--- a/libsrc/zlib/Makefile.am
++++ b/libsrc/zlib/Makefile.am
+@@ -19,217 +19,4 @@
+ #  
+ #  
+ 
+-
+-if WITH_ZLIB
+-noinst_LTLIBRARIES = libz.la
+-endif
+-
+-noinst_HEADERS = \
+-	crc32.h \
+-	deflate.h \
+-	inffast.h \
+-	inffixed.h \
+-	inflate.h \
+-	inftrees.h \
+-	trees.h \
+-	zconf.h \
+-	zconf.in.h \
+-	zlib.h \
+-	zutil.h
+-
+-libz_la_SOURCES = \
+-	adler32.c \
+-	compress.c \
+-	crc32.c \
+-	deflate.c \
+-	gzio.c \
+-	infback.c \
+-	inffast.c \
+-	inflate.c \
+-	inftrees.c \
+-	trees.c \
+-	uncompr.c \
+-	zutil.c
+-
+-libz_la_CFLAGS  = @VIRT_AM_CFLAGS@
+-libz_la_CFLAGS  += -I$(top_srcdir)/libsrc
+-libz_la_CFLAGS  += -I$(top_srcdir)/libsrc/Dk
+-libz_la_LDFLAGS = -prefer-pic
+-
+-
+-# ----------------------------------------------------------------------
+-#
+-#  Additional files to distribute
+-#
+-# ----------------------------------------------------------------------
+-EXTRA_DIST = \
+-	ChangeLog \
+-	FAQ \
+-	INDEX \
+-	README \
+-	*.txt \
+-	amiga/Makefile.pup \
+-	amiga/Makefile.sas \
+-	as400/*.txt \
+-	as400/bndsrc \
+-	as400/compile.clp \
+-	as400/zlib.inc \
+-	configure \
+-	contrib/README.contrib \
+-	contrib/ada/*.txt \
+-	contrib/ada/buffer_demo.adb \
+-	contrib/ada/mtest.adb \
+-	contrib/ada/read.adb \
+-	contrib/ada/test.adb \
+-	contrib/ada/zlib-streams.adb \
+-	contrib/ada/zlib-streams.ads \
+-	contrib/ada/zlib-thin.adb \
+-	contrib/ada/zlib-thin.ads \
+-	contrib/ada/zlib.adb \
+-	contrib/ada/zlib.ads \
+-	contrib/ada/zlib.gpr \
+-	contrib/asm586/README.586 \
+-	contrib/asm586/match.S \
+-	contrib/asm686/README.686 \
+-	contrib/asm686/match.S \
+-	contrib/blast/*.txt \
+-	contrib/blast/README \
+-	contrib/blast/blast.c \
+-	contrib/blast/blast.h \
+-	contrib/blast/test.pk \
+-	contrib/delphi/*.txt \
+-	contrib/delphi/ZLib.pas \
+-	contrib/delphi/ZLibConst.pas \
+-	contrib/delphi/zlibd32.mak \
+-	contrib/dotzlib/*.txt \
+-	contrib/dotzlib/DotZLib.build \
+-	contrib/dotzlib/DotZLib.chm \
+-	contrib/dotzlib/DotZLib.sln \
+-	contrib/dotzlib/DotZLib/AssemblyInfo.cs \
+-	contrib/dotzlib/DotZLib/ChecksumImpl.cs \
+-	contrib/dotzlib/DotZLib/CircularBuffer.cs \
+-	contrib/dotzlib/DotZLib/CodecBase.cs \
+-	contrib/dotzlib/DotZLib/Deflater.cs \
+-	contrib/dotzlib/DotZLib/DotZLib.cs \
+-	contrib/dotzlib/DotZLib/DotZLib.csproj \
+-	contrib/dotzlib/DotZLib/GZipStream.cs \
+-	contrib/dotzlib/DotZLib/Inflater.cs \
+-	contrib/dotzlib/DotZLib/UnitTests.cs \
+-	contrib/infback9/README \
+-	contrib/infback9/infback9.c \
+-	contrib/infback9/infback9.h \
+-	contrib/infback9/inffix9.h \
+-	contrib/infback9/inflate9.h \
+-	contrib/infback9/inftree9.c \
+-	contrib/infback9/inftree9.h \
+-	contrib/inflate86/inffas86.c \
+-	contrib/inflate86/inffast.S \
+-	contrib/iostream/test.cpp \
+-	contrib/iostream/zfstream.cpp \
+-	contrib/iostream/zfstream.h \
+-	contrib/iostream2/zstream.h \
+-	contrib/iostream2/zstream_test.cpp \
+-	contrib/iostream3/README \
+-	contrib/iostream3/TODO \
+-	contrib/iostream3/test.cc \
+-	contrib/iostream3/zfstream.cc \
+-	contrib/iostream3/zfstream.h \
+-	contrib/masm686/match.asm \
+-	contrib/masmx64/*.txt \
+-	contrib/masmx64/bld_ml64.bat \
+-	contrib/masmx64/gvmat64.asm \
+-	contrib/masmx64/inffas8664.c \
+-	contrib/masmx64/inffasx64.asm \
+-	contrib/masmx86/*.txt \
+-	contrib/masmx86/bld_ml32.bat \
+-	contrib/masmx86/gvmat32.asm \
+-	contrib/masmx86/gvmat32c.c \
+-	contrib/masmx86/inffas32.asm \
+-	contrib/masmx86/mkasm.bat \
+-	contrib/minizip/ChangeLogUnzip \
+-	contrib/minizip/Makefile \
+-	contrib/minizip/crypt.h \
+-	contrib/minizip/ioapi.c \
+-	contrib/minizip/ioapi.h \
+-	contrib/minizip/iowin32.c \
+-	contrib/minizip/iowin32.h \
+-	contrib/minizip/miniunz.c \
+-	contrib/minizip/minizip.c \
+-	contrib/minizip/mztools.c \
+-	contrib/minizip/mztools.h \
+-	contrib/minizip/unzip.c \
+-	contrib/minizip/unzip.h \
+-	contrib/minizip/zip.c \
+-	contrib/minizip/zip.h \
+-	contrib/pascal/*.txt \
+-	contrib/pascal/example.pas \
+-	contrib/pascal/zlibd32.mak \
+-	contrib/pascal/zlibpas.pas \
+-	contrib/puff/README \
+-	contrib/puff/puff.c \
+-	contrib/puff/puff.h \
+-	contrib/puff/zeros.raw \
+-	contrib/testzlib/*.txt \
+-	contrib/testzlib/testzlib.c \
+-	contrib/untgz/Makefile \
+-	contrib/untgz/Makefile.msc \
+-	contrib/untgz/untgz.c \
+-	contrib/vstudio/*.txt \
+-	contrib/vstudio/vc7/miniunz.vcproj \
+-	contrib/vstudio/vc7/minizip.vcproj \
+-	contrib/vstudio/vc7/testzlib.vcproj \
+-	contrib/vstudio/vc7/zlib.rc \
+-	contrib/vstudio/vc7/zlibstat.vcproj \
+-	contrib/vstudio/vc7/zlibvc.def \
+-	contrib/vstudio/vc7/zlibvc.sln \
+-	contrib/vstudio/vc7/zlibvc.vcproj \
+-	contrib/vstudio/vc8/miniunz.vcproj \
+-	contrib/vstudio/vc8/minizip.vcproj \
+-	contrib/vstudio/vc8/testzlib.vcproj \
+-	contrib/vstudio/vc8/testzlibdll.vcproj \
+-	contrib/vstudio/vc8/zlib.rc \
+-	contrib/vstudio/vc8/zlibstat.vcproj \
+-	contrib/vstudio/vc8/zlibvc.def \
+-	contrib/vstudio/vc8/zlibvc.sln \
+-	contrib/vstudio/vc8/zlibvc.vcproj \
+-	example.c \
+-	examples/*.html \
+-	examples/README.examples \
+-	examples/fitblk.c \
+-	examples/gun.c \
+-	examples/gzappend.c \
+-	examples/gzjoin.c \
+-	examples/gzlog.c \
+-	examples/gzlog.h \
+-	examples/zpipe.c \
+-	examples/zran.c \
+-	make_vms.com \
+-	minigzip.c \
+-	msdos/Makefile.bor \
+-	msdos/Makefile.dj2 \
+-	msdos/Makefile.emx \
+-	msdos/Makefile.msc \
+-	msdos/Makefile.tc \
+-	old/*.html \
+-	old/*.txt \
+-	old/Makefile.riscos \
+-	old/README \
+-	old/descrip.mms \
+-	old/os2/Makefile.os2 \
+-	old/os2/zlib.def \
+-	projects/README.projects \
+-	projects/visualc6/*.txt \
+-	projects/visualc6/example.dsp \
+-	projects/visualc6/minigzip.dsp \
+-	projects/visualc6/zlib.dsp \
+-	projects/visualc6/zlib.dsw \
+-	qnx/package.qpg \
+-	win32/*.txt \
+-	win32/Makefile.bor \
+-	win32/Makefile.emx \
+-	win32/Makefile.gcc \
+-	win32/Makefile.msc \
+-	win32/zlib.def \
+-	win32/zlib1.rc \
+-	zconf.in.h \
+-	zlib.3
++# Blanked out by Debian maintainer
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/patches/repack-tutorial.patch
+++ virtuoso-opensource-6.1.2+dfsg1/debian/patches/repack-tutorial.patch
@@ -0,0 +1,64 @@
+Description: Blanks for tutorial related dll after repacking
+ Replace prebuilt dlls with blanks until they can be buildable.
+Author: Obey Arthur Liu <arthur@milliways.fr>
+Last-Update: 2009-12-29
+--- /dev/null
++++ b/binsrc/tutorial/bin/tabcontrol.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/bin/tabcontrol2.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/hosting/ho_s_10/Point_ho_s_10.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/hosting/ho_s_11/restricted.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/hosting/ho_s_11/unrestricted.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/hosting/ho_s_12/bin/WebService15.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/hosting/ho_s_14/ho_s_14.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/hosting/ho_s_15/COM/VirtCOMServer/Debug/VirtCOMServer.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/hosting/ho_s_15/COM/VirtCOMServer/VirtCOMServer.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/hosting/ho_s_2/Point.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/hosting/ho_s_2/tax.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/hosting/ho_s_3/redcoalsms.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/hosting/ho_s_4/redcoalsms.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/hosting/ho_s_5/redcoalsms_dom.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
+--- /dev/null
++++ b/binsrc/tutorial/services/so_s_32/so_s_32.dll
+@@ -0,0 +1 @@
++# Debian maintainer: intentionally blank
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/po/da.po
+++ virtuoso-opensource-6.1.2+dfsg1/debian/po/da.po
@@ -0,0 +1,313 @@
+# Danish translation virtuoso-opensource.
+# Copyright (c) 2010 virtuoso-opensource & nedenstående oversættere.
+# This file is distributed under the same license as the virtuoso-opensource package.
+# Joe Hansen <joedalton2@yahoo.dk>, 2010.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: virtuoso-opensource\n"
+"Report-Msgid-Bugs-To: virtuoso-opensource@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-13 16:41+0100\n"
+"PO-Revision-Date: 2010-06-28 17:34+0000\n"
+"Last-Translator: Joe Hansen <joedalton2@yahoo.dk>\n"
+"Language-Team: Danish <dansk@dansk-gruppen.dk>\n"
+"Language: da\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid "Password for DBA and DAV users:"
+msgstr "Adgangskode for DBA- og DAV-brugere:"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Following installation, users and passwords in Virtuoso can be managed using "
+"the command line tools (see the full documentation) or via the Conductor web "
+"application which is installed by default at http://localhost:8890/conductor."
+msgstr ""
+"Efter installationen kan brugere og adgangskoder i Virtuoso håndteres med "
+"brug af kommandolinjeværktøjer (se dokumentationen) eller vis "
+"internetprogrammet Conductor, som installeres som standard på http://"
+"localhost:8890/conductor."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Two users (\"dba\" and \"dav\") are created by default, with administrative "
+"access to Virtuoso. Secure passwords must be chosen for these users in order "
+"to complete the installation."
+msgstr ""
+"To brugere (»dba« og »dav«) oprettes som standard, med administrativ adgang "
+"til Virtuoso. Sikre adgangskoder skal vælges for disse brugere for at kunne "
+"færdiggøre installationen."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"If you leave this blank, the daemon will be disabled unless a non-default "
+"password already exists."
+msgstr ""
+"Hvis denne er tom vil dæmonen være deaktiveret, med mindre en adgangskode "
+"der ikke er standard allerede findes."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:3001
+msgid "Administrative users password confirmation:"
+msgstr "Bekræftelse for administrative brugeres adgangskoder:"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid "Password mismatch"
+msgstr "Forskellige adgangskoder"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid ""
+"The two passwords you entered were not the same. Please enter a password "
+"again."
+msgstr ""
+"De to adgangskoder, du indtastede, var ikke de samme. Indtast venligst en "
+"adgangskode igen."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid "No initial password set, daemon disabled"
+msgstr "Ingen oprindelige adgangskode angivet, dæmon deaktiveret"
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"For security reasons, the default Virtuoso instance is disabled because no "
+"administration password was provided."
+msgstr ""
+"Af sikkerhedsårsager er standardinstansen af Virtuoso deaktiveret, da ingen "
+"administrationsadgangskode blev angivet."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"You can enable the daemon manually by setting RUN to \"yes\" in /etc/default/"
+"virtuoso-opensource-6.1. The default DBA user password will then be \"dba\"."
+msgstr ""
+"Du kan aktivere dæmonen manuelt ved at angive RUN til »yes« (ja) i /etc/"
+"default/virtuoso-opensource-6.1. Standard-DBA-brugeradgangskoden vil så være "
+"»dba«."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid "Unable to set password for the Virtuoso DBA user"
+msgstr "Kan ikke angive adgangskode for Virtuoso DBA-brugeren"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"An error occurred while setting the password for the Virtuoso administrative "
+"user. This may have happened because the account already has a password, or "
+"because of a communication problem with the Virtuoso server."
+msgstr ""
+"Der opstod en fejl under angivelse af adgangskoden for Virtuosos "
+"administrative bruger. Dette er måske sket, fordi kontoen allerede har en "
+"adgangskode, eller på grund af et kommunikationsproblem med Virtuososerveren."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"If the database already existed then it will have retained the original "
+"password. If there was some other problem then the default password (\"dba"
+"\") is used."
+msgstr ""
+"Hvis databasen allerede eksisterede, så vil den have bevaret den oprindelige "
+"adgangskode. Hvis der var et andet problem, så bliver standardadgangskoden "
+"(»dba«) brugt."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"It is recommended to check the passwords for the users \"dba\" and \"dav\" "
+"immediately after installation."
+msgstr ""
+"Det anbefales at tjekke adgangskoderne for brugerne »dba« og »dav« "
+"umiddelbart efter installationen."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid "Remove all Virtuoso databases?"
+msgstr "Fjern alle Virtuosodatabaser?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"The /var/lib/virtuoso directory which contains the Virtuoso databases is "
+"about to be removed."
+msgstr ""
+"Mappen /var/lib/virtuoso, som indeholder Virtuosodatabaserne, er ved at "
+"blive fjernet."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"If you're removing the Virtuoso package in order to later install a more "
+"recent version, or if a different Virtuoso package is already using it, you "
+"can choose to keep databases."
+msgstr ""
+"Hvis du fjerner Virtuosopakken for senere at installere en nyere version, "
+"eller hvis en anden Virtuosopakke allerede bruger dem, kan du vælge at "
+"beholde databaserne."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid "HTTP server port:"
+msgstr "HTTP-serverport:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Virtuoso provides a web server capable of hosting HTML and VSP pages (with "
+"optional support for other languages). If you are installing this instance "
+"as a public web server directly on the Internet, you probably want to choose "
+"80 as web server port."
+msgstr ""
+"Virtuoso tilbyder en internetserver, der kan være vært for HTML- og VSP-"
+"sider (med mulighed for yderligere understøttelse af andre sprog). Hvis du "
+"installerer denne instans som en offentlig internetserver direkte på "
+"internettet, vil du sikkert ønske at vælge 80 som internetserverport."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Please note that the default web server root directory is /var/lib/virtuoso/"
+"vsp and will be empty unless you also install the package containing the "
+"standard Virtuoso start page."
+msgstr ""
+"Bemærk venligst at standardinternetserverens rootmappe er /var/lib/virtuoso/"
+"vsp og vil være tom, med mindre du også installerer pakken indeholdende "
+"standardstartsiden for Virtuosos."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid "Database server port:"
+msgstr "Serverport for database:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"You may change here the port on which the Virtuoso database server will "
+"listen for connections."
+msgstr ""
+"Du kan her ændre porten, hvorpå Virtuosodatabaseserveren vil lytte efter "
+"forbindelser."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"Modifying this default value can improve security on servers that might be "
+"targets for unauthorized intrusion."
+msgstr ""
+"Ændring af denne standardværdi kan forbedre sikkerheden på servere som måske "
+"kan være mål for uautoriserede indbrud."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid "Register an ODBC system DSN for Virtuoso?"
+msgstr "Registrer en ODBC-system-DSN til Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"An ODBC manager (unixodbc or iODBC) is already installed on this system, and "
+"the Virtuoso ODBC driver is installed."
+msgstr ""
+"En ODBC-håndtering (unixodbc eller iODBC) er allerede installeret på dette "
+"system, og Virtuosos ODBC-driver er installeret."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"The default Virtuoso instance can be automatically added to the list of "
+"available System Data Sources (and automatically deleted from the list when "
+"this package is removed)."
+msgstr ""
+"Virtuosos standardinstans kan automatisk tilføjes til listen over "
+"tilgængelige systemdatakilder (og automatisk slettes fra listen når denne "
+"pakke fjernes)."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"If you choose this option, the DSN will be named \"VOS\". User and password "
+"details are omitted from the DSN for security reasons."
+msgstr ""
+"Hvis du vælger dette tilvalg, vil DSN'en blive navngivet »VOS«. Bruger- og "
+"adgangskodedetaljer udelades fra DSN'en af sikkerhedsmæssige årsager."
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid "Default Virtuoso server package:"
+msgstr "Virtuosos standardserverpakke:"
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid ""
+"Please choose the version of virtuoso-server that will be linked to by the "
+"default (unversioned) names, for init scripts and client tools."
+msgstr ""
+"Vælg venligst versionen på virtuoso-server som der vil blive henvist til af "
+"standardnavnene (unversioned), for initskripter og klientværktøjer."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid "Register the Virtuoso ODBC driver?"
+msgstr "Registrer Virtuosos ODBC-driver?"
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"An ODBC manager (unixodbc or iODBC)  is already installed on this system."
+msgstr ""
+"En ODBC-håndtering (unixodbc eller iODBC) er allerede installeret på dette "
+"system."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"The Virtuoso ODBC driver can be automatically added to the list of available "
+"ODBC drivers (and automatically deleted from the list when this package is "
+"removed)."
+msgstr ""
+"Virtuosos' ODBC-driver kan automatisk tilføjes til listen over tilgængelige "
+"ODBC-drivere (og automatisk slettes fra listen når denne pakke er fjernet)."
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/po/ru.po
+++ virtuoso-opensource-6.1.2+dfsg1/debian/po/ru.po
@@ -0,0 +1,311 @@
+# translation of ru.po to Russian
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+#
+# Yuri Kozlov <yuray@komyakino.ru>, 2010.
+msgid ""
+msgstr ""
+"Project-Id-Version: virtuoso-opensource 6.1.0+dfsg2-2\n"
+"Report-Msgid-Bugs-To: virtuoso-opensource@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-13 16:41+0100\n"
+"PO-Revision-Date: 2010-03-14 17:14+0300\n"
+"Last-Translator: Yuri Kozlov <yuray@komyakino.ru>\n"
+"Language-Team: Russian <debian-l10n-russian@lists.debian.org>\n"
+"Language: ru\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms:  nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid "Password for DBA and DAV users:"
+msgstr "Пароль пользователей DBA и DAV:"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Following installation, users and passwords in Virtuoso can be managed using "
+"the command line tools (see the full documentation) or via the Conductor web "
+"application which is installed by default at http://localhost:8890/conductor."
+msgstr ""
+"После установки учётными записями пользователей и паролями в Virtuoso можно "
+"управлять с помощью инструментов командной строки (см. в документации) или "
+"через веб-приложение Conductor, которое по умолчанию доступно по адресу "
+"http://localhost:8890/conductor."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Two users (\"dba\" and \"dav\") are created by default, with administrative "
+"access to Virtuoso. Secure passwords must be chosen for these users in order "
+"to complete the installation."
+msgstr ""
+"По умолчанию создаются две пользовательские учётные записи (\"dba\" и \"dav"
+"\") с административным доступом к Virtuoso. Чтобы завершить установку для "
+"них нужно выбрать хороший пароль."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"If you leave this blank, the daemon will be disabled unless a non-default "
+"password already exists."
+msgstr ""
+"Если оставить поле пустым, то служба будет отключена, так как не задан "
+"пароль, отличный от умолчательного."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:3001
+msgid "Administrative users password confirmation:"
+msgstr "Повторный ввод пароля административных учётных записей:"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid "Password mismatch"
+msgstr "Пароли не совпадают"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid ""
+"The two passwords you entered were not the same. Please enter a password "
+"again."
+msgstr "Введённые пароли не совпали. Введите их ещё раз."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid "No initial password set, daemon disabled"
+msgstr "Пароли не заданы, служба отключена"
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"For security reasons, the default Virtuoso instance is disabled because no "
+"administration password was provided."
+msgstr ""
+"По соображениям безопасности, экземпляр Virtuoso по умолчанию отключён, так "
+"как не был задан пароль администратора."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"You can enable the daemon manually by setting RUN to \"yes\" in /etc/default/"
+"virtuoso-opensource-6.1. The default DBA user password will then be \"dba\"."
+msgstr ""
+"Вы можете включить службу вручную, установив значение RUN равное \"yes\" в /"
+"etc/default/virtuoso-opensource-6.1. Пароль по умолчанию к учётной записи "
+"DBA будет \"dba\"."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid "Unable to set password for the Virtuoso DBA user"
+msgstr "Не удалось установить пароль для пользователя Virtuoso DBA"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"An error occurred while setting the password for the Virtuoso administrative "
+"user. This may have happened because the account already has a password, or "
+"because of a communication problem with the Virtuoso server."
+msgstr ""
+"При назначении пароля административному пользователю Virtuoso возникла "
+"ошибка. Это могло случиться из-за того, что учётная запись уже имеет пароль "
+"или возникла проблема со связью с сервером Virtuoso."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"If the database already existed then it will have retained the original "
+"password. If there was some other problem then the default password (\"dba"
+"\") is used."
+msgstr ""
+"Если база данных уже существует, то в ней сохранится первоначальный пароль. "
+"Если была какая-то другая проблема, то будет использоваться пароль по "
+"умолчанию (\"dba\")."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"It is recommended to check the passwords for the users \"dba\" and \"dav\" "
+"immediately after installation."
+msgstr ""
+"Рекомендуется проверить пароли для учётных записей \"dba\" и \"dav\" сразу "
+"после установки."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid "Remove all Virtuoso databases?"
+msgstr "Удалить все базы данных Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"The /var/lib/virtuoso directory which contains the Virtuoso databases is "
+"about to be removed."
+msgstr "Каталог /var/lib/virtuoso с базами данных Virtuoso будет удалён."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"If you're removing the Virtuoso package in order to later install a more "
+"recent version, or if a different Virtuoso package is already using it, you "
+"can choose to keep databases."
+msgstr ""
+"Если вы удаляете пакет Virtuoso для того, чтобы позже поставить более новую "
+"версию, или если его уже использует другой пакет Virtuoso, то можете "
+"сохранить базы данных."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid "HTTP server port:"
+msgstr "Порт сервера HTTP:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Virtuoso provides a web server capable of hosting HTML and VSP pages (with "
+"optional support for other languages). If you are installing this instance "
+"as a public web server directly on the Internet, you probably want to choose "
+"80 as web server port."
+msgstr ""
+"Virtuoso предоставляет веб-сервер, способный обрабатывать HTML и VSP "
+"страницы (возможна поддержка других языков). Если вы устанавливаете данный "
+"экземпляр в качестве публичного веб-сервера в Интернете, то лучше указать "
+"порт 80."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Please note that the default web server root directory is /var/lib/virtuoso/"
+"vsp and will be empty unless you also install the package containing the "
+"standard Virtuoso start page."
+msgstr ""
+"Заметим, что корневым каталогом веб-сервера по умолчанию является /var/lib/"
+"virtuoso/vsp и он будет пустым, если вы также не установите пакет со "
+"стандартной стартовой страницей Virtuoso."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid "Database server port:"
+msgstr "Порт сервера базы данных:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"You may change here the port on which the Virtuoso database server will "
+"listen for connections."
+msgstr ""
+"Здесь вы можете изменить порт, на котором сервер базы данных Virtuoso "
+"ожидает подключения."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"Modifying this default value can improve security on servers that might be "
+"targets for unauthorized intrusion."
+msgstr ""
+"Изменение значения по умолчанию может улучшить безопасность серверов, "
+"которые могут стать объектов несанкционированного доступа."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid "Register an ODBC system DSN for Virtuoso?"
+msgstr "Зарегистрировать системный DSN ODBC для Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"An ODBC manager (unixodbc or iODBC) is already installed on this system, and "
+"the Virtuoso ODBC driver is installed."
+msgstr ""
+"Менеджер ODBC (unixodbc или iODBC) и драйвер Virtuoso ODBC установлены в "
+"данной системе."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"The default Virtuoso instance can be automatically added to the list of "
+"available System Data Sources (and automatically deleted from the list when "
+"this package is removed)."
+msgstr ""
+"По умолчанию экземпляр Virtuoso может быть автоматически добавлен в список "
+"доступных источников данных системы (и автоматически удалён из списка при "
+"удалении пакета)."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"If you choose this option, the DSN will be named \"VOS\". User and password "
+"details are omitted from the DSN for security reasons."
+msgstr ""
+"Если вы ответите утвердительно, то будет создан DSN с именем \"VOS\". "
+"Пользователь и пароль не задаются в DSN в целях безопасности."
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid "Default Virtuoso server package:"
+msgstr "Серверный пакет Virtuoso по умолчанию:"
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid ""
+"Please choose the version of virtuoso-server that will be linked to by the "
+"default (unversioned) names, for init scripts and client tools."
+msgstr ""
+"Выберите версию virtuoso-server, которая будет связана с именами (без "
+"версии) по умолчанию, используемых в сценариях установки и клиентских "
+"инструментах."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid "Register the Virtuoso ODBC driver?"
+msgstr "Зарегистрировать ODBC драйвер Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"An ODBC manager (unixodbc or iODBC)  is already installed on this system."
+msgstr "Менеджер ODBC (unixodbc или iODBC) уже установлен в данной системе."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"The Virtuoso ODBC driver can be automatically added to the list of available "
+"ODBC drivers (and automatically deleted from the list when this package is "
+"removed)."
+msgstr ""
+"Драйвер Virtuoso ODBC может быть автоматически добавлен в список доступных "
+"драйверов ODBC (и автоматически удалён из списка при удалении пакета)."
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/po/es.po
+++ virtuoso-opensource-6.1.2+dfsg1/debian/po/es.po
@@ -0,0 +1,336 @@
+# virtuoso-opensource po-debconf translation to Spanish
+# Copyright (C) 2010 Software in the Public Interest
+# This file is distributed under the same license as the virtuoso-opensource package.
+#
+# Changes:
+#   - Initial translation
+#       Francisco Javier Cuadrado <fcocuadrado@gmail.com>, 2010
+#
+# Traductores, si no conocen el formato PO, merece la pena leer la
+# documentación de gettext, especialmente las secciones dedicadas a este
+# formato, por ejemplo ejecutando:
+#       info -n '(gettext)PO Files'
+#       info -n '(gettext)Header Entry'
+#
+# Equipo de traducción al español, por favor lean antes de traducir
+# los siguientes documentos:
+#
+#   - El proyecto de traducción de Debian al español
+#     http://www.debian.org/intl/spanish/
+#     especialmente las notas y normas de traducción en
+#     http://www.debian.org/intl/spanish/notas
+#
+#   - La guía de traducción de po's de debconf:
+#     /usr/share/doc/po-debconf/README-trans
+#     o http://www.debian.org/intl/l10n/po-debconf/README-trans
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: virtuoso-opensource 6.1.0+dfsg2-2\n"
+"Report-Msgid-Bugs-To: virtuoso-opensource@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-13 16:41+0100\n"
+"PO-Revision-Date: 2010-03-15 15:42+0100\n"
+"Last-Translator: Francisco Javier Cuadrado <fcocuadrado@gmail.com>\n"
+"Language-Team: Debian l10n Spanish <debian-l10n-spanish@lists.debian.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid "Password for DBA and DAV users:"
+msgstr "Contraseña de lo usuarios de DBA y DAV:"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Following installation, users and passwords in Virtuoso can be managed using "
+"the command line tools (see the full documentation) or via the Conductor web "
+"application which is installed by default at http://localhost:8890/conductor."
+msgstr ""
+"Después de la instalación los usuarios y las contraseñas de Virtuoso se "
+"pueden gestionar mediante las herramientas de la línea de órdenes (vea la "
+"documentación) o mediante la aplicación web Conductor que está instalada, de "
+"forma predeterminada, en «http://localhost:8890/conductor»."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Two users (\"dba\" and \"dav\") are created by default, with administrative "
+"access to Virtuoso. Secure passwords must be chosen for these users in order "
+"to complete the installation."
+msgstr ""
+"De forma predeterminada se crean dos usuarios («dba» y «dav») con acceso "
+"administrativo a Virtuoso. Para poder completar la instalación, se deben "
+"escoger contraseñas seguras para estos usuarios."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"If you leave this blank, the daemon will be disabled unless a non-default "
+"password already exists."
+msgstr ""
+"Si deja esto en blanco, el demonio se desactivará a menos que ya exista una "
+"contraseña no predeterminada."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:3001
+msgid "Administrative users password confirmation:"
+msgstr "Confirmación de la contraseña para los usuarios administrativos:"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid "Password mismatch"
+msgstr "La contraseña no coincide"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid ""
+"The two passwords you entered were not the same. Please enter a password "
+"again."
+msgstr ""
+"La dos contraseñas que ha introducido no son la misma. Por favor, "
+"introdúzcala de nuevo."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid "No initial password set, daemon disabled"
+msgstr "No se ha asignado una contraseña inicial, el demonio se desactivará"
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"For security reasons, the default Virtuoso instance is disabled because no "
+"administration password was provided."
+msgstr ""
+"Por razones de seguridad, la instancia predeterminada de Virtuoso está "
+"desactivada porque no se ha proporcionado una contraseña para la "
+"administración."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"You can enable the daemon manually by setting RUN to \"yes\" in /etc/default/"
+"virtuoso-opensource-6.1. The default DBA user password will then be \"dba\"."
+msgstr ""
+"Puede activar el demonio manualmente configurando RUN con el valor «yes» en "
+"«/etc/defaul/virtuoso-opensource-6.1». La contraseña predeterminada para el "
+"usuario DBA será «dba»."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid "Unable to set password for the Virtuoso DBA user"
+msgstr "No se ha podido asignar la contraseña al usuario DBA de Virtuoso"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"An error occurred while setting the password for the Virtuoso administrative "
+"user. This may have happened because the account already has a password, or "
+"because of a communication problem with the Virtuoso server."
+msgstr ""
+"Se ha producido un error al configurar la contraseña para el usuario "
+"administrativo de Virtuoso. Esto puede haber ocurrido porque la cuenta ya "
+"tiene una contraseña, o porque se ha producido un problema en la "
+"comunicación con el servidor de Virtuoso."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"If the database already existed then it will have retained the original "
+"password. If there was some other problem then the default password (\"dba"
+"\") is used."
+msgstr ""
+"Si ya existía la base de datos, entonces tendrá la contraseña original. Si "
+"hubo cualquier otro problema, entonces se usará la contraseña predeterminada "
+"(«dba»)."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"It is recommended to check the passwords for the users \"dba\" and \"dav\" "
+"immediately after installation."
+msgstr ""
+"Se recomienda comprobar la contraseñas para los usuarios «dba» y «dav» "
+"inmediatamente después de la instalación."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid "Remove all Virtuoso databases?"
+msgstr "¿Desea eliminar todas las bases de datos de Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"The /var/lib/virtuoso directory which contains the Virtuoso databases is "
+"about to be removed."
+msgstr ""
+"Se va a eliminar el directorio «/var/lib/virtuoso» que contiene las bases de "
+"datos de Virtuoso."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"If you're removing the Virtuoso package in order to later install a more "
+"recent version, or if a different Virtuoso package is already using it, you "
+"can choose to keep databases."
+msgstr ""
+"Si está eliminando el paquete Virtuoso para instalar más tarde una versión "
+"más reciente, o si un paquete distinto de Virtuoso ya las está usando, puede "
+"escoger mantener las bases de datos."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid "HTTP server port:"
+msgstr "Puerto del servidor HTTP:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Virtuoso provides a web server capable of hosting HTML and VSP pages (with "
+"optional support for other languages). If you are installing this instance "
+"as a public web server directly on the Internet, you probably want to choose "
+"80 as web server port."
+msgstr ""
+"Virtuoso proporciona un servidor web capaz de albergar páginas HTML y VSP "
+"(pudiendo usar otros lenguajes de forma opcional). Si está instalando esta "
+"instancia como un servidor web público en internet, probablemente quiera "
+"usar el 80 como puerto del servidor web."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Please note that the default web server root directory is /var/lib/virtuoso/"
+"vsp and will be empty unless you also install the package containing the "
+"standard Virtuoso start page."
+msgstr ""
+"Tenga en cuenta que el directorio raíz predeterminado del servidor web es «/"
+"var/lib/virtuoso/vsp» y que estará vacío a menos que también instale el "
+"paquete que contiene la página de inicio estándar de Virtuoso."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid "Database server port:"
+msgstr "Puerto del servidor de la base de datos:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"You may change here the port on which the Virtuoso database server will "
+"listen for connections."
+msgstr ""
+"Puede cambiar aquí el puerto en el que escuchará el servidor de la base de "
+"datos de Virtuoso."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"Modifying this default value can improve security on servers that might be "
+"targets for unauthorized intrusion."
+msgstr ""
+"Modificando este valor predeterminado puede mejorar la seguridad en los "
+"servidores que pueden ser objetivos de intrusiones no autorizadas."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid "Register an ODBC system DSN for Virtuoso?"
+msgstr "¿Desea registrar un sistema DSN de ODBC para Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"An ODBC manager (unixodbc or iODBC) is already installed on this system, and "
+"the Virtuoso ODBC driver is installed."
+msgstr ""
+"Un gestor ODBC (unixodbc o iODBC) ya está instalado en el sistema, y el "
+"controlador ODBC de Virtuoso está instalado."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"The default Virtuoso instance can be automatically added to the list of "
+"available System Data Sources (and automatically deleted from the list when "
+"this package is removed)."
+msgstr ""
+"La instancia predeterminada de Virtuoso se puede añadir automáticamente a la "
+"lista de fuentes de datos del sistema disponibles (y borrar automáticamente "
+"de la lista cuando este paquete se elimine)."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"If you choose this option, the DSN will be named \"VOS\". User and password "
+"details are omitted from the DSN for security reasons."
+msgstr ""
+"Si escoge esta opción, el DSN se llamará «VOS». Se han omitido los detalles "
+"del usuario y la contraseña del DSN por razones de seguridad."
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid "Default Virtuoso server package:"
+msgstr "Paquete del servidor predeterminado de Virtuoso:"
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid ""
+"Please choose the version of virtuoso-server that will be linked to by the "
+"default (unversioned) names, for init scripts and client tools."
+msgstr ""
+"Escoja la versión de virtuoso-server que se enlazará de forma predeterminada "
+"por los nombres (sin versión), para los scripts de inicio y las herramientas "
+"del cliente."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid "Register the Virtuoso ODBC driver?"
+msgstr "¿Desea registrar el controlador ODBC de Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"An ODBC manager (unixodbc or iODBC)  is already installed on this system."
+msgstr "Un gestor de ODBC (unixodbc o iODBC) ya está instalado en el sistema."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"The Virtuoso ODBC driver can be automatically added to the list of available "
+"ODBC drivers (and automatically deleted from the list when this package is "
+"removed)."
+msgstr ""
+"El controlador ODBC de Virtuoso se puede añadir automáticamente a la lista "
+"de controladores ODBC disponibles (y borrarse automáticamente de la lista "
+"cuando el paquete se elimine)."
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/po/pt.po
+++ virtuoso-opensource-6.1.2+dfsg1/debian/po/pt.po
@@ -0,0 +1,315 @@
+# Translation of virtuoso-opensource debconf messages to Portuguese
+# Copyright (C) 2010 the virtuoso-opensource's copyright holder
+# This file is distributed under the same license as the virtuoso-opensource package.
+#
+# Américo Monteiro <a_monteiro@netcabo.pt>, 2010.
+msgid ""
+msgstr ""
+"Project-Id-Version: virtuoso-opensource 6.1.0+dfsg2-2\n"
+"Report-Msgid-Bugs-To: virtuoso-opensource@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-13 16:41+0100\n"
+"PO-Revision-Date: 2010-03-15 01:12+0000\n"
+"Last-Translator: Américo Monteiro <a_monteiro@netcabo.pt>\n"
+"Language-Team: Portuguese <traduz@debianpt.org>\n"
+"Language: pt\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 1.0\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid "Password for DBA and DAV users:"
+msgstr "Palavra-passe para os utilizadores DBA e DAV:"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Following installation, users and passwords in Virtuoso can be managed using "
+"the command line tools (see the full documentation) or via the Conductor web "
+"application which is installed by default at http://localhost:8890/conductor."
+msgstr ""
+"A seguir à instalação, os utilizadores e palavras-passe no Virtuoso podem "
+"ser geridas usando as ferramentas de linha de comandos (veja a documentação "
+"completa) ou através da aplicação web Conductor a qual é instalada por "
+"predefinição em http://localhost:8890/conductor."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Two users (\"dba\" and \"dav\") are created by default, with administrative "
+"access to Virtuoso. Secure passwords must be chosen for these users in order "
+"to complete the installation."
+msgstr ""
+"Dois utilizadores (\"dba\" e \"dav\") são criados por predefinição com "
+"acesso administrativo ao Virtuoso. Devem ser escolhidas palavras-passe "
+"seguras para estes utilizadores de modo a completar a instalação."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"If you leave this blank, the daemon will be disabled unless a non-default "
+"password already exists."
+msgstr ""
+"Se deixar isto em vazio, o daemon será desactivado a menos que já exista uma "
+"palavra-passe não-predefinida."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:3001
+msgid "Administrative users password confirmation:"
+msgstr "Confirmação da palavra-passe dos utilizadores administrativos:"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid "Password mismatch"
+msgstr "As palavras-passe não condizem"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid ""
+"The two passwords you entered were not the same. Please enter a password "
+"again."
+msgstr ""
+"As duas palavras-passe que inseriu não são iguais. Por favor insira a "
+"palavra-passe outra vez."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid "No initial password set, daemon disabled"
+msgstr "Nenhuma palavra-passe inicial definida, daemon desactivado"
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"For security reasons, the default Virtuoso instance is disabled because no "
+"administration password was provided."
+msgstr ""
+"Por razões de segurança, a instância predefinida do Virtuoso está "
+"desactivada porque não foi fornecida uma palavra-passe de administrador."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"You can enable the daemon manually by setting RUN to \"yes\" in /etc/default/"
+"virtuoso-opensource-6.1. The default DBA user password will then be \"dba\"."
+msgstr ""
+"Você pode activar o daemon manualmente ao definir RUN para \"yes\" em /etc/"
+"default/virtuoso-opensource-6.1. A palavra-passe predefinida do utilizador "
+"DBA será \"dba\"."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid "Unable to set password for the Virtuoso DBA user"
+msgstr "Incapaz de definir a palavra-passe para o utilizador DBA do Virtuoso"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"An error occurred while setting the password for the Virtuoso administrative "
+"user. This may have happened because the account already has a password, or "
+"because of a communication problem with the Virtuoso server."
+msgstr ""
+"Ocorreu um erro ao definir a palavra-passe para o utilizador administrativo "
+"do Virtuoso. Isto pode ter acontecido porque a conta já tem uma palavra-"
+"passe, ou porque houve um problema de comunicação com o servidor do Virtuoso."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"If the database already existed then it will have retained the original "
+"password. If there was some other problem then the default password (\"dba"
+"\") is used."
+msgstr ""
+"Se a base de dados já existia então terá retido a palavra-passe original. Se "
+"existiu algum outro problema então é usada a palavra-passe predefinida (\"dba"
+"\")."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"It is recommended to check the passwords for the users \"dba\" and \"dav\" "
+"immediately after installation."
+msgstr ""
+"É recomendado verificar as palavras-passe para os utilizadores \"dba\" e "
+"\"dav\" imediatamente após a instalação."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid "Remove all Virtuoso databases?"
+msgstr "Remover todas as bases de dados do Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"The /var/lib/virtuoso directory which contains the Virtuoso databases is "
+"about to be removed."
+msgstr ""
+"O directório /var/lib/virtuoso que contém as bases de dados do Virtuoso está "
+"prestes a ser removido."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"If you're removing the Virtuoso package in order to later install a more "
+"recent version, or if a different Virtuoso package is already using it, you "
+"can choose to keep databases."
+msgstr ""
+"Se está a remover o pacote Virtuoso de modo a instalar uma versão mais "
+"recente depois, ou se uma versão diferente do Virtuoso já está a usá-las, "
+"você pode escolher manter essas bases de dados."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid "HTTP server port:"
+msgstr "Porto do servidor HTTP:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Virtuoso provides a web server capable of hosting HTML and VSP pages (with "
+"optional support for other languages). If you are installing this instance "
+"as a public web server directly on the Internet, you probably want to choose "
+"80 as web server port."
+msgstr ""
+"O Virtuoso disponibiliza um servidor web capaz de hospedar páginas HTML e "
+"VSP (com suporte opcional para outras linguagens). Se você está a instalar "
+"esta instância como um servidor web público directamente na Internet, "
+"provavelmente vai querer escolher 80 como o porto do servidor web."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Please note that the default web server root directory is /var/lib/virtuoso/"
+"vsp and will be empty unless you also install the package containing the "
+"standard Virtuoso start page."
+msgstr ""
+"Por favor note que o directório raiz predefinido do servidor web é /var/lib/"
+"virtuoso/vsp e irá estar vazio a menos que também instale o pacote que "
+"contém a página de início standard do Virtuoso."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid "Database server port:"
+msgstr "Porto do servidor de base de dados:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"You may change here the port on which the Virtuoso database server will "
+"listen for connections."
+msgstr ""
+"Aqui você pode mudar o porto onde o servidor de base de dados do Virtuoso "
+"irá escutar por ligações."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"Modifying this default value can improve security on servers that might be "
+"targets for unauthorized intrusion."
+msgstr ""
+"Modificar este valor predefinido pode melhorar a segurança em servidores que "
+"podem ser alvo de intrusões não autorizadas."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid "Register an ODBC system DSN for Virtuoso?"
+msgstr "Registar um DSN de sistema ODBC para o Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"An ODBC manager (unixodbc or iODBC) is already installed on this system, and "
+"the Virtuoso ODBC driver is installed."
+msgstr ""
+"Um gestor de ODBC (unixodbc ou iODBC) já está instalado neste sistema, e a "
+"driver ODBC do Virtuoso está instalada."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"The default Virtuoso instance can be automatically added to the list of "
+"available System Data Sources (and automatically deleted from the list when "
+"this package is removed)."
+msgstr ""
+"A instância predefinida do Virtuoso pode ser adicionada automaticamente à "
+"lista de Fontes de Dados do Sistema disponíveis (e removida automaticamente "
+"da lista quando este pacote for removido)."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"If you choose this option, the DSN will be named \"VOS\". User and password "
+"details are omitted from the DSN for security reasons."
+msgstr ""
+"Se escolher esta opção, o DSN irá ser chamado \"VOS\". Os detalhes de "
+"utilizador e palavra-passe são omitidos do DSN por razões de segurança."
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid "Default Virtuoso server package:"
+msgstr "Pacote predefinido do servidor do Virtuoso:"
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid ""
+"Please choose the version of virtuoso-server that will be linked to by the "
+"default (unversioned) names, for init scripts and client tools."
+msgstr ""
+"Por favor escolha a versão do servidor-virtuoso que irá ficar unido pelos "
+"nomes predefinidos (sem versão), para scripts de init e ferramentas de "
+"cliente."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid "Register the Virtuoso ODBC driver?"
+msgstr "Registar a driver ODBC do Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"An ODBC manager (unixodbc or iODBC)  is already installed on this system."
+msgstr "Um gestor ODBC (unixodbc ou iODBC) já está instalado neste sistema."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"The Virtuoso ODBC driver can be automatically added to the list of available "
+"ODBC drivers (and automatically deleted from the list when this package is "
+"removed)."
+msgstr ""
+"A driver ODBC do Virtuoso pode ser adicionada automaticamente à lista de "
+"drivers ODBC disponíveis (e removida automaticamente da lista quando este "
+"pacote for removido)."
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/po/vi.po
+++ virtuoso-opensource-6.1.2+dfsg1/debian/po/vi.po
@@ -0,0 +1,311 @@
+# Vietnamese translation for Virtuoso OpenSource.
+# Copyright © 2010 Free Software Foundation, Inc.
+# Clytie Siddall <clytie@riverland.net.au>, 2010.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: virtuoso-opensource 6.1.0+dfsg2-2\n"
+"Report-Msgid-Bugs-To: virtuoso-opensource@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-13 16:41+0100\n"
+"PO-Revision-Date: 2010-03-18 18:27+0930\n"
+"Last-Translator: Clytie Siddall <clytie@riverland.net.au>\n"
+"Language-Team: Vietnamese <vi-VN@googlegroups.com>\n"
+"Language: vi\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Plural-Forms: nplurals=1; plural=0;\n"
+"X-Generator: LocFactoryEditor 1.8\n"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid "Password for DBA and DAV users:"
+msgstr "Mật khẩu cho người dùng DBA và DBV:"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Following installation, users and passwords in Virtuoso can be managed using "
+"the command line tools (see the full documentation) or via the Conductor web "
+"application which is installed by default at http://localhost:8890/conductor."
+msgstr ""
+"Sau khi cài đặt, các người dùng và mật khẩu trong Virtuoso có thể được quản "
+"lý bằng các công cụ dòng lệnh (xem tài liệu hướng dẫn hoàn toàn) hoặc thông "
+"qua ứng dụng Web tên Conductor mà được cài đặt theo mặc định ở địa chỉ « "
+"http://localhost:8890/conductor »."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Two users (\"dba\" and \"dav\") are created by default, with administrative "
+"access to Virtuoso. Secure passwords must be chosen for these users in order "
+"to complete the installation."
+msgstr ""
+"Hai người dùng (« dba » và « dav ») được tạo theo mặc định, cũng có quyền "
+"truy cập đến Virtuous ở cấp quản trị. Để kết thúc quá trình cài đặt, một mật "
+"khẩu bảo mật phải được chọn cho từng người dùng."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"If you leave this blank, the daemon will be disabled unless a non-default "
+"password already exists."
+msgstr ""
+"Bỏ trống trường này thì trình nền bị tắt nếu chưa lập một mật khẩu khác mặc "
+"định."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:3001
+msgid "Administrative users password confirmation:"
+msgstr "Xác nhận mật khẩu quản trị:"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid "Password mismatch"
+msgstr "Hai mật khẩu không trùng"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid ""
+"The two passwords you entered were not the same. Please enter a password "
+"again."
+msgstr "Bạn đã gõ hai mật khẩu không trùng nhau. Hãy gõ lại mật khẩu."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid "No initial password set, daemon disabled"
+msgstr "Chưa lập mật khẩu đầu tiên thì trình nền bị tắt"
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"For security reasons, the default Virtuoso instance is disabled because no "
+"administration password was provided."
+msgstr ""
+"Vì lý do bảo mật, tiến trình Virtuoso mặc định bị tắt do sự không có mật "
+"khẩu quản trị."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"You can enable the daemon manually by setting RUN to \"yes\" in /etc/default/"
+"virtuoso-opensource-6.1. The default DBA user password will then be \"dba\"."
+msgstr ""
+"Bạn cũng có thể tự hiệu lực trình nền bằng cách lập RUN (chạy) thành « yes "
+"» (có) trong tập tin « /etc/default/virtuoso-opensource-6.1 ». Mật khẩu "
+"người dùng DBA mặc định thì là « dba »."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid "Unable to set password for the Virtuoso DBA user"
+msgstr "Không thể đặt mật khẩu cho người dùng DBA Virtuoso"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"An error occurred while setting the password for the Virtuoso administrative "
+"user. This may have happened because the account already has a password, or "
+"because of a communication problem with the Virtuoso server."
+msgstr ""
+"Gặp lỗi trong khi đặt mật khẩu cho người dùng Virtuoso ở cấp quản trị. "
+"Trường hợp này có thể xảy ra vì tài khoản đã có một mật khẩu, hoặc do một "
+"vấn đề liên lạc với trình phục vụ Virtuoso."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"If the database already existed then it will have retained the original "
+"password. If there was some other problem then the default password (\"dba"
+"\") is used."
+msgstr ""
+"Nếu cơ sở dữ liệu đã có thì nó giữ lại mật khẩu gốc. Gặp vấn đề khác nào thì "
+"dùng mật khẩu mặc định (« dba »)."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"It is recommended to check the passwords for the users \"dba\" and \"dav\" "
+"immediately after installation."
+msgstr ""
+"Ngay khi cài đặt được thì cũng nên kiểm tra mật khẩu của người dùng « dba » "
+"và « dav »."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid "Remove all Virtuoso databases?"
+msgstr "Gỡ bỏ mọi cơ sở dữ liệu Virtuoso ?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"The /var/lib/virtuoso directory which contains the Virtuoso databases is "
+"about to be removed."
+msgstr ""
+"Thư mục « /var/lib/virtuoso » chứa các cơ sở dữ liệu Virtuoso sắp bị gỡ bỏ."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"If you're removing the Virtuoso package in order to later install a more "
+"recent version, or if a different Virtuoso package is already using it, you "
+"can choose to keep databases."
+msgstr ""
+"Nếu bạn đang gỡ bỏ gói Virtuoso để cài đặt một phiên bản mới, hoặc nếu một "
+"gói Virtuoso khác dùng chung thì bạn có dịp chọn giữ lại cơ sở dữ liệu."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid "HTTP server port:"
+msgstr "Cổng trình phục vụ HTTP:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Virtuoso provides a web server capable of hosting HTML and VSP pages (with "
+"optional support for other languages). If you are installing this instance "
+"as a public web server directly on the Internet, you probably want to choose "
+"80 as web server port."
+msgstr ""
+"Virtuoso cung cấp một trình phục vụ Web có khả năng phục vụ các trang kiểu "
+"HTML và VSP (cũng có tuỳ chọn hỗ trợ các ngôn ngữ khác). Nếu bạn đang cài "
+"đặt tiến trình này làm một trình phục vụ Web công cộng trực tiếp trên "
+"Internet thì rất có thể là bạn muốn lập cổng 80 cho trình phục vụ Web."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Please note that the default web server root directory is /var/lib/virtuoso/"
+"vsp and will be empty unless you also install the package containing the "
+"standard Virtuoso start page."
+msgstr ""
+"Ghi chú rằng thư mục gốc mặc định cho trình phục vụ Web là « /var/lib/"
+"virtuoso/vsp »: nó vẫn trống nếu bạn không cài đặt gói chứa trang đầu "
+"Virtuoso tiêu chuẩn."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid "Database server port:"
+msgstr "Cổng trình phục vụ cơ sở dữ liệu :"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"You may change here the port on which the Virtuoso database server will "
+"listen for connections."
+msgstr ""
+"Ở đây thì bạn có thể thay đổi cổng trên đó trình phục vụ cơ sở dữ liệu "
+"Virtuoso lắng nghe kết nối."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"Modifying this default value can improve security on servers that might be "
+"targets for unauthorized intrusion."
+msgstr ""
+"Sửa đổi giá trị mặc định này cũng có thể tăng mức bảo mật trên máy phục vụ "
+"có thể bị xâm nhập."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid "Register an ODBC system DSN for Virtuoso?"
+msgstr "Đăng ký một DSN hệ thống ODBC cho Virtuoso ?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"An ODBC manager (unixodbc or iODBC) is already installed on this system, and "
+"the Virtuoso ODBC driver is installed."
+msgstr ""
+"Một trình quản lý ODBC (unixodbc hay iODBC) được cài đặt về trước vào hệ "
+"thống này, và trình điều khiển ODBC Virtuoso đã được cài đặt."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"The default Virtuoso instance can be automatically added to the list of "
+"available System Data Sources (and automatically deleted from the list when "
+"this package is removed)."
+msgstr ""
+"Tiến trình Virtuoso mặc định có thể được tự động thêm vào danh sách các "
+"Nguồn Dữ liệu Hệ thống (System Data Source); cũng được tự động xoá khỏi danh "
+"sách khi gói được gỡ bỏ."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"If you choose this option, the DSN will be named \"VOS\". User and password "
+"details are omitted from the DSN for security reasons."
+msgstr ""
+"Bật tùy chọn này thì DSN có tên mới « VOS ». Các chi tiết về người dùng và "
+"mật khẩu bị bỏ đi khỏi DSN vì lý do bảo mật."
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid "Default Virtuoso server package:"
+msgstr "Gói trình phục vụ Virtuoso mặc định:"
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid ""
+"Please choose the version of virtuoso-server that will be linked to by the "
+"default (unversioned) names, for init scripts and client tools."
+msgstr ""
+"Hãy chọn phiên bản trình phục vụ virtuoso-server tới đó các tên mặc định "
+"(không có phiên bản) sẽ liên kết, cho các văn lệnh khởi chạy và công cụ "
+"khách."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid "Register the Virtuoso ODBC driver?"
+msgstr "Đăng ký trình điều khiển ODBC Virtuoso ?"
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"An ODBC manager (unixodbc or iODBC)  is already installed on this system."
+msgstr ""
+"Một trình quản lý ODBC (unixodbc hay iODBC) được cài đặt về trước vào hệ "
+"thống này."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"The Virtuoso ODBC driver can be automatically added to the list of available "
+"ODBC drivers (and automatically deleted from the list when this package is "
+"removed)."
+msgstr ""
+"Trình điều khiển ODBC Virtuoso có thể được tự động thêm vào danh sách các "
+"trình điều khiển ODBC sẵn sàng; cũng được tự động xoá khỏi danh sách khi gói "
+"được gỡ bỏ."
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/po/cs.po
+++ virtuoso-opensource-6.1.2+dfsg1/debian/po/cs.po
@@ -0,0 +1,308 @@
+# Czech translation of PO debconf template for package virtuoso-opensource.
+# Copyright (C) 2010 Michal Simunek
+# This file is distributed under the same license as the virtuoso-opensource package.
+# Michal Simunek <michal.simunek@gmail.com>, 2010.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: virtuoso-opensource 6.1.0+dfsg2-2\n"
+"Report-Msgid-Bugs-To: virtuoso-opensource@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-13 16:41+0100\n"
+"PO-Revision-Date: 2010-03-13 18:08+0100\n"
+"Last-Translator: Michal Simunek <michal.simunek@gmail.com>\n"
+"Language-Team: Czech <debian-l10n-czech@lists.debian.org>\n"
+"Language: cs\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid "Password for DBA and DAV users:"
+msgstr "Heslo pro uživatelé DBA a DAV:"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Following installation, users and passwords in Virtuoso can be managed using "
+"the command line tools (see the full documentation) or via the Conductor web "
+"application which is installed by default at http://localhost:8890/conductor."
+msgstr ""
+"Následující instalaci, uživatelé a hesla ve Virtuoso, můžete spravovat "
+"pomocí nástrojů příkazové řádky (podívejte se do kompletní dokumentace), "
+"nebo pomocí webové aplikace Conductor, která je ve výchozí instalaci "
+"přístupná na http://localhost:8890/conductor."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Two users (\"dba\" and \"dav\") are created by default, with administrative "
+"access to Virtuoso. Secure passwords must be chosen for these users in order "
+"to complete the installation."
+msgstr ""
+"Ve výchozím nastavení se vytvoří dva uživatelé (\"dba\" and \"dav\") se "
+"správcovským přístupem do Virtuoso. Pro dokončení instalace musíte pro tyto "
+"uživatele zvolit zabezpečovací hesla."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"If you leave this blank, the daemon will be disabled unless a non-default "
+"password already exists."
+msgstr ""
+"Pokud jej ponecháte prázdné, daemon bude zakázán, dokud nenastavíte jiné, "
+"než výchozí heslo."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:3001
+msgid "Administrative users password confirmation:"
+msgstr "Potvrzení hesla správcovských uživatelů:"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid "Password mismatch"
+msgstr "Hesla neodpovídají"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid ""
+"The two passwords you entered were not the same. Please enter a password "
+"again."
+msgstr "Hesla, která jste zadali, nebyla stejná. Zadejte prosím heslo znovu."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid "No initial password set, daemon disabled"
+msgstr "Nebylo zadáno žádné heslo, daemon je zakázán"
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"For security reasons, the default Virtuoso instance is disabled because no "
+"administration password was provided."
+msgstr ""
+"Výchozí instance Virtuoso je z bezpečnostních důvodů zakázána, protože "
+"nebylo zadáno správcovské heslo."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"You can enable the daemon manually by setting RUN to \"yes\" in /etc/default/"
+"virtuoso-opensource-6.1. The default DBA user password will then be \"dba\"."
+msgstr ""
+"Daemona můžete povolit ručně nastavením RUN na \"yes\" v /etc/default/"
+"virtuoso-opensource-6.1. Výchozí heslo uživatele DBA pak bude \"dba\"."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid "Unable to set password for the Virtuoso DBA user"
+msgstr "Nelze nastavit heslo uživatele DBA pro Virtuoso"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"An error occurred while setting the password for the Virtuoso administrative "
+"user. This may have happened because the account already has a password, or "
+"because of a communication problem with the Virtuoso server."
+msgstr ""
+"Při nastavování hesla správcovského uživatele Virtuoso se nastala chyba. To "
+"může být zapříčiněno tím, že účet již má heslo, nebo protože nastal problém "
+"při komunikaci se serverem Virtuoso."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"If the database already existed then it will have retained the original "
+"password. If there was some other problem then the default password (\"dba"
+"\") is used."
+msgstr ""
+"Pokud již databáze existuje, pak jí zůstane její původní heslo. Jestliže s "
+"ní byl jiný problém, pak se použije výchozí heslo (\"dba\")."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"It is recommended to check the passwords for the users \"dba\" and \"dav\" "
+"immediately after installation."
+msgstr ""
+"Doporučujeme, abyste si ihned po instalaci zkontrolovali hesla uživatelů "
+"\"dba\" and \"dav\"."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid "Remove all Virtuoso databases?"
+msgstr "Odstranit všechny databáze Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"The /var/lib/virtuoso directory which contains the Virtuoso databases is "
+"about to be removed."
+msgstr ""
+"Adresář /var/lib/virtuoso, který obsahuje databáze Virtuoso by měl být "
+"odstraněn."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"If you're removing the Virtuoso package in order to later install a more "
+"recent version, or if a different Virtuoso package is already using it, you "
+"can choose to keep databases."
+msgstr ""
+"Pokud odstraňujete balíček Virtuoso, protože budete chtít později "
+"nainstalovat novější verzi, nebo protože je již používá jiný balíček "
+"Virtuoso, můžete zvolit ponechat databáze."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid "HTTP server port:"
+msgstr "Port HTTP serveru:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Virtuoso provides a web server capable of hosting HTML and VSP pages (with "
+"optional support for other languages). If you are installing this instance "
+"as a public web server directly on the Internet, you probably want to choose "
+"80 as web server port."
+msgstr ""
+"Virtuoso poskytuje webový server schopný hostit HTML a VSP stránky (s "
+"volitelnou podporou pro další jazyky). Instalujete-li tuto instanci, jako "
+"veřejný webový server přímo na Internetu, pravděpodobně budete chtít zvolit "
+"port 80, což je port webového serveru."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Please note that the default web server root directory is /var/lib/virtuoso/"
+"vsp and will be empty unless you also install the package containing the "
+"standard Virtuoso start page."
+msgstr ""
+"Berte prosím na vědomí, že výchozí kořenový adresář webového serveru je /var/"
+"lib/virtuoso/vsp a bude prázdný dokud nenainstalujete také balíček "
+"obsahující standardní úvodní stránku pro Virtuoso."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid "Database server port:"
+msgstr "Port databázového serveru:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"You may change here the port on which the Virtuoso database server will "
+"listen for connections."
+msgstr ""
+"Zde můžete změnit port, na kterém bude naslouchat databázový server Virtuoso."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"Modifying this default value can improve security on servers that might be "
+"targets for unauthorized intrusion."
+msgstr ""
+"Úprava této výchozí hodnoty může zlepšit zabezpečení na serverech, které se "
+"mohou stát cílem pro neautorizované instrukce."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid "Register an ODBC system DSN for Virtuoso?"
+msgstr "Zaregistrovat pro Virtuoso DSN v systému ODBC?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"An ODBC manager (unixodbc or iODBC) is already installed on this system, and "
+"the Virtuoso ODBC driver is installed."
+msgstr ""
+"Správce ODBC (unixodbc nebo iODBC) je již na tomto systému nainstalován a "
+"ovladač Virtuoso ODBC driver je nainstalován."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"The default Virtuoso instance can be automatically added to the list of "
+"available System Data Sources (and automatically deleted from the list when "
+"this package is removed)."
+msgstr ""
+"Výchozí instance Virtuoso může být automaticky přidána na seznam dostupných "
+"systémových datových zdrojů (a automaticky z něj smazána, je-li tento "
+"balíček odstraněn)."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"If you choose this option, the DSN will be named \"VOS\". User and password "
+"details are omitted from the DSN for security reasons."
+msgstr ""
+"Zvolíte-li tuto možnost, DSN bude nazvané \"VOS\". Uživatel a heslo jsou z "
+"bezpečnostních důvodů z DSN vynechány."
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid "Default Virtuoso server package:"
+msgstr "Výchozí balíček serveru Virtuoso:"
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid ""
+"Please choose the version of virtuoso-server that will be linked to by the "
+"default (unversioned) names, for init scripts and client tools."
+msgstr ""
+"Zvolte prosím verzi virtuoso-server, která bude propojena s tím s výchozími "
+"názvy (bez uvedené verze)."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid "Register the Virtuoso ODBC driver?"
+msgstr "Zaregistrovat ovladač Virtuoso ODBC driver?"
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"An ODBC manager (unixodbc or iODBC)  is already installed on this system."
+msgstr ""
+"Správce ODBC (unixodbc nebo iODBC) je již na tomto systému nainstalován."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"The Virtuoso ODBC driver can be automatically added to the list of available "
+"ODBC drivers (and automatically deleted from the list when this package is "
+"removed)."
+msgstr ""
+"Ovladač Virtuoso ODBC driver může být automaticky přidán na seznam "
+"dostupných systémových datových zdrojů (a automaticky z něj smazán, je-li "
+"tento balíček odstraněn)."
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/po/POTFILES.in
+++ virtuoso-opensource-6.1.2+dfsg1/debian/po/POTFILES.in
@@ -0,0 +1,2 @@
+[type: gettext/rfc822deb] virtuoso-opensource-6.1.templates
+[type: gettext/rfc822deb] libvirtodbc0.templates
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/po/fr.po
+++ virtuoso-opensource-6.1.2+dfsg1/debian/po/fr.po
@@ -0,0 +1,318 @@
+# Translation of virtuoso-opensource debconf templates to French
+# Copyright (C) 2010 Debian French l10n team <debian-l10n-french@lists.debian.org>
+# This file is distributed under the same license as the virtuoso-opensource package.
+#
+# Translators:
+# David Prévot <david@tilapin.org>, 2010.
+msgid ""
+msgstr ""
+"Project-Id-Version: virtuoso-opensource\n"
+"Report-Msgid-Bugs-To: virtuoso-opensource@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-13 16:41+0100\n"
+"PO-Revision-Date: 2010-03-21 09:06-0400\n"
+"Last-Translator: David Prévot <david@tilapin.org>\n"
+"Language-Team: French <debian-l10n-french@lists.debian.org>\n"
+"Language: fr\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Lokalize 1.0\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid "Password for DBA and DAV users:"
+msgstr "Mot de passe pour les utilisateurs DBA et DAV :"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Following installation, users and passwords in Virtuoso can be managed using "
+"the command line tools (see the full documentation) or via the Conductor web "
+"application which is installed by default at http://localhost:8890/conductor."
+msgstr ""
+"Après l'installation, les utilisateurs et mots de passe de Virtuoso peuvent "
+"être gérés à l'aide des outils en ligne de commande (voir la documentation "
+"complète) ou de l'application web Conductor installée par défaut à l'adresse "
+"http://localhost:8890/conductor."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Two users (\"dba\" and \"dav\") are created by default, with administrative "
+"access to Virtuoso. Secure passwords must be chosen for these users in order "
+"to complete the installation."
+msgstr ""
+"Deux identifiants (« dba » et « dav ») sont créés par défaut, avec droits "
+"d'administration pour Virtuoso. Des mots de passe sûrs doivent être choisis "
+"pour ces utilisateurs afin de terminer l'installation."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"If you leave this blank, the daemon will be disabled unless a non-default "
+"password already exists."
+msgstr ""
+"Si vous laissez ce champ vide, le démon sera désactivé à moins que le mot de "
+"passe par défaut n'ait déjà été modifié."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:3001
+msgid "Administrative users password confirmation:"
+msgstr "Confirmation du mot de passe des administrateurs :"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid "Password mismatch"
+msgstr "Erreur de saisie du mot de passe"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid ""
+"The two passwords you entered were not the same. Please enter a password "
+"again."
+msgstr ""
+"Les deux mots de passe indiqués ne correspondent pas. Veuillez choisir à "
+"nouveau un mot de passe."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid "No initial password set, daemon disabled"
+msgstr "Aucun mot de passe défini, démon désactivé"
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"For security reasons, the default Virtuoso instance is disabled because no "
+"administration password was provided."
+msgstr ""
+"Par sécurité, le processus Virtuoso par défaut est désactivé car aucun mot "
+"de passe d'administration n'a été fourni."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"You can enable the daemon manually by setting RUN to \"yes\" in /etc/default/"
+"virtuoso-opensource-6.1. The default DBA user password will then be \"dba\"."
+msgstr ""
+"Vous pouvez activer le démon manuellement en configurant la variable RUN à "
+"« yes » dans /etc/default/virtuoso-opensource-6.1. Le mot de passe de "
+"l'utilisateur DBA sera alors « dba »."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid "Unable to set password for the Virtuoso DBA user"
+msgstr "Impossible de définir le mot de passe de l'utilisateur DBA"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"An error occurred while setting the password for the Virtuoso administrative "
+"user. This may have happened because the account already has a password, or "
+"because of a communication problem with the Virtuoso server."
+msgstr ""
+"Une erreur s'est produite lors de la configuration du mot de passe "
+"d'administration de Virtuoso. Cela a pu se produire car le mot de passe "
+"était déjà défini pour ce compte, ou à cause d'un problème de communication "
+"avec le server Virtuoso."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"If the database already existed then it will have retained the original "
+"password. If there was some other problem then the default password (\"dba"
+"\") is used."
+msgstr ""
+"Si la base de données existait déjà, le mot de passe d'origine aura été "
+"conservé. Si un autre problème s'est produit, le mot de passe par défaut "
+"(« dba ») est utilisé."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"It is recommended to check the passwords for the users \"dba\" and \"dav\" "
+"immediately after installation."
+msgstr ""
+"Il est recommandé de vérifier les mots de passe des utilisateurs « dba » et "
+"« dav » immédiatement après l'installation."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid "Remove all Virtuoso databases?"
+msgstr "Supprimer toutes les bases de données de Virtuoso ?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"The /var/lib/virtuoso directory which contains the Virtuoso databases is "
+"about to be removed."
+msgstr ""
+"Le répertoire /var/lib/virtuoso contenant les bases de données de Virtuoso "
+"va être supprimé."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"If you're removing the Virtuoso package in order to later install a more "
+"recent version, or if a different Virtuoso package is already using it, you "
+"can choose to keep databases."
+msgstr ""
+"Si vous supprimez le paquet Virtuoso afin d'installer ensuite une version "
+"plus récente, ou si un autre paquet Virtuoso l'utilise déjà, vous pouvez "
+"choisir de conserver les bases de données."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid "HTTP server port:"
+msgstr "Port du serveur HTTP :"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Virtuoso provides a web server capable of hosting HTML and VSP pages (with "
+"optional support for other languages). If you are installing this instance "
+"as a public web server directly on the Internet, you probably want to choose "
+"80 as web server port."
+msgstr ""
+"Virtuoso fournit un serveur web capable d'héberger des pages HTML et VSP "
+"(avec prise en charge optionnelle d'autres langues). Si vous installez ce "
+"processus en tant que serveur web accessible sur Internet, 80 est un bon "
+"choix pour le port du serveur web."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Please note that the default web server root directory is /var/lib/virtuoso/"
+"vsp and will be empty unless you also install the package containing the "
+"standard Virtuoso start page."
+msgstr ""
+"Veuillez noter que le répertoire racine du serveur web est /var/lib/virtuoso/"
+"vsp et qu'il sera vide, à moins d'installer également le paquet contenant la "
+"page de démarrage par défaut de Virtuoso."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid "Database server port:"
+msgstr "Port du serveur de base de données :"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"You may change here the port on which the Virtuoso database server will "
+"listen for connections."
+msgstr ""
+"Vous pouvez modifier le port sur lequel le serveur de base de données de "
+"Virtuoso sera en attente de connexion."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"Modifying this default value can improve security on servers that might be "
+"targets for unauthorized intrusion."
+msgstr ""
+"La modification de cette valeur par défaut peut améliorer la sécurité pour "
+"des serveurs exposés à des tentatives d'intrusion."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid "Register an ODBC system DSN for Virtuoso?"
+msgstr "Enregistrer une source de données (DSN) de type ODBC pour Virtuoso ?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"An ODBC manager (unixodbc or iODBC) is already installed on this system, and "
+"the Virtuoso ODBC driver is installed."
+msgstr ""
+"Une application ODBC (unixODBC ou iODBC) est déjà installée sur ce système, "
+"et le pilote ODBC Virtuoso est installé."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"The default Virtuoso instance can be automatically added to the list of "
+"available System Data Sources (and automatically deleted from the list when "
+"this package is removed)."
+msgstr ""
+"Le processus Virtuoso par défaut peut être automatiquement ajouté à la liste "
+"des sources de données système (et automatiquement effacé de la liste quand "
+"le paquet sera supprimé)."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"If you choose this option, the DSN will be named \"VOS\". User and password "
+"details are omitted from the DSN for security reasons."
+msgstr ""
+"Si vous choisissez cette option, la source de données sera appelée « VOS ». "
+"Les identifiants et mots de passe de connexion ne seront pas enregistrés "
+"avec la source de données, par sécurité."
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid "Default Virtuoso server package:"
+msgstr "Paquet du serveur Virtuoso par défaut :"
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid ""
+"Please choose the version of virtuoso-server that will be linked to by the "
+"default (unversioned) names, for init scripts and client tools."
+msgstr ""
+"Veuillez choisir la version de virtuoso-server qui sera utilisée par défaut "
+"pour les scripts d'initialisation du système et les outils client."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid "Register the Virtuoso ODBC driver?"
+msgstr "Enregistrer le pilote ODBC Virtuoso ?"
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"An ODBC manager (unixodbc or iODBC)  is already installed on this system."
+msgstr ""
+"Une application ODBC (unixODBC ou iODBC) est déjà installée sur ce système."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"The Virtuoso ODBC driver can be automatically added to the list of available "
+"ODBC drivers (and automatically deleted from the list when this package is "
+"removed)."
+msgstr ""
+"Le pilote ODBC Virtuoso peut être automatiquement ajouté à la liste des "
+"pilotes ODBC disponibles (et automatiquement effacé de la liste quand le "
+"paquet sera supprimé)."
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/po/it.po
+++ virtuoso-opensource-6.1.2+dfsg1/debian/po/it.po
@@ -0,0 +1,315 @@
+# ITALIAN TRANSLATION OF VIRTUOSO-OPENSOURCE'S PO-DEBCONF FILE.
+# COPYRIGHT (C) 2010 THE VIRTUOSO-OPENSOURCE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the virtuoso-opensource package.
+# Vincenzo Campanella <vinz65@gmail.com>, 2010.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: virtuoso-opensource 6.1.0+dfsg2-2\n"
+"Report-Msgid-Bugs-To: virtuoso-opensource@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-13 16:41+0100\n"
+"PO-Revision-Date: 2010-03-14 08:52+0100\n"
+"Last-Translator: Vincenzo Campanella <vinz65@gmail.com>\n"
+"Language-Team: Italian <tp@lists.linux.it>\n"
+"Language: it\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid "Password for DBA and DAV users:"
+msgstr "Password per gli utenti DBA e DAV:"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Following installation, users and passwords in Virtuoso can be managed using "
+"the command line tools (see the full documentation) or via the Conductor web "
+"application which is installed by default at http://localhost:8890/conductor."
+msgstr ""
+"Dopo l'installazione è possibile gestire utenti e password in Virtuoso "
+"tramite gli strumenti da riga di comando (consultare la documentazione), o "
+"tramite l'applicazione web Conductor, installata in modo predefinito in in "
+"http://localhost:8890/conductor."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Two users (\"dba\" and \"dav\") are created by default, with administrative "
+"access to Virtuoso. Secure passwords must be chosen for these users in order "
+"to complete the installation."
+msgstr ""
+"In modo predefinito vengono creati due utenti con diritti amministrativi in "
+"Virtuoso, «dba» e «dav». Per poter completare l'installazione è necessario "
+"scegliere delle password sicure per questi utenti."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"If you leave this blank, the daemon will be disabled unless a non-default "
+"password already exists."
+msgstr ""
+"Se questo campo viene lasciato vuoto il demone verrà disabilitato, a meno "
+"che non esista già una password non predefinita."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:3001
+msgid "Administrative users password confirmation:"
+msgstr "Conferma della password degli utenti amministratori:"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid "Password mismatch"
+msgstr "Le password non corrispondono"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid ""
+"The two passwords you entered were not the same. Please enter a password "
+"again."
+msgstr ""
+"Le due password inserite non sono identiche. Inserire nuovamente una "
+"password."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid "No initial password set, daemon disabled"
+msgstr ""
+"Non è stata impostata alcuna password iniziale. Il demone viene disabilitato."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"For security reasons, the default Virtuoso instance is disabled because no "
+"administration password was provided."
+msgstr ""
+"L'istanza predefinita di Virtuoso viene disabilitata, per motivi di "
+"sicurezza, in quanto non è stata fornita alcuna password di amministrazione."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"You can enable the daemon manually by setting RUN to \"yes\" in /etc/default/"
+"virtuoso-opensource-6.1. The default DBA user password will then be \"dba\"."
+msgstr ""
+"È possibile abilitare manualmente il demone, impostando su «yes» la voce RUN "
+"in «/etc/default/virtuoso-opensource-6.1». La password predefinita per "
+"l'utente DBA sarà «dba»."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid "Unable to set password for the Virtuoso DBA user"
+msgstr "Impossibile impostare la password per l'utente di Virtuoso DBA"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"An error occurred while setting the password for the Virtuoso administrative "
+"user. This may have happened because the account already has a password, or "
+"because of a communication problem with the Virtuoso server."
+msgstr ""
+"Si è verificato un errore durante l'impostazione della password dell'utente "
+"amministratore di Virtuoso, o perché l'account possiede già una password, "
+"oppure a causa di un problema di comunicazione con il server di Virtuoso."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"If the database already existed then it will have retained the original "
+"password. If there was some other problem then the default password (\"dba"
+"\") is used."
+msgstr ""
+"Se il database esisteva già in precedenza, è stata mantenuta la password pre-"
+"esistente. Se invece si è verificato qualche altro problema, allora viene "
+"utilizzata la password predefinita (ossia «dba»)."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"It is recommended to check the passwords for the users \"dba\" and \"dav\" "
+"immediately after installation."
+msgstr ""
+"Si raccomanda di controllare le password degli utenti «dba» e «dav» subito "
+"dopo l'installazione."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid "Remove all Virtuoso databases?"
+msgstr "Rimuovere tutti i database di Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"The /var/lib/virtuoso directory which contains the Virtuoso databases is "
+"about to be removed."
+msgstr ""
+"La directory «/var/lib/virtuoso», nella quale sono contenuti tutti i "
+"database di Virtuoso, sta per essere rimossa."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"If you're removing the Virtuoso package in order to later install a more "
+"recent version, or if a different Virtuoso package is already using it, you "
+"can choose to keep databases."
+msgstr ""
+"Se si sta per rimuovere il pacchetto Virtuoso per poterne installare "
+"successivamente una versione più recente, o se un pacchetto differente di "
+"Virtuoso la sta già utilizzando, si può scegliere di mantenere i database."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid "HTTP server port:"
+msgstr "Porta del server HTTP:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Virtuoso provides a web server capable of hosting HTML and VSP pages (with "
+"optional support for other languages). If you are installing this instance "
+"as a public web server directly on the Internet, you probably want to choose "
+"80 as web server port."
+msgstr ""
+"Virtuoso mette a disposizione un server web in grado di ospitare pagine HTML "
+"e VSP (con supporto opzionale per altri linguaggi). Se si sta installando "
+"questa istanza come server web pubblico direttamente su Internet, "
+"probabilmente si sceglierà «80» come porta del server web."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Please note that the default web server root directory is /var/lib/virtuoso/"
+"vsp and will be empty unless you also install the package containing the "
+"standard Virtuoso start page."
+msgstr ""
+"Notare che la directory radice predefinita del server web, che è «/var/lib/"
+"virtuoso/vsp», sarà vuota, a meno che non si installi anche il pacchetto che "
+"contiene la pagina iniziale standard di Virtuoso."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid "Database server port:"
+msgstr "Porta del server di database:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"You may change here the port on which the Virtuoso database server will "
+"listen for connections."
+msgstr ""
+"È possibile modificare qui la porta su cui il server di database di Virtuoso "
+"si porrà in ascolto per le connessioni in entrata."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"Modifying this default value can improve security on servers that might be "
+"targets for unauthorized intrusion."
+msgstr ""
+"La modifica di questo valore predefinito può incrementare la sicurezza su "
+"server che potrebbero essere obiettivi di intrusioni non autorizzate."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid "Register an ODBC system DSN for Virtuoso?"
+msgstr "Registrare un sistema ODBC DSN per Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"An ODBC manager (unixodbc or iODBC) is already installed on this system, and "
+"the Virtuoso ODBC driver is installed."
+msgstr ""
+"Su questo sistema è già installato un gestore di ODBC (unixodbc o iODBC) e "
+"il driver ODBC di Virtuoso viene installato."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"The default Virtuoso instance can be automatically added to the list of "
+"available System Data Sources (and automatically deleted from the list when "
+"this package is removed)."
+msgstr ""
+"È possibile aggiungere automaticamente l'istanza predefinita di Virtuoso "
+"all'elenco dei System Data Sources disponibili; quando il pacchetto viene "
+"rimosso, tale istanza viene eliminata automaticamente."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"If you choose this option, the DSN will be named \"VOS\". User and password "
+"details are omitted from the DSN for security reasons."
+msgstr ""
+"Se si sceglie questa opzione, il DSN verrà denominato «VOS». Per motivi di "
+"sicurezza, dettagli su utente e password vengono omessi dal DSN."
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid "Default Virtuoso server package:"
+msgstr "Pacchetto predefinito del server di Virtuoso:"
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid ""
+"Please choose the version of virtuoso-server that will be linked to by the "
+"default (unversioned) names, for init scripts and client tools."
+msgstr ""
+"Scegliere la versione di vrtuoso-server a cui i nomi (senza versione) "
+"predefiniti verranno collegati, per gli script di inizializzazione e gli "
+"strumenti client."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid "Register the Virtuoso ODBC driver?"
+msgstr "Registrare il driver ODBC di Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"An ODBC manager (unixodbc or iODBC)  is already installed on this system."
+msgstr ""
+"Su questo sistema è già installato un gestore di ODBC (unixodbc o iODBC)."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"The Virtuoso ODBC driver can be automatically added to the list of available "
+"ODBC drivers (and automatically deleted from the list when this package is "
+"removed)."
+msgstr ""
+"È possibile aggiungere automaticamente il driver ODBC di Virtuoso all'elenco "
+"dei driver ODBC disponibili; quando il pacchetto viene rimosso, tale driver "
+"viene eliminato automaticamente."
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/po/de.po
+++ virtuoso-opensource-6.1.2+dfsg1/debian/po/de.po
@@ -0,0 +1,320 @@
+# Translation of the virtuoso-opensource debconf templates to German
+# This file is distributed under the same license as the virtuoso-opensource
+# package.
+#
+# Martin Eberhard Schauer <Martin.E.Schauer@gmx.de>, 2010.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: virtuoso-opensource6.1.0+dfsg2-2\n"
+"Report-Msgid-Bugs-To: virtuoso-opensource@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-13 16:41+0100\n"
+"PO-Revision-Date: 2010-03-27 14:12+0000\n"
+"Last-Translator: Martin Eberhard Schauer <Martin.E.Schauer@gmx.de>\n"
+"Language-Team:  <debian-l10n-german@lists.debian.org>\n"
+"Language: \n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid "Password for DBA and DAV users:"
+msgstr "Passwort für die Benutzerkonten DBA und DAV:"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Following installation, users and passwords in Virtuoso can be managed using "
+"the command line tools (see the full documentation) or via the Conductor web "
+"application which is installed by default at http://localhost:8890/conductor."
+msgstr ""
+"Nach der Installation können Benutzerkonten und Passwörter für Virtuoso mit "
+"den Kommandozeilenwerkzeugen (siehe die vollständige Dokumentation) oder mit "
+"der Web-Anwendung Conductor verwaltet werden. Conductor wird per "
+"Voreinstellung unter http://localhost:8890/conductor installiert."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Two users (\"dba\" and \"dav\") are created by default, with administrative "
+"access to Virtuoso. Secure passwords must be chosen for these users in order "
+"to complete the installation."
+msgstr ""
+"Standardmäßig werden zwei Benutzer (»dba« und »dav«) erzeugt, die zur "
+"Verwaltung von Virtuoso berechtigt sind. Sie müssen für diese Benutzer "
+"sichere Passwörter festlegen, um die Installation abzuschließen."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"If you leave this blank, the daemon will be disabled unless a non-default "
+"password already exists."
+msgstr ""
+"Wenn Sie hier nichts eingeben, wird der Daemon deaktiviert. Es sei denn, es "
+"existiert schon ein von der Vorgabe abweichendes Passwort."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:3001
+msgid "Administrative users password confirmation:"
+msgstr "Bestätigung des Passworts für den Benutzer mit Administrator-Rechten:"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid "Password mismatch"
+msgstr "Die Passwörter stimmen nicht überein"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid ""
+"The two passwords you entered were not the same. Please enter a password "
+"again."
+msgstr ""
+"Die von Ihnen eingegebenen Passwörter waren unterschiedlich. Bitte geben Sie "
+"noch einmal ein Passwort ein."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid "No initial password set, daemon disabled"
+msgstr "Es wurde kein anfängliches Passwort festgesetzt, Daemon deaktiviert."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"For security reasons, the default Virtuoso instance is disabled because no "
+"administration password was provided."
+msgstr ""
+"Aus Sicherheitsgründen wurde die Standard-Instanz von Virtuoso deaktiviert, "
+"weil kein Verwaltungs-Passwort eingegeben wurde."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"You can enable the daemon manually by setting RUN to \"yes\" in /etc/default/"
+"virtuoso-opensource-6.1. The default DBA user password will then be \"dba\"."
+msgstr ""
+"Sie können den Daemon manuell aktivieren, indem Sie in der Datei /etc/"
+"default/virtuoso-opensource-6.1 RUN auf »yes« setzen. Für den Standard-"
+"Benutzer DBA ist das Passwort dann »dba«."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid "Unable to set password for the Virtuoso DBA user"
+msgstr "Festlegung eines Passworts für das Virtuoso-Konto DBA nicht möglich."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"An error occurred while setting the password for the Virtuoso administrative "
+"user. This may have happened because the account already has a password, or "
+"because of a communication problem with the Virtuoso server."
+msgstr ""
+"Beim Setzen des Passworts für den Virtuoso-Verwalter ereignete sich ein "
+"Fehler. Mögliche Gründe sind ein bereits bestehendes Passwort für das Konto "
+"oder ein Kommunikationsproblem mit dem Virtuoso-Server."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"If the database already existed then it will have retained the original "
+"password. If there was some other problem then the default password (\"dba"
+"\") is used."
+msgstr ""
+"Bei bereits bestehender Datenbank bleibt das Original-Passwort erhalten. Bei "
+"Vorliegen eines anderen Problems wird das Standard-Passwort (»dba«) "
+"verwendet."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"It is recommended to check the passwords for the users \"dba\" and \"dav\" "
+"immediately after installation."
+msgstr ""
+"Es wird empfohlen, die Passwörter für die Konten »dba« und »dav« sofort nach "
+"der Installation zu überprüfen."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid "Remove all Virtuoso databases?"
+msgstr "Entfernen aller Virtuoso-Datenbanken?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"The /var/lib/virtuoso directory which contains the Virtuoso databases is "
+"about to be removed."
+msgstr ""
+"Das Verzeichnis /var/lib/virtuoso für die Speicherung der Virtuoso-"
+"Datenbanken steht davor, gelöscht zu werden."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"If you're removing the Virtuoso package in order to later install a more "
+"recent version, or if a different Virtuoso package is already using it, you "
+"can choose to keep databases."
+msgstr ""
+"Wenn Sie das Virtuoso-Paket entfernen, um später eine neuere Version zu "
+"installieren oder wenn ein anderes Virtuoso-Paket schon auf die Datenbanken "
+"zugreift, können Sie festlegen, die Datenbanken beizubehalten."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid "HTTP server port:"
+msgstr "Port des HTTP-Servers:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Virtuoso provides a web server capable of hosting HTML and VSP pages (with "
+"optional support for other languages). If you are installing this instance "
+"as a public web server directly on the Internet, you probably want to choose "
+"80 as web server port."
+msgstr ""
+"Virtuoso enthält einen Web-Server, der HTML- und VSP-Seiten (mit optionaler "
+"Unterstützung für andere Sprachen) ausliefern kann. Wenn Sie diese Instanz "
+"als öffentlichen Web-Server mit direktem Zugriff aus dem Internet "
+"installieren, werden Sie wahrscheinlich für den Server den Port 80 wählen."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Please note that the default web server root directory is /var/lib/virtuoso/"
+"vsp and will be empty unless you also install the package containing the "
+"standard Virtuoso start page."
+msgstr ""
+"Bitte beachten Sie, dass das Standard-Wurzelverzeichnis /var/lib/virtuoso/"
+"vsp für Web-Server leer sein wird, wenn Sie nicht auch das Paket mit der "
+"Standard-Startseite von Virtuoso installieren."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid "Database server port:"
+msgstr "Port für den Datenbank-Server:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"You may change here the port on which the Virtuoso database server will "
+"listen for connections."
+msgstr ""
+"Hier können Sie den Port festlegen, den der Virtuoso-Datenbankserver für "
+"Verbindungen verwendet."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"Modifying this default value can improve security on servers that might be "
+"targets for unauthorized intrusion."
+msgstr ""
+"Die Änderung dieser Voreinstellung kann die Sicherheit auf "
+"Einbruchsversuchen ausgesetzten Servern verbessern."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid "Register an ODBC system DSN for Virtuoso?"
+msgstr ""
+"Registrieren eines systemweiten ODBC-Datenquellen-Namens (ODBC System DSN, "
+"Data Source Name) für Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"An ODBC manager (unixodbc or iODBC) is already installed on this system, and "
+"the Virtuoso ODBC driver is installed."
+msgstr ""
+"Auf dem System ist schon eine ODBC-Verwaltung (unixodbc oder IODBC) "
+"installiert und der ODBC-Treiber von Virtuoso wird installiert."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"The default Virtuoso instance can be automatically added to the list of "
+"available System Data Sources (and automatically deleted from the list when "
+"this package is removed)."
+msgstr ""
+"Die Standard-Instanz von Virtuoso kann automatisch in die Liste verfügbarer "
+"System-Datenquellen eingetragen (und automatisch beim Löschen des Pakets aus "
+"der Liste entfernt) werden."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"If you choose this option, the DSN will be named \"VOS\". User and password "
+"details are omitted from the DSN for security reasons."
+msgstr ""
+"Wenn Sie diese Option wählen, wird der DSN »VOS« verwendet. Benutzer und "
+"Einzelheiten des Passworts werden aus Sicherheitsgründen nicht zusammen mit "
+"dem DSN gespeichert."
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid "Default Virtuoso server package:"
+msgstr "Standard-Virtuoso-Serverpaket:"
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid ""
+"Please choose the version of virtuoso-server that will be linked to by the "
+"default (unversioned) names, for init scripts and client tools."
+msgstr ""
+"Bitte wählen Sie die Standard-Version des Virtuoso-Servers, auf die der "
+"symbolische Verweis (link) ohne Versionsnummer für den Gebrauch durch Init-"
+"Skripte und Client-Werkzeuge zeigt."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid "Register the Virtuoso ODBC driver?"
+msgstr "Den Virtuoso-ODBC-Treiber registrieren?"
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"An ODBC manager (unixodbc or iODBC)  is already installed on this system."
+msgstr ""
+"Auf diesem System ist schon eine ODBC-Verwaltung (unixodbc oder IODBC) "
+"installiert."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"The Virtuoso ODBC driver can be automatically added to the list of available "
+"ODBC drivers (and automatically deleted from the list when this package is "
+"removed)."
+msgstr ""
+"Der Standard-ODBC-Treiber von Virtuoso kann automatisch in die Liste "
+"verfügbarer ODBC-Treiber eingetragen (und automatisch beim Löschen des "
+"Pakets aus der Liste entfernt) werden."
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/po/templates.pot
+++ virtuoso-opensource-6.1.2+dfsg1/debian/po/templates.pot
@@ -0,0 +1,260 @@
+# SOME DESCRIPTIVE TITLE.
+# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
+# This file is distributed under the same license as the PACKAGE package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
+#
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: virtuoso-opensource@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-13 16:41+0100\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: LANGUAGE <LL@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=CHARSET\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid "Password for DBA and DAV users:"
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Following installation, users and passwords in Virtuoso can be managed using "
+"the command line tools (see the full documentation) or via the Conductor web "
+"application which is installed by default at http://localhost:8890/conductor."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Two users (\"dba\" and \"dav\") are created by default, with administrative "
+"access to Virtuoso. Secure passwords must be chosen for these users in order "
+"to complete the installation."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"If you leave this blank, the daemon will be disabled unless a non-default "
+"password already exists."
+msgstr ""
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:3001
+msgid "Administrative users password confirmation:"
+msgstr ""
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid "Password mismatch"
+msgstr ""
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid ""
+"The two passwords you entered were not the same. Please enter a password "
+"again."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid "No initial password set, daemon disabled"
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"For security reasons, the default Virtuoso instance is disabled because no "
+"administration password was provided."
+msgstr ""
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"You can enable the daemon manually by setting RUN to \"yes\" in /etc/default/"
+"virtuoso-opensource-6.1. The default DBA user password will then be \"dba\"."
+msgstr ""
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid "Unable to set password for the Virtuoso DBA user"
+msgstr ""
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"An error occurred while setting the password for the Virtuoso administrative "
+"user. This may have happened because the account already has a password, or "
+"because of a communication problem with the Virtuoso server."
+msgstr ""
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"If the database already existed then it will have retained the original "
+"password. If there was some other problem then the default password (\"dba"
+"\") is used."
+msgstr ""
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"It is recommended to check the passwords for the users \"dba\" and \"dav\" "
+"immediately after installation."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid "Remove all Virtuoso databases?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"The /var/lib/virtuoso directory which contains the Virtuoso databases is "
+"about to be removed."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"If you're removing the Virtuoso package in order to later install a more "
+"recent version, or if a different Virtuoso package is already using it, you "
+"can choose to keep databases."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid "HTTP server port:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Virtuoso provides a web server capable of hosting HTML and VSP pages (with "
+"optional support for other languages). If you are installing this instance "
+"as a public web server directly on the Internet, you probably want to choose "
+"80 as web server port."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Please note that the default web server root directory is /var/lib/virtuoso/"
+"vsp and will be empty unless you also install the package containing the "
+"standard Virtuoso start page."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid "Database server port:"
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"You may change here the port on which the Virtuoso database server will "
+"listen for connections."
+msgstr ""
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"Modifying this default value can improve security on servers that might be "
+"targets for unauthorized intrusion."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid "Register an ODBC system DSN for Virtuoso?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"An ODBC manager (unixodbc or iODBC) is already installed on this system, and "
+"the Virtuoso ODBC driver is installed."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"The default Virtuoso instance can be automatically added to the list of "
+"available System Data Sources (and automatically deleted from the list when "
+"this package is removed)."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"If you choose this option, the DSN will be named \"VOS\". User and password "
+"details are omitted from the DSN for security reasons."
+msgstr ""
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid "Default Virtuoso server package:"
+msgstr ""
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid ""
+"Please choose the version of virtuoso-server that will be linked to by the "
+"default (unversioned) names, for init scripts and client tools."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid "Register the Virtuoso ODBC driver?"
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"An ODBC manager (unixodbc or iODBC)  is already installed on this system."
+msgstr ""
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"The Virtuoso ODBC driver can be automatically added to the list of available "
+"ODBC drivers (and automatically deleted from the list when this package is "
+"removed)."
+msgstr ""
--- virtuoso-opensource-6.1.2+dfsg1.orig/debian/po/sv.po
+++ virtuoso-opensource-6.1.2+dfsg1/debian/po/sv.po
@@ -0,0 +1,313 @@
+# translation of virtuoso-opensource_sv.po to Swedish
+# Copyright (C) 2010
+# This file is distributed under the same license as the virtuoso-opensource package.
+#
+# Martin Ågren <martin.agren@gmail.com>, 2010.
+msgid ""
+msgstr ""
+"Project-Id-Version: virtuoso-opensource_sv\n"
+"Report-Msgid-Bugs-To: virtuoso-opensource@packages.debian.org\n"
+"POT-Creation-Date: 2010-03-13 16:41+0100\n"
+"PO-Revision-Date: 2010-03-27 20:57+0100\n"
+"Last-Translator: Martin Ågren <martin.agren@gmail.com>\n"
+"Language-Team: Swedish <debian-l10n-swedish@lists.debian.org>\n"
+"Language: sv\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: KBabel 1.11.4\n"
+"Plural-Forms:  nplurals=2; plural=(n != 1);\n"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid "Password for DBA and DAV users:"
+msgstr "Lösenord för DBA- och DAV-användare:"
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Following installation, users and passwords in Virtuoso can be managed using "
+"the command line tools (see the full documentation) or via the Conductor web "
+"application which is installed by default at http://localhost:8890/conductor."
+msgstr ""
+"Efter installationen kan användare och lösenord i Virtuoso hanteras med "
+"hjälp av kommandoradsverktygen (se den kompletta dokumentationen) eller "
+"webbapplikationen Conductor, som installeras på http://localhost:8890/"
+"conductor som standard."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"Two users (\"dba\" and \"dav\") are created by default, with administrative "
+"access to Virtuoso. Secure passwords must be chosen for these users in order "
+"to complete the installation."
+msgstr ""
+"Två användare (\"dba\" och \"dav\") skapas automatiskt, med administrativ "
+"åtkomst till Virtuoso. Säkra lösenord måste väljas för dessa användare för "
+"att installationen ska kunna slutföras."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:2001
+msgid ""
+"If you leave this blank, the daemon will be disabled unless a non-default "
+"password already exists."
+msgstr ""
+"Om du lämnar detta fält tomt, kommer servern vara avaktiverad om det inte "
+"redan finns ett icke-standard-lösenord."
+
+#. Type: password
+#. Description
+#: ../virtuoso-opensource-6.1.templates:3001
+msgid "Administrative users password confirmation:"
+msgstr "Bekräftelse av lösenord för administrativa användare:"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid "Password mismatch"
+msgstr "Lösenorden stämmer inte"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:4001
+msgid ""
+"The two passwords you entered were not the same. Please enter a password "
+"again."
+msgstr "De två lösenord du angav var inte lika. Skriv in ett lösenord igen."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid "No initial password set, daemon disabled"
+msgstr "Inget lösenord satt, servern avaktiverad"
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"For security reasons, the default Virtuoso instance is disabled because no "
+"administration password was provided."
+msgstr ""
+"Av säkerhetsskäl har standard-Virtuoso-instansen avaktiverats eftersom inget "
+"administratörslösenord har tillhandahållits."
+
+#. Type: note
+#. Description
+#: ../virtuoso-opensource-6.1.templates:5001
+msgid ""
+"You can enable the daemon manually by setting RUN to \"yes\" in /etc/default/"
+"virtuoso-opensource-6.1. The default DBA user password will then be \"dba\"."
+msgstr ""
+"Du kan aktivera servern manuellt genom att sätta RUN till \"yes\" i /etc/"
+"default/virtuoso-opensource-6.1. DBA-användarens standardlösenord kommer då "
+"vara \"dba\"."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid "Unable to set password for the Virtuoso DBA user"
+msgstr "Kunde inte sätta lösenord för Virtuosos DBA-användare"
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"An error occurred while setting the password for the Virtuoso administrative "
+"user. This may have happened because the account already has a password, or "
+"because of a communication problem with the Virtuoso server."
+msgstr ""
+"Ett fel inträffade när lösenordet sattes för Virtuosos administrativa "
+"användare. Detta kan ha inträffat på grund av att kontot redan har ett "
+"lösenord, eller på grund av kommunikationsproblem med Virtuoso-servern."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"If the database already existed then it will have retained the original "
+"password. If there was some other problem then the default password (\"dba"
+"\") is used."
+msgstr ""
+"Om databasen redan existerade, har den behållit det ursprungliga lösenordet. "
+"Om det rörde sig om något annat problem, kommer standardlösenordet (\"dba\") "
+"användas."
+
+#. Type: error
+#. Description
+#: ../virtuoso-opensource-6.1.templates:6001
+msgid ""
+"It is recommended to check the passwords for the users \"dba\" and \"dav\" "
+"immediately after installation."
+msgstr ""
+"Det rekommenderas att du kontrollerar lösenorden för användarna \"dba\" och "
+"\"dav\" omedelbart efter installationen."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid "Remove all Virtuoso databases?"
+msgstr "Ta bort alla Virtuoso-databaser?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"The /var/lib/virtuoso directory which contains the Virtuoso databases is "
+"about to be removed."
+msgstr ""
+"Katalogen /var/lib/virtuoso som innehåller Virtuoso-databaserna kommer tas "
+"bort."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:7001
+msgid ""
+"If you're removing the Virtuoso package in order to later install a more "
+"recent version, or if a different Virtuoso package is already using it, you "
+"can choose to keep databases."
+msgstr ""
+"Om du tar bort Virtuoso-paketet för att sedan installera en nyare version, "
+"eller om ett annat Virtuoso-paket redan använder dem, kan du välja att "
+"behålla databaserna."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid "HTTP server port:"
+msgstr "HTTP-serverport:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Virtuoso provides a web server capable of hosting HTML and VSP pages (with "
+"optional support for other languages). If you are installing this instance "
+"as a public web server directly on the Internet, you probably want to choose "
+"80 as web server port."
+msgstr ""
+"Virtuoso tillhandahåller en webbserver som kan vara värd för HTML- och VSP-"
+"sidor (med valfritt stöd för andra språk). Om du installerar denna instans "
+"som en publik webbserver direkt mot Internet, vill du troligen välja port 80 "
+"som webbserverport."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:8001
+msgid ""
+"Please note that the default web server root directory is /var/lib/virtuoso/"
+"vsp and will be empty unless you also install the package containing the "
+"standard Virtuoso start page."
+msgstr ""
+"Observera att standardvalet för webbserverns rotkatalog är /var/lib/virtuoso/"
+"vsp. Denna katalog kommer vara tom såvida du inte dessutom installerar "
+"paketet som innehåller Virtuosos standardstartsida."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid "Database server port:"
+msgstr "Databasserverport:"
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"You may change here the port on which the Virtuoso database server will "
+"listen for connections."
+msgstr ""
+"Här kan du ändra vilken port Virtusos databasserver kommer på för "
+"anslutningar."
+
+#. Type: string
+#. Description
+#: ../virtuoso-opensource-6.1.templates:9001
+msgid ""
+"Modifying this default value can improve security on servers that might be "
+"targets for unauthorized intrusion."
+msgstr ""
+"Ändring av detta värde kan förbättra säkerheten på servrar som skulle kunna "
+"utsättas för oauktoriserade intrång."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid "Register an ODBC system DSN for Virtuoso?"
+msgstr "Registrera en ODBC-system-DSN för Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"An ODBC manager (unixodbc or iODBC) is already installed on this system, and "
+"the Virtuoso ODBC driver is installed."
+msgstr ""
+"En ODBC-hanterare (unixodbc eller iODBC) är redan installerad på systemet "
+"och ODBC-drivrutinen för Virtuoso är installerad."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"The default Virtuoso instance can be automatically added to the list of "
+"available System Data Sources (and automatically deleted from the list when "
+"this package is removed)."
+msgstr ""
+"Standardinstansen för Virtuoso kan läggas till listan av tillgängliga "
+"systemdatakällor (System Data Sources, SDS) automatiskt (och tas bort från "
+"listan automatiskt när paketet avinstalleras)."
+
+#. Type: boolean
+#. Description
+#: ../virtuoso-opensource-6.1.templates:10001
+msgid ""
+"If you choose this option, the DSN will be named \"VOS\". User and password "
+"details are omitted from the DSN for security reasons."
+msgstr ""
+"Om du väljer detta alternativ, kommer DSN:en få namnet \"VOS\". Användar- "
+"och lösenordsinformation finns på grund av säkerhetsskäl inte med i DSN:en."
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid "Default Virtuoso server package:"
+msgstr "Standardval för Virtuosos serverpaket:"
+
+#. Type: select
+#. Description
+#: ../virtuoso-opensource-6.1.templates:11001
+msgid ""
+"Please choose the version of virtuoso-server that will be linked to by the "
+"default (unversioned) names, for init scripts and client tools."
+msgstr ""
+"Välj vilken version av virtuoso-server som ska länkas till av standardnamnen "
+"(utan versionsnummer) för initialiseringsskript och klientverktyg."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid "Register the Virtuoso ODBC driver?"
+msgstr "Registrera ODBC-drivrutinen för Virtuoso?"
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"An ODBC manager (unixodbc or iODBC)  is already installed on this system."
+msgstr ""
+"En ODBC-hanterare (unixodbc eller iODBC) är redan installerad på systemet."
+
+#. Type: boolean
+#. Description
+#: ../libvirtodbc0.templates:2001
+msgid ""
+"The Virtuoso ODBC driver can be automatically added to the list of available "
+"ODBC drivers (and automatically deleted from the list when this package is "
+"removed)."
+msgstr ""
+"ODBC-drivrutinen för Virtuoso kan läggas till listan av tillgängliga ODBC-"
+"drivrutiner automatiskt (och tas bort från listan automatiskt när paketet "
+"avinstalleras)."
