[notify] virtualbox: updated to 4.2.22

- New dependencies: cdrkit, glu
- Added pre-install script
- Changes in README and post-install script

For a complete list of changes:
https://www.virtualbox.org/wiki/Changelog-4.2
This commit is contained in:
Jose V Beneyto 2014-01-23 22:43:31 +01:00
parent 72f9254ffa
commit fa2f6dbc67
5 changed files with 12 additions and 9 deletions

View File

@ -1,4 +1,4 @@
2a2724088f65d0a373a689209bb4d938 60-vboxdrv.rules
99cdf054b5e36aa83b60bd49fb50f943 VirtualBox-4.2.18.tar.bz2
919bd83956fb9604ab5abf7de6e904ab VirtualBox-4.2.22.tar.bz2
7d871e19b96ece653ddce4cc83adbe66 virtualbox
362e923d42651f370561b0f9095ea7a5 virtualbox.desktop

View File

@ -2,10 +2,10 @@
# URL: http://www.virtualbox.org/
# Maintainer: Jose V Beneyto, sepen at crux dot nu
# Packager: Jose V Beneyto, sepen at crux dot nu
# Depends on: bin86 dev86 libsdl libidl qt4 xerces-c iasl xorg-libxmu libcap makeself
# Depends on: bin86 dev86 libsdl libidl qt4 xerces-c iasl xorg-libxmu libcap makeself cdrkit glu
name=virtualbox
version=4.2.18
version=4.2.22
release=1
source=(http://download.virtualbox.org/$name/${version%-*}/VirtualBox-${version}.tar.bz2 \
$name 60-vboxdrv.rules $name.desktop)

View File

@ -9,15 +9,15 @@ REQUIREMENTS
PRE-INSTALL
POST-INSTALL
-- IMPORTANT --
Run the post-install script in order to add a vboxusers group to your system.
After that, add your user to the vboxusers group:
# usermod -a -G vboxusers <your_user>
---------------
POST-INSTALL
During installation 'vboxdrv.ko' has been installed to your modules directory
and you can load it using modprobe vboxdrv (needed before run VirtualBox).
Also make sure you give yourself read and write access to /dev/vboxdrv.

View File

@ -1,8 +1,5 @@
#!/bin/sh
# check for vboxusers group or add one if not exists
/usr/bin/getent group vboxusers || /usr/sbin/groupadd vboxusers
# regenerate module dependencies
/sbin/depmod

6
virtualbox/pre-install Executable file
View File

@ -0,0 +1,6 @@
#!/bin/sh
# check for vboxusers group or add one if not exists
/usr/bin/getent group vboxusers || /usr/sbin/groupadd vboxusers
# End of File