diff options
author | Markus Ullmann <jokey@gentoo.org> | 2007-05-13 08:56:00 +0000 |
---|---|---|
committer | Markus Ullmann <jokey@gentoo.org> | 2007-05-13 08:56:00 +0000 |
commit | f07d430788a0909a9b83b58b1b4e3621ef9d1564 (patch) | |
tree | 89e376a2bb5ea7e6e0265d0bea6a0dc8649dfd1d /app-emulation/virtualbox/files | |
parent | Stable on x86 (diff) | |
download | gentoo-2-f07d430788a0909a9b83b58b1b4e3621ef9d1564.tar.gz gentoo-2-f07d430788a0909a9b83b58b1b4e3621ef9d1564.tar.bz2 gentoo-2-f07d430788a0909a9b83b58b1b4e3621ef9d1564.zip |
Fix for sdl useflag bug #177335
(Portage version: 2.1.2.7)
Diffstat (limited to 'app-emulation/virtualbox/files')
3 files changed, 0 insertions, 82 deletions
diff --git a/app-emulation/virtualbox/files/digest-virtualbox-1.3.6-r1 b/app-emulation/virtualbox/files/digest-virtualbox-1.3.6-r1 deleted file mode 100644 index ec272bc5bd57..000000000000 --- a/app-emulation/virtualbox/files/digest-virtualbox-1.3.6-r1 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 70c24ccee8b5778efd8d22f9996fbec9 VirtualBox-OSE-1.3.6.tar.bz2 17458095 -RMD160 f082f6397ceec0d0d543b155821592e6032affc3 VirtualBox-OSE-1.3.6.tar.bz2 17458095 -SHA256 e249c6f4792291e56e026cf9d807d355809283538cfa296b4e72f9ec1c71cdae VirtualBox-OSE-1.3.6.tar.bz2 17458095 diff --git a/app-emulation/virtualbox/files/virtualbox-1.3.6-remove-alsa.patch b/app-emulation/virtualbox/files/virtualbox-1.3.6-remove-alsa.patch deleted file mode 100644 index 6327af12343d..000000000000 --- a/app-emulation/virtualbox/files/virtualbox-1.3.6-remove-alsa.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- Config.kmk.orig 2007-02-26 23:37:44.000000000 +0100 -+++ Config.kmk 2007-02-26 23:38:56.000000000 +0100 -@@ -160,8 +160,6 @@ - VBOX_WITH_USB = 1 - # Enable the ISCSI feature. - VBOX_WITH_ISCSI = 1 --# Disable ALSA support for Linux (currently broken). --VBOX_WITH_ALSA = 1 - # Enable the kchmviewer - VBOX_WITH_KCHMVIEWER = 1 - # Build the testsuite. ---- configure.orig 2007-02-26 23:37:49.000000000 +0100 -+++ configure 2007-02-26 23:38:40.000000000 +0100 -@@ -1196,7 +1196,7 @@ - (($OSE==0)) && check_pam - [ "$OS" != "darwin" ] && check_sdl - (($OSE==0)) && check_sdl_ttf --[ "$OS" != "darwin" ] && check_alsa -+[ "$OS" != "darwin" ] - [ "$OS" != "darwin" ] && check_x - [ "$OS" != "darwin" ] && check_xcursor - (($XPCOM==1)) && check_qt diff --git a/app-emulation/virtualbox/files/virtualbox-1.3.6-wrapper b/app-emulation/virtualbox/files/virtualbox-1.3.6-wrapper deleted file mode 100644 index a1cea843f9fb..000000000000 --- a/app-emulation/virtualbox/files/virtualbox-1.3.6-wrapper +++ /dev/null @@ -1,57 +0,0 @@ -#!/bin/sh - -INSTALL_DIR=/opt/VirtualBox -USER=$( whoami ) - -SERVER_PID=$( ps -U $USER | grep VBoxSVC | awk '{ print $1 }' ) - -if [ "$1" = shutdown ]; then - if [ "$SERVER_PID" != "" ]; then - kill -TERM $SERVER_PID - sleep 2 - fi - exit 0 -fi - -[ "$VBOX_USER_HOME" = "" ] && VBOX_USER_HOME="$HOME/.VirtualBox" - -mkdir -p "$VBOX_USER_HOME" -LOG="$VBOX_USER_HOME/VBoxSVC.log" - -if [[ -e /proc/modules && ! -e /dev/vboxdrv ]] ; then - echo "Error: vboxdrv kernel module is not loaded..." - echo "Please load the module before starting VirtualBox." - exit 1 -elif [ ! -w /dev/vboxdrv ]; then - if [ "`id | grep vboxusers`" = "" ]; then - echo "Error: You are not a member of the \"vboxusers\" group..." - echo "Please add yourself to this group before starting VirtualBox." - else - echo "Error: /dev/vboxdrv is not writable for some reason..." - echo "If you recently added the current user to the vboxusers group," - echo "then you have to logout and re-login to take the change effect." - fi - exit 1 -fi - -export LD_LIBRARY_PATH="$INSTALL_DIR" - -if [ "$SERVER_PID" = "" ]; then - rm -rf /tmp/.vbox-$USER-ipc - [ -f "$LOG.1" ] && mv "$LOG.1" "$LOG.2" - [ -f "$LOG.0" ] && mv "$LOG.0" "$LOG.1" - [ -f "$LOG" ] && mv "$LOG" "$LOG.0" - /opt/VirtualBox/VBoxSVC --daemonize >"$LOG" 2>&1 -fi - -APP=$( which $0 ) -APP=${APP##/*/} -case "$APP" in - VirtualBox|VBoxManage|VBoxSDL) - exec "$INSTALL_DIR/$APP" "$@" - ;; - *) - echo "Error: Unknown application - $APP" - exit 1 - ;; -esac |