Date: Sun, 11 Aug 2019 05:34:39 +0000 (UTC) From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r508583 - in head/graphics: . drm_info Message-ID: <201908110534.x7B5YdUS022987@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: jbeich Date: Sun Aug 11 05:34:39 2019 New Revision: 508583 URL: https://svnweb.freebsd.org/changeset/ports/508583 Log: graphics/drm_info: add new port Small utility to dump info about DRM devices. Suports JSON output. Dumps can be shared on https://drmdb.emersion.fr/ Added: head/graphics/drm_info/ head/graphics/drm_info/Makefile (contents, props changed) head/graphics/drm_info/distinfo (contents, props changed) head/graphics/drm_info/pkg-descr (contents, props changed) Modified: head/graphics/Makefile (contents, props changed) Modified: head/graphics/Makefile ============================================================================== --- head/graphics/Makefile Sun Aug 11 05:05:45 2019 (r508582) +++ head/graphics/Makefile Sun Aug 11 05:34:39 2019 (r508583) @@ -143,6 +143,7 @@ SUBDIR += drm-fbsd12.0-kmod SUBDIR += drm-kmod SUBDIR += drm-legacy-kmod + SUBDIR += drm_info SUBDIR += dspdfviewer SUBDIR += duhdraw SUBDIR += dynamechs Added: head/graphics/drm_info/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/drm_info/Makefile Sun Aug 11 05:34:39 2019 (r508583) @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= drm_info +DISTVERSIONPREFIX= v +DISTVERSION= 2.1.0 +CATEGORIES= graphics + +MAINTAINER= jbeich@FreeBSD.org +COMMENT= Small utility to dump info about DRM devices + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +LIB_DEPENDS= libjson-c.so:devel/json-c \ + libdrm.so:graphics/libdrm + +USES= compiler:c11 meson pkgconfig +USE_GITHUB= yes +GH_ACCOUNT= ascent12 +PLIST_FILES= bin/${PORTNAME} + +.include <bsd.port.mk> Added: head/graphics/drm_info/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/drm_info/distinfo Sun Aug 11 05:34:39 2019 (r508583) @@ -0,0 +1,3 @@ +TIMESTAMP = 1559573555 +SHA256 (ascent12-drm_info-v2.1.0_GH0.tar.gz) = eb5158f93815e4a30b0e10c98fbe3e0b5422dbd8c6d6ff8b9490f92b80993612 +SIZE (ascent12-drm_info-v2.1.0_GH0.tar.gz) = 12947 Added: head/graphics/drm_info/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/graphics/drm_info/pkg-descr Sun Aug 11 05:34:39 2019 (r508583) @@ -0,0 +1,3 @@ +Small utility to dump info about DRM devices. Suports JSON output. + +WWW: https://github.com/ascent12/drm_info
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201908110534.x7B5YdUS022987>