diff options
author | Felix Palmen <zirias@FreeBSD.org> | 2023-04-03 10:27:51 +0000 |
---|---|---|
committer | Felix Palmen <zirias@FreeBSD.org> | 2023-04-30 11:10:39 +0000 |
commit | be67c1c353cabc6b17698f85efa4e5dce70b8e31 (patch) | |
tree | 62bf4e09d692921a5a19481884f84dbc0af9dbc6 /CHANGES | |
parent | 0ef660f00d793e8555ab98c3730dae124e017400 (diff) |
Mk/Uses/magick.mk: Fix DEFAULT_VERSION handling
Handle fallback for version and flavor separately, also add several
sanity checks.
This fixes creating broken *_DEPENDS for ports using it without
arguments when a -nox11 version is requested in DEFAULT_VERSIONS like
e.g. this resulting from "imagemagick=7-nox11":
libMagick++-7-nox11.so:graphics/ImageMagick7-nox11
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D39424
Diffstat (limited to 'CHANGES')
-rw-r--r-- | CHANGES | 15 |
1 files changed, 15 insertions, 0 deletions
@@ -10,6 +10,21 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20230430: +AUTHOR: zirias@FreeBSD.org + + USES=magick has been updated based on flavorized ports. + + A new argument 'x11' is available to specifically depend on the flavor + with X11 support. Fallback to DEFAULT_VERSIONS now happens + independently for the version (currently 6 or 7) and the flavor + (currently x11 or nox11). + + Only use arguments for version or flavor if your port really requires + it. Also, there is no need to add options for selecting the -nox11 + flavor any more, as the user setting in DEFAULT_VERSIONS will be + honored. + 20230111: AUTHOR: vishwin@FreeBSD.org |