Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: haikuports/haikuports
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: f2cc094858f3
Choose a base ref
...
head repository: haikuports/haikuports
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: eaea32126657
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 29, 2021

  1. Copy the full SHA
    eaea321 View commit details
Showing with 10 additions and 18 deletions.
  1. +10 −18 app-emulation/vmware-addons/{vmware_addons-1.2.1.recipe → vmware_addons-1.2.2.recipe}
Original file line number Diff line number Diff line change
@@ -14,26 +14,22 @@ results.
using Screen preflet in Haiku.
* Graphics driver for VirtualBox: change grapchics card in VM setting \
to VMSVGA and video memory size to 64 MB to get higher resolutions working."
* Shared folders: folders from the host OS can be mounted in Haiku:
mount -t vmwfs ~/Shared

if [ $effectiveTargetArchitecture = x86_gcc2 ]; then
DESCRIPTION+="
* Shared folders: folders from the host OS can be mounted in Haiku:
mount -t vmwfs -o Shared ~/Shared
"
fi
HOMEPAGE="https://github.com/HaikuArchives/VMwareAddons"
COPYRIGHT="1999 Be, Inc.
2007 Haiku, Inc.
2009 Vincent Duvert"
LICENSE="MIT"
REVISION="2"
srcGitRev="b98019e7b9798a967cc5ec0cf2721455b1fb216c"
REVISION="1"
srcGitRev="7781fdc08c327709801054afa1c30709b9bcae60"
SOURCE_URI="https://github.com/HaikuArchives/VMwareAddons/archive/$srcGitRev.tar.gz"
CHECKSUM_SHA256="546dcbf3f27502be0f800d92a95ab0a29bf12a047fe0dc040ea89d625d4fa437"
CHECKSUM_SHA256="d55e2c32cc3f42e43c3c4b333d8d25b438bab3ce87d0a9a6e96c2d0ac0f559a5"
SOURCE_FILENAME="VMwareAddons-$srcGitRev.tar.gz"
SOURCE_DIR="VMwareAddons-$srcGitRev"

ARCHITECTURES="all"
ARCHITECTURES="x86_64 x86_gcc2"
SECONDARY_ARCHITECTURES="x86_gcc2 x86"

PROVIDES="
@@ -56,10 +52,7 @@ BUILD_PREREQUIRES="

BUILD()
{
# vmwfs doesn't compile using gcc4 yet
if [ $effectiveTargetArchitecture = x86_gcc2 ]; then
make -C vmware_fs $jobArgs OBJ_DIR=objects
fi
make -C vmware_fs $jobArgs OBJ_DIR=objects
make -C vmware_mouse $jobArgs OBJ_DIR=objects
make -C vmware_tray $jobArgs OBJ_DIR=objects
make -C vmware_video/accelerant $jobArgs OBJ_DIR=objects
@@ -70,10 +63,9 @@ BUILD()

INSTALL()
{
if [ $effectiveTargetArchitecture = x86_gcc2 ]; then
mkdir -p $prefix/add-ons/kernel/file_systems
cp vmware_fs/objects/vmwfs $prefix/add-ons/kernel/file_systems
fi
mkdir -p $prefix/add-ons/kernel/file_systems
cp vmware_fs/objects/vmwfs $prefix/add-ons/kernel/file_systems

mkdir -p $prefix/add-ons/input_server/filters
cp vmware_mouse/objects/vmware_mouse $prefix/add-ons/input_server/filters