From owner-svn-ports-head@FreeBSD.ORG Tue Apr 1 17:52:15 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 3D0B594; Tue, 1 Apr 2014 17:52:15 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 1D80668E; Tue, 1 Apr 2014 17:52:15 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s31HqEx9002684; Tue, 1 Apr 2014 17:52:14 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s31HqEuG002678; Tue, 1 Apr 2014 17:52:14 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201404011752.s31HqEuG002678@svn.freebsd.org> From: Jung-uk Kim Date: Tue, 1 Apr 2014 17:52:14 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r349868 - in head/emulators: virtualbox-ose-additions virtualbox-ose/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 01 Apr 2014 17:52:15 -0000 Author: jkim Date: Tue Apr 1 17:52:14 2014 New Revision: 349868 URL: http://svnweb.freebsd.org/changeset/ports/349868 QAT: https://qat.redports.org/buildarchive/r349868/ Log: Fix VBoxClient-all to properly set VBoxClient path. PR: ports/188048 Modified: head/emulators/virtualbox-ose-additions/Makefile head/emulators/virtualbox-ose/files/patch-src-VBox-Additions-x11-Installer-98vboxadd-xclient head/emulators/virtualbox-ose/files/vboxheadless.in Modified: head/emulators/virtualbox-ose-additions/Makefile ============================================================================== --- head/emulators/virtualbox-ose-additions/Makefile Tue Apr 1 17:41:29 2014 (r349867) +++ head/emulators/virtualbox-ose-additions/Makefile Tue Apr 1 17:52:14 2014 (r349868) @@ -3,6 +3,7 @@ PORTNAME= virtualbox-ose DISTVERSION= 4.3.10 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= http://download.virtualbox.org/virtualbox/${DISTVERSION}/ \ http://tmp.chruetertee.ch/ \ Modified: head/emulators/virtualbox-ose/files/patch-src-VBox-Additions-x11-Installer-98vboxadd-xclient ============================================================================== --- head/emulators/virtualbox-ose/files/patch-src-VBox-Additions-x11-Installer-98vboxadd-xclient Tue Apr 1 17:41:29 2014 (r349867) +++ head/emulators/virtualbox-ose/files/patch-src-VBox-Additions-x11-Installer-98vboxadd-xclient Tue Apr 1 17:52:14 2014 (r349868) @@ -1,6 +1,6 @@ ---- src/VBox/Additions/x11/Installer/98vboxadd-xclient.orig 2010-09-10 14:24:55.000000000 +0200 -+++ src/VBox/Additions/x11/Installer/98vboxadd-xclient 2010-12-29 20:42:00.000000000 +0100 -@@ -28,8 +28,8 @@ +--- src/VBox/Additions/x11/Installer/98vboxadd-xclient.orig 2014-03-26 15:12:42.000000000 -0400 ++++ src/VBox/Additions/x11/Installer/98vboxadd-xclient 2014-04-01 13:38:20.000000000 -0400 +@@ -30,8 +30,8 @@ xorgbin=Xorg found=`which Xorg | grep "no Xorg"` if test ! -z "$found"; then @@ -11,7 +11,7 @@ else exit 1 fi -@@ -40,9 +40,9 @@ +@@ -42,11 +42,11 @@ no_display=1 fi @@ -25,3 +25,6 @@ test -z "$no_display" && - /usr/bin/VBoxClient --seamless + /usr/local/bin/VBoxClient --seamless + test -z "$no_display" && +- /usr/bin/VBoxClient --draganddrop ++ /usr/local/bin/VBoxClient --draganddrop Modified: head/emulators/virtualbox-ose/files/vboxheadless.in ============================================================================== --- head/emulators/virtualbox-ose/files/vboxheadless.in Tue Apr 1 17:41:29 2014 (r349867) +++ head/emulators/virtualbox-ose/files/vboxheadless.in Tue Apr 1 17:52:14 2014 (r349868) @@ -110,7 +110,7 @@ vboxheadless_status() eval vmname="\${vboxheadless_${machine}_name:-${machine}}" eval vmuser="\${vboxheadless_${machine}_user:-${vboxheadless_user}}" - /usr/bin/su ${vmuser} -c "/usr/local/bin/VBoxManage showvminfo '${vmname}' >/dev/null" 2>/dev/null + /usr/bin/su ${vmuser} -c "%%PREFIX%%/bin/VBoxManage showvminfo '${vmname}' >/dev/null" 2>/dev/null if [ $? != 0 ]; then /usr/bin/printf "%20s %s\n" "${vmname}" "Unknown Machine"