Created attachment 149708 [details] This is a patch for emulators/virtualbox-ose. This removes "USE_TEX= ... texlive" from Makefile and remove "%%MANUAL%%%%DOCSDIR%%/UserManual_fr_FR.pdf" from pkg-plist. In Makefile of emulators/virtualbox-ose, next lines is now remaind. .if ${PORT_OPTIONS:MMANUAL} USE_TEX= dvipsk:build formats:build texlive .endif And in /usr/ports/Mk/bsd.tex.mk, ""texlive" must not be defined in USE_TEX" is indicated. .if !empty(USE_TEX:tu:MTEXLIVE) IGNORE= "texlive" must not be defined in USE_TEX .endif So, we must remove "texlive" from USE_TEX, like below. USE_TEX= dvipsk:build formats:build And, after removing texlive from USE_TEX and build emulators/virtualbox, file UserManual_fr_FR.pdf was not present. So, I think attached patch is needed.
Auto-assigned to maintainer vbox@FreeBSD.org
I'll take it.
*** Bug 193893 has been marked as a duplicate of this bug. ***
A commit references this bug: Author: jkim Date: Tue Nov 25 00:40:20 UTC 2014 New revision: 373388 URL: https://svnweb.freebsd.org/changeset/ports/373388 Log: - Update to 4.3.20. - Fix MANUAL option. [1] PR: 195272 [1] Changes: head/emulators/virtualbox-ose/Makefile head/emulators/virtualbox-ose/distinfo head/emulators/virtualbox-ose/files/patch-src-VBox-Additions-x11-vboxvideo-Makefile.kmk head/emulators/virtualbox-ose/files/patch-src-VBox-Devices-USB-freebsd-USBProxyDevice-freebsd.cpp head/emulators/virtualbox-ose/pkg-plist head/emulators/virtualbox-ose-additions/Makefile head/emulators/virtualbox-ose-additions/distinfo head/emulators/virtualbox-ose-kmod/Makefile head/emulators/virtualbox-ose-kmod/distinfo
Committed (r373388), thanks!
Hi, Looking at: https://svnweb.freebsd.org/ports/head/emulators/virtualbox-ose/files/patch-src-VBox-Devices-USB-freebsd-USBProxyDevice-freebsd.cpp?revision=373388&view=markup I think you should set cMillies = 0, right after RTPipeRead(pDevFBSD->hPipeWakeupR, &bRead, 1, &cbIgnored), so that the function actually returns when the hPipeWakeupR is signalled. I think the purpose of the hPipeWakeupR is to force the reaper to return to the caller. Else it looks good! Test with a USB webcam, USB audio device and/or a USB memory stick and it should be fine. --HPS