From owner-svn-ports-head@freebsd.org Wed Jul 25 14:14:48 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id BD27A104C1C7; Wed, 25 Jul 2018 14:14:48 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 6B0917FF34; Wed, 25 Jul 2018 14:14:48 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 4969D1B461; Wed, 25 Jul 2018 14:14:48 +0000 (UTC) (envelope-from eadler@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6PEEmnK006748; Wed, 25 Jul 2018 14:14:48 GMT (envelope-from eadler@FreeBSD.org) Received: (from eadler@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6PEEmH9006747; Wed, 25 Jul 2018 14:14:48 GMT (envelope-from eadler@FreeBSD.org) Message-Id: <201807251414.w6PEEmH9006747@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eadler set sender to eadler@FreeBSD.org using -f From: Eitan Adler Date: Wed, 25 Jul 2018 14:14:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r475314 - head/x11/xorg-minimal X-SVN-Group: ports-head X-SVN-Commit-Author: eadler X-SVN-Commit-Paths: head/x11/xorg-minimal X-SVN-Commit-Revision: 475314 X-SVN-Commit-Repository: ports 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.27 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: Wed, 25 Jul 2018 14:14:48 -0000 Author: eadler Date: Wed Jul 25 14:14:47 2018 New Revision: 475314 URL: https://svnweb.freebsd.org/changeset/ports/475314 Log: Fix x11/xorg-minimal when build with VIDEO_DRIVER="intel" i965_drv_video.so has location in commit r456673 Reported by: gblach Modified: head/x11/xorg-minimal/Makefile Modified: head/x11/xorg-minimal/Makefile ============================================================================== --- head/x11/xorg-minimal/Makefile Wed Jul 25 12:55:23 2018 (r475313) +++ head/x11/xorg-minimal/Makefile Wed Jul 25 14:14:47 2018 (r475314) @@ -22,7 +22,7 @@ RUN_DEPENDS+= ${LOCALBASE}/bin/Xorg:x11-servers/xorg-s .if ${VIDEO_DRIVER} == "nvidia" RUN_DEPENDS+= ${LOCALBASE}/lib/xorg/modules/drivers/nvidia_drv.so:x11/nvidia-driver .elif ${VIDEO_DRIVER} == "intel" -RUN_DEPENDS+= ${LOCALBASE}/lib/va/i965_drv_video.so:multimedia/libva-intel-driver +RUN_DEPENDS+= ${LOCALBASE}/lib/dri/i965_drv_video.so:multimedia/libva-intel-driver RUN_DEPENDS+= ${LOCALBASE}/lib/xorg/modules/drivers/${VIDEO_DRIVER}_drv.so:x11-drivers/xf86-video-${VIDEO_DRIVER} .else RUN_DEPENDS+= ${LOCALBASE}/lib/xorg/modules/drivers/${VIDEO_DRIVER}_drv.so:x11-drivers/xf86-video-${VIDEO_DRIVER}