git: 77005af64c4a - main - graphics/gdk-pixbuf2: fix option variables

From: Tobias C. Berner <tcberner_at_FreeBSD.org>
Date: Fri, 19 May 2023 06:13:23 UTC
The branch main has been updated by tcberner:

URL: https://cgit.FreeBSD.org/ports/commit/?id=77005af64c4a0166929192f6b7c461ae54f374ff

commit 77005af64c4a0166929192f6b7c461ae54f374ff
Author:     Tobias C. Berner <tcberner@FreeBSD.org>
AuthorDate: 2023-05-19 06:11:44 +0000
Commit:     Tobias C. Berner <tcberner@FreeBSD.org>
CommitDate: 2023-05-19 06:13:18 +0000

    graphics/gdk-pixbuf2: fix option variables
    
    The Makefile was using
            FOO_MESON_ENABLE=       bar
    instead of
            FOO_MESON_ENABLED=      bar
    so those values were never passed to meson in the first place.
    
    PR:             271472
---
 graphics/gdk-pixbuf2/Makefile | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/graphics/gdk-pixbuf2/Makefile b/graphics/gdk-pixbuf2/Makefile
index b94a26faf04a..8a4b3736a3d7 100644
--- a/graphics/gdk-pixbuf2/Makefile
+++ b/graphics/gdk-pixbuf2/Makefile
@@ -30,7 +30,7 @@ OPTIONS_DEFINE=	JPEG MANPAGES PNG TIFF
 OPTIONS_DEFAULT=JPEG MANPAGES PNG TIFF
 
 JPEG_USES=		jpeg
-JPEG_MESON_ENABLE=	jpeg
+JPEG_MESON_ENABLED=	jpeg
 
 MANPAGES_BUILD_DEPENDS=	docbook-xsl>0:textproc/docbook-xsl \
 			rst2man:textproc/py-docutils
@@ -38,9 +38,9 @@ MANPAGES_USE=		gnome=libxslt:build
 MANPAGES_MESON_TRUE=	man
 
 PNG_LIB_DEPENDS=	libpng.so:graphics/png
-PNG_MESON_ENABLE=	png
+PNG_MESON_ENABLED=	png
 
 TIFF_LIB_DEPENDS=	libtiff.so:graphics/tiff
-TIFF_MESON_ENABLE=	tiff
+TIFF_MESON_ENABLED=	tiff
 
 .include <bsd.port.mk>