From owner-svn-ports-head@freebsd.org Thu Oct 18 02:10:01 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 9946C10E78AD; Thu, 18 Oct 2018 02:10:01 +0000 (UTC) (envelope-from jmd@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 5009C73EDF; Thu, 18 Oct 2018 02:10:01 +0000 (UTC) (envelope-from jmd@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 30C54196A7; Thu, 18 Oct 2018 02:10:01 +0000 (UTC) (envelope-from jmd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9I2A0Kx033823; Thu, 18 Oct 2018 02:10:00 GMT (envelope-from jmd@FreeBSD.org) Received: (from jmd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9I2A0mW033819; Thu, 18 Oct 2018 02:10:00 GMT (envelope-from jmd@FreeBSD.org) Message-Id: <201810180210.w9I2A0mW033819@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jmd set sender to jmd@FreeBSD.org using -f From: Johannes M Dieterich Date: Thu, 18 Oct 2018 02:10:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r482322 - in head/x11-drivers: . xf86-video-ati xf86-video-ati-legacy X-SVN-Group: ports-head X-SVN-Commit-Author: jmd X-SVN-Commit-Paths: in head/x11-drivers: . xf86-video-ati xf86-video-ati-legacy X-SVN-Commit-Revision: 482322 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: Thu, 18 Oct 2018 02:10:01 -0000 Author: jmd Date: Thu Oct 18 02:10:00 2018 New Revision: 482322 URL: https://svnweb.freebsd.org/changeset/ports/482322 Log: resurrect old port: xf86-video-ati@479538 as xf86-video-ati-legacy As there are some issues with the later xf86-video-ati revisions on old DRMs such as drm-legacy-kmod, resurrect the old version of the port as legacy. Add conflict with newer port. Note intended use in pkg-descr. Approved by: x11 (zeising) Added: head/x11-drivers/xf86-video-ati-legacy/ - copied from r479538, head/x11-drivers/xf86-video-ati/ Modified: head/x11-drivers/Makefile head/x11-drivers/xf86-video-ati-legacy/Makefile head/x11-drivers/xf86-video-ati-legacy/pkg-descr head/x11-drivers/xf86-video-ati/Makefile Modified: head/x11-drivers/Makefile ============================================================================== --- head/x11-drivers/Makefile Thu Oct 18 01:53:21 2018 (r482321) +++ head/x11-drivers/Makefile Thu Oct 18 02:10:00 2018 (r482322) @@ -24,6 +24,7 @@ SUBDIR += xf86-video-ark SUBDIR += xf86-video-ast SUBDIR += xf86-video-ati + SUBDIR += xf86-video-ati-legacy SUBDIR += xf86-video-chips SUBDIR += xf86-video-cirrus SUBDIR += xf86-video-dummy Modified: head/x11-drivers/xf86-video-ati-legacy/Makefile ============================================================================== --- head/x11-drivers/xf86-video-ati/Makefile Tue Sep 11 18:34:27 2018 (r479538) +++ head/x11-drivers/xf86-video-ati-legacy/Makefile Thu Oct 18 02:10:00 2018 (r482322) @@ -1,10 +1,11 @@ # $FreeBSD$ -PORTNAME= xf86-video-ati +PORTNAME= xf86-video-ati-legacy PORTVERSION= 7.9.0 PORTREVISION= 3 PORTEPOCH= 1 CATEGORIES= x11-drivers +DISTNAME= xf86-video-ati-${DISTVERSION} MAINTAINER= x11@FreeBSD.org COMMENT= X.Org ati display driver @@ -14,6 +15,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libpciaccess.so:devel/libpciaccess \ libdrm_radeon.so:graphics/libdrm + +CONFLICTS_INSTALL= xf86-video-ati USE_GL= gl XORG_CAT= driver Modified: head/x11-drivers/xf86-video-ati-legacy/pkg-descr ============================================================================== --- head/x11-drivers/xf86-video-ati/pkg-descr Tue Sep 11 18:34:27 2018 (r479538) +++ head/x11-drivers/xf86-video-ati-legacy/pkg-descr Thu Oct 18 02:10:00 2018 (r482322) @@ -1 +1,2 @@ -This package contains the X.Org xf86-video-ati driver. +This package contains the X.Org xf86-video-ati driver. It is an old version +intended to be used with the drm-legacy-kmod. Modified: head/x11-drivers/xf86-video-ati/Makefile ============================================================================== --- head/x11-drivers/xf86-video-ati/Makefile Thu Oct 18 01:53:21 2018 (r482321) +++ head/x11-drivers/xf86-video-ati/Makefile Thu Oct 18 02:10:00 2018 (r482322) @@ -14,6 +14,8 @@ LICENSE_FILE= ${WRKSRC}/COPYING LIB_DEPENDS= libpciaccess.so:devel/libpciaccess \ libdrm_radeon.so:graphics/libdrm +CONFLICTS_INSTALL= xf86-video-ati-legacy + USE_GL= gl XORG_CAT= driver USE_XORG= pciaccess