From 2ab6853e12edbd9299a1de2808aa1c7b770a9ff5 Mon Sep 17 00:00:00 2001 From: ajacoutot Date: Sat, 4 Sep 2021 05:36:55 +0000 Subject: [PATCH] The ecosystem is moving away from intltool to gettext-tools. For GNOME ports that are built with meson(1), change the default BDEP from textproc/intltool to devel/gettext,-tools. We will need to do this one by one for autoconf ports, although since gettext,-tools is in the dependency chain of intltool, there's no hurry. --- x11/gnome/gnome.port.mk | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/x11/gnome/gnome.port.mk b/x11/gnome/gnome.port.mk index 9498b6a2425..12423f9e081 100644 --- a/x11/gnome/gnome.port.mk +++ b/x11/gnome/gnome.port.mk @@ -1,4 +1,4 @@ -# $OpenBSD: gnome.port.mk,v 1.118 2021/05/08 10:10:30 ajacoutot Exp $ +# $OpenBSD: gnome.port.mk,v 1.119 2021/09/04 05:36:55 ajacoutot Exp $ # # Module for GNOME related ports @@ -25,7 +25,11 @@ MASTER_SITES ?= http://pub.mate-desktop.org/releases/${MATE_VERSION:C/^([0-9]+\ CATEGORIES += x11/mate . endif . if ${NO_BUILD:L} == "no" +. if ${CONFIGURE_STYLE:Mmeson} +BUILD_DEPENDS += devel/gettext,-tools +. else MODULES+= textproc/intltool +. endif . if ${CONFIGURE_STYLE:Mgnu} || ${CONFIGURE_STYLE:Msimple} USE_GMAKE?= Yes . endif