svn commit: r502169 - in branches/2019Q2: . graphics/drm-current-kmod graphics/drm-devel-kmod graphics/drm-fbsd11.2-kmod graphics/drm-fbsd12.0-kmod graphics/drm-legacy-kmod
Niclas Zeising
zeising at FreeBSD.org
Mon May 20 20:45:22 UTC 2019
Author: zeising
Date: Mon May 20 20:45:19 2019
New Revision: 502169
URL: https://svnweb.freebsd.org/changeset/ports/502169
Log:
MFH: r502165 r502166 r502167 r502168
add graphics/drm-devel-kmod
Add graphics/drm-devel-kmod, development version of the lkpi based DRM
graphics drivers. This version is experimental, and for recent CURRENT
only.
This version currently corresponds to Linux 5.0 DRM drivers, and should give
better support for more recent Intel and AMD GPUs.
Please note that this port is copied from drm-current-kmod, rather than
resurrected from the old drm-devel-kmod port, that's because
drm-current-kmod was created by copying the old drm-devel-kmod when that
went to a more stable version.
Big thank you to everyone who has worked on this, and johalun in particuar,
who has done most of the heavy lifting.
Approved by: jmd (maintainer, implicit)
Sponsored by: B3 Init
drm-kmod ports: Update conflicts
Update conflicts for all drm-kmod ports to take into account the new
drm-devel-kmod port.
Sponsored by: B3 Init
Remove old drm-devel-kmod entry
Sponsored by: B3 Init
graphics/drm-current-kmod: Adjust FreeBSD compat
Update the FreeBSD OSVERSION compat of drm-current-kmod after the latest
update in r502043.
Suggested by: jbeich
Discussed with: johalun
Aproved by: jmd (maintainer, implicit)
Sponsored by: B3 Init
Approved by: ports-secteam (implicit, drm-drivers blanket)
Added:
branches/2019Q2/graphics/drm-devel-kmod/
- copied from r502165, head/graphics/drm-devel-kmod/
Modified:
branches/2019Q2/MOVED
branches/2019Q2/graphics/drm-current-kmod/Makefile
branches/2019Q2/graphics/drm-fbsd11.2-kmod/Makefile
branches/2019Q2/graphics/drm-fbsd12.0-kmod/Makefile
branches/2019Q2/graphics/drm-legacy-kmod/Makefile
Directory Properties:
branches/2019Q2/ (props changed)
Modified: branches/2019Q2/MOVED
==============================================================================
--- branches/2019Q2/MOVED Mon May 20 20:38:58 2019 (r502168)
+++ branches/2019Q2/MOVED Mon May 20 20:45:19 2019 (r502169)
@@ -10667,7 +10667,6 @@ math/vtk5-data||2018-12-05|Removed
devel/py-interface|devel/py-py_interface|2018-12-05|Rename to match upstream naming
graphics/drm-stable-kmod|graphics/drm-fbsd11.2-kmod|2018-12-09|Cleaning up DRM ports nomenclature
graphics/drm-next-kmod|graphics/drm-fbsd12.0-kmod|2018-12-09|Cleaning up DRM ports nomenclature
-graphics/drm-devel-kmod|graphics/drm-current-kmod|2018-12-09|Cleaning up DRM ports nomenclature
deskutils/multisync-backup||2018-12-11|Has expired: GNOME 2 application
deskutils/multisync-syncml||2018-12-11|Has expired: GNOME 2 application
net/g2ipmsg||2018-12-11|Has expired: GNOME 2 application
Modified: branches/2019Q2/graphics/drm-current-kmod/Makefile
==============================================================================
--- branches/2019Q2/graphics/drm-current-kmod/Makefile Mon May 20 20:38:58 2019 (r502168)
+++ branches/2019Q2/graphics/drm-current-kmod/Makefile Mon May 20 20:45:19 2019 (r502169)
@@ -16,7 +16,10 @@ ONLY_FOR_ARCHS_REASON= the new KMS components are only
RUN_DEPENDS= gpu-firmware-kmod>=g20180319:graphics/gpu-firmware-kmod
-CONFLICTS_INSTALL= drm-fbsd11.2-kmod drm-fbsd12.0-kmod drm-legacy-kmod
+CONFLICTS_INSTALL= drm-devel-kmod \
+ drm-fbsd11.2-kmod \
+ drm-fbsd12.0-kmod \
+ drm-legacy-kmod
OPTIONS_DEFINE= DEBUG
@@ -29,7 +32,7 @@ GH_TAGNAME= b890994
.include <bsd.port.options.mk>
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1200067
+.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1300029
IGNORE= not supported on older CURRENT, no kernel support
.endif
.if ${OPSYS} != FreeBSD
Modified: branches/2019Q2/graphics/drm-fbsd11.2-kmod/Makefile
==============================================================================
--- branches/2019Q2/graphics/drm-fbsd11.2-kmod/Makefile Mon May 20 20:38:58 2019 (r502168)
+++ branches/2019Q2/graphics/drm-fbsd11.2-kmod/Makefile Mon May 20 20:45:19 2019 (r502169)
@@ -16,7 +16,10 @@ ONLY_FOR_ARCHS_REASON= the new KMS components are only
RUN_DEPENDS= gpu-firmware-kmod>=g20180319:graphics/gpu-firmware-kmod
-CONFLICTS_INSTALL= drm-fbsd12.0-kmod drm-current-kmod drm-legacy-kmod
+CONFLICTS_INSTALL= drm-devel-kmod \
+ drm-fbsd12.0-kmod \
+ drm-current-kmod \
+ drm-legacy-kmod
OPTIONS_DEFINE= DEBUG
Modified: branches/2019Q2/graphics/drm-fbsd12.0-kmod/Makefile
==============================================================================
--- branches/2019Q2/graphics/drm-fbsd12.0-kmod/Makefile Mon May 20 20:38:58 2019 (r502168)
+++ branches/2019Q2/graphics/drm-fbsd12.0-kmod/Makefile Mon May 20 20:45:19 2019 (r502169)
@@ -16,7 +16,10 @@ ONLY_FOR_ARCHS_REASON= the new KMS components are only
RUN_DEPENDS= gpu-firmware-kmod>=g20180319:graphics/gpu-firmware-kmod
-CONFLICTS_INSTALL= drm-fbsd11.2-kmod drm-current-kmod drm-legacy-kmod
+CONFLICTS_INSTALL= drm-devel-kmod \
+ drm-fbsd11.2-kmod \
+ drm-current-kmod \
+ drm-legacy-kmod
OPTIONS_DEFINE= DEBUG
Modified: branches/2019Q2/graphics/drm-legacy-kmod/Makefile
==============================================================================
--- branches/2019Q2/graphics/drm-legacy-kmod/Makefile Mon May 20 20:38:58 2019 (r502168)
+++ branches/2019Q2/graphics/drm-legacy-kmod/Makefile Mon May 20 20:45:19 2019 (r502169)
@@ -19,7 +19,10 @@ USES= kmod uidfix
OPTIONS_DEFINE= DEBUG
-CONFLICTS_INSTALL= drm-fbsd11.2-kmod drm-fbsd12.0-kmod drm-current-kmod
+CONFLICTS_INSTALL= drm-devel-kmod \
+ drm-fbsd11.2-kmod \
+ drm-fbsd12.0-kmod \
+ drm-current-kmod
USE_GITHUB= yes
GH_ACCOUNT= FreeBSDDesktop
More information about the svn-ports-all
mailing list