aboutsummaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2018-11-29 21:12:58 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2018-11-29 21:12:58 +0000
commit35d684efe9698049d5198c17fa70280f93f2f562 (patch)
treed55bc80c05bd31c41e5106016a66d977ea622baf /emulators
parent085b666fecc9a448fe9ee53ac07a8964997a6ce5 (diff)
downloadports-35d684efe9698049d5198c17fa70280f93f2f562.tar.gz
ports-35d684efe9698049d5198c17fa70280f93f2f562.zip
Notes
Diffstat (limited to 'emulators')
-rw-r--r--emulators/virtualbox-ose-additions/Makefile1
-rw-r--r--emulators/virtualbox-ose/files/patch-src_VBox_Additions_freebsd_mount__vboxvfs_Makefile.kmk13
2 files changed, 7 insertions, 7 deletions
diff --git a/emulators/virtualbox-ose-additions/Makefile b/emulators/virtualbox-ose-additions/Makefile
index 07121cf4ac11..dcc3ec73f0f6 100644
--- a/emulators/virtualbox-ose-additions/Makefile
+++ b/emulators/virtualbox-ose-additions/Makefile
@@ -3,6 +3,7 @@
PORTNAME= virtualbox-ose
PORTVERSION= 5.2.22
+PORTREVISION= 1
CATEGORIES= emulators
MASTER_SITES= http://download.virtualbox.org/virtualbox/${PORTVERSION}/
PKGNAMESUFFIX?= -additions
diff --git a/emulators/virtualbox-ose/files/patch-src_VBox_Additions_freebsd_mount__vboxvfs_Makefile.kmk b/emulators/virtualbox-ose/files/patch-src_VBox_Additions_freebsd_mount__vboxvfs_Makefile.kmk
index 9d4a30723db0..4d327e1089b1 100644
--- a/emulators/virtualbox-ose/files/patch-src_VBox_Additions_freebsd_mount__vboxvfs_Makefile.kmk
+++ b/emulators/virtualbox-ose/files/patch-src_VBox_Additions_freebsd_mount__vboxvfs_Makefile.kmk
@@ -1,6 +1,6 @@
---- src/VBox/Additions/freebsd/mount_vboxvfs/Makefile.kmk.orig 1970-01-01 01:00:00.000000000 +0100
-+++ src/VBox/Additions/freebsd/mount_vboxvfs/Makefile.kmk 2017-07-13 00:17:45.342815229 +0200
-@@ -0,0 +1,24 @@
+--- src/VBox/Additions/freebsd/mount_vboxvfs/Makefile.kmk.orig 2018-11-29 19:03:21 UTC
++++ src/VBox/Additions/freebsd/mount_vboxvfs/Makefile.kmk
+@@ -0,0 +1,23 @@
+# $Id: Makefile.kmk $
+## @file
+# Sub-Makefile for the FreeBSD Shared folder mount utility.
@@ -13,14 +13,13 @@
+$(error "The FreeBSD guest additions can only be built on FreeBSD!")
+endif
+
-+FREEBSD_SRC= /usr/src
-+MOUNT= ${FREEBSD_SRC}/sbin/mount
++MOUNT= $(VBOX_FREEBSD_SRC)/../sbin/mount
+
-+CFLAGS+=-I${MOUNT}
++CFLAGS+=-I$(MOUNT)
+
+PROGRAMS += mount_vboxvfs
+mount_vboxvfs_TEMPLATE = NewVBoxGuestR3Exe
-+mount_vboxvfs_SOURCES = ${MOUNT}/getmntopts.c \
++mount_vboxvfs_SOURCES = $(MOUNT)/getmntopts.c \
+ mount_vboxvfs.c
+
+include $(FILE_KBUILD_SUB_FOOTER)