git: 9a56c8f62c66 - main - graphics/drawing: unbreak build with Meson 0.61.0

From: Jan Beich <jbeich_at_FreeBSD.org>
Date: Mon, 24 Jan 2022 12:52:41 UTC
The branch main has been updated by jbeich:

URL: https://cgit.FreeBSD.org/ports/commit/?id=9a56c8f62c66b5076f5a2c58d8229e1834a50f3d

commit 9a56c8f62c66b5076f5a2c58d8229e1834a50f3d
Author:     Jan Beich <jbeich@FreeBSD.org>
AuthorDate: 2022-01-24 12:52:16 +0000
Commit:     Jan Beich <jbeich@FreeBSD.org>
CommitDate: 2022-01-24 12:52:33 +0000

    graphics/drawing: unbreak build with Meson 0.61.0
    
    help/meson.build:2:6: ERROR: Program 'itstool' not found or not executable
    
    PR:             260943
    Reported by:    antoine (via exp-run)
    Regressed by:   https://github.com/mesonbuild/meson/commit/26c1869a142a
---
 graphics/drawing/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/graphics/drawing/Makefile b/graphics/drawing/Makefile
index 198c441a6834..680dd761dd34 100644
--- a/graphics/drawing/Makefile
+++ b/graphics/drawing/Makefile
@@ -8,7 +8,8 @@ COMMENT=	Drawing application for the GNOME desktop
 LICENSE=	GPLv3
 LICENSE_FILE=	${WRKSRC}/LICENSE
 
-BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${PY_FLAVOR}
+BUILD_DEPENDS=	${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${PY_FLAVOR} \
+		itstool:textproc/itstool
 RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${PY_FLAVOR}
 
 USES=		desktop-file-utils gettext gnome meson pkgconfig python:3.6+ \