[Pkg-virtualbox-commits] r75 - in tags: . 1.5.0-dfsg-1 1.5.0-dfsg-1/debian 1.5.0-dfsg-1/debian/desktop 1.5.0-dfsg-1/debian/patches 1.5.0-dfsg-1/debian/pixmap
daniel at alioth.debian.org
daniel at alioth.debian.org
Thu Oct 11 08:20:33 UTC 2007
Author: daniel
Date: 2007-10-11 08:20:33 +0000 (Thu, 11 Oct 2007)
New Revision: 75
Added:
tags/1.5.0-dfsg-1/
tags/1.5.0-dfsg-1/debian/
tags/1.5.0-dfsg-1/debian/README.rebuild
tags/1.5.0-dfsg-1/debian/VBox.sh
tags/1.5.0-dfsg-1/debian/changelog
tags/1.5.0-dfsg-1/debian/compat
tags/1.5.0-dfsg-1/debian/control
tags/1.5.0-dfsg-1/debian/control.modules.in
tags/1.5.0-dfsg-1/debian/copyright
tags/1.5.0-dfsg-1/debian/desktop/
tags/1.5.0-dfsg-1/debian/desktop/virtualbox.desktop
tags/1.5.0-dfsg-1/debian/patches/
tags/1.5.0-dfsg-1/debian/patches/00list
tags/1.5.0-dfsg-1/debian/patches/01-configure.dpatch
tags/1.5.0-dfsg-1/debian/patches/02-host-module.dpatch
tags/1.5.0-dfsg-1/debian/patches/03-config-kmk.dpatch
tags/1.5.0-dfsg-1/debian/patches/04-remove_additions.dpatch
tags/1.5.0-dfsg-1/debian/patches/05-localconf-kmk.dpatch
tags/1.5.0-dfsg-1/debian/pixmap/
tags/1.5.0-dfsg-1/debian/pixmap/virtualbox.xpm
tags/1.5.0-dfsg-1/debian/postinst.modules.in
tags/1.5.0-dfsg-1/debian/rules
tags/1.5.0-dfsg-1/debian/virtualbox-ose-source.README.Debian
tags/1.5.0-dfsg-1/debian/virtualbox-ose.dirs
tags/1.5.0-dfsg-1/debian/virtualbox-ose.lintian-overrides
tags/1.5.0-dfsg-1/debian/virtualbox-ose.menu
tags/1.5.0-dfsg-1/debian/virtualbox-ose.postinst
tags/1.5.0-dfsg-1/debian/virtualbox-ose.udev
tags/1.5.0-dfsg-1/debian/virtualbox-source.links
Log:
Adding 1.5.0-dfsg-1.
Added: tags/1.5.0-dfsg-1/debian/README.rebuild
===================================================================
--- tags/1.5.0-dfsg-1/debian/README.rebuild (rev 0)
+++ tags/1.5.0-dfsg-1/debian/README.rebuild 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,2 @@
+For an howto rebuild the orig.tar.gz please have a look into
+debian/rules dfsg-free
Added: tags/1.5.0-dfsg-1/debian/VBox.sh
===================================================================
--- tags/1.5.0-dfsg-1/debian/VBox.sh (rev 0)
+++ tags/1.5.0-dfsg-1/debian/VBox.sh 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,88 @@
+#!/bin/sh
+#
+# written by Patrick Winnertz <patrick.winnertz at skolelinux.org> and
+# Michael Meskes <meskes at debian.org>
+# and placed under GPLv2
+#
+# this is based on a script by
+# InnoTek VirtualBox
+#
+# Copyright (C) 2006 InnoTek Systemberatung GmbH
+#
+# This file is part of VirtualBox Open Source Edition (OSE), as
+# available from http://www.virtualbox.org. This file 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,
+# in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
+# distribution. VirtualBox OSE is distributed in the hope that it will
+# be useful, but WITHOUT ANY WARRANTY of any kind.
+
+PATH="/usr/bin:/bin:/usr/sbin:/sbin"
+CONFIG="/etc/vbox/vbox.cfg"
+
+if [ "$VBOX_USER_HOME" = "" ]; then
+ if [ ! -d "$HOME/.VirtualBox" ]; then
+ mkdir -p "$HOME/.VirtualBox"
+ fi
+ LOG="$HOME/.VirtualBox/VBoxSVC.log"
+else
+ if [ ! -d "$VBOX_USER_HOME" ]; then
+ mkdir -p "$VBOX_USER_HOME"
+ fi
+ LOG="$VBOX_USER_HOME/VBoxSVC.log"
+fi
+
+if [ ! -r "$CONFIG" ]; then
+ echo "Could not find VirtualBox installation. Please reinstall."
+ exit 1
+fi
+
+. "$CONFIG_DIR/$CONFIG"
+
+# Note: This script must not fail if the module was not successfully installed
+# because the user might not want to run a VM but only change VM params!
+
+if [ ! -c /dev/vboxdrv ]; then
+ cat << EOF
+WARNING: The character device /dev/vboxdrv does not exist.
+ Please install the virtualbox-modules package for your kernel.
+
+ You will not be able to start VMs until this problem is fixed.
+EOF
+elif [ ! -w /dev/vboxdrv ]; then
+ if [ "`id | grep vboxusers`" = "" ]; then
+ cat << EOF
+WARNING: You are not a member of the "vboxusers" group. Please add yourself
+ to this group before starting VirtualBox.
+
+ You will not be able to start VMs until this problem is fixed.
+EOF
+ else
+ cat << EOF
+WARNING: /dev/vboxdrv not writable for some reason. If you recently added the
+ current user to the vboxusers group then you have to logout and
+ re-login to take the change effect.
+
+ You will not be able to start VMs until this problem is fixed.
+EOF
+ fi
+fi
+
+export LD_LIBRARY_PATH="$INSTALL_DIR"
+
+APP=`which $0`
+APP=${APP##/*/}
+case "$APP" in
+ virtualbox)
+ exec "$INSTALL_DIR/VirtualBox" "$@"
+ ;;
+ vboxmanage)
+ exec "$INSTALL_DIR/VBoxManage" "$@"
+ ;;
+ vboxsdl)
+ exec "$INSTALL_DIR/VBoxSDL" "$@"
+ ;;
+ *)
+ echo "Unknown application - $APP"
+ ;;
+esac
Added: tags/1.5.0-dfsg-1/debian/changelog
===================================================================
--- tags/1.5.0-dfsg-1/debian/changelog (rev 0)
+++ tags/1.5.0-dfsg-1/debian/changelog 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,66 @@
+virtualbox-ose (1.5.0-dfsg-1) unstable; urgency=low
+
+ * New upstream release.
+ * Re-added myself as co-maintainer as I'm the original maintainer.
+ * Updated dfsg-free target in rules for new upstream version.
+ * Don't forkbomb in dfsg-free target, use xargs.
+ * Don't do a subshell in dfsg-free target, not required.
+ * Cleaned the 'dh_make'-template header in postinst.modules.in.
+ * Rediffed all patches with the same diff options.
+ * Properly named all patches and adjusted their dpatch headers.
+
+ -- Daniel Baumann <daniel at debian.org> Wed, 5 Sep 2007 06:58:00 +0200
+
+virtualbox-ose (1.4.0svn4130-dfsg-1) unstable; urgency=low
+
+ [ Patrick Winnertz ]
+ * Rename virtualbox to virtualbox-ose since innotek has a trademark on this
+ name and they prohibit us to use this name together with the open-source edition.
+ See http://www.virtualbox.org/wiki/Licensing_FAQ point 8 for details.
+ * If module is not loadable on this kernel don't fail to install kernel
+ module. (Closes: #440509)
+ * Adjusted Upstream Authors name. The name of the company has changed.
+ * Adjusted copyright. virtualbox is GPLv2 *only*.
+
+ [ Michael Meskes ]
+ * Added Build-Dependancy to g++-multilib on amd64.
+
+ -- Michael Meskes <meskes at debian.org> Mon, 03 Sep 2007 14:27:30 +0200
+
+virtualbox (1.4.0svn4130-dfsg-1) unstable; urgency=low
+
+ [ Philipp Hug ]
+ * Stripped kbuild and yasm from source tarball
+ * Use Debian's kbuild and yasm instead
+ * Added myself as uploader
+ * Build target for module is now all instead of module
+ * Build against correct kernel source
+ * Integrated changes by Patrick Winnertz
+ * clean: rm env.sh AutoConfig.kmk configure.log
+ * Install udev rules to automatically create device
+ * Automatically create vboxusers group
+ * Binary names are now lowercase
+ * Disabled stripping for VMM because it breaks VirtualBox
+ * Don't require kernel module, recommend it instead
+
+ [ Patrick Winnertz ]
+ * Initial release (Closes: #406992, #407001, #409711).
+ * Remove Microsoft license stuff from orig.tar.gz (repackaged it )
+ See dfsg-free section in debian/rules for details.
+ * Added patch to use own yasm
+ * Added patch to remove Additions from the Makefile.kmk
+ * Remove ./src/libs/xpcom18a4/nsprpub/build/autoconf from source tarball.
+ * Doesn't depend on gcc-3.4 and g++-3.4 since they are going to be removed from
+ debian. Use default instead.
+ Therefore I removed the patch, too.
+ * Don't call dh_installdeb twice. (build-dep & build-indep)
+ * Added section to create dfsg tarball automatically to debian/rules (experimental!!)
+ * Added lintian.overrides for -fPIC since somehow virtualbox doesn't work with
+ * Added patch to prevent building modules and kernel code when building the
+ gui.
+ * Install udev rule with virtualbox and not with the module, since several
+ modules for several kernels could be there.
+ * Improved copyright statements in copyright file.
+ * Corrected .desktop file
+
+ -- Patrick Winnertz <patrick.winnertz at skolelinux.org> Thu, 30 Aug 2007 12:35:51 +0200
Added: tags/1.5.0-dfsg-1/debian/compat
===================================================================
--- tags/1.5.0-dfsg-1/debian/compat (rev 0)
+++ tags/1.5.0-dfsg-1/debian/compat 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1 @@
+5
Added: tags/1.5.0-dfsg-1/debian/control
===================================================================
--- tags/1.5.0-dfsg-1/debian/control (rev 0)
+++ tags/1.5.0-dfsg-1/debian/control 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,40 @@
+Source: virtualbox-ose
+Section: misc
+Priority: optional
+Maintainer: Patrick Winnertz <patrick.winnertz at skolelinux.org>
+Uploaders: Philipp Hug <debian at hug.cx>, Marvin Stark <marv at der-marv.de>, Michael Meskes <meskes at debian.org>, Daniel Baumann <daniel at debian.org>
+Build-Depends: debhelper (>= 5), dpatch, bcc, bin86, bzip2, iasl, libacl1-dev, libasound-dev, libidl-dev, libqt3-mt-dev, libsdl1.2-dev, libxalan110-dev, libxerces27-dev, libxcursor-dev, uuid-dev, xalan, xsltproc, zlib1g-dev, yasm, kbuild, libhal-dev, libc6-dev-i386 [amd64], g++-multilib [amd64]
+Standards-Version: 3.7.2
+
+Package: virtualbox-ose
+Provides: virtualbox
+Conflicts: virtualbox
+Replaces: virtualbox
+Architecture: i386 amd64
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Recommends: virtualbox-ose-source, virtualbox-ose-modules
+Description: PC virtualization solution
+ VirtualBox is a free PC virtualization solution allowing you to run a wide
+ range of PC operating systems on your Linux system. This includes Windows,
+ Linux, FreeBSD, DOS, OpenBSD and others.
+ .
+ This packages contains the Open Source Edition of VirtualBox.
+ .
+ Homepage: <http://www.virtualbox.org/>
+
+Package: virtualbox-ose-source
+Provides: virtualbox-source
+Conflicts: virtualbox-source
+Replaces: virtualbox-source
+Architecture: all
+Depends: debhelper (>= 5), dpatch, module-assistant, bzip2, kbuild
+Description: Source for the VirtualBox module
+ This package provides the source code for the virtualbox kernel modules.
+ The virtualbox package is also required in order to make use of these
+ modules. Kernel source or headers are required to compile these modules.
+ .
+ VirtualBox is a free PC virtualization solution allowing you to run a wide
+ range of PC operating systems on your Linux system. This includes Windows,
+ Linux, FreeBSD, DOS, OpenBSD and others.
+ .
+ Homepage: <http://www.virtualbox.org/>
Added: tags/1.5.0-dfsg-1/debian/control.modules.in
===================================================================
--- tags/1.5.0-dfsg-1/debian/control.modules.in (rev 0)
+++ tags/1.5.0-dfsg-1/debian/control.modules.in 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,22 @@
+Source: virtualbox-ose
+Section: misc
+Priority: optional
+Maintainer: Patrick Winnertz <patrick.winnertz at skolelinux.org>
+Uploaders: Philipp Hug <debian at hug.cx>, Marvin Stark <marv at der-marv.de>, Michael Meskes <meskes at debian.org>, Daniel Baumann <daniel at debian.org>
+Build-Depends: debhelper (>= 5), dpatch, kbuild
+Standards-Version: 3.7.2
+
+Package: virtualbox-ose-modules-_KVERS_
+Architecture: any
+Depends: linux-modules-_KVERS_ | linux-image-_KVERS_
+Recommends: virtualbox-ose
+Provides: virtualbox-ose-modules
+Description: VirtualBox modules for Linux (kernel _KVERS_)
+ This package contains the set of loadable kernel modules for VirtualBox.
+ .
+ This package contains the compiled kernel modules for _KVERS_
+ .
+ If you have compiled your own kernel, you will most likely need to build
+ your own virtualbox-modules. The virtualbox-source package has been
+ provided for use with the Debian's module-assistant or kernel-package
+ utilities to produce a version of virtualbox-modules for your kernel.
Added: tags/1.5.0-dfsg-1/debian/copyright
===================================================================
--- tags/1.5.0-dfsg-1/debian/copyright (rev 0)
+++ tags/1.5.0-dfsg-1/debian/copyright 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,755 @@
+This package was debianized by Daniel Baumann <daniel at debian.org> on
+Mon, 15 Jan 2007 14:33:00 +0100.
+
+It was downloaded from <http://www.virtualbox.org/>.
+
+Upstream Author: innotek GmbH <info at innotek.de>
+
+License:
+
+ Copyright (C) 2004-2007 innotek GmbH
+
+ This file is part of VirtualBox Open Source Edition (OSE), as
+ available from http://www.virtualbox.org. This file 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,
+ in version 2 as it comes in the "COPYING" file of the VirtualBox OSE
+ distribution. VirtualBox OSE is distributed in the hope that it will
+ be useful, but WITHOUT ANY WARRANTY of any kind.
+
+
+This applies to the complete sourcetree with the execptions mentioned below:
+
+The following files are licensed under GPLv2:
+
+./src/VBox/HostDrivers/VBoxTAP/
+ Copyright (C) Damion K. Wilson, 2003
+
+./src/VBox/Runtime/generic/semrw-generic.cpp
+./src/VBox/Runtime/table/avl_Base.cpp.h
+./src/VBox/Runtime/table/avl_Destroy.cpp.h
+./src/VBox/Runtime/table/avl_DoWithAll.cpp.h
+./src/VBox/Runtime/table/avlgcptr.cpp
+./src/VBox/Runtime/table/avl_GetBestFit.cpp.h
+./src/VBox/Runtime/table/avl_Get.cpp.h
+./src/VBox/Runtime/table/avlhcphys.cpp
+./src/VBox/Runtime/table/avlogcphys.cpp
+./src/VBox/Runtime/table/avlogcptr.cpp
+./src/VBox/Runtime/table/avlohcphys.cpp
+./src/VBox/Runtime/table/avloioport.cpp
+./src/VBox/Runtime/table/avlpv.cpp
+./src/VBox/Runtime/table/avl_Range.cpp.h
+./src/VBox/Runtime/table/avl_RemoveBestFit.cpp.h
+./src/VBox/Runtime/table/avlrgcptr.cpp
+./src/VBox/Runtime/table/avlrogcptr.cpp
+./src/VBox/Runtime/table/avlroioport.cpp
+./src/VBox/Runtime/table/avlroogcptr.cpp
+./src/VBox/Runtime/table/avlu32.cpp
+./src/VBox/Runtime/table/avlul.cpp
+./src/VBox/Runtime/table/table.cpp
+ Copyright (c) 2005-2007 knut st. osmundsen <bird-src-spam at anduin.net>
+
+./include/avl.h
+ Copyright (c) 2005-2007 knut st. osmundsen <bird-src-spam at anduin.net>
+ Copyright (C) 2006-2007 innotek GmbH
+
+./src/VBox/Devices/PC/Etherboot-src/
+ this subtree is licensed as mentioned in ./src/VBox/Devices/PC/Etherboot-src/README-vbox
+ with the execptions which are listed here.
+
+./src/VBox/Devices/PC/Etherboot-src/arch/i386/drivers/net/undi.h
+./src/VBox/Devices/PC/Etherboot-src/arch/i386/drivers/net/undi.c
+./src/VBox/Devices/PC/Etherboot-src/core/pxe_export.c
+ Copyright: 2003 Michael Brown <mbrown at fensystems.co.uk>
+
+./src/VBox/Devices/PC/Etherboot-src/include/string.h
+./src/VBox/Devices/PC/Etherboot-src/core/string.c
+ Copyright: 1991, 1992 Linus Torvalds
+ Copyright: 2004 Tobias Lorenz
+
+./src/VBox/Devices/PC/Etherboot-src/include/i82365.h
+./src/VBox/Devices/PC/Etherboot-src/core/i82365.c
+ Copyright: 1999 David A. Hinds
+
+./src/VBox/Devices/PC/Etherboot-src/include/isapnp.h
+./src/VBox/Devices/PC/Etherboot-src/core/isapnp.c
+ Copyright: 2001 P.J.H.Fox
+
+./src/VBox/Devices/PC/BIOS/rombios.c
+ Copyright: 2002 MandrakeSoft S.A
+
+./src/VBox/Devices/Graphics/BIOS/vbe.c
+ Copyright: 2002 Jeroen Janssen
+
+./src/VBox/Devices/Graphics/BIOS/clext.c
+ Copyright: (c) 2004 Makoto Suzuki (suzu)
+
+./src/VBox/HostDrivers/VBoxTAP/config-win32.h
+ Copyright: 2002-2005 OpenVPN Solutions LLC
+
+./src/VBox/Devices/PC/Etherboot-src/include/mii.h
+ Copyright (C) 1996, 1999, 2001 David S. Miller
+
+./src/VBox/Devices/PC/Etherboot-src/core/proto_eth_slow.c
+ Copyright 2004 Linux Networx
+
+./src/VBox/Devices/PC/Etherboot-src/util/getopt.c
+ Copyright (c) 1990-1995 by Eberhard Mattes
+
+On Debian systems, the complete text of the GNU General Public License
+can be found in /usr/share/common-licenses/GPL-2 file.
+
+-------------------------------------------------------------------------------
+
+The MPL applies to the complete subtree of ./src/libs/xpcom18a4, which was
+synced from mozilla-cvs (the copyright file is in mozilla/COPYRIGHT and
+synced were only mozilla/xpcom, mozilla/nsprpub and mozilla/ipc )
+
+The license is attached below.
+
+-------------------------------------------------------------------------------
+
+The BSD License applies to the complete subtree of:
+
+ - ./src/libs/liblzf-1.51/
+ Copyright (c) 2000-2005 Marc Alexander Lehmann
+
+ - ./src/VBox/Devices/Audio/coreaudio.h
+ Copyright (c) 2005 Mike Kronenberg
+
+ - ./src/VBox/Devices/Network/slirp
+ Copyright (c), 1995,1996 Danny Gasparovski
+ Slirp uses code that is copyrighted by the following people:
+ Juha Pirkola.
+ Gregory M. Christy.
+ The Regents of the University of California.
+ Carnegie Mellon University.
+ The Australian National University.
+ RSA Data Security, Inc.
+
+
+ - ./src/VBox/HostDrivers/Support/freebsd/SUPDrv-freebsd.c
+ - ./src/VBox/HostDrivers/Support/os2/SUPDrv-os2.cpp
+ - ./src/VBox/Runtime/r0drv/freebsd/
+ - ./src/VBox/Runtime/r0drv/os2/
+ - ./src/VBox/Runtime/r3/os2/time-os2.cpp
+ - ./src/VBox/Runtime/r0drv/freebsd/memobj-r0drv-freebsd.c
+ - ./src/VBox/Runtime/r0drv/freebsd/time-r0drv-freebsd.c
+ - ./src/VBox/Runtime/r0drv/freebsd/timer-r0drv-freebsd.c
+ Copyright (c) 2007 knut st. osmundsen <bird-src-spam at anduin.net>
+
+ - ./src/VBox/Runtime/include/internal/ldrELF32.h
+ - ./src/VBox/Runtime/include/internal/lldrELF64.h
+ - ./src/VBox/Runtime/include/internal/lldrELFAmd64.h
+ - ./src/VBox/Runtime/include/internal/lldrELFCommon.h
+ - ./src/VBox/Runtime/include/internal/lldrELFi386.h
+ Copyright (c) 1996-1998 John D. Polstra.
+
+ - ./src/VBox/Devices/Audio/alsaaudio.c
+ - ./src/VBox/Devices/Audio/audio.c
+ - ./src/VBox/Devices/Audio/audio.h
+ - ./src/VBox/Devices/Audio/audio_int.h
+ - ./src/VBox/Devices/Audio/audio_template.h
+ - ./src/VBox/Devices/Audio/dsoundaudio.c
+ - ./src/VBox/Devices/Audio/dsound_template.h
+ - ./src/VBox/Devices/Audio/mixeng_template.h
+ - ./src/VBox/Devices/Audio/noaudio.c
+ - ./src/VBox/Devices/Audio/ossaudio.c
+ Copyright (c) 2005 Vassili Karpov (malc)
+
+ - ./src/VBox/Devices/Audio/mixeng.c
+ - ./src/VBox/Devices/Audio/reate_template.h
+ Copyright (c) 2005 Vassili Karpov (malc)
+ Copyright 1998 Fabrice Bellard
+
+ - ./src/VBox/Devices/Audio/sys-queue.h
+ - ./src/VBox/Runtime/math/gcc/*
+ Copyright (c) 1991, 1993 The Regents of the University of California.
+
+ - ./src/VBox/Runtime/testcase/soundcard.h
+ Copyright by Hannu Savolainen 1993-1997
+
+ - ./src/VBox/Devices/Network/slirp/tftp.c
+ Copyright: (c) 2004 Magnus Damm
+
+ - ./src/VBox/Devices/PC/Etherboot-src/core/proto_fsp.c
+ Copyright: (c) 2005 by Radim Kolar
+
+ - ./include/Box/HostServices/glext.h
+ - ./include/VBox/HostServices/wglext.h
+ - ./include/VBox/HostServices/glxext.h
+ Copyright: (c) 2007 The Khronos Group Inc
+
+On Debian systems, the complete text of the BSD License
+can be found in /usr/share/common-licenses/BSD file.
+
+-------------------------------------------------------------------------------
+
+The LGPL applies to the complete subtree of:
+
+ - ./src/recompiler/
+ Copyright (c) 2003 Fabrice Bellard
+ with the exeption of:
+ ./src/recompiler/InnoTek (GPLv2)
+ Copyright (C) 2004-2006 InnoTek Systemberatung GmbH <info at innotek.de>
+ ./src/recompiler/a.out.h (Cygwin License, see below)
+ Copyright 1997, 1998, 1999, 2001 Red Hat, Inc.
+ ./src/recompiler/vl.h (BSD)
+ Copyright: (c) 2003 Fabrice Bellard
+ ./src/recompiler/dyngen.c (GPLv2)
+ Copyright: (c) 2003 Fabrice Bellard
+
+ - ./src/recompiler/fpu
+ Copyright (C) John R. Hauser.
+
+
+ - ./src/VBox/Devices/Graphics/BIOS
+ Copyright (c) 2004 Makoto Suzuki (suzu)
+ Copyright (C) 2002 Jeroen Janssen
+
+ - ./src/VBox/Devices/PC/BIOS/
+ Copyright (C) 2004 Fabrice Bellard
+ Copyright (C) 2005 Struan Bartlett
+
+ - ./src/VBox/Frontends/src/linux/keyboard.c
+ Copyright 1993 Bob Amstadt
+ Copyright 1996 Albrecht Kleine
+ Copyright 1997 David Faure
+ Copyright 1998 Morten Welinder
+ Copyright 1998 Ulrich Weigand
+ Copyright 1999 Ove Kåven
+
+ - ./src/VBox/Frontends/src/linux/keyboard_outofwine.h
+
+ - ./src/VBox/Runtime/math/x86/fenv-x86.c
+ Copyright (c) 2004-2005 David Schultz <das at FreeBSD.ORG>
+
+ - ./src/VBox/Devices/Graphics/BIOS/vgabios.c
+ Copyright: 2001,2002 the LGPL VGABios developers Team
+
+On Debian systems, the complete text of the LGPL License
+can be found in /usr/share/common-licenses/LGPL file.
+
+-------------------------------------------------------------------------------
+The Cygwin License applies to:
+
+. ./src/recompiler/a.out.h
+ Copyright 1997, 1998, 1999, 2001 Red Hat, Inc.
+
+
+A copy of this license is appended below.
+
+-------------------------------------------------------------------------------
+
+Due to license issues, the complete Guest Additions have to be removed from the
+sourcecode. Some of the files were (c) Microsoft with an license which have to be
+considered non-free.
+
+
+Below a copy of the MPL:
+###############################################################################
+ MOZILLA PUBLIC LICENSE
+ Version 1.1
+
+ ---------------
+
+1. Definitions.
+
+ 1.0.1. "Commercial Use" means distribution or otherwise making the
+ Covered Code available to a third party.
+
+ 1.1. "Contributor" means each entity that creates or contributes to
+ the creation of Modifications.
+
+ 1.2. "Contributor Version" means the combination of the Original
+ Code, prior Modifications used by a Contributor, and the Modifications
+ made by that particular Contributor.
+
+ 1.3. "Covered Code" means the Original Code or Modifications or the
+ combination of the Original Code and Modifications, in each case
+ including portions thereof.
+
+ 1.4. "Electronic Distribution Mechanism" means a mechanism generally
+ accepted in the software development community for the electronic
+ transfer of data.
+
+ 1.5. "Executable" means Covered Code in any form other than Source
+ Code.
+
+ 1.6. "Initial Developer" means the individual or entity identified
+ as the Initial Developer in the Source Code notice required by Exhibit
+ A.
+
+ 1.7. "Larger Work" means a work which combines Covered Code or
+ portions thereof with code not governed by the terms of this License.
+
+ 1.8. "License" means this document.
+
+ 1.8.1. "Licensable" means having the right to grant, to the maximum
+ extent possible, whether at the time of the initial grant or
+ subsequently acquired, any and all of the rights conveyed herein.
+
+ 1.9. "Modifications" means any addition to or deletion from the
+ substance or structure of either the Original Code or any previous
+ Modifications. When Covered Code is released as a series of files, a
+ Modification is:
+ A. Any addition to or deletion from the contents of a file
+ containing Original Code or previous Modifications.
+
+ B. Any new file that contains any part of the Original Code or
+ previous Modifications.
+
+ 1.10. "Original Code" means Source Code of computer software code
+ which is described in the Source Code notice required by Exhibit A as
+ Original Code, and which, at the time of its release under this
+ License is not already Covered Code governed by this License.
+
+ 1.10.1. "Patent Claims" means any patent claim(s), now owned or
+ hereafter acquired, including without limitation, method, process,
+ and apparatus claims, in any patent Licensable by grantor.
+
+ 1.11. "Source Code" means the preferred form of the Covered Code for
+ making modifications to it, including all modules it contains, plus
+ any associated interface definition files, scripts used to control
+ compilation and installation of an Executable, or source code
+ differential comparisons against either the Original Code or another
+ well known, available Covered Code of the Contributor's choice. The
+ Source Code can be in a compressed or archival form, provided the
+ appropriate decompression or de-archiving software is widely available
+ for no charge.
+
+ 1.12. "You" (or "Your") means an individual or a legal entity
+ exercising rights under, and complying with all of the terms of, this
+ License or a future version of this License issued under Section 6.1.
+ For legal entities, "You" includes any entity which controls, is
+ controlled by, or is under common control with You. For purposes of
+ this definition, "control" means (a) the power, direct or indirect,
+ to cause the direction or management of such entity, whether by
+ contract or otherwise, or (b) ownership of more than fifty percent
+ (50%) of the outstanding shares or beneficial ownership of such
+ entity.
+
+2. Source Code License.
+
+ 2.1. The Initial Developer Grant.
+ The Initial Developer hereby grants You a world-wide, royalty-free,
+ non-exclusive license, subject to third party intellectual property
+ claims:
+ (a) under intellectual property rights (other than patent or
+ trademark) Licensable by Initial Developer to use, reproduce,
+ modify, display, perform, sublicense and distribute the Original
+ Code (or portions thereof) with or without Modifications, and/or
+ as part of a Larger Work; and
+
+ (b) under Patents Claims infringed by the making, using or
+ selling of Original Code, to make, have made, use, practice,
+ sell, and offer for sale, and/or otherwise dispose of the
+ Original Code (or portions thereof).
+
+ (c) the licenses granted in this Section 2.1(a) and (b) are
+ effective on the date Initial Developer first distributes
+ Original Code under the terms of this License.
+
+ (d) Notwithstanding Section 2.1(b) above, no patent license is
+ granted: 1) for code that You delete from the Original Code; 2)
+ separate from the Original Code; or 3) for infringements caused
+ by: i) the modification of the Original Code or ii) the
+ combination of the Original Code with other software or devices.
+
+ 2.2. Contributor Grant.
+ Subject to third party intellectual property claims, each Contributor
+ hereby grants You a world-wide, royalty-free, non-exclusive license
+
+ (a) under intellectual property rights (other than patent or
+ trademark) Licensable by Contributor, to use, reproduce, modify,
+ display, perform, sublicense and distribute the Modifications
+ created by such Contributor (or portions thereof) either on an
+ unmodified basis, with other Modifications, as Covered Code
+ and/or as part of a Larger Work; and
+
+ (b) under Patent Claims infringed by the making, using, or
+ selling of Modifications made by that Contributor either alone
+ and/or in combination with its Contributor Version (or portions
+ of such combination), to make, use, sell, offer for sale, have
+ made, and/or otherwise dispose of: 1) Modifications made by that
+ Contributor (or portions thereof); and 2) the combination of
+ Modifications made by that Contributor with its Contributor
+ Version (or portions of such combination).
+
+ (c) the licenses granted in Sections 2.2(a) and 2.2(b) are
+ effective on the date Contributor first makes Commercial Use of
+ the Covered Code.
+
+ (d) Notwithstanding Section 2.2(b) above, no patent license is
+ granted: 1) for any code that Contributor has deleted from the
+ Contributor Version; 2) separate from the Contributor Version;
+ 3) for infringements caused by: i) third party modifications of
+ Contributor Version or ii) the combination of Modifications made
+ by that Contributor with other software (except as part of the
+ Contributor Version) or other devices; or 4) under Patent Claims
+ infringed by Covered Code in the absence of Modifications made by
+ that Contributor.
+
+3. Distribution Obligations.
+
+ 3.1. Application of License.
+ The Modifications which You create or to which You contribute are
+ governed by the terms of this License, including without limitation
+ Section 2.2. The Source Code version of Covered Code may be
+ distributed only under the terms of this License or a future version
+ of this License released under Section 6.1, and You must include a
+ copy of this License with every copy of the Source Code You
+ distribute. You may not offer or impose any terms on any Source Code
+ version that alters or restricts the applicable version of this
+ License or the recipients' rights hereunder. However, You may include
+ an additional document offering the additional rights described in
+ Section 3.5.
+
+ 3.2. Availability of Source Code.
+ Any Modification which You create or to which You contribute must be
+ made available in Source Code form under the terms of this License
+ either on the same media as an Executable version or via an accepted
+ Electronic Distribution Mechanism to anyone to whom you made an
+ Executable version available; and if made available via Electronic
+ Distribution Mechanism, must remain available for at least twelve (12)
+ months after the date it initially became available, or at least six
+ (6) months after a subsequent version of that particular Modification
+ has been made available to such recipients. You are responsible for
+ ensuring that the Source Code version remains available even if the
+ Electronic Distribution Mechanism is maintained by a third party.
+
+ 3.3. Description of Modifications.
+ You must cause all Covered Code to which You contribute to contain a
+ file documenting the changes You made to create that Covered Code and
+ the date of any change. You must include a prominent statement that
+ the Modification is derived, directly or indirectly, from Original
+ Code provided by the Initial Developer and including the name of the
+ Initial Developer in (a) the Source Code, and (b) in any notice in an
+ Executable version or related documentation in which You describe the
+ origin or ownership of the Covered Code.
+
+ 3.4. Intellectual Property Matters
+ (a) Third Party Claims.
+ If Contributor has knowledge that a license under a third party's
+ intellectual property rights is required to exercise the rights
+ granted by such Contributor under Sections 2.1 or 2.2,
+ Contributor must include a text file with the Source Code
+ distribution titled "LEGAL" which describes the claim and the
+ party making the claim in sufficient detail that a recipient will
+ know whom to contact. If Contributor obtains such knowledge after
+ the Modification is made available as described in Section 3.2,
+ Contributor shall promptly modify the LEGAL file in all copies
+ Contributor makes available thereafter and shall take other steps
+ (such as notifying appropriate mailing lists or newsgroups)
+ reasonably calculated to inform those who received the Covered
+ Code that new knowledge has been obtained.
+
+ (b) Contributor APIs.
+ If Contributor's Modifications include an application programming
+ interface and Contributor has knowledge of patent licenses which
+ are reasonably necessary to implement that API, Contributor must
+ also include this information in the LEGAL file.
+
+ (c) Representations.
+ Contributor represents that, except as disclosed pursuant to
+ Section 3.4(a) above, Contributor believes that Contributor's
+ Modifications are Contributor's original creation(s) and/or
+ Contributor has sufficient rights to grant the rights conveyed by
+ this License.
+
+ 3.5. Required Notices.
+ You must duplicate the notice in Exhibit A in each file of the Source
+ Code. If it is not possible to put such notice in a particular Source
+ Code file due to its structure, then You must include such notice in a
+ location (such as a relevant directory) where a user would be likely
+ to look for such a notice. If You created one or more Modification(s)
+ You may add your name as a Contributor to the notice described in
+ Exhibit A. You must also duplicate this License in any documentation
+ for the Source Code where You describe recipients' rights or ownership
+ rights relating to Covered Code. You may choose to offer, and to
+ charge a fee for, warranty, support, indemnity or liability
+ obligations to one or more recipients of Covered Code. However, You
+ may do so only on Your own behalf, and not on behalf of the Initial
+ Developer or any Contributor. You must make it absolutely clear than
+ any such warranty, support, indemnity or liability obligation is
+ offered by You alone, and You hereby agree to indemnify the Initial
+ Developer and every Contributor for any liability incurred by the
+ Initial Developer or such Contributor as a result of warranty,
+ support, indemnity or liability terms You offer.
+
+ 3.6. Distribution of Executable Versions.
+ You may distribute Covered Code in Executable form only if the
+ requirements of Section 3.1-3.5 have been met for that Covered Code,
+ and if You include a notice stating that the Source Code version of
+ the Covered Code is available under the terms of this License,
+ including a description of how and where You have fulfilled the
+ obligations of Section 3.2. The notice must be conspicuously included
+ in any notice in an Executable version, related documentation or
+ collateral in which You describe recipients' rights relating to the
+ Covered Code. You may distribute the Executable version of Covered
+ Code or ownership rights under a license of Your choice, which may
+ contain terms different from this License, provided that You are in
+ compliance with the terms of this License and that the license for the
+ Executable version does not attempt to limit or alter the recipient's
+ rights in the Source Code version from the rights set forth in this
+ License. If You distribute the Executable version under a different
+ license You must make it absolutely clear that any terms which differ
+ from this License are offered by You alone, not by the Initial
+ Developer or any Contributor. You hereby agree to indemnify the
+ Initial Developer and every Contributor for any liability incurred by
+ the Initial Developer or such Contributor as a result of any such
+ terms You offer.
+
+ 3.7. Larger Works.
+ You may create a Larger Work by combining Covered Code with other code
+ not governed by the terms of this License and distribute the Larger
+ Work as a single product. In such a case, You must make sure the
+ requirements of this License are fulfilled for the Covered Code.
+
+4. Inability to Comply Due to Statute or Regulation.
+
+ If it is impossible for You to comply with any of the terms of this
+ License with respect to some or all of the Covered Code due to
+ statute, judicial order, or regulation then You must: (a) comply with
+ the terms of this License to the maximum extent possible; and (b)
+ describe the limitations and the code they affect. Such description
+ must be included in the LEGAL file described in Section 3.4 and must
+ be included with all distributions of the Source Code. Except to the
+ extent prohibited by statute or regulation, such description must be
+ sufficiently detailed for a recipient of ordinary skill to be able to
+ understand it.
+
+5. Application of this License.
+
+ This License applies to code to which the Initial Developer has
+ attached the notice in Exhibit A and to related Covered Code.
+
+6. Versions of the License.
+
+ 6.1. New Versions.
+ Netscape Communications Corporation ("Netscape") may publish revised
+ and/or new versions of the License from time to time. Each version
+ will be given a distinguishing version number.
+
+ 6.2. Effect of New Versions.
+ 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 Netscape. No one
+ other than Netscape has the right to modify the terms applicable to
+ Covered Code created under this License.
+
+ 6.3. Derivative Works.
+ If You create or use a modified version of this License (which you may
+ only do in order to apply it to code which is not already Covered Code
+ governed by this License), You must (a) rename Your license so that
+ the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape",
+ "MPL", "NPL" or any confusingly similar phrase do not appear in your
+ license (except to note that your license differs from this License)
+ and (b) otherwise make it clear that Your version of the license
+ contains terms which differ from the Mozilla Public License and
+ Netscape Public License. (Filling in the name of the Initial
+ Developer, Original Code or Contributor in the notice described in
+ Exhibit A shall not of themselves be deemed to be modifications of
+ this License.)
+
+7. DISCLAIMER OF WARRANTY.
+
+ COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS,
+ WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+ WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF
+ DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING.
+ THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE
+ IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT,
+ YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE
+ COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER
+ OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF
+ ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER.
+
+8. TERMINATION.
+
+ 8.1. This License and the rights granted hereunder will terminate
+ automatically if You fail to comply with terms herein and fail to cure
+ such breach within 30 days of becoming aware of the breach. All
+ sublicenses to the Covered Code which are properly granted shall
+ survive any termination of this License. Provisions which, by their
+ nature, must remain in effect beyond the termination of this License
+ shall survive.
+
+ 8.2. If You initiate litigation by asserting a patent infringement
+ claim (excluding declatory judgment actions) against Initial Developer
+ or a Contributor (the Initial Developer or Contributor against whom
+ You file such action is referred to as "Participant") alleging that:
+
+ (a) such Participant's Contributor Version directly or indirectly
+ infringes any patent, then any and all rights granted by such
+ Participant to You under Sections 2.1 and/or 2.2 of this License
+ shall, upon 60 days notice from Participant terminate prospectively,
+ unless if within 60 days after receipt of notice You either: (i)
+ agree in writing to pay Participant a mutually agreeable reasonable
+ royalty for Your past and future use of Modifications made by such
+ Participant, or (ii) withdraw Your litigation claim with respect to
+ the Contributor Version against such Participant. If within 60 days
+ of notice, a reasonable royalty and payment arrangement are not
+ mutually agreed upon in writing by the parties or the litigation claim
+ is not withdrawn, the rights granted by Participant to You under
+ Sections 2.1 and/or 2.2 automatically terminate at the expiration of
+ the 60 day notice period specified above.
+
+ (b) any software, hardware, or device, other than such Participant's
+ Contributor Version, directly or indirectly infringes any patent, then
+ any rights granted to You by such Participant under Sections 2.1(b)
+ and 2.2(b) are revoked effective as of the date You first made, used,
+ sold, distributed, or had made, Modifications made by that
+ Participant.
+
+ 8.3. If You assert a patent infringement claim against Participant
+ alleging that such Participant's Contributor Version directly or
+ indirectly infringes any patent where such claim is resolved (such as
+ by license or settlement) prior to the initiation of patent
+ infringement litigation, then the reasonable value of the licenses
+ granted by such Participant under Sections 2.1 or 2.2 shall be taken
+ into account in determining the amount or value of any payment or
+ license.
+
+ 8.4. In the event of termination under Sections 8.1 or 8.2 above,
+ all end user license agreements (excluding distributors and resellers)
+ which have been validly granted by You or any distributor hereunder
+ prior to termination shall survive termination.
+
+9. LIMITATION OF LIABILITY.
+
+ UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT
+ (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL
+ DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE,
+ OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR
+ ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY
+ CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL,
+ WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER
+ COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN
+ INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF
+ LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY
+ RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW
+ PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE
+ EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO
+ THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU.
+
+10. U.S. GOVERNMENT END USERS.
+
+ The Covered Code is a "commercial item," as that term is defined in
+ 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer
+ software" and "commercial computer software documentation," as such
+ terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48
+ C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995),
+ all U.S. Government End Users acquire Covered Code with only those
+ rights set forth herein.
+
+11. MISCELLANEOUS.
+
+ This License represents the complete agreement concerning subject
+ matter hereof. If any provision of this License is held to be
+ unenforceable, such provision shall be reformed only to the extent
+ necessary to make it enforceable. This License shall be governed by
+ California law provisions (except to the extent applicable law, if
+ any, provides otherwise), excluding its conflict-of-law provisions.
+ With respect to disputes in which at least one party is a citizen of,
+ or an entity chartered or registered to do business in the United
+ States of America, any litigation relating to this License shall be
+ subject to the jurisdiction of the Federal Courts of the Northern
+ District of California, with venue lying in Santa Clara County,
+ California, with the losing party responsible for costs, including
+ without limitation, court costs and reasonable attorneys' fees and
+ expenses. The application of the United Nations Convention on
+ Contracts for the International Sale of Goods is expressly excluded.
+ Any law or regulation which provides that the language of a contract
+ shall be construed against the drafter shall not apply to this
+ License.
+
+12. RESPONSIBILITY FOR CLAIMS.
+
+ As between Initial Developer and the Contributors, each party is
+ responsible for claims and damages arising, directly or indirectly,
+ out of its utilization of rights under this License and You agree to
+ work with Initial Developer and Contributors to distribute such
+ responsibility on an equitable basis. Nothing herein is intended or
+ shall be deemed to constitute any admission of liability.
+
+13. MULTIPLE-LICENSED CODE.
+
+ Initial Developer may designate portions of the Covered Code as
+ "Multiple-Licensed". "Multiple-Licensed" means that the Initial
+ Developer permits you to utilize portions of the Covered Code under
+ Your choice of the NPL or the alternative licenses, if any, specified
+ by the Initial Developer in the file described in Exhibit A.
+
+EXHIBIT A -Mozilla Public License.
+
+ ``The contents of this file are subject to the Mozilla Public License
+ Version 1.1 (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.mozilla.org/MPL/
+
+ Software distributed under the License is distributed on an "AS IS"
+ basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the
+ License for the specific language governing rights and limitations
+ under the License.
+
+ The Original Code is ______________________________________.
+
+ The Initial Developer of the Original Code is ________________________.
+ Portions created by ______________________ are Copyright (C) ______
+ _______________________. All Rights Reserved.
+
+ Contributor(s): ______________________________________.
+
+ Alternatively, the contents of this file may be used under the terms
+ of the _____ license (the "[___] License"), in which case the
+ provisions of [______] License are applicable instead of those
+ above. If you wish to allow use of your version of this file only
+ under the terms of the [____] License and not to allow others to use
+ your version of this file under the MPL, indicate your decision by
+ deleting the provisions above and replace them with the notice and
+ other provisions required by the [___] License. If you do not delete
+ the provisions above, a recipient may use your version of this file
+ under either the MPL or the [___] License."
+
+ [NOTE: The text of this Exhibit A may differ slightly from the text of
+ the notices in the Source Code files of the Original Code. You should
+ use the text of this Exhibit A rather than the text found in the
+ Original Code Source Code for Your Modifications.]
+
+
+The Cygwin License:
+###############################################################################
+ This program is free software; you can redistribute it and/or modify it under
+ the terms of the GNU General Public License (GPL) as published by
+ the Free Software Foundation version 2 of the License.
+ 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.,
+ 59 Temple Place -
+ Suite 330, Boston,
+ MA 02111-1307, USA.
+
+ *** NOTE ***
+ In accordance with section 10 of the GPL, Red Hat permits programs whose sources
+ are distributed under a license that complies with the Open Source definition
+ to be linked with libcygwin.a/cygwin1.dll without libcygwin.a/cygwin1.dll itself
+ causing the resulting program to be covered by the GNU GPL.
+ This means that you can port an Open Source(tm) application to cygwin, and
+ distribute that executable as if it didn't include a copy of
+ libcygwin.a/cygwin1.dll linked into it. Note that this does not apply to the
+ cygwin DLL itself. If you distribute a (possibly modified) version of the DLL
+ you must adhere to the terms of the GPL, i.e. you must provide sources
+ for the cygwin DLL.
+
+ See http://www.opensource.org/docs/osd/ for the precise Open Source
+ Definition referenced above.
+
+The Debian packaging is (C) 2007, Patrick Winnertz <patrick.winnertz at skolelinux.org>,
+Daniel Baumann <daniel at debian.org>, Daniel Hug <debian at hug.cx> and is licensed under
+the GPL, see `/usr/share/common-licenses/GPL'.
Added: tags/1.5.0-dfsg-1/debian/desktop/virtualbox.desktop
===================================================================
--- tags/1.5.0-dfsg-1/debian/desktop/virtualbox.desktop (rev 0)
+++ tags/1.5.0-dfsg-1/debian/desktop/virtualbox.desktop 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=InnoTek VirtualBox
+GenericName=Virtual Machine
+Type=Application
+Comment=Run several virtual systems on a single host computer
+Exec=virtualbox
+TryExec=virtualbox
+Icon=virtualbox.png
+Categories=Emulator;System;
Added: tags/1.5.0-dfsg-1/debian/patches/00list
===================================================================
--- tags/1.5.0-dfsg-1/debian/patches/00list (rev 0)
+++ tags/1.5.0-dfsg-1/debian/patches/00list 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,5 @@
+01-configure.dpatch
+02-host-module.dpatch
+03-config-kmk.dpatch
+04-remove_additions.dpatch
+05-localconf-kmk.dpatch
Added: tags/1.5.0-dfsg-1/debian/patches/01-configure.dpatch
===================================================================
--- tags/1.5.0-dfsg-1/debian/patches/01-configure.dpatch (rev 0)
+++ tags/1.5.0-dfsg-1/debian/patches/01-configure.dpatch 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,30 @@
+#!/bin/sh /usr/share/dpatch/dpatch-run
+## 01-configure.dpatch by Patrick Winnertz <patrick.winnertz at skolelinux.org>
+##
+## DP: Use Debians kbuild instead ; doesn't build module
+
+ at DPATCH@
+
+diff -Naurp virtualbox-ose-1.5.0-dfsg.orig/configure virtualbox-ose-1.5.0-dfsg/configure
+--- virtualbox-ose-1.5.0-dfsg.orig/configure 2007-08-31 12:42:12.000000000 +0000
++++ virtualbox-ose-1.5.0-dfsg/configure 2007-09-05 05:09:46.000000000 +0000
+@@ -248,8 +248,8 @@ check_environment()
+ exit 1
+ ;;
+ esac
+- DEVDIR_BIN="$DEVDIR/$OS.$BUILD_MACHINE/bin"
+- KBUILDDIR_BIN="$KBUILDDIR/bin/$OS.$BUILD_MACHINE"
++ DEVDIR_BIN="/usr/bin"
++ KBUILDDIR_BIN="/usr/bin"
+ log_success "Determined build machine: $OS.$BUILD_MACHINE, target machine: $OS.$TARGET_MACHINE"
+
+ # Automatically disable XPCOM on darwin.
+@@ -1335,7 +1335,7 @@ check_gcc
+
+ # Linux-specific
+ if [ "$OS" = "linux" ]; then
+- check_linux
++# check_linux
+ check_alsa
+ check_compiler_h
+ [ "$BUILD_MACHINE" = "amd64" ] && check_32bit
Added: tags/1.5.0-dfsg-1/debian/patches/02-host-module.dpatch
===================================================================
--- tags/1.5.0-dfsg-1/debian/patches/02-host-module.dpatch (rev 0)
+++ tags/1.5.0-dfsg-1/debian/patches/02-host-module.dpatch 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,18 @@
+#!/bin/sh /usr/share/dpatch/dpatch-run
+## 04-host-module.dpatch by Torsten Werner <twerner at debian.org>
+##
+## DP: No description.
+
+ at DPATCH@
+
+diff -Naurp virtualbox-ose-1.5.0-dfsg.orig/src/VBox/HostDrivers/Support/linux/Makefile virtualbox-ose-1.5.0-dfsg/src/VBox/HostDrivers/Support/linux/Makefile
+--- virtualbox-ose-1.5.0-dfsg.orig/src/VBox/HostDrivers/Support/linux/Makefile 2007-08-30 15:16:26.000000000 +0000
++++ virtualbox-ose-1.5.0-dfsg/src/VBox/HostDrivers/Support/linux/Makefile 2007-09-05 05:10:24.000000000 +0000
+@@ -59,6 +59,7 @@ endif
+ ifneq ($(MAKECMDGOALS),clean)
+
+ # kernel base directory
++KERN_DIR := $(KDIR)
+ ifndef KERN_DIR
+ KERN_DIR := /lib/modules/$(shell uname -r)/build
+ ifneq ($(shell if test -d $(KERN_DIR); then echo yes; fi),yes)
Added: tags/1.5.0-dfsg-1/debian/patches/03-config-kmk.dpatch
===================================================================
--- tags/1.5.0-dfsg-1/debian/patches/03-config-kmk.dpatch (rev 0)
+++ tags/1.5.0-dfsg-1/debian/patches/03-config-kmk.dpatch 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,28 @@
+#!/bin/sh /usr/share/dpatch/dpatch-run
+## 03-config-kmk.dpatch by Patrick Winnertz <patrick.winnertz at skolelinux.org>
+##
+## DP: Some patches for Config.kmk to build with the debian tools
+
+ at DPATCH@
+
+diff -Naur virtualbox-ose-1.5.0-dfsg.orig/Config.kmk virtualbox-ose-1.5.0-dfsg/Config.kmk
+--- virtualbox-ose-1.5.0-dfsg.orig/Config.kmk 2007-08-31 13:01:30.000000000 +0000
++++ virtualbox-ose-1.5.0-dfsg/Config.kmk 2007-09-05 05:10:53.000000000 +0000
+@@ -838,7 +838,7 @@
+ # We need to export YASM for OSE, but since it was converted to .zip we need to
+ # allow for the location used by the zip to be properly cleaned up first.
+ ifeq ($(filter-out win.x86 linux.x86 solaris.x86, $(BUILD_PLATFORM).$(BUILD_PLATFORM_ARCH)),)
+- PATH_TOOL_YASM ?= $(PATH_DEVTOOLS_BLD)/bin
++ PATH_TOOL_YASM ?= /usr/bin
+ endif
+
+ # XPCOM setup for all but win32.
+@@ -1199,7 +1199,7 @@
+ kernelsrc := $(shell $(SED_EXT) -ne 's+^KERNELSRC.*= *\(.*\)+\1+p' $(VBOX_LINUX_SRC)/Makefile)
+ ifneq ($(kernelsrc),)
+ kernelpath := $(realpath $(VBOX_LINUX_SRC)/$(kernelsrc))
+- VBOX_LINUX_INCS += $(VBOX_LINUX_SRC)/include2 $(kernelpath)/include
++ VBOX_LINUX_INCS += $(VBOX_LINUX_SRC)/include2 /usr/include
+ else
+ kernelpath := $(VBOX_LINUX_SRC)
+ endif
Added: tags/1.5.0-dfsg-1/debian/patches/04-remove_additions.dpatch
===================================================================
--- tags/1.5.0-dfsg-1/debian/patches/04-remove_additions.dpatch (rev 0)
+++ tags/1.5.0-dfsg-1/debian/patches/04-remove_additions.dpatch 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,34 @@
+#!/bin/sh /usr/share/dpatch/dpatch-run
+## 04-remove_additions.dpatch by Patrick Winnertz <patrick.winnertz at skolelinux.org>
+##
+## DP: Remove subdir "Additions" from makefile since we had to
+## DP: remove this, because of license problems
+
+ at DPATCH@
+
+diff -Naur virtualbox-ose-1.5.0-dfsg.orig/src/VBox/Makefile.kmk virtualbox-ose-1.5.0-dfsg/src/VBox/Makefile.kmk
+--- virtualbox-ose-1.5.0-dfsg.orig/src/VBox/Makefile.kmk 2007-08-30 15:16:27.000000000 +0000
++++ virtualbox-ose-1.5.0-dfsg/src/VBox/Makefile.kmk 2007-09-05 05:11:11.000000000 +0000
+@@ -36,16 +36,16 @@
+ SUBDIRS += RDP
+ endif
+
+-ifneq ($(VBOX_WITH_WIN32_ADDITIONS)$(VBOX_WITH_LINUX_ADDITIONS),)
+-SUBDIRS += Additions
+-endif
++#ifneq ($(VBOX_WITH_WIN32_ADDITIONS)$(VBOX_WITH_LINUX_ADDITIONS),)
++#SUBDIRS += Additions
++#endif
+
+ SUBDIRS += Frontends
+
+ # This must be the last one.
+-ifdef VBOX_WITH_INSTALLER
+-SUBDIRS += Installer
+-endif
++#ifdef VBOX_WITH_INSTALLER
++#SUBDIRS += Installer
++#endif
+
+ include $(PATH_KBUILD)/footer.kmk
+
Added: tags/1.5.0-dfsg-1/debian/patches/05-localconf-kmk.dpatch
===================================================================
--- tags/1.5.0-dfsg-1/debian/patches/05-localconf-kmk.dpatch (rev 0)
+++ tags/1.5.0-dfsg-1/debian/patches/05-localconf-kmk.dpatch 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,14 @@
+#!/bin/sh /usr/share/dpatch/dpatch-run
+## 05-localconf-kmk.dpatch by Patrick Winnertz <patrick.winnertz at skolelinux.org>
+##
+## DP: Use Debians kbuild instead ; doesn't build module
+
+ at DPATCH@
+
+diff -Naur virtualbox-ose-1.5.0-dfsg.orig/LocalConfig.kmk virtualbox-ose-1.5.0-dfsg/LocalConfig.kmk
+--- virtualbox-ose-1.5.0-dfsg.orig/LocalConfig.kmk 1970-01-01 00:00:00.000000000 +0000
++++ virtualbox-ose-1.5.0-dfsg/LocalConfig.kmk 2007-09-05 05:11:35.000000000 +0000
+@@ -0,0 +1,3 @@
++VBOX_WITH_VBOXDRV =
++VBOX_WITH_LINUX_ADDITIONS =
++VBOX_WITH_LINUX_ONLY =
Added: tags/1.5.0-dfsg-1/debian/pixmap/virtualbox.xpm
===================================================================
--- tags/1.5.0-dfsg-1/debian/pixmap/virtualbox.xpm (rev 0)
+++ tags/1.5.0-dfsg-1/debian/pixmap/virtualbox.xpm 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,851 @@
+/* XPM */
+static char * virtualbox_xpm[] = {
+"32 32 816 2",
+" c None",
+". c #A1C5D2",
+"+ c #A0C6D3",
+"@ c #A1C9D6",
+"# c #9DC6D5",
+"$ c #99C4D4",
+"% c #93C0D2",
+"& c #92C2D4",
+"* c #8DBED1",
+"= c #89BBD0",
+"- c #83B7CD",
+"; c #7DB4CA",
+"> c #77B0C8",
+", c #6AA6BF",
+"' c #63A2BD",
+") c #5C9DB9",
+"! c #599CB9",
+"~ c #4F97B5",
+"{ c #4792B0",
+"] c #3B8AA9",
+"^ c #3688A9",
+"/ c #2983A5",
+"( c #1D7DA0",
+"_ c #0F789D",
+": c #04759B",
+"< c #006D94",
+"[ c #006A92",
+"} c #006690",
+"| c #006490",
+"1 c #00608E",
+"2 c #005A89",
+"3 c #005687",
+"4 c #005485",
+"5 c #9FC5D2",
+"6 c #FEFEFE",
+"7 c #FDFEFE",
+"8 c #F6FEFE",
+"9 c #F0FEFE",
+"0 c #EBFEFE",
+"a c #EAFEFE",
+"b c #E6FEFE",
+"c c #DDFEFE",
+"d c #D5FEFE",
+"e c #D3FEFE",
+"f c #CEFEFE",
+"g c #C6FAFE",
+"h c #C1F6FE",
+"i c #BDF3FE",
+"j c #B6EFFE",
+"k c #AFE8FE",
+"l c #AAE5FE",
+"m c #A8E3FE",
+"n c #A4E1FE",
+"o c #9EDDFE",
+"p c #99D9FC",
+"q c #005284",
+"r c #9CC4D1",
+"s c #D9FEFE",
+"t c #B8E5F7",
+"u c #B7E6F8",
+"v c #B2E3F6",
+"w c #B2E4F9",
+"x c #AFE3F9",
+"y c #A5DCF2",
+"z c #9FD8F0",
+"A c #96D2EB",
+"B c #8FCEE9",
+"C c #86C6E2",
+"D c #79BCD9",
+"E c #70B6D4",
+"F c #69B2D0",
+"G c #62AECD",
+"H c #5BA9C9",
+"I c #54A5C5",
+"J c #479FC1",
+"K c #3C9ABD",
+"L c #3195B9",
+"M c #2890B5",
+"N c #218BB1",
+"O c #1983AC",
+"P c #1881AB",
+"Q c #177CAA",
+"R c #177AA9",
+"S c #1678A8",
+"T c #5097C1",
+"U c #95D6FB",
+"V c #005084",
+"W c #97C0CF",
+"X c #B5E2F4",
+"Y c #BAE9FB",
+"Z c #BBECFE",
+"` c #B8EAFE",
+" . c #B1E5FB",
+".. c #AEE5FB",
+"+. c #A4DDF5",
+"@. c #9DD9F2",
+"#. c #92D1EC",
+"$. c #88C9E5",
+"%. c #82C4E1",
+"&. c #7ABEDC",
+"*. c #6AB4D3",
+"=. c #63B0CF",
+"-. c #58AACA",
+";. c #50A5C6",
+">. c #48A1C3",
+",. c #409DC0",
+"'. c #3598BC",
+"). c #238FB5",
+"!. c #218EB5",
+"~. c #1F8AB3",
+"{. c #1981AD",
+"]. c #167BA9",
+"^. c #1276A4",
+"/. c #1274A4",
+"(. c #1676A7",
+"_. c #1472A4",
+":. c #92D5FB",
+"<. c #004D82",
+"[. c #8FBACA",
+"}. c #B2E1F3",
+"|. c #B6E7FA",
+"1. c #FFFFFF",
+"2. c #F8FEFE",
+"3. c #C9FDFE",
+"4. c #E5FEFE",
+"5. c #DFFEFE",
+"6. c #D2FEFE",
+"7. c #CCFEFE",
+"8. c #A6E2FE",
+"9. c #BFF7FE",
+"0. c #BBF4FF",
+"a. c #B5F0FE",
+"b. c #B1ECFE",
+"c. c #A9E6FE",
+"d. c #A2E1FE",
+"e. c #8DCDF2",
+"f. c #1573A5",
+"g. c #136EA2",
+"h. c #8DD2F8",
+"i. c #00497F",
+"j. c #8CB9CB",
+"k. c #AEDFF2",
+"l. c #B4E6FB",
+"m. c #FEFEFF",
+"n. c #FCFEFE",
+"o. c #EFFEFE",
+"p. c #96D5F2",
+"q. c #DCFEFE",
+"r. c #D0FEFE",
+"s. c #CBFEFE",
+"t. c #6CB2D5",
+"u. c #BCF5FE",
+"v. c #B7F2FE",
+"w. c #B2EDFE",
+"x. c #ADEAFE",
+"y. c #A5E4FE",
+"z. c #A0E0FE",
+"A. c #9BDDFE",
+"B. c #146FA3",
+"C. c #126BA0",
+"D. c #8BD1F7",
+"E. c #00467F",
+"F. c #89B9CB",
+"G. c #AEE0F5",
+"H. c #ADE1F7",
+"I. c #F7FEFE",
+"J. c #61B0D1",
+"K. c #C8FDFE",
+"L. c #DAFEFE",
+"M. c #CDFEFE",
+"N. c #C7FDFE",
+"O. c #B4EEFE",
+"P. c #4396BC",
+"Q. c #A9E5FE",
+"R. c #B4EFFE",
+"S. c #AEEBFE",
+"T. c #A7E6FE",
+"U. c #A3E3FE",
+"V. c #9CDEFE",
+"W. c #97DAFD",
+"X. c #136CA1",
+"Y. c #12699F",
+"Z. c #86CCF5",
+"`. c #00417C",
+" + c #86B7CA",
+".+ c #A8DCF2",
+"++ c #A6DDF3",
+"@+ c #FBFEFE",
+"#+ c #45A6C9",
+"$+ c #7EC7E8",
+"%+ c #C2FBFE",
+"&+ c #99D6F8",
+"*+ c #1F80AB",
+"=+ c #6BAFD6",
+"-+ c #AEECFE",
+";+ c #A8E7FE",
+">+ c #A4E4FE",
+",+ c #96D9FD",
+"'+ c #93D8FC",
+")+ c #10679D",
+"!+ c #0D619A",
+"~+ c #80C9F2",
+"{+ c #003C78",
+"]+ c #81B3C8",
+"^+ c #9FD6EC",
+"/+ c #9ED7EF",
+"(+ c #FEFFFF",
+"_+ c #FDFFFF",
+":+ c #F3FEFF",
+"<+ c #6EBFE0",
+"[+ c #54ABCF",
+"}+ c #4AA5C8",
+"|+ c #C5FDFE",
+"1+ c #BFF8FE",
+"2+ c #79BDE2",
+"3+ c #197EAC",
+"4+ c #4492BB",
+"5+ c #9FDEFE",
+"6+ c #A5E5FE",
+"7+ c #9EE0FE",
+"8+ c #98DBFD",
+"9+ c #8ED4FA",
+"0+ c #0E629B",
+"a+ c #095995",
+"b+ c #7AC5EF",
+"c+ c #003774",
+"d+ c #78ACC2",
+"e+ c #94CDE5",
+"f+ c #92CEE7",
+"g+ c #F9FEFE",
+"h+ c #F2FEFE",
+"i+ c #43A9CE",
+"j+ c #7CC7E9",
+"k+ c #2796BD",
+"l+ c #BAF4FE",
+"m+ c #AEE9FE",
+"n+ c #3991BD",
+"o+ c #56A0CC",
+"p+ c #277EAB",
+"q+ c #92D1F6",
+"r+ c #A1E3FE",
+"s+ c #9ADDFD",
+"t+ c #95DAFD",
+"u+ c #90D6FB",
+"v+ c #88CFF7",
+"w+ c #0C5C98",
+"x+ c #0A5995",
+"y+ c #76C2ED",
+"z+ c #003171",
+"A+ c #6CA3B9",
+"B+ c #8AC6DF",
+"C+ c #87C6E1",
+"D+ c #F5FEFE",
+"E+ c #ECFEFE",
+"F+ c #B3F0FE",
+"G+ c #31A2C8",
+"H+ c #9BDFFD",
+"I+ c #2795BC",
+"J+ c #7DC0E3",
+"K+ c #BBF6FE",
+"L+ c #88C9EE",
+"M+ c #2487B6",
+"N+ c #98D8FD",
+"O+ c #1272A3",
+"P+ c #599CC6",
+"Q+ c #97DCFD",
+"R+ c #91D7FB",
+"S+ c #89D0F8",
+"T+ c #82CBF4",
+"U+ c #0B5A96",
+"V+ c #0C5996",
+"W+ c #74C1ED",
+"X+ c #00296B",
+"Y+ c #649DB5",
+"Z+ c #82C1DC",
+"`+ c #82C3DF",
+" @ c #F4FEFE",
+".@ c #EDFFFF",
+"+@ c #E3FEFE",
+"@@ c #70C0E2",
+"#@ c #2C9BC2",
+"$@ c #C1FCFE",
+"%@ c #2690BA",
+"&@ c #5CA5CC",
+"*@ c #B8F3FE",
+"=@ c #4A97C1",
+"-@ c #2082B2",
+";@ c #9CDCFE",
+">@ c #2978A9",
+",@ c #2D79A9",
+"'@ c #8DD1F7",
+")@ c #91D7FC",
+"!@ c #7DC8F2",
+"~@ c #0B5895",
+"{@ c #0B5595",
+"]@ c #6DBDEA",
+"^@ c #002266",
+"/@ c #5E9AB3",
+"(@ c #78B9D5",
+"_@ c #E7FEFE",
+":@ c #EDFEFE",
+"<@ c #E0FEFE",
+"[@ c #D4FEFE",
+"}@ c #2B9AC1",
+"|@ c #2794BC",
+"1@ c #6EB5DD",
+"2@ c #1E83B1",
+"3@ c #A4E2FE",
+"4@ c #1D7FAF",
+"5@ c #569FCA",
+"6@ c #A0E2FE",
+"7@ c #4D92C1",
+"8@ c #0B6499",
+"9@ c #7DC1EA",
+"0@ c #8BD2FA",
+"a@ c #84CDF6",
+"b@ c #7CC7F1",
+"c@ c #78C4EF",
+"d@ c #095393",
+"e@ c #064B8F",
+"f@ c #65B8E5",
+"g@ c #001B61",
+"h@ c #5796B1",
+"i@ c #72B4D0",
+"j@ c #71B7D5",
+"k@ c #A1DDF8",
+"l@ c #A6E1FD",
+"m@ c #A6E2FD",
+"n@ c #BDF5FE",
+"o@ c #D8FEFE",
+"p@ c #D6FEFE",
+"q@ c #73BCE0",
+"r@ c #BDF8FE",
+"s@ c #97D6FB",
+"t@ c #1C7FAE",
+"u@ c #7FC1E6",
+"v@ c #1B7BAC",
+"w@ c #74BAE1",
+"x@ c #84C8EF",
+"y@ c #0B6298",
+"z@ c #5395C4",
+"A@ c #87D0F9",
+"B@ c #82CDF7",
+"C@ c #7BC7F2",
+"D@ c #76C4EF",
+"E@ c #05498D",
+"F@ c #61B5E3",
+"G@ c #001C64",
+"H@ c #5192AE",
+"I@ c #65A9C6",
+"J@ c #66AECC",
+"K@ c #5BAAC9",
+"L@ c #56A8C9",
+"M@ c #4AA2C4",
+"N@ c #85CBEA",
+"O@ c #CFFDFE",
+"P@ c #CEFDFE",
+"Q@ c #8CCFF1",
+"R@ c #9CDBFC",
+"S@ c #A4E3FE",
+"T@ c #187AAA",
+"U@ c #4390BB",
+"V@ c #1775A7",
+"W@ c #88CCF3",
+"X@ c #8BD0F7",
+"Y@ c #075B94",
+"Z@ c #2E73AB",
+"`@ c #7CC6F0",
+" # c #72C0EB",
+".# c #6EBEEB",
+"+# c #03448A",
+"@# c #5EB3E3",
+"## c #002771",
+"$# c #4A8DAA",
+"%# c #60A5C3",
+"&# c #59A5C3",
+"*# c #B7EDFE",
+"=# c #C0F4FE",
+"-# c #58ACCE",
+";# c #3197BC",
+"># c #CDFDFE",
+",# c #C0F8FE",
+"'# c #4F9DC3",
+")# c #308CB9",
+"!# c #B0ECFE",
+"~# c #B2F0FE",
+"{# c #579DC9",
+"]# c #4B93C2",
+"^# c #93D8FD",
+"/# c #478CBE",
+"(# c #085793",
+"_# c #61A9D7",
+":# c #69BCE9",
+"<# c #014088",
+"[# c #5CB2E3",
+"}# c #002370",
+"|# c #3C84A2",
+"1# c #58A0BE",
+"2# c #4D9CBB",
+"3# c #CAFCFE",
+"4# c #73BEE0",
+"5# c #1E8FB5",
+"6# c #B3EDFE",
+"7# c #ABE6FE",
+"8# c #157DA9",
+"9# c #63AAD3",
+"0# c #AFECFE",
+"a# c #AAE9FE",
+"b# c #A6E6FE",
+"c# c #7DC0E8",
+"d# c #116CA0",
+"e# c #68ADD8",
+"f# c #8DD3F9",
+"g# c #8AD1F9",
+"h# c #83CCF5",
+"i# c #63ABD9",
+"j# c #05528F",
+"k# c #044E8E",
+"l# c #6EBDEA",
+"m# c #67BAE7",
+"n# c #63B7E5",
+"o# c #013F87",
+"p# c #003683",
+"q# c #57AFE1",
+"r# c #001D6C",
+"s# c #35809E",
+"t# c #CDFCFE",
+"u# c #4F9BBA",
+"v# c #4296B6",
+"w# c #C7FAFE",
+"x# c #C5F9FE",
+"y# c #98D6F6",
+"z# c #1887AE",
+"A# c #84C6E8",
+"B# c #B7F0FE",
+"C# c #7DBDE1",
+"D# c #1176A4",
+"E# c #7EC0E6",
+"F# c #9FE1FD",
+"G# c #92D4FB",
+"H# c #1C6C9F",
+"I# c #78BDE6",
+"J# c #80CBF5",
+"K# c #71BDE9",
+"L# c #2B6FA8",
+"M# c #03488C",
+"N# c #519CCD",
+"O# c #60B2E1",
+"P# c #60B6E5",
+"Q# c #003380",
+"R# c #51ABDD",
+"S# c #001364",
+"T# c #2D7C9B",
+"U# c #C8F9FF",
+"V# c #4193B4",
+"W# c #3691B2",
+"X# c #C2F6FE",
+"Y# c #BFF4FE",
+"Z# c #B2EAFE",
+"`# c #1D8BB2",
+" $ c #519EC4",
+".$ c #197CAB",
+"+$ c #91D2F6",
+"@$ c #A2E2FE",
+"#$ c #9BDDFD",
+"$$ c #91D6FB",
+"%$ c #4288B8",
+"&$ c #7FCAF4",
+"*$ c #7CC8F3",
+"=$ c #73C1EC",
+"-$ c #448CC0",
+";$ c #04488C",
+">$ c #25629E",
+",$ c #2A67A5",
+"'$ c #2661A0",
+")$ c #00327F",
+"!$ c #002E7D",
+"~$ c #4EA9DB",
+"{$ c #000E62",
+"]$ c #287A9B",
+"^$ c #C3F4FE",
+"/$ c #298AAD",
+"($ c #2288AD",
+"_$ c #BEF3FE",
+":$ c #BBF1FE",
+"<$ c #B9F2FE",
+"[$ c #55A3CA",
+"}$ c #318AB4",
+"|$ c #A0DDFE",
+"1$ c #167AA8",
+"2$ c #428FBC",
+"3$ c #8FD4FA",
+"4$ c #63AAD7",
+"5$ c #81CAF3",
+"6$ c #79C5F0",
+"7$ c #6FBDE8",
+"8$ c #69B9E6",
+"9$ c #60AEDD",
+"0$ c #458BC0",
+"a$ c #003C84",
+"b$ c #003582",
+"c$ c #002D7C",
+"d$ c #002879",
+"e$ c #4CA7DA",
+"f$ c #00085F",
+"g$ c #1C7698",
+"h$ c #BEF1FE",
+"i$ c #1D83A8",
+"j$ c #1182A8",
+"k$ c #B4ECFE",
+"l$ c #B1EAFE",
+"m$ c #6BB2D7",
+"n$ c #157AA8",
+"o$ c #7ABBE1",
+"p$ c #1173A3",
+"q$ c #599FCA",
+"r$ c #99DBFD",
+"s$ c #8ED3F9",
+"t$ c #8AD0F6",
+"u$ c #87CEF6",
+"v$ c #7FC8F2",
+"w$ c #69B8E5",
+"x$ c #64B7E4",
+"y$ c #5CB2E1",
+"z$ c #55ACDE",
+"A$ c #4CA8DA",
+"B$ c #4098CD",
+"C$ c #002677",
+"D$ c #002075",
+"E$ c #49A5D8",
+"F$ c #00045C",
+"G$ c #117194",
+"H$ c #BAEEFE",
+"I$ c #1485AB",
+"J$ c #1080A6",
+"K$ c #B2EBFE",
+"L$ c #ADE6FE",
+"M$ c #86C7EA",
+"N$ c #1174A3",
+"O$ c #5DA2CA",
+"P$ c #1373A4",
+"Q$ c #7ABEE5",
+"R$ c #93D6FC",
+"S$ c #77C3EE",
+"T$ c #60B4E2",
+"U$ c #59B0E0",
+"V$ c #54ACDE",
+"W$ c #43A2D5",
+"X$ c #45A3D6",
+"Y$ c #002176",
+"Z$ c #001C73",
+"`$ c #44A2D6",
+" % c #00005A",
+".% c #00698E",
+"+% c #B1E6FE",
+"@% c #1181A7",
+"#% c #0D7CA2",
+"$% c #ABE4FE",
+"%% c #A7E2FE",
+"&% c #A6E1FE",
+"*% c #93D1F5",
+"=% c #096B9B",
+"-% c #277BA9",
+";% c #3380AF",
+">% c #94D7FC",
+",% c #90D5FB",
+"'% c #8CD2F8",
+")% c #5EB2E0",
+"!% c #5BB1E0",
+"~% c #4AA5D8",
+"{% c #3B9CD1",
+"]% c #001D74",
+"^% c #001871",
+"/% c #3E9FD4",
+"(% c #00658B",
+"_% c #ADE3FE",
+":% c #1180A6",
+"<% c #0D7BA2",
+"[% c #A4DFFE",
+"}% c #A1DFFE",
+"|% c #3681AF",
+"1% c #0B699B",
+"2% c #4C92C0",
+"3% c #83CAF2",
+"4% c #7FC8F1",
+"5% c #7BC6F0",
+"6% c #74C0EB",
+"7% c #6CBAE5",
+"8% c #67B7E4",
+"9% c #62B5E2",
+"0% c #5BAFDD",
+"a% c #57ADDC",
+"b% c #51A9DB",
+"c% c #4CA7D9",
+"d% c #43A0D3",
+"e% c #3E9ED1",
+"f% c #379ACF",
+"g% c #3396CD",
+"h% c #001770",
+"i% c #001170",
+"j% c #399CD2",
+"k% c #000057",
+"l% c #006188",
+"m% c #A7E0FD",
+"n% c #0F7CA4",
+"o% c #0E78A2",
+"p% c #A2DDFD",
+"q% c #9EDBFD",
+"r% c #9BDAFD",
+"s% c #98D8FB",
+"t% c #6CB1DA",
+"u% c #076296",
+"v% c #69AED8",
+"w% c #89CFF5",
+"x% c #84CBF3",
+"y% c #7BC4ED",
+"z% c #76C1EB",
+"A% c #73BFEA",
+"B% c #68B7E4",
+"C% c #61B4E1",
+"D% c #58AEDD",
+"E% c #54AADC",
+"F% c #409FD2",
+"G% c #3C9BD0",
+"H% c #3697CD",
+"I% c #2F94CA",
+"J% c #2C91C9",
+"K% c #000B6D",
+"L% c #389BD1",
+"M% c #000056",
+"N% c #006088",
+"O% c #A4DDFD",
+"P% c #0E79A3",
+"Q% c #0E76A2",
+"R% c #9CD9FB",
+"S% c #97D6F9",
+"T% c #95D5F8",
+"U% c #92D4F8",
+"V% c #80C4EB",
+"W% c #3279A9",
+"X% c #7DC3EA",
+"Y% c #7FC6EE",
+"Z% c #7AC3EC",
+"`% c #72BEE9",
+" & c #70BEE9",
+".& c #6BBAE7",
+"+& c #53A9DB",
+"@& c #4AA5D7",
+"#& c #429FD2",
+"$& c #3B9BCF",
+"%& c #3496CD",
+"&& c #2F92C9",
+"*& c #288DC6",
+"=& c #258BC5",
+"-& c #000A6C",
+";& c #000269",
+">& c #3599D0",
+",& c #000055",
+"'& c #005B85",
+")& c #9FDAFB",
+"!& c #0C719F",
+"~& c #0C6F9E",
+"{& c #96D5F8",
+"]& c #94D4F7",
+"^& c #90D2F6",
+"/& c #8CCFF5",
+"(& c #88CDF3",
+"_& c #4D93C0",
+":& c #7EC5ED",
+"<& c #77C2EC",
+"[& c #68B8E5",
+"}& c #56ACDB",
+"|& c #50A7D9",
+"1& c #46A2D4",
+"2& c #409ED1",
+"3& c #3799CD",
+"4& c #3295CB",
+"5& c #2D91C9",
+"6& c #288CC5",
+"7& c #2185C1",
+"8& c #2084C0",
+"9& c #000066",
+"0& c #3398CF",
+"a& c #000051",
+"b& c #005884",
+"c& c #9CD7F9",
+"d& c #0B6F9D",
+"e& c #0B6D9D",
+"f& c #82C1E7",
+"g& c #8FD1F5",
+"h& c #8BCEF4",
+"i& c #84CAF0",
+"j& c #62A7D2",
+"k& c #78C1EA",
+"l& c #79C4EE",
+"m& c #6EBCE7",
+"n& c #66B7E4",
+"o& c #60B3E1",
+"p& c #5BAFDE",
+"q& c #54AADA",
+"r& c #4EA6D8",
+"s& c #45A1D3",
+"t& c #419FD1",
+"u& c #3494CB",
+"v& c #2D90C8",
+"w& c #268BC4",
+"x& c #1F84BF",
+"y& c #1D80BD",
+"z& c #1979B7",
+"A& c #000065",
+"B& c #3197CE",
+"C& c #000050",
+"D& c #005482",
+"E& c #0A6C9C",
+"F& c #0B6B9C",
+"G& c #096498",
+"H& c #096297",
+"I& c #085F95",
+"J& c #055992",
+"K& c #03528E",
+"L& c #03508C",
+"M& c #034F8C",
+"N& c #024C8C",
+"O& c #014589",
+"P& c #004185",
+"Q& c #003F85",
+"R& c #003880",
+"S& c #002E7B",
+"T& c #002C79",
+"U& c #002978",
+"V& c #002273",
+"W& c #001C71",
+"X& c #001A71",
+"Y& c #00156E",
+"Z& c #000E6D",
+"`& c #00086A",
+" * c #00036A",
+".* c #000063",
+"+* c #2E95CD",
+"@* c #00004D",
+"#* c #005180",
+"$* c #95D4F7",
+"%* c #478EB8",
+"&* c #0A689A",
+"** c #086196",
+"=* c #065D93",
+"-* c #045891",
+";* c #04538F",
+">* c #02508C",
+",* c #014488",
+"'* c #004286",
+")* c #003E84",
+"!* c #003A82",
+"~* c #00317E",
+"{* c #002877",
+"]* c #002475",
+"^* c #001D72",
+"/* c #001970",
+"(* c #000F6E",
+"_* c #000167",
+":* c #000064",
+"<* c #002B80",
+"[* c #2992CB",
+"}* c #004E7F",
+"|* c #91D1F4",
+"1* c #8DCEF3",
+"2* c #87CCF2",
+"3* c #83C9EF",
+"4* c #80C6EF",
+"5* c #7DC6EF",
+"6* c #75C1EC",
+"7* c #73BFEB",
+"8* c #6FBDEA",
+"9* c #69BAE7",
+"0* c #64B6E4",
+"a* c #5FB3E2",
+"b* c #5BB0E0",
+"c* c #56ADDE",
+"d* c #53ABDC",
+"e* c #50A9DB",
+"f* c #4FA8DA",
+"g* c #4DA7D9",
+"h* c #4BA5D8",
+"i* c #4AA4D7",
+"j* c #49A3D6",
+"k* c #47A2D5",
+"l* c #45A0D4",
+"m* c #439ED3",
+"n* c #409CD1",
+"o* c #3C9ACF",
+"p* c #2490C9",
+"q* c #00004B",
+"r* c #004C7D",
+"s* c #004A7C",
+"t* c #004C80",
+"u* c #004E83",
+"v* c #004B81",
+"w* c #004881",
+"x* c #004681",
+"y* c #004480",
+"z* c #00427F",
+"A* c #003D7D",
+"B* c #00397B",
+"C* c #003478",
+"D* c #002E74",
+"E* c #002A72",
+"F* c #002670",
+"G* c #00206D",
+"H* c #001968",
+"I* c #000E63",
+"J* c #000059",
+"K* c #000058",
+"L* c #000053",
+"M* c #000054",
+"N* c #00004F",
+"O* c #00004C",
+". + @ # $ % & * = - ; > , ' ) ! ~ { ] ^ / ( _ : < [ } | 1 2 3 4 ",
+"5 6 6 6 6 6 6 6 6 6 6 7 8 9 0 a b c d e f g h i j k l m n o p q ",
+"r 6 s t u v w x y z A B C D E F G H I J K L M N O P Q R S T U V ",
+"W 6 X Y Z ` ...+. at .#.$.%.&.*.=.-.;.>.,.'.).!.~.{.].^./.(._.:.<.",
+"[.6 }.|.1.6 6 6 6 6 6 7 2.9 3.4.5.6.f 7.8.9.0.a.b.c.d.e.f.g.h.i.",
+"j.6 k.l.6 m.6 6 6 m.6 n.2.o.p.4.q.r.s.3.t.u.v.w.x.y.z.A.B.C.D.E.",
+"F.6 G.H.6 m.6 6 6 6 6 n.I.d J.K.L.M.N.O.P.Q.R.S.T.U.V.W.X.Y.Z.`.",
+" +6 .+++6 6 6 6 6 1.7 @+8 y.#+$+d K.%+&+*+=+-+;+>+V.,+'+)+!+~+{+",
+"]+6 ^+/+6 6 6 1.(+(+_+8 :+<+[+}+f |+1+2+3+4+5+6+7+8+'+9+0+a+b+c+",
+"d+7 e+f+6 6 6 1.(+(+g+h+5.i+j+k+l+%+m+n+o+p+q+r+s+t+u+v+w+x+y+z+",
+"A+2.B+C+n.n.7 7 6 @+D+E+F+G+H+I+J+K+L+M+N+O+P+s+Q+R+S+T+U+V+W+X+",
+"Y+9 Z+`+I.8 8 I. @h+. at +@@@#@$@%@&@*@=@-@;@>@,@'@)@S+~+!@~@{@]@^@",
+"/@0 (@D _ at o.:@0 a b <@[@}@|@%+1 at 2@3 at 4@5 at 6@7 at 8@9 at 0@a at b@c at d@e at f@g@",
+"h at b i at j@k at l@m at n@q.o at p@1+I+q at r@s at t@u at v@w at s+x@y at z@A at B@C at D@e at E@F at G@",
+"H@<@I at J@K at L@M at N@d O at P@Q@%@R@*@S at T@U at V@W at t+X@Y at Z@`@C@ #.#E at +#@###",
+"$#L.%#&#*#=#-#;#>#3.,#'#)#!#~#T.{#_.]#^#9+0@/#(#_# #.#:#+#<#[#}#",
+"|#6.1#2#>#3#4#5#6#,#7#8#9#0#a#b#c#d#e#f#g#h#i#j#k#l#m#n#o#p#q#r#",
+"s#t#u#v#w#x#y#z#A#B#C#D#E#T.>+F#G#H#I#S+a at J#K#L#M#N#O#P#p#Q#R#S#",
+"T#U#V#W#X#Y#Z#`# $w.3+.$+$@$#$8+$$%$S+h#&$*$=$-$;$>$,$'$)$!$~${$",
+"]$^$/$($_$:$<$[$}$|$1$2$@$#$,+3$D.4$5$!@6$7$8$9$0$a$b$)$c$d$e$f$",
+"g$h$i$j$*#k$l$m$n$o$p$q$r$:.s$t$u$v$b at c@7$w$x$F at y$z$A$B$C$D$E$F$",
+"G$H$I$J$K$L$l M$N$O$P$Q$R$s$D.v+h#b at S$7$w$x$T$U$V$A$W$X$Y$Z$`$ %",
+".%+%@%#%$%%%&%*%=%-%;%>%,%'%v+T+!@y+7$8$x$)%!%V$~%W${%{%]%^%/% %",
+"(%_%:%<%&%[%}%o |%1%2%s$t$3%4%5%6%7%8%9%0%a%b%c%d%e%f%g%h%i%j%k%",
+"l%m%n%o%p%q%r%s%t%u%v%w%x%y%z%A%7$B%C%)%D%E%~%F%G%H%I%J%i%K%L%M%",
+"N%O%P%Q%R%S%T%U%V%W%X%Y%Z%z%`% &.&9%0%a%+&@&#&$&%&&&*&=&-&;&>&,&",
+"'&)&!&~&{&]&^&/&(&_&:&Z%<&`%7$[&9%0%}&|&1&2&3&4&5&6&7&8&;&9&0&a&",
+"b&c&d&e&f&g&h&(&i&j&k&l&A%m&n&o&p&q&r&s&t&$&u&v&w&x&y&z&9&A&B&C&",
+"D&&+E&F&1%G&H&I&J&K&L&M&N&O&P&Q&R&S&T&U&V&W&X&Y&Z&`& *A&A&.*+*@*",
+"#*$*%*&*G&**=*-*;*>*M&N&,*'*)*!*~*S&{*]*^*/*Y&(*`&_*9&9&:*<*[*@*",
+"}*|*1*h&2*3*4*5*b+6*7*8*9*0*a*b*c*d*e*f*g*h*i*j*k*l*m*n*o*H%p*q*",
+"r*s*t*u*v*w*x*y*z*A*B*C*D*E*F*G*H*S#I*f$J*M%K*M%L*M*M*L*N*N*O*q*"};
Added: tags/1.5.0-dfsg-1/debian/postinst.modules.in
===================================================================
--- tags/1.5.0-dfsg-1/debian/postinst.modules.in (rev 0)
+++ tags/1.5.0-dfsg-1/debian/postinst.modules.in 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,20 @@
+#!/bin/sh -e
+
+#DEBHELPER#
+
+case "$1" in
+ configure)
+ invoke-rc.d udev reload
+ modprobe vboxdrv || true
+ ;;
+
+ abort-upgrade|abort-deconfigure|abort-remove)
+ ;;
+
+ *)
+ echo "$0 called with unknown argument \`$1'" 1>&2
+ exit 1
+ ;;
+esac
+
+exit 0
Added: tags/1.5.0-dfsg-1/debian/rules
===================================================================
--- tags/1.5.0-dfsg-1/debian/rules (rev 0)
+++ tags/1.5.0-dfsg-1/debian/rules 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,184 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+include /usr/share/dpatch/dpatch.make
+
+# some default definitions, important!
+#
+# Name of the source package
+psource:=virtualbox-ose-source
+
+# The short upstream name, used for the module source directory
+sname:=virtualbox-ose
+
+### KERNEL SETUP
+### Setup the stuff needed for making kernel module packages
+### taken from /usr/share/kernel-package/sample.module.rules
+
+# prefix of the target package name
+PACKAGE=virtualbox-ose-modules
+# modifieable for experiments or debugging m-a
+MA_DIR ?= /usr/share/modass
+# load generic variable handling
+-include $(MA_DIR)/include/generic.make
+# load default rules, including kdist, kdist_image, ...
+-include $(MA_DIR)/include/common-rules.make
+
+# module assistant calculates all needed things for us and sets
+# following variables:
+# KSRC (kernel source directory), KVERS (kernel version string), KDREV
+# (revision of the Debian kernel-image package), CC (the correct
+# compiler), VERSION (the final package version string), PKGNAME (full
+# package name with KVERS included), DEB_DESTDIR (path to store DEBs)
+
+# The kdist_configure target is called by make-kpkg modules_config and
+# by kdist* rules by dependency. It should configure the module so it is
+# ready for compilation (mostly useful for calling configure).
+# prep-deb-files from module-assistant creates the neccessary debian/ files
+kdist_configure: prep-deb-files
+
+# the kdist_clean target is called by make-kpkg modules_clean and from
+# kdist* rules. It is responsible for cleaning up any changes that have
+# been made by the other kdist_commands (except for the .deb files created)
+kdist_clean: clean
+ $(MAKE) $(MFLAGS) -f debian/rules clean
+#
+### end KERNEL SETUP
+
+MAKE:=kmk
+
+config.status: patch configure
+ dh_testdir
+ ./configure --with-linux="/usr"
+
+build: build-stamp
+build-stamp: config.status
+ dh_testdir
+
+ # Building package
+ $(MAKE) BUILD_TYPE=release
+
+ touch build-stamp
+
+clean: unpatch
+ dh_testdir
+ dh_testroot
+ rm -f build-stamp
+
+ # Cleaning package
+ rm -rf out
+ rm -f AutoConfig.kmk configure.log env.sh
+
+ dh_clean
+
+#Rebuild the orig.tar.gz
+dfsg-free:
+ rm -rf ./kBuild
+ rm -rf ./tools
+ rm -rf ./src/VBox/Additions
+ rm -f ./src/VBox/HostDrivers/VBoxTAP/VBoxTAP.rc
+ rm -f ./src/VBox/HostDrivers/Support/darwin/load.sh
+ rm -rf ./src/VBox/Installer/
+ rm -f ./src/libs/xpcom18a4/xpcom/MoreFiles/FSCopyObject.c
+ rm -f ./src/libs/xpcom18a4/xpcom/MoreFiles/FSCopyObject.h
+ rm -rf ./debian/
+ find . -type d -name '.svn' | xargs rm -rf
+ cd .. && mv VirtualBox-1.5.0_OSE virtualbox-ose-1.5.0-dfsg && \
+ tar cfz virtualbox-ose_1.5.0-dfsg.orig.tar.gz virtualbox-ose-1.5.0-dfsg
+
+install: DH_OPTIONS=
+install: build
+ dh_testdir
+ dh_testroot
+ dh_clean -k
+ dh_installdirs
+
+ #FIXME: If I have enough time, remove this crap and replace with dh_*
+ install -p -m 0644 $(CURDIR)/debian/$(sname).lintian-overrides \
+ $(CURDIR)/debian/$(sname)/usr/share/lintian/overrides/$(sname)
+
+ # Installing virtualbox
+ cp -r out/linux.*/release/bin debian/$(sname)/usr/lib/virtualbox
+ install -D -m 0755 debian/VBox.sh debian/$(sname)/usr/lib/virtualbox
+
+ ln -s ../lib/virtualbox/VBox.sh debian/$(sname)/usr/bin/vboxmanage
+ ln -s ../lib/virtualbox/VBox.sh debian/$(sname)/usr/bin/vboxsdl
+ ln -s ../lib/virtualbox/VBox.sh debian/$(sname)/usr/bin/virtualbox
+
+ install -D -m 0644 debian/desktop/virtualbox.desktop debian/$(sname)/usr/share/applications/virtualbox.desktop
+ install -D -m 0644 src/VBox/Frontends/VirtualBox/images/ico32x01.png debian/$(sname)/usr/share/icons/virtualbox.png
+ install -D -m 0644 debian/pixmap/virtualbox.xpm debian/$(sname)/usr/share/pixmaps/virtualbox.xpm
+
+ echo "# VirtualBox installation directory" > $(CURDIR)/debian/$(sname)/etc/vbox/vbox.cfg
+ echo "INSTALL_DIR="\"/usr/lib/virtualbox\" >> $(CURDIR)/debian/$(sname)/etc/vbox/vbox.cfg
+
+ # Installing virtualbox-ose-source
+ mkdir -p debian/$(psource)/usr/src/modules
+ mv debian/$(sname)/usr/lib/virtualbox/src debian/$(psource)/usr/src/modules/virtualbox-ose
+
+ mkdir -p debian/$(psource)/usr/src/modules/virtualbox-ose/debian
+ cp debian/*modules.in* debian/control debian/rules debian/changelog debian/copyright debian/compat debian/$(psource)/usr/src/modules/virtualbox-ose/debian
+
+ cd debian/$(psource)/usr/src && tar c modules | bzip2 -9 > virtualbox-ose.tar.bz2 && rm -rf modules
+
+ dh_install
+
+binary-modules: prep-deb-files
+ dh_testroot
+ dh_clean -k
+
+ # Build the module
+ $(MAKE) all KSRC=$(KSRC) KVER=$(KVERS)
+
+ # Install the module
+ dh_install vboxdrv.ko /lib/modules/$(KVERS)/misc/
+
+ dh_installdocs
+ dh_installchangelogs
+ dh_compress
+ dh_fixperms
+ dh_installmodules
+ dh_installdeb
+ dh_gencontrol -- -v$(VERSION)
+ dh_md5sums
+ dh_builddeb --destdir=$(DEB_DESTDIR)
+ dh_clean -k
+
+binary-arch: build install
+ dh_testdir
+ dh_testroot
+ dh_installchangelogs
+ dh_installdocs
+ dh_install
+ dh_link
+ dh_strip
+ dh_compress
+ dh_fixperms -X=/usr/lib/virtualbox/VBox.sh
+ dh_installudev
+ dh_installdeb
+ dh_shlibdeps
+ dh_gencontrol
+ dh_md5sums
+ dh_builddeb
+
+#binary-indep: build install
+# dh_testdir#
+# dh_testroot
+# dh_installchangelogs
+# dh_installdocs
+# dh_install
+# dh_installmenu
+# dh_installman
+# dh_link
+# dh_strip
+# dh_compress
+# dh_fixperms
+# dh_shlibdeps
+# dh_gencontrol
+# dh_md5sums
+# dh_builddeb
+
+binary: binary-arch
+.PHONY: build clean binary-arch binary install binary-modules kdist kdist_configure kdist_image kdist_clean
Added: tags/1.5.0-dfsg-1/debian/virtualbox-ose-source.README.Debian
===================================================================
--- tags/1.5.0-dfsg-1/debian/virtualbox-ose-source.README.Debian (rev 0)
+++ tags/1.5.0-dfsg-1/debian/virtualbox-ose-source.README.Debian 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,17 @@
+virtualbox for Debian
+---------------------
+
+The Debian virtualbox-source package can be used in several ways,
+
+ - Using module-assistant(1) commands provided by the module-assistant Debian
+ package:
+
+ # module-assistant prepare virtualbox
+ # module-assistant auto-install virtualbox
+
+ - Using the make-kpkg(1) command provided by the kernel-package Debian
+ package. See the "modules_image" section of the make-kpkg(1) man page.
+
+ - Unpacking /usr/src/virtualbox-*.tar.bz2 and installing the module on your own.
+
+ -- Daniel Baumann <daniel at debian.org> Fri, 17 Nov 2006 08:29:00 +0100
Added: tags/1.5.0-dfsg-1/debian/virtualbox-ose.dirs
===================================================================
--- tags/1.5.0-dfsg-1/debian/virtualbox-ose.dirs (rev 0)
+++ tags/1.5.0-dfsg-1/debian/virtualbox-ose.dirs 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,5 @@
+usr/bin
+usr/sbin
+usr/lib
+etc/vbox
+usr/share/lintian/overrides
Added: tags/1.5.0-dfsg-1/debian/virtualbox-ose.lintian-overrides
===================================================================
--- tags/1.5.0-dfsg-1/debian/virtualbox-ose.lintian-overrides (rev 0)
+++ tags/1.5.0-dfsg-1/debian/virtualbox-ose.lintian-overrides 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,23 @@
+virtualbox-ose: shlib-with-non-pic-code usr/lib/virtualbox/VBoxC.so
+virtualbox-ose: shlib-with-non-pic-code usr/lib/virtualbox/VBoxREM.so
+virtualbox-ose: shlib-with-non-pic-code usr/lib/virtualbox/VBoxVMM.so
+virtualbox-ose: shlib-with-non-pic-code usr/lib/virtualbox/VBoxXML.so
+virtualbox-ose: shlib-with-non-pic-code usr/lib/virtualbox/VBoxSVCM.so
+virtualbox-ose: shlib-with-non-pic-code usr/lib/virtualbox/VBoxDDU.so
+virtualbox-ose: shlib-with-non-pic-code usr/lib/virtualbox/VBoxDD2.so
+virtualbox-ose: shlib-with-non-pic-code usr/lib/virtualbox/VBoxDD.so
+virtualbox-ose: shlib-with-non-pic-code usr/lib/virtualbox/VBoxRT.so
+virtualbox-ose: unstripped-binary-or-object ./usr/lib/virtualbox/VBoxDD2GC.gc
+virtualbox-ose: unstripped-binary-or-object ./usr/lib/virtualbox/VBoxDD2R0.r0
+virtualbox-ose: unstripped-binary-or-object ./usr/lib/virtualbox/VBoxDDGC.gc
+virtualbox-ose: unstripped-binary-or-object ./usr/lib/virtualbox/VBoxDDR0.r0
+virtualbox-ose: unstripped-binary-or-object ./usr/lib/virtualbox/VMMGC.gc
+virtualbox-ose: unstripped-binary-or-object ./usr/lib/virtualbox/VMMR0.r0
+virtualbox-ose: unstripped-binary-or-object ./usr/lib/virtualbox/testcase/tstLdrObj.gc
+virtualbox-ose: unstripped-binary-or-object ./usr/lib/virtualbox/testcase/tstLdrObjR0.r0
+virtualbox-ose: unstripped-binary-or-object ./usr/lib/virtualbox/tstMicroGC.gc
+virtualbox-ose: shlib-with-non-pic-code usr/lib/virtualbox/VBoxSharedClipboard.so
+virtualbox-ose: shlib-with-non-pic-code usr/lib/virtualbox/VBoxSharedFolders.so
+virtualbox-ose: shlib-with-non-pic-code usr/lib/virtualbox/VBoxSharedOpenGL.so
+virtualbox-ose: image-file-in-usr-lib usr/lib/virtualbox/VBox.png
+virtualbox-ose: shlib-with-non-pic-code usr/lib/virtualbox/VBoxKeyboard.so
Added: tags/1.5.0-dfsg-1/debian/virtualbox-ose.menu
===================================================================
--- tags/1.5.0-dfsg-1/debian/virtualbox-ose.menu (rev 0)
+++ tags/1.5.0-dfsg-1/debian/virtualbox-ose.menu 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,4 @@
+?package(virtualbox):needs="X11" section="Apps/Programming"\
+ title="VirtualBox" longtitle="PC virtualization solution"\
+ description="Run several virtual systems on a single host computer"\
+ command="/usr/bin/virtualbox" icon="/usr/share/pixmaps/virtualbox.xpm"
Added: tags/1.5.0-dfsg-1/debian/virtualbox-ose.postinst
===================================================================
--- tags/1.5.0-dfsg-1/debian/virtualbox-ose.postinst (rev 0)
+++ tags/1.5.0-dfsg-1/debian/virtualbox-ose.postinst 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1,22 @@
+#!/bin/sh -e
+
+action="$1"
+oldversion="$2"
+
+if [ "$action" != configure ]
+ then
+ exit 0
+fi
+
+
+setup_vboxusers_group() {
+ if ! getent group vboxusers >/dev/null; then
+ addgroup --quiet --system vboxusers
+ fi
+}
+
+setup_vboxusers_group
+
+#DEBHELPER#
+
+exit 0
Added: tags/1.5.0-dfsg-1/debian/virtualbox-ose.udev
===================================================================
--- tags/1.5.0-dfsg-1/debian/virtualbox-ose.udev (rev 0)
+++ tags/1.5.0-dfsg-1/debian/virtualbox-ose.udev 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1 @@
+KERNEL=="vboxdrv", NAME="vboxdrv", OWNER="root", GROUP="vboxusers", MODE="0660"
Added: tags/1.5.0-dfsg-1/debian/virtualbox-source.links
===================================================================
--- tags/1.5.0-dfsg-1/debian/virtualbox-source.links (rev 0)
+++ tags/1.5.0-dfsg-1/debian/virtualbox-source.links 2007-10-11 08:20:33 UTC (rev 75)
@@ -0,0 +1 @@
+/usr/share/modass/packages/default.sh /usr/share/modass/overrides/virtualbox-source
More information about the Pkg-virtualbox-commits
mailing list