git: 962519065d60 - main - misc/veles: Fix build broken by recent changes in devel/msgpack-*

From: Yuri Victorovich <yuri_at_FreeBSD.org>
Date: Tue, 01 Nov 2022 17:17:45 UTC
The branch main has been updated by yuri:

URL: https://cgit.FreeBSD.org/ports/commit/?id=962519065d60ee47906f7cb484a959f3dcb3ca76

commit 962519065d60ee47906f7cb484a959f3dcb3ca76
Author:     Yuri Victorovich <yuri@FreeBSD.org>
AuthorDate: 2022-11-01 14:44:12 +0000
Commit:     Yuri Victorovich <yuri@FreeBSD.org>
CommitDate: 2022-11-01 14:44:12 +0000

    misc/veles: Fix build broken by recent changes in devel/msgpack-*
    
    Reported by:    fallout
---
 misc/veles/Makefile | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/misc/veles/Makefile b/misc/veles/Makefile
index 69c9deafb8c1..f71b6b1bb505 100644
--- a/misc/veles/Makefile
+++ b/misc/veles/Makefile
@@ -15,16 +15,16 @@ LICENSE_FILE=	${WRKSRC}/LICENSE-2.0
 
 BROKEN_riscv64=		fails to build: /usr/include/c++/v1/__config:1141:6: No thread API
 
-PYTHON_DEPENDS=	${PYTHON_PKGNAMEPREFIX}msgpack>0:devel/py-msgpack@${PY_FLAVOR} \
+PY_DEPENDS=	${PYTHON_PKGNAMEPREFIX}msgpack>0:devel/py-msgpack@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}openssl>0:security/py-openssl@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}pbr>0:devel/py-pbr@${PY_FLAVOR} \
 		${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
-BUILD_DEPENDS=	msgpack>0:devel/msgpack-c \
+BUILD_DEPENDS=	msgpack-c>0:devel/msgpack-c \
 		msgpack-cxx>0:devel/msgpack-cxx \
-		${PYTHON_DEPENDS}
-RUN_DEPENDS=	${PYTHON_DEPENDS}
+		${PY_DEPENDS}
+RUN_DEPENDS=	${PY_DEPENDS}
 
-USES=		cmake compiler python:3.6+ qt:5 shebangfix
+USES=		cmake compiler localbase python:3.6+ qt:5 shebangfix # localbase is for boost headers included from the headers installed by msgpack-cxx
 SHEBANG_GLOB=	*.py
 SHEBANG_FILES=	python/plugin python/proxy resources/install/postinst python/test_dis
 USE_GITHUB=	yes