git: c7b44004f9d2 - main - audio/libechonest: Fix build with llvm16

From: Nicola Vitale <nivit_at_FreeBSD.org>
Date: Thu, 20 Jul 2023 09:28:23 UTC
The branch main has been updated by nivit:

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

commit c7b44004f9d2ac06e2f5304423166eda37cea547
Author:     Nicola Vitale <nivit@FreeBSD.org>
AuthorDate: 2023-07-20 09:23:57 +0000
Commit:     Nicola Vitale <nivit@FreeBSD.org>
CommitDate: 2023-07-20 09:23:57 +0000

    audio/libechonest: Fix build with llvm16
    
    - Pet port(clippy|fmt|lint)
    
    Reported by:    pkg-fallout
---
 audio/libechonest/Makefile | 9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/audio/libechonest/Makefile b/audio/libechonest/Makefile
index e8b0b68b648f..8f39dc9f8ba5 100644
--- a/audio/libechonest/Makefile
+++ b/audio/libechonest/Makefile
@@ -13,18 +13,19 @@ LICENSE_FILE=	${WRKSRC}/COPYING
 LIB_DEPENDS=	libqjson-qt5.so:devel/qjson
 
 USES=		cmake compiler:c++11-lang pkgconfig qt:5
-USE_LDCONFIG=	yes
+USE_CXXSTD=	c++14
 USE_GITHUB=	yes
+USE_LDCONFIG=	yes
 GH_ACCOUNT=	lfranchi
 
-USE_QT=		core buildtools:build qmake:build network xml
+USE_QT=		core network xml buildtools:build qmake:build
 CMAKE_OFF+=	BUILD_WITH_QT4
 
 PLIST_SUB=	PORTVERSION=${PORTVERSION}
 
 OPTIONS_DEFINE=	TEST
 
-TEST_USE=	QT=testlib:build
-TEST_CMAKE_BOOL=ECHONEST_BUILD_TESTS
+TEST_USE=		QT=testlib:build
+TEST_CMAKE_BOOL=	ECHONEST_BUILD_TESTS
 
 .include <bsd.port.mk>