summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2011-08-09 10:45:15 +0000
committerLars Wendler <polynomial-c@gentoo.org>2011-08-09 10:45:15 +0000
commitf265cab53cad909d77083fc019b490aa8edb0ccb (patch)
tree493d3e33ebe8507985269adebc1fce32d6f5bbc6 /app-emulation/virtualbox
parentRemoved old versions (diff)
downloadgentoo-2-f265cab53cad909d77083fc019b490aa8edb0ccb.tar.gz
gentoo-2-f265cab53cad909d77083fc019b490aa8edb0ccb.tar.bz2
gentoo-2-f265cab53cad909d77083fc019b490aa8edb0ccb.zip
Removed old versions
(Portage version: 2.2.0_alpha50/cvs/Linux x86_64)
Diffstat (limited to 'app-emulation/virtualbox')
-rw-r--r--app-emulation/virtualbox/ChangeLog9
-rw-r--r--app-emulation/virtualbox/files/virtualbox-4-vnc.patch101
-rw-r--r--app-emulation/virtualbox/files/virtualbox-4.0.4-gcc46.patch14
-rw-r--r--app-emulation/virtualbox/files/virtualbox-ose-3-localconfig45
-rw-r--r--app-emulation/virtualbox/files/virtualbox-ose-asneeded.patch16
-rw-r--r--app-emulation/virtualbox/files/virtualbox-ose-vnc.patch101
-rw-r--r--app-emulation/virtualbox/virtualbox-3.2.12-r4.ebuild302
-rw-r--r--app-emulation/virtualbox/virtualbox-4.0.10.ebuild367
8 files changed, 8 insertions, 947 deletions
diff --git a/app-emulation/virtualbox/ChangeLog b/app-emulation/virtualbox/ChangeLog
index 254110520909..d9851a42b0f7 100644
--- a/app-emulation/virtualbox/ChangeLog
+++ b/app-emulation/virtualbox/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-emulation/virtualbox
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/ChangeLog,v 1.80 2011/07/25 08:34:19 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/ChangeLog,v 1.81 2011/08/09 10:45:15 polynomial-c Exp $
+
+ 09 Aug 2011; Lars Wendler <polynomial-c@gentoo.org>
+ -virtualbox-3.2.12-r4.ebuild, -files/virtualbox-ose-3-localconfig,
+ -files/virtualbox-4.0.4-gcc46.patch, -virtualbox-4.0.10.ebuild,
+ -files/virtualbox-4-vnc.patch, -files/virtualbox-ose-asneeded.patch,
+ -files/virtualbox-ose-vnc.patch:
+ Removed old versions.
25 Jul 2011; Lars Wendler <polynomial-c@gentoo.org> virtualbox-4.0.10.ebuild,
virtualbox-4.0.12.ebuild, virtualbox-4.1.0.ebuild:
diff --git a/app-emulation/virtualbox/files/virtualbox-4-vnc.patch b/app-emulation/virtualbox/files/virtualbox-4-vnc.patch
deleted file mode 100644
index 76e2c68524b7..000000000000
--- a/app-emulation/virtualbox/files/virtualbox-4-vnc.patch
+++ /dev/null
@@ -1,101 +0,0 @@
---- configure.old 2011-02-18 20:22:18.879463002 +0100
-+++ configure 2011-02-18 20:30:22.355463011 +0100
-@@ -88,6 +88,7 @@
- WITH_OPENGL=1
- WITH_HARDENING=1
- WITH_VDE=0
-+WITH_VNC=0
- WITH_DOCS=1
- BUILD_LIBXML2=
- BUILD_LIBXSLT=
-@@ -123,6 +124,8 @@
- MESA="-lGL"
- INCZ=""
- LIBZ="-lz"
-+INCVNCSERVER=""
-+LIBVNCSERVER="-lvncserver"
- CXX_FLAGS=""
- if [ "$OS" = "freebsd" ]; then
- INCCURL="-I/usr/local/include"
-@@ -956,6 +959,47 @@
- }
-
- #
-+# Check for libvncserver, needed for VNC in OSE
-+#
-+check_vncserver()
-+{
-+ test_header libvncserver
-+ cat > $ODIR.tmp_src.cc <<EOF
-+#include <cstdio>
-+#include <rfb/rfbconfig.h>
-+
-+extern "C" int main()
-+{
-+ const char* v=LIBVNCSERVER_VERSION;
-+ unsigned int major = 0, minor = 0, micro = 0;
-+
-+ for (; *v !='.' && *v != '\0'; v++) major = major*10 + *v-'0';
-+ if (*v == '.') v++;
-+ for (; *v !='.' && *v != '\0'; v++) minor = minor*10 + *v-'0';
-+ if (*v == '.') v++;
-+ for (; *v !='.' && *v != '\0'; v++) micro = micro*10 + *v-'0';
-+
-+ printf("found version %s", LIBVNCSERVER_PACKAGE_VERSION);
-+ if (major*10000 + minor*100 + micro >= 907)
-+ {
-+ printf(", OK.\n");
-+ return 0;
-+ }
-+ else
-+ {
-+ printf(", expected version 0.9.7 or higher\n");
-+ return 1;
-+ }
-+}
-+EOF
-+ if test_compile "$LIBVNCSERVER $INCVNCSERVER" libvncserver libvncserver; then
-+ if test_execute; then
-+ cnf_append "VBOX_WITH_VNC" "1"
-+ fi
-+ fi
-+}
-+
-+#
- # Check for libcurl, needed by S3
- #
- check_curl()
-@@ -2115,6 +2159,7 @@
- [ $WITH_KMODS -eq 1 ] && echo " --disable-kmods don't build Linux kernel modules (host and guest)"
- [ $WITH_OPENGL -eq 1 ] && echo " --disable-opengl disable OpenGL support (2D & 3D)"
- [ $WITH_GSOAP -eq 0 ] && echo " --enable-webservice enable the webservice stuff"
-+[ $OSE -eq 1 ] && echo " --enable-vnc enable the VNC server"
- [ $WITH_DOCS -eq 1 ] && echo " --disable-docs don't build the documentation"
- [ "$OS" = "linux" -o "$OS" = "freebsd" ] && echo " --enable-vde enable VDE networking"
- cat << EOF
-@@ -2280,6 +2325,9 @@
- --enable-webservice)
- [ $WITH_GSOAP -eq 0 ] && WITH_GSOAP=1
- ;;
-+ --enable-vnc)
-+ WITH_VNC=1
-+ ;;
- --disable-hardening)
- WITH_HARDENING=0
- ;;
-@@ -2553,6 +2601,15 @@
- cnf_append "VBOX_WITH_DOCS_PACKING" ""
- fi
-
-+# VNC server support
-+if [ $OSE -ge 1 ]; then
-+ if [ $WITH_VNC = 1 ]; then
-+ check_vncserver
-+ else
-+ cnf_append "VBOX_WITH_VNC" ""
-+ fi
-+fi
-+
- # success!
- echo
- echo "Successfully generated '$CNF' and '$ENV'."
diff --git a/app-emulation/virtualbox/files/virtualbox-4.0.4-gcc46.patch b/app-emulation/virtualbox/files/virtualbox-4.0.4-gcc46.patch
deleted file mode 100644
index a9f8077e69e5..000000000000
--- a/app-emulation/virtualbox/files/virtualbox-4.0.4-gcc46.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- VirtualBox-4.0.4_OSE.orig/configure 2011-02-18 00:30:48.000000000 +0800
-+++ VirtualBox-4.0.4_OSE.orig/configure 2011-04-10 13:37:42.513743178 +0800
-@@ -409,9 +409,9 @@ check_gcc()
- elif [ $cc_maj -lt 3 \
- -o \( $cc_maj -eq 3 -a $cc_min -lt 2 \) \
- -o \( $cc_maj -eq 4 -a $cc_min -lt 1 -a "$OS" != "darwin" \) \
-- -o \( $cc_maj -eq 4 -a $cc_min -gt 5 \) \
-+ -o \( $cc_maj -eq 4 -a $cc_min -gt 6 \) \
- -o $cc_maj -gt 4 ]; then
-- log_failure "gcc version $cc_ver found, expected gcc 3.x with x>1 or gcc 4.x with 0<x<5"
-+ log_failure "gcc version $cc_ver found, expected gcc 3.x with x>1 or gcc 4.x with 0<x<=6"
- fail really
- else
- log_success "found version $cc_ver"
diff --git a/app-emulation/virtualbox/files/virtualbox-ose-3-localconfig b/app-emulation/virtualbox/files/virtualbox-ose-3-localconfig
deleted file mode 100644
index 5138d9252698..000000000000
--- a/app-emulation/virtualbox/files/virtualbox-ose-3-localconfig
+++ /dev/null
@@ -1,45 +0,0 @@
-# -*- Makefile -*-
-#
-# Overwrite some default kBuild settings
-#
-
-#
-# Copyright (C) 2006-2008 Sun Microsystems, Inc.
-#
-# 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.
-#
-
-# shut up wine complaining about unknown locale
-EXEC_X86_WIN32 := wine
-
-# don't build testcases to save time, they are not needed for the package
-VBOX_WITH_TESTCASES :=
-VBOX_WITH_TESTSUITE :=
-VBOX_DOCBOOK_WITH_LATEX := 1
-
-KBUILD_MSG_STYLE := brief
-
-## paths, origin, hardening
-VBOX_WITH_HARDENING := 1
-VBOX_WITH_ORIGIN :=
-VBOX_PATH_APP_PRIVATE_ARCH := /usr/MY_LIBDIR/virtualbox
-VBOX_PATH_SHARED_LIBS := $(VBOX_PATH_APP_PRIVATE_ARCH)
-VBOX_WITH_RUNPATH := $(VBOX_PATH_APP_PRIVATE_ARCH)
-VBOX_PATH_APP_PRIVATE := /usr/share/virtualbox
-VBOX_PATH_APP_DOCS = $(VBOX_PATH_PACKAGE_DOCS)
-
-## don't build unwanted/splitted stuff
-VBOX_WITHOUT_ADDITIONS := 1
-VBOX_WITH_VBOXDRV :=
-VBOX_WITH_VBOXBFE :=
-VBOX_WITH_KCHMVIEWER :=
-
-## don't build with -Werror
-VBOX_WITH_WARNINGS_AS_ERRORS :=
-
diff --git a/app-emulation/virtualbox/files/virtualbox-ose-asneeded.patch b/app-emulation/virtualbox/files/virtualbox-ose-asneeded.patch
deleted file mode 100644
index 2eee12598042..000000000000
--- a/app-emulation/virtualbox/files/virtualbox-ose-asneeded.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- src/libs/xpcom18a4/Makefile.kmk
-+++ src/libs/xpcom18a4/Makefile.kmk
-@@ -469,9 +469,10 @@
- libIDL_config_cflags := $(shell $(VBOX_LIBIDL_CONFIG) --cflags)
- libIDL_config_libs := $(shell $(VBOX_LIBIDL_CONFIG) --libs)
- xpidl_CFLAGS = \
-- $(libIDL_config_cflags)
-- xpidl_LDFLAGS = \
-- $(libIDL_config_libs)
-+ $(shell pkg-config --cflags libIDL-2.0)
-+ xpidl_LDFLAGS = $(shell pkg-config --libs-only-L libIDL-2.0)
-+ xpidl_LIBS.linux = $(shell pkg-config --libs-only-l libIDL-2.0 | sed -e 's/-l//g')
-+
- endif
-
- #
diff --git a/app-emulation/virtualbox/files/virtualbox-ose-vnc.patch b/app-emulation/virtualbox/files/virtualbox-ose-vnc.patch
deleted file mode 100644
index b8a2088e27f9..000000000000
--- a/app-emulation/virtualbox/files/virtualbox-ose-vnc.patch
+++ /dev/null
@@ -1,101 +0,0 @@
---- configure.orig 2010-11-20 20:35:43.399739771 +0100
-+++ configure 2010-11-20 22:04:15.523490599 +0100
-@@ -87,6 +87,7 @@
- WITH_OPENGL=1
- WITH_HARDENING=1
- WITH_VDE=0
-+WITH_VNC=0
- BUILD_LIBXML2=
- BUILD_LIBXSLT=
- BUILD_LIBCURL=
-@@ -122,6 +123,8 @@
- LIBZ="-lz"
- INCPNG=""
- LIBPNG="-lpng"
-+INCVNCSERVER=""
-+LIBVNCSERVER="-lvncserver"
- CXX_FLAGS=""
- if [ "$OS" = "freebsd" ]; then
- INCCURL="-I/usr/local/include"
-@@ -949,6 +952,47 @@
- }
-
- #
-+# Check for libvncserver, needed for VNC in OSE
-+#
-+check_vncserver()
-+{
-+ test_header libvncserver
-+ cat > $ODIR.tmp_src.cc <<EOF
-+#include <cstdio>
-+#include <rfb/rfbconfig.h>
-+
-+extern "C" int main()
-+{
-+ const char* v=LIBVNCSERVER_VERSION;
-+ unsigned int major = 0, minor = 0, micro = 0;
-+
-+ for (; *v !='.' && *v != '\0'; v++) major = major*10 + *v-'0';
-+ if (*v == '.') v++;
-+ for (; *v !='.' && *v != '\0'; v++) minor = minor*10 + *v-'0';
-+ if (*v == '.') v++;
-+ for (; *v !='.' && *v != '\0'; v++) micro = micro*10 + *v-'0';
-+
-+ printf("found version %s", LIBVNCSERVER_PACKAGE_VERSION);
-+ if (major*10000 + minor*100 + micro >= 907)
-+ {
-+ printf(", OK.\n");
-+ return 0;
-+ }
-+ else
-+ {
-+ printf(", expected version 0.9.7 or higher\n");
-+ return 1;
-+ }
-+}
-+EOF
-+ if test_compile "$LIBVNCSERVER $INCVNCSERVER" libvncserver libvncserver; then
-+ if test_execute; then
-+ cnf_append "VBOX_WITH_VNC" "1"
-+ fi
-+ fi
-+}
-+
-+#
- # Check for libcurl, needed by S3
- #
- check_curl()
-@@ -2063,6 +2107,7 @@
- [ $WITH_KMODS -eq 1 ] && echo " --disable-kmods don't build Linux kernel modules (host and guest)"
- [ $WITH_OPENGL -eq 1 ] && echo " --disable-opengl disable OpenGL support (2D & 3D)"
- [ $WITH_GSOAP -eq 0 ] && echo " --enable-webservice enable the webservice stuff"
-+[ $OSE -eq 1 ] && echo " --enable-vnc enable the VNC server"
- [ "$OS" = "linux" -o "$OS" = "freebsd" ] && echo " --enable-vde enable VDE networking"
- cat << EOF
- --disable-hardening don't be strict about /dev/vboxdrv access
-@@ -2224,6 +2269,9 @@
- --enable-webservice)
- [ $WITH_GSOAP -eq 0 ] && WITH_GSOAP=1
- ;;
-+ --enable-vnc)
-+ WITH_VNC=1
-+ ;;
- --disable-hardening)
- WITH_HARDENING=0
- ;;
-@@ -2484,6 +2532,15 @@
- fi
- fi
-
-+# VNC server support
-+if [ $OSE -ge 1 ]; then
-+ if [ $WITH_VNC = 1 ]; then
-+ check_vncserver
-+ else
-+ cnf_append "VBOX_WITH_VNC" ""
-+ fi
-+fi
-+
- # success!
- echo
- echo "Successfully generated '$CNF' and '$ENV'."
diff --git a/app-emulation/virtualbox/virtualbox-3.2.12-r4.ebuild b/app-emulation/virtualbox/virtualbox-3.2.12-r4.ebuild
deleted file mode 100644
index 92dc4582d369..000000000000
--- a/app-emulation/virtualbox/virtualbox-3.2.12-r4.ebuild
+++ /dev/null
@@ -1,302 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/virtualbox-3.2.12-r4.ebuild,v 1.5 2011/02/03 07:50:14 tomka Exp $
-
-EAPI=2
-
-inherit eutils fdo-mime flag-o-matic linux-info pax-utils qt4-r2 toolchain-funcs
-
-if [[ ${PV} == "9999" ]] ; then
- # XXX: should finish merging the -9999 ebuild into this one ...
- ESVN_REPO_URI="http://www.virtualbox.org/svn/vbox/trunk"
- inherit linux-mod subversion
-else
- MY_P=VirtualBox-${PV}-OSE
- SRC_URI="http://download.virtualbox.org/virtualbox/${PV}/${MY_P}.tar.bz2"
- S=${WORKDIR}/${MY_P/-OSE/_OSE}
-fi
-
-DESCRIPTION="Software family of powerful x86 virtualization"
-HOMEPAGE="http://www.virtualbox.org/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+additions alsa headless pulseaudio +opengl python +qt4 sdk vboxwebsrv vnc"
-
-RDEPEND="!app-emulation/virtualbox-bin
- ~app-emulation/virtualbox-modules-${PV}
- dev-libs/libIDL
- >=dev-libs/libxslt-1.1.19
- net-misc/curl
- !headless? (
- qt4? (
- x11-libs/qt-gui:4
- x11-libs/qt-core:4
- opengl? ( x11-libs/qt-opengl:4 )
- )
- opengl? ( virtual/opengl media-libs/freeglut )
- x11-libs/libXcursor
- media-libs/libsdl[X,video]
- x11-libs/libXt
- )
- headless? ( x11-libs/libX11 )
- vnc? ( >=net-libs/libvncserver-0.9.7 )"
-DEPEND="${RDEPEND}
- >=dev-util/kbuild-0.1.5-r1
- >=dev-lang/yasm-0.6.2
- sys-devel/bin86
- sys-devel/dev86
- sys-power/iasl
- media-libs/libpng
- sys-libs/libcap
- dev-util/pkgconfig
- alsa? ( >=media-libs/alsa-lib-1.0.13 )
- !headless? ( x11-libs/libXinerama )
- pulseaudio? ( media-sound/pulseaudio )
- python? ( >=dev-lang/python-2.3[threads] )
- vboxwebsrv? ( >=net-libs/gsoap-2.7.13 )"
-PDEPEND="additions? ( ~app-emulation/virtualbox-additions-${PV} )"
-
-QA_TEXTRELS_x86="usr/lib/virtualbox-ose/VBoxGuestPropSvc.so
- usr/lib/virtualbox-ose/VBoxSDL.so
- usr/lib/virtualbox-ose/VBoxSharedFolders.so
- usr/lib/virtualbox-ose/VBoxDD2.so
- usr/lib/virtualbox-ose/VBoxOGLrenderspu.so
- usr/lib/virtualbox-ose/VBoxPython.so
- usr/lib/virtualbox-ose/VBoxDD.so
- usr/lib/virtualbox-ose/VBoxDDU.so
- usr/lib/virtualbox-ose/VBoxREM64.so
- usr/lib/virtualbox-ose/VBoxSharedClipboard.so
- usr/lib/virtualbox-ose/VBoxHeadless.so
- usr/lib/virtualbox-ose/VBoxRT.so
- usr/lib/virtualbox-ose/VBoxREM.so
- usr/lib/virtualbox-ose/VBoxSettings.so
- usr/lib/virtualbox-ose/VBoxKeyboard.so
- usr/lib/virtualbox-ose/VBoxSharedCrOpenGL.so
- usr/lib/virtualbox-ose/VBoxVMM.so
- usr/lib/virtualbox-ose/VirtualBox.so
- usr/lib/virtualbox-ose/VBoxOGLhosterrorspu.so
- usr/lib/virtualbox-ose/components/VBoxC.so
- usr/lib/virtualbox-ose/components/VBoxSVCM.so
- usr/lib/virtualbox-ose/components/VBoxDDU.so
- usr/lib/virtualbox-ose/components/VBoxRT.so
- usr/lib/virtualbox-ose/components/VBoxREM.so
- usr/lib/virtualbox-ose/components/VBoxVMM.so
- usr/lib/virtualbox-ose/VBoxREM32.so
- usr/lib/virtualbox-ose/VBoxPython2_4.so
- usr/lib/virtualbox-ose/VBoxPython2_5.so
- usr/lib/virtualbox-ose/VBoxPython2_6.so
- usr/lib/virtualbox-ose/VBoxPython2_7.so
- usr/lib/virtualbox-ose/VBoxXPCOMC.so
- usr/lib/virtualbox-ose/VBoxOGLhostcrutil.so
- usr/lib/virtualbox-ose/VBoxNetDHCP.so"
-
-pkg_setup() {
- if ! use headless && ! use qt4 ; then
- einfo "No USE=\"qt4\" selected, this build will not include"
- einfo "any Qt frontend."
- elif use headless && use qt4 ; then
- einfo "You selected USE=\"headless qt4\", defaulting to"
- einfo "USE=\"headless\", this build will not include any X11/Qt frontend."
- fi
-
- if ! use opengl ; then
- einfo "No USE=\"opengl\" selected, this build will lack"
- einfo "the OpenGL feature."
- fi
-}
-
-src_prepare() {
- # Remove shipped binaries (kBuild,yasm), see bug #232775
- rm -rf kBuild/bin tools
-
- # Disable things unused or split into separate ebuilds
- sed -e "s/MY_LIBDIR/$(get_libdir)/" \
- "${FILESDIR}"/${PN}-ose-3-localconfig > LocalConfig.kmk || die
-
- # unset useless/problematic mesa checks in configure
- epatch "${FILESDIR}/${PN}-ose-3.2.8-mesa-check.patch"
-
- # fix build with --as-needed (bug #249295)
- epatch "${FILESDIR}/${PN}-ose-asneeded.patch"
-
- # add the --enable-vnc option to configure script (bug #348204)
- epatch "${FILESDIR}/${PN}-ose-vnc.patch"
-}
-
-src_configure() {
- local myconf
- use alsa || myconf+=" --disable-alsa"
- use opengl || myconf+=" --disable-opengl"
- use pulseaudio || myconf+=" --disable-pulse"
- use python || myconf+=" --disable-python"
- use vboxwebsrv && myconf+=" --enable-webservice"
- use vnc && myconf+=" --enable-vnc"
- if ! use headless ; then
- use qt4 || myconf+=" --disable-qt4"
- else
- myconf+=" --build-headless --disable-opengl"
- fi
-
- # bug #339914
- #gcc-spec-pie && append-flags "-nopie"
-
- # not an autoconf script
- ./configure \
- --with-gcc="$(tc-getCC)" \
- --with-g++="$(tc-getCXX)" \
- --disable-kmods \
- --disable-dbus \
- ${myconf} \
- || die "configure failed"
-}
-
-src_compile() {
- source ./env.sh
-
- # Force kBuild to respect C[XX]FLAGS and MAKEOPTS (bug #178529)
- # and strip all flags
- strip-flags
-
- MAKE="kmk" emake \
- TOOL_GCC3_CC="$(tc-getCC)" TOOL_GCC3_CXX="$(tc-getCXX)" \
- TOOL_GCC3_AS="$(tc-getCC)" TOOL_GCC3_AR="$(tc-getAR)" \
- TOOL_GCC3_LD="$(tc-getCXX)" TOOL_GCC3_LD_SYSMOD="$(tc-getLD)" \
- TOOL_GCC3_CFLAGS="${CFLAGS}" TOOL_GCC3_CXXFLAGS="${CXXFLAGS}" \
- TOOL_YASM_AS=yasm KBUILD_PATH="${S}/kBuild" \
- all || die "kmk failed"
-}
-
-src_install() {
- cd "${S}"/out/linux.${ARCH}/release/bin || die
-
- # Create configuration files
- insinto /etc/vbox
- newins "${FILESDIR}/${PN}-ose-3-config" vbox.cfg
-
- # Set the right libdir
- sed -i \
- -e "s/MY_LIBDIR/$(get_libdir)/" \
- "${D}"/etc/vbox/vbox.cfg || die "vbox.cfg sed failed"
-
- # Symlink binaries to the shipped wrapper
- exeinto /usr/$(get_libdir)/${PN}
- newexe "${FILESDIR}/${PN}-ose-3-wrapper" "VBox" || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/VBox
- fperms 0750 /usr/$(get_libdir)/${PN}/VBox
-
- dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VBoxManage
- dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VBoxVRDP
- dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VBoxHeadless
- dosym /usr/$(get_libdir)/${PN}/VBoxTunctl /usr/bin/VBoxTunctl
-
- # Install binaries and libraries
- insinto /usr/$(get_libdir)/${PN}
- doins -r components || die
-
- if use sdk ; then
- doins -r sdk || die
- fi
-
- if use vboxwebsrv ; then
- doins vboxwebsrv || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/vboxwebsrv
- fperms 0750 /usr/$(get_libdir)/${PN}/vboxwebsrv
- dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/vboxwebsrv
- newinitd "${FILESDIR}"/vboxwebsrv-initd vboxwebsrv
- newconfd "${FILESDIR}"/vboxwebsrv-confd vboxwebsrv
- fi
-
- for each in VBox{Manage,SVC,XPCOMIPCD,Tunctl,NetAdpCtl,NetDHCP} *so *r0 *gc ; do
- doins $each || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/${each}
- fperms 0750 /usr/$(get_libdir)/${PN}/${each}
- done
- # VBoxNetAdpCtl and VBoxNetDHCP binaries need to be suid root in any case..
- fperms 4750 /usr/$(get_libdir)/${PN}/VBoxNetAdpCtl
- fperms 4750 /usr/$(get_libdir)/${PN}/VBoxNetDHCP
- # bug #335500
- for each in VBox{Manage,SVC,XPCOMIPCD,Tunctl,NetAdpCtl,NetDHCP} ; do
- pax-mark -m "${D}"/usr/$(get_libdir)/${PN}/${each}
- done
-
- if ! use headless ; then
- for each in VBox{SDL,Headless} ; do
- doins $each || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/${each}
- fperms 4750 /usr/$(get_libdir)/${PN}/${each}
- pax-mark -m "${D}"/usr/$(get_libdir)/${PN}/${each}
- done
-
- if use opengl && use qt4 ; then
- doins VBoxTestOGL || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/VBoxTestOGL
- fperms 0750 /usr/$(get_libdir)/${PN}/VBoxTestOGL
- pax-mark -m "${D}"/usr/$(get_libdir)/${PN}/VBoxTestOGL
- fi
-
- dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VBoxSDL
-
- if use qt4 ; then
- doins VirtualBox || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/VirtualBox
- fperms 4750 /usr/$(get_libdir)/${PN}/VirtualBox
- pax-mark -m "${D}"/usr/$(get_libdir)/${PN}/VirtualBox
-
- dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VirtualBox
- fi
-
- newicon "${S}"/src/VBox/Frontends/VirtualBox/images/OSE/VirtualBox_32px.png ${PN}.png
- newmenu "${FILESDIR}"/${PN}-ose.desktop-2 ${PN}.desktop
- else
- doins VBoxHeadless || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/VBoxHeadless
- fperms 4750 /usr/$(get_libdir)/${PN}/VBoxHeadless
- pax-mark -m "${D}"/usr/$(get_libdir)/${PN}/VBoxHeadless
- fi
-
- # Install EFI Firmware files (bug #320757)
- pushd "${S}"/src/VBox/Devices/EFI/FirmwareBin &>/dev/null || die
- for fwfile in VBoxEFI{32,64}.fd ; do
- doins ${fwfile} || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/${fwfile} || die
- done
- popd &>/dev/null || die
-
- insinto /usr/share/${PN}
- if ! use headless && use qt4 ; then
- doins -r nls
- fi
-
- # set an env-variable for 3rd party tools
- echo -n "VBOX_APP_HOME=/usr/$(get_libdir)/${PN}" > "${T}/90virtualbox"
- doenvd "${T}/90virtualbox"
-}
-
-pkg_postinst() {
- fdo-mime_desktop_database_update
- if ! use headless && use qt4 ; then
- elog "To launch VirtualBox just type: \"VirtualBox\""
- fi
- elog "You must be in the vboxusers group to use VirtualBox."
- elog ""
- elog "The latest user manual is available for download at:"
- elog "http://download.virtualbox.org/virtualbox/${PV}/UserManual.pdf"
- elog ""
- elog "For advanced networking setups you should emerge:"
- elog "net-misc/bridge-utils and sys-apps/usermode-utilities"
- elog ""
- elog "IMPORTANT!"
- elog "If you upgrade from app-emulation/virtualbox-ose make sure to run"
- elog "\"env-update\" as root and logout and relogin as the user you wish"
- elog "to run ${PN} as."
- elog ""
- elog "Please visit http://www.virtualbox.org/wiki/Editions for"
- elog "an overview about the different features of ${PN}"
- elog "and virtualbox-bin"
-}
-
-pkg_postrm() {
- fdo-mime_desktop_database_update
-}
diff --git a/app-emulation/virtualbox/virtualbox-4.0.10.ebuild b/app-emulation/virtualbox/virtualbox-4.0.10.ebuild
deleted file mode 100644
index 1a15af17ca66..000000000000
--- a/app-emulation/virtualbox/virtualbox-4.0.10.ebuild
+++ /dev/null
@@ -1,367 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-emulation/virtualbox/virtualbox-4.0.10.ebuild,v 1.3 2011/07/25 08:25:48 polynomial-c Exp $
-
-EAPI=4
-
-inherit eutils fdo-mime flag-o-matic linux-info pax-utils qt4-r2 toolchain-funcs java-pkg-opt-2
-
-if [[ ${PV} == "9999" ]] ; then
- # XXX: should finish merging the -9999 ebuild into this one ...
- ESVN_REPO_URI="http://www.virtualbox.org/svn/vbox/trunk"
- inherit linux-mod subversion
-else
- MY_P=VirtualBox-${PV}
- SRC_URI="http://download.virtualbox.org/virtualbox/${PV}/${MY_P}.tar.bz2"
- S="${WORKDIR}/${MY_P}_OSE"
-fi
-
-DESCRIPTION="Software family of powerful x86 virtualization"
-HOMEPAGE="http://www.virtualbox.org/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="+additions alsa doc extensions headless java pulseaudio +opengl python +qt4 +sdk vboxwebsrv vnc"
-
-RDEPEND="!app-emulation/virtualbox-bin
- ~app-emulation/virtualbox-modules-${PV}
- dev-libs/libIDL
- >=dev-libs/libxslt-1.1.19
- net-misc/curl
- dev-libs/openssl
- dev-libs/libxml2
- sys-libs/zlib
- !headless? (
- qt4? (
- x11-libs/qt-gui:4
- x11-libs/qt-core:4
- opengl? ( x11-libs/qt-opengl:4 )
- x11-libs/libXinerama
- )
- opengl? ( virtual/opengl media-libs/freeglut )
- x11-libs/libX11
- x11-libs/libXcursor
- x11-libs/libXext
- x11-libs/libXmu
- x11-libs/libXt
- media-libs/libsdl[X,video]
- )
- vnc? ( >=net-libs/libvncserver-0.9.7 )
- java? ( >=virtual/jre-1.5 )"
-DEPEND="${RDEPEND}
- >=dev-util/kbuild-0.1.5-r1
- >=dev-lang/yasm-0.6.2
- sys-devel/bin86
- sys-devel/dev86
- sys-power/iasl
- media-libs/libpng
- sys-libs/pam
- sys-libs/libcap
- doc? (
- dev-texlive/texlive-basic
- dev-texlive/texlive-latex
- dev-texlive/texlive-latexrecommended
- dev-texlive/texlive-latexextra
- dev-texlive/texlive-fontsrecommended
- dev-texlive/texlive-fontsextra
- )
- java? ( >=virtual/jdk-1.5 )
- dev-util/pkgconfig
- alsa? ( >=media-libs/alsa-lib-1.0.13 )
- !headless? ( x11-libs/libXinerama )
- pulseaudio? ( media-sound/pulseaudio )
- python? ( >=dev-lang/python-2.3[threads] )
- vboxwebsrv? ( >=net-libs/gsoap-2.7.13 )"
-PDEPEND="additions? ( ~app-emulation/virtualbox-additions-${PV} )
- extensions? ( ~app-emulation/virtualbox-extpack-oracle-${PV} )"
-
-QA_TEXTRELS_x86="usr/lib/virtualbox-ose/VBoxGuestPropSvc.so
- usr/lib/virtualbox/VBoxSDL.so
- usr/lib/virtualbox/VBoxSharedFolders.so
- usr/lib/virtualbox/VBoxDD2.so
- usr/lib/virtualbox/VBoxOGLrenderspu.so
- usr/lib/virtualbox/VBoxPython.so
- usr/lib/virtualbox/VBoxDD.so
- usr/lib/virtualbox/VBoxDDU.so
- usr/lib/virtualbox/VBoxREM64.so
- usr/lib/virtualbox/VBoxSharedClipboard.so
- usr/lib/virtualbox/VBoxHeadless.so
- usr/lib/virtualbox/VBoxRT.so
- usr/lib/virtualbox/VBoxREM.so
- usr/lib/virtualbox/VBoxSettings.so
- usr/lib/virtualbox/VBoxKeyboard.so
- usr/lib/virtualbox/VBoxSharedCrOpenGL.so
- usr/lib/virtualbox/VBoxVMM.so
- usr/lib/virtualbox/VirtualBox.so
- usr/lib/virtualbox/VBoxOGLhosterrorspu.so
- usr/lib/virtualbox/components/VBoxC.so
- usr/lib/virtualbox/components/VBoxSVCM.so
- usr/lib/virtualbox/components/VBoxDDU.so
- usr/lib/virtualbox/components/VBoxRT.so
- usr/lib/virtualbox/components/VBoxREM.so
- usr/lib/virtualbox/components/VBoxVMM.so
- usr/lib/virtualbox/VBoxREM32.so
- usr/lib/virtualbox/VBoxPython2_4.so
- usr/lib/virtualbox/VBoxPython2_5.so
- usr/lib/virtualbox/VBoxPython2_6.so
- usr/lib/virtualbox/VBoxPython2_7.so
- usr/lib/virtualbox/VBoxXPCOMC.so
- usr/lib/virtualbox/VBoxOGLhostcrutil.so
- usr/lib/virtualbox/VBoxNetDHCP.so"
-
-REQUIRED_USE="java? ( sdk ) python? ( sdk )"
-
-pkg_setup() {
- if built_with_use sys-devel/gcc hardened && gcc-config -c | grep -qv -E "hardenednopie|vanilla"; then
- eerror "The PIE feature provided by the \"hardened\" compiler is incompatible with ${PF}."
- eerror "You must use gcc-config to select a profile without this feature. You may"
- eerror "choose either \"hardenednopie\", \"hardenednopiessp\" or \"vanilla\" profile;"
- eerror "however, \"hardenednopie\" is preferred because it gives the most hardening."
- eerror "Remember to run \"source /etc/profile\" before continuing. See bug #339914."
- die
- fi
-
- if ! use headless && ! use qt4 ; then
- einfo "No USE=\"qt4\" selected, this build will not include"
- einfo "any Qt frontend."
- elif use headless && use qt4 ; then
- einfo "You selected USE=\"headless qt4\", defaulting to"
- einfo "USE=\"headless\", this build will not include any X11/Qt frontend."
- fi
-
- if ! use opengl ; then
- einfo "No USE=\"opengl\" selected, this build will lack"
- einfo "the OpenGL feature."
- fi
- java-pkg-opt-2_pkg_setup
-}
-
-src_prepare() {
- # Remove shipped binaries (kBuild,yasm), see bug #232775
- rm -rf kBuild/bin tools
-
- # Disable things unused or split into separate ebuilds
- sed -e "s/MY_LIBDIR/$(get_libdir)/" \
- "${FILESDIR}"/${PN}-4-localconfig > LocalConfig.kmk || die
-
- # unset useless/problematic checks in configure
- epatch "${FILESDIR}/${PN}-ose-3.2.8-mesa-check.patch" \
- "${FILESDIR}/${PN}-4-makeself-check.patch" \
- "${FILESDIR}/${PN}-4-mkisofs-check.patch"
-
- # fix build with --as-needed (bug #249295 and bug #350907)
- epatch "${FILESDIR}/${PN}-4-asneeded.patch"
-
- # Respect LDFLAGS
- sed -e "s/_LDFLAGS\.${ARCH}*.*=/& ${LDFLAGS}/g" \
- -i Config.kmk src/libs/xpcom18a4/Config.kmk || die
-
- # We still want to use ${HOME}/.VirtualBox/Machines as machines dir.
- epatch "${FILESDIR}/${PN}-4.0.2-restore_old_machines_dir.patch"
-
- # add correct java path
- if use java ; then
- sed "s:/usr/lib/jvm/java-6-sun:$(java-config -O):" \
- -i "${S}"/Config.kmk || die
- fi
- java-pkg-opt-2_src_prepare
-}
-
-src_configure() {
- local myconf
- use alsa || myconf+=" --disable-alsa"
- use opengl || myconf+=" --disable-opengl"
- use pulseaudio || myconf+=" --disable-pulse"
- use python || myconf+=" --disable-python"
- use java || myconf+=" --disable-java"
- use vboxwebsrv && myconf+=" --enable-webservice"
- use vnc && myconf+=" --enable-vnc"
- use doc || myconf+=" --disable-docs"
- if ! use headless ; then
- use qt4 || myconf+=" --disable-qt4"
- else
- myconf+=" --build-headless --disable-opengl"
- fi
- # not an autoconf script
- ./configure \
- --with-gcc="$(tc-getCC)" \
- --with-g++="$(tc-getCXX)" \
- --disable-kmods \
- --disable-dbus \
- ${myconf} \
- || die "configure failed"
-}
-
-src_compile() {
- source ./env.sh
-
- # Force kBuild to respect C[XX]FLAGS and MAKEOPTS (bug #178529)
- # and strip all flags
- # strip-flags
-
- MAKE="kmk" emake \
- VBOX_VERSION_STRING='$(VBOX_VERSION_MAJOR).$(VBOX_VERSION_MINOR).$(VBOX_VERSION_BUILD)'-Gentoo \
- TOOL_GCC3_CC="$(tc-getCC)" TOOL_GCC3_CXX="$(tc-getCXX)" \
- TOOL_GCC3_AS="$(tc-getCC)" TOOL_GCC3_AR="$(tc-getAR)" \
- TOOL_GCC3_LD="$(tc-getCXX)" TOOL_GCC3_LD_SYSMOD="$(tc-getLD)" \
- TOOL_GCC3_CFLAGS="${CFLAGS}" TOOL_GCC3_CXXFLAGS="${CXXFLAGS}" \
- VBOX_GCC_OPT="${CXXFLAGS}" \
- TOOL_YASM_AS=yasm KBUILD_PATH="${S}/kBuild" \
- all || die "kmk failed"
-}
-
-src_install() {
- cd "${S}"/out/linux.${ARCH}/release/bin || die
-
- # Create configuration files
- insinto /etc/vbox
- newins "${FILESDIR}/${PN}-4-config" vbox.cfg
-
- # Set the right libdir
- sed -i \
- -e "s/MY_LIBDIR/$(get_libdir)/" \
- "${D}"/etc/vbox/vbox.cfg || die "vbox.cfg sed failed"
-
- # Symlink binaries to the shipped wrapper
- exeinto /usr/$(get_libdir)/${PN}
- newexe "${FILESDIR}/${PN}-ose-3-wrapper" "VBox" || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/VBox
- fperms 0750 /usr/$(get_libdir)/${PN}/VBox
-
- dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VBoxManage
- dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VBoxVRDP
- dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VBoxHeadless
- dosym /usr/$(get_libdir)/${PN}/VBoxTunctl /usr/bin/VBoxTunctl
-
- # Install binaries and libraries
- insinto /usr/$(get_libdir)/${PN}
- doins -r components || die
-
- if use sdk ; then
- doins -r sdk || die
- fi
-
- if use vboxwebsrv ; then
- doins vboxwebsrv || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/vboxwebsrv
- fperms 0750 /usr/$(get_libdir)/${PN}/vboxwebsrv
- dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/vboxwebsrv
- newinitd "${FILESDIR}"/vboxwebsrv-initd vboxwebsrv
- newconfd "${FILESDIR}"/vboxwebsrv-confd vboxwebsrv
- fi
-
- for each in VBox{Manage,SVC,XPCOMIPCD,Tunctl,NetAdpCtl,NetDHCP,ExtPackHelperApp} *so *r0 *gc ; do
- doins $each || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/${each}
- fperms 0750 /usr/$(get_libdir)/${PN}/${each}
- done
- # VBoxNetAdpCtl and VBoxNetDHCP binaries need to be suid root in any case..
- fperms 4750 /usr/$(get_libdir)/${PN}/VBoxNetAdpCtl
- fperms 4750 /usr/$(get_libdir)/${PN}/VBoxNetDHCP
-
- if ! use headless ; then
- for each in VBox{SDL,Headless} ; do
- doins $each || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/${each}
- fperms 4750 /usr/$(get_libdir)/${PN}/${each}
- pax-mark -m "${D}"/usr/$(get_libdir)/${PN}/${each}
- done
-
- if use opengl && use qt4 ; then
- doins VBoxTestOGL || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/VBoxTestOGL
- fperms 0750 /usr/$(get_libdir)/${PN}/VBoxTestOGL
- fi
-
- dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VBoxSDL
-
- if use qt4 ; then
- doins VirtualBox || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/VirtualBox
- fperms 4750 /usr/$(get_libdir)/${PN}/VirtualBox
- pax-mark -m "${D}"/usr/$(get_libdir)/${PN}/VirtualBox
-
- dosym /usr/$(get_libdir)/${PN}/VBox /usr/bin/VirtualBox
-
- newmenu "${FILESDIR}"/${PN}-ose.desktop-2 ${PN}.desktop
- fi
-
- newicon "${S}"/src/VBox/Frontends/VirtualBox/images/OSE/VirtualBox_32px.png ${PN}.png
- else
- doins VBoxHeadless || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/VBoxHeadless
- fperms 4750 /usr/$(get_libdir)/${PN}/VBoxHeadless
- pax-mark -m "${D}"/usr/$(get_libdir)/${PN}/VBoxHeadless
- fi
-
- # Install EFI Firmware files (bug #320757)
- pushd "${S}"/src/VBox/Devices/EFI/FirmwareBin &>/dev/null || die
- for fwfile in VBoxEFI{32,64}.fd ; do
- doins ${fwfile} || die
- fowners root:vboxusers /usr/$(get_libdir)/${PN}/${fwfile} || die
- done
- popd &>/dev/null || die
-
- # New way of handling USB device nodes for VBox (bug #356215)
- insinto /lib/udev
- doins VBoxCreateUSBNode.sh
- fowners root:vboxusers /lib/udev/VBoxCreateUSBNode.sh
- fperms 0750 /lib/udev/VBoxCreateUSBNode.sh
- insinto /lib/udev/rules.d
- doins "${FILESDIR}"/10-virtualbox.rules
-
- insinto /usr/share/${PN}
- if ! use headless && use qt4 ; then
- doins -r nls
- fi
-
- # VRDPAuth only works with this (bug #351949)
- dosym VBoxAuth.so /usr/$(get_libdir)/${PN}/VRDPAuth.so
-
- # set an env-variable for 3rd party tools
- echo -n "VBOX_APP_HOME=/usr/$(get_libdir)/${PN}" > "${T}/90virtualbox"
- doenvd "${T}/90virtualbox"
-
- if use java ; then
- java-pkg_regjar "${D}/usr/$(get_libdir)/${PN}/sdk/bindings/xpcom/java/vboxjxpcom.jar"
- java-pkg_regso "${D}/usr/$(get_libdir)/${PN}/libvboxjxpcom.so"
- fi
-}
-
-pkg_postinst() {
- fdo-mime_desktop_database_update
-
- udevadm control --reload-rules && udevadm trigger --subsystem-match=usb
-
- if ! use headless && use qt4 ; then
- elog "To launch VirtualBox just type: \"VirtualBox\"."
- fi
- elog "You must be in the vboxusers group to use VirtualBox."
- elog ""
- elog "The latest user manual is available for download at:"
- elog "http://download.virtualbox.org/virtualbox/${PV}/UserManual.pdf"
- elog ""
- elog "For advanced networking setups you should emerge:"
- elog "net-misc/bridge-utils and sys-apps/usermode-utilities"
- elog ""
- elog "IMPORTANT!"
- elog "If you upgrade from app-emulation/virtualbox-ose make sure to run"
- elog "\"env-update\" as root and logout and relogin as the user you wish"
- elog "to run ${PN} as."
- elog ""
- elog "Starting with version 4.0.0, ${PN} has USB-1 support."
- elog "For PXE-boot ability and VRDP support please emerge"
- elog "app-emulation/virtualbox-extpack-oracle package."
- elog "Unfortunately USB2 support is still not available."
- elog "See https://bugs.gentoo.org/364717 for the reasons."
- if [ -e "${ROOT}/etc/udev/rules.d/10-virtualbox.rules" ] ; then
- elog ""
- elog "Please remove \"${ROOT}/etc/udev/rules.d/10-virtualbox.rules\""
- elog "or else USB in ${PN} won't work."
- fi
-}
-
-pkg_postrm() {
- fdo-mime_desktop_database_update
-}