svn commit: r459970 - head/emulators/virtualbox-ose-additions

Jung-uk Kim jkim at FreeBSD.org
Thu Jan 25 23:07:54 UTC 2018


Author: jkim
Date: Thu Jan 25 23:07:53 2018
New Revision: 459970
URL: https://svnweb.freebsd.org/changeset/ports/459970

Log:
  Add a missing run-time dependency, x11/xrandr.
  
  Differential Revision:	https://reviews.freebsd.org/D12803

Modified:
  head/emulators/virtualbox-ose-additions/Makefile

Modified: head/emulators/virtualbox-ose-additions/Makefile
==============================================================================
--- head/emulators/virtualbox-ose-additions/Makefile	Thu Jan 25 23:02:37 2018	(r459969)
+++ head/emulators/virtualbox-ose-additions/Makefile	Thu Jan 25 23:07:53 2018	(r459970)
@@ -3,6 +3,7 @@
 
 PORTNAME=	virtualbox-ose
 PORTVERSION=	5.2.6
+PORTREVISION=	1
 CATEGORIES=	emulators
 MASTER_SITES=	http://download.virtualbox.org/virtualbox/${PORTVERSION}/
 PKGNAMESUFFIX?=	-additions
@@ -99,7 +100,8 @@ VBOX_LIBS=	VBoxEGL.so \
 .endif
 
 .if ${PORT_OPTIONS:MX11}
-BUILD_DEPENDS+=	${LOCALBASE}/bin/X:x11-servers/xorg-server
+BUILD_DEPENDS+=	${LOCALBASE}/libdata/pkgconfig/xorg-server.pc:x11-servers/xorg-server
+RUN_DEPENDS+=	xrandr:x11/xrandr
 USE_XORG+=	inputproto x11 xcursor xext xmu xorg-server xrandr xt
 USES+=		pkgconfig
 VBOX_WITH_X11=	1
@@ -149,6 +151,8 @@ post-patch:
 	    -e 's| -fno-merge-constants||' \
 	    -e 's| -mpreferred-stack-boundary=2||' ${WRKSRC}/Config.kmk
 .endif
+	@${REINPLACE_CMD} -e 's|/usr/X11|${LOCALBASE}|g' \
+	    ${WRKSRC}/src/VBox/Additions/x11/VBoxClient/display.cpp
 	@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \
 	    ${WRKSRC}/Config.kmk ${WRKSRC}/configure \
 	    ${WRKSRC}/kBuild/header.kmk ${WRKSRC}/kBuild/units/qt4.kmk \


More information about the svn-ports-all mailing list