From owner-svn-ports-head@freebsd.org Mon Jan 30 01:42:14 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF196CC64A0; Mon, 30 Jan 2017 01:42:14 +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 mx1.freebsd.org (Postfix) with ESMTPS id 9009E1990; Mon, 30 Jan 2017 01:42:14 +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 v0U1gDVd093452; Mon, 30 Jan 2017 01:42:13 GMT (envelope-from jmd@FreeBSD.org) Received: (from jmd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v0U1gDPC093447; Mon, 30 Jan 2017 01:42:13 GMT (envelope-from jmd@FreeBSD.org) Message-Id: <201701300142.v0U1gDPC093447@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jmd set sender to jmd@FreeBSD.org using -f From: Johannes M Dieterich Date: Mon, 30 Jan 2017 01:42:13 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r432816 - in head/x11-drivers: . xf86-video-ast xorg-drivers 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.23 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: Mon, 30 Jan 2017 01:42:14 -0000 Author: jmd Date: Mon Jan 30 01:42:13 2017 New Revision: 432816 URL: https://svnweb.freebsd.org/changeset/ports/432816 Log: Add xf86-video-ast driver for ASPEED graphics controllers in recent server motherboards. PR: 194705 Submitted by: nwhitehorn@freebsd.org Reviewed by: swills (mentor) Approved by: swills (mentor) Differential Revision: https://reviews.freebsd.org/D9309 Added: head/x11-drivers/xf86-video-ast/ head/x11-drivers/xf86-video-ast/Makefile (contents, props changed) head/x11-drivers/xf86-video-ast/distinfo (contents, props changed) head/x11-drivers/xf86-video-ast/pkg-descr (contents, props changed) Modified: head/x11-drivers/Makefile head/x11-drivers/xorg-drivers/Makefile Modified: head/x11-drivers/Makefile ============================================================================== --- head/x11-drivers/Makefile Mon Jan 30 00:09:53 2017 (r432815) +++ head/x11-drivers/Makefile Mon Jan 30 01:42:13 2017 (r432816) @@ -20,6 +20,7 @@ SUBDIR += xf86-input-wacom SUBDIR += xf86-video-apm SUBDIR += xf86-video-ark + SUBDIR += xf86-video-ast SUBDIR += xf86-video-ati SUBDIR += xf86-video-chips SUBDIR += xf86-video-cirrus Added: head/x11-drivers/xf86-video-ast/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-drivers/xf86-video-ast/Makefile Mon Jan 30 01:42:13 2017 (r432816) @@ -0,0 +1,19 @@ +# $FreeBSD$ + +PORTNAME= xf86-video-ast +PORTVERSION= 1.1.5 +CATEGORIES= x11-drivers + +MAINTAINER= x11@FreeBSD.org +COMMENT= X.Org ASPEED display driver + +LICENSE= MIT +LICENSE_FILES= ${WRKSRC}/COPYING + +XORG_CAT= driver +USE_XORG= xf86driproto glproto +INSTALL_TARGET= install-strip + +PLIST_FILES= lib/xorg/modules/drivers/ast_drv.so + +.include Added: head/x11-drivers/xf86-video-ast/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-drivers/xf86-video-ast/distinfo Mon Jan 30 01:42:13 2017 (r432816) @@ -0,0 +1,3 @@ +TIMESTAMP = 1485310562 +SHA256 (xorg/driver/xf86-video-ast-1.1.5.tar.bz2) = 1edbbc55d47d3fd71dec99b15c2483e22738c642623a0fb86ef4a81a9067a2de +SIZE (xorg/driver/xf86-video-ast-1.1.5.tar.bz2) = 339848 Added: head/x11-drivers/xf86-video-ast/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/x11-drivers/xf86-video-ast/pkg-descr Mon Jan 30 01:42:13 2017 (r432816) @@ -0,0 +1,3 @@ +This package contains the X.Org xf86-video-ast driver. + +WWW: http://www.x.org Modified: head/x11-drivers/xorg-drivers/Makefile ============================================================================== --- head/x11-drivers/xorg-drivers/Makefile Mon Jan 30 00:09:53 2017 (r432815) +++ head/x11-drivers/xorg-drivers/Makefile Mon Jan 30 01:42:13 2017 (r432816) @@ -32,6 +32,7 @@ VIDEO_DRIVERS= mach64 \ vesa \ apm \ ark \ + ast \ chips \ dummy \ glint \