From owner-freebsd-emulation@FreeBSD.ORG Fri May 9 04:00:05 2014 Return-Path: Delivered-To: vbox@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id B3A7ED81 for ; Fri, 9 May 2014 04:00:05 +0000 (UTC) Received: from idcmail-mo2no.shaw.ca (idcmail-mo2no.shaw.ca [64.59.134.9]) by mx1.freebsd.org (Postfix) with ESMTP id 7CFFED56 for ; Fri, 9 May 2014 04:00:04 +0000 (UTC) X-Cloudmark-SP-Filtered: true X-Cloudmark-SP-Result: v=1.1 cv=PyywdG1hhzAAEaY8aZXFLtMUnlqk6chnja1kir+Tqrg= c=1 sm=1 a=QrugwKR0C_UA:10 a=wAGQQ9Az6v0A:10 a=BLceEmwcHowA:10 a=ICAaq7hcmGcA:10 a=IbtKDeXwb2+SRU442/pi3A==:17 a=BqR0wf30S_y4F_cDcIkA:9 a=CjuIK1q_8ugA:10 a=k4mpVp5wRlYA:10 a=1l8l7P0gDaIA:10 a=nKsjC9ClAAAA:8 a=p2QsaepqAAAA:8 a=6I5d2MoRAAAA:8 a=P4LanZP6w_ZUxkRuWuEA:9 a=SV7veod9ZcQA:10 a=BWvPGDcYAAAA:8 a=vZoGgzP0pyKfTN_ogUkA:9 a=V7tsTZBp22UA:10 a=w3VIBR3K5DEA:10 a=rh0Q7tNTUcUA:10 a=vXdFDvSJeccA:10 a=HpAAvcLHHh0Zw7uRqdWCyQ==:117 Received: from unknown (HELO slippy.cwsent.com) ([96.50.7.119]) by idcmail-mo2no.shaw.ca with ESMTP; 08 May 2014 22:00:03 -0600 Received: from slippy.cwsent.com (localhost [127.0.0.1]) by slippy.cwsent.com (8.14.8/8.14.8) with ESMTP id s48Kc0gf034966 for ; Thu, 8 May 2014 13:38:00 -0700 (PDT) (envelope-from Cy.Schubert@komquats.com) Received: from slippy (cy@localhost) by slippy.cwsent.com (8.14.8/8.13.1/Submit) with ESMTP id s48KbxvG034961 for ; Thu, 8 May 2014 13:38:00 -0700 (PDT) (envelope-from Cy.Schubert@komquats.com) Message-Id: <201405082038.s48KbxvG034961@slippy.cwsent.com> X-Authentication-Warning: slippy.cwsent.com: cy owned process doing -bs X-Mailer: exmh version 2.8.0 04/21/2012 with nmh-1.5 Reply-to: Cy Schubert From: Cy Schubert X-os: FreeBSD X-Sender: cy@cwsent.com X-URL: http://www.komquats.com/ To: vbox@freebsd.org Subject: virtualbox-ose patch Mime-Version: 1.0 Content-Type: multipart/mixed ; boundary="==_Exmh_1399581424_349020" Date: Thu, 08 May 2014 13:37:56 -0700 X-Mailman-Approved-At: Fri, 09 May 2014 04:32:56 +0000 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 May 2014 04:00:05 -0000 This is a multipart MIME message. --==_Exmh_1399581424_349020 Content-Type: text/plain; charset=us-ascii Hi, Enclosed is a patch to install VirtualBox documentation, making help work. The patch is for the main port however a similar patch could be used for the legacy ports as well. Would it be possible to include this or would you mind if I committed it? --==_Exmh_1399581424_349020 Content-Type: text/plain ; name="virtualbox-ose.diff"; charset=us-ascii Content-Description: virtualbox-ose.diff Content-Disposition: attachment; filename="virtualbox-ose.diff" Index: Makefile =================================================================== --- Makefile (revision 353138) +++ Makefile (working copy) @@ -8,7 +8,8 @@ http://tmp.chruetertee.ch/ \ http://disasterarea.chruetertee.ch/ \ http://download.virtualbox.org/virtualbox/${VBOX_GUEST_VER}/:guestadditions -DISTFILES= VirtualBox-${DISTVERSION}${EXTRACT_SUFX} ${GADISTFILES} +DISTFILES= VirtualBox-${DISTVERSION}${EXTRACT_SUFX} ${GADISTFILES} \ + UserManual.pdf EXTRACT_ONLY= VirtualBox-${DISTVERSION}${EXTRACT_SUFX} MAINTAINER= vbox@FreeBSD.org @@ -48,8 +49,8 @@ VBOX_FRONTENDS= VBoxAutostart VBoxHeadless VBOX_GUEST_VER= ${PORTVERSION} -OPTIONS_DEFINE= QT4 DEBUG GUESTADDITIONS DBUS PULSEAUDIO UDPTUNNEL VDE VNC WEBSERVICE NLS X11 VPX PYTHON -OPTIONS_DEFAULT= QT4 DBUS X11 UDPTUNNEL VNC WEBSERVICE PYTHON +OPTIONS_DEFINE= QT4 DEBUG GUESTADDITIONS DBUS PULSEAUDIO UDPTUNNEL VDE VNC WEBSERVICE NLS X11 VPX PYTHON DOCS +OPTIONS_DEFAULT= QT4 DBUS X11 UDPTUNNEL VNC WEBSERVICE PYTHON DOCS OPTIONS_SUB= yes DEBUG_DESC= Debug symbols, additional logs and assertions QT4_DESC= Build with QT4 Frontend @@ -295,4 +296,9 @@ ${INSTALL_DATA} ${WRKSRC}/src/VBox/Installer/freebsd/virtualbox.desktop ${STAGEDIR}${PREFIX}/share/applications/virtualbox.desktop .endif +.if ${PORT_OPTIONS:MDOCS} + ${MKDIR} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${DISTDIR}/UserManual.pdf ${STAGEDIR}${DOCSDIR}/UserManual.pdf +.endif + .include Index: distinfo =================================================================== --- distinfo (revision 353138) +++ distinfo (working copy) @@ -2,3 +2,5 @@ SIZE (VirtualBox-4.3.10.tar.bz2) = 90333712 SHA256 (VBoxGuestAdditions_4.3.10.iso) = 247e15e9a205dcd4761f6cb547ceca2a61e8d6905c1930870939fd323f4cd1ae SIZE (VBoxGuestAdditions_4.3.10.iso) = 64647168 +SHA256 (UserManual.pdf) = 0796a0043cb8a965695df75f0a245ff7645596c22c5832e06daa5cd1ba538461 +SIZE (UserManual.pdf) = 6270746 Index: pkg-plist =================================================================== --- pkg-plist (revision 353138) +++ pkg-plist (working copy) @@ -651,6 +651,8 @@ %%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/xpcom/client %%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/xpcom %%PYTHON%%@dirrm %%PYTHON_SITELIBDIR%%/vboxapi +%%PORTDOCS%%%%DOCSDIR%%/UserManual.pdf +%%PORTDOCS%%@dirrm %%DOCSDIR%% @dirrm include/virtualbox/xpcom @dirrm include/virtualbox/string @dirrm include/virtualbox/nsprpub/private --==_Exmh_1399581424_349020 Content-Type: text/plain; charset=us-ascii Cheers, Cy Schubert FreeBSD UNIX: Web: http://www.FreeBSD.org The need of the many outweighs the greed of the few. --==_Exmh_1399581424_349020--