From owner-svn-ports-all@freebsd.org Sat Jan 25 11:18:44 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 6862B23C36C; Sat, 25 Jan 2020 11:18:44 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 484YRS1yCFz4Nqs; Sat, 25 Jan 2020 11:18:44 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3E6E57679; Sat, 25 Jan 2020 11:18:44 +0000 (UTC) (envelope-from tcberner@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 00PBIiGE009755; Sat, 25 Jan 2020 11:18:44 GMT (envelope-from tcberner@FreeBSD.org) Received: (from tcberner@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 00PBIhBo009750; Sat, 25 Jan 2020 11:18:43 GMT (envelope-from tcberner@FreeBSD.org) Message-Id: <202001251118.00PBIhBo009750@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tcberner set sender to tcberner@FreeBSD.org using -f From: "Tobias C. Berner" Date: Sat, 25 Jan 2020 11:18:43 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r524026 - in head/audio: drumkv1-lv2 padthv1-lv2 qmidictl samplv1-lv2 synthv1-lv2 X-SVN-Group: ports-head X-SVN-Commit-Author: tcberner X-SVN-Commit-Paths: in head/audio: drumkv1-lv2 padthv1-lv2 qmidictl samplv1-lv2 synthv1-lv2 X-SVN-Commit-Revision: 524026 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Jan 2020 11:18:44 -0000 Author: tcberner Date: Sat Jan 25 11:18:42 2020 New Revision: 524026 URL: https://svnweb.freebsd.org/changeset/ports/524026 Log: Make dependency on linguisttools explicit The binary found by the cmake configure to check for its availability found the 'wrapper' installed by misc/qtchooser, which was present always (in short: it was broken). An upcoming change will change the behaviour of qtchooser not to install links if the binaries are not present. PR: 243443 Reported by: antoine Modified: head/audio/drumkv1-lv2/Makefile head/audio/padthv1-lv2/Makefile head/audio/qmidictl/Makefile head/audio/samplv1-lv2/Makefile head/audio/synthv1-lv2/Makefile Modified: head/audio/drumkv1-lv2/Makefile ============================================================================== --- head/audio/drumkv1-lv2/Makefile Sat Jan 25 10:23:15 2020 (r524025) +++ head/audio/drumkv1-lv2/Makefile Sat Jan 25 11:18:42 2020 (r524026) @@ -2,6 +2,7 @@ PORTNAME= drumkv1 DISTVERSION= 0.9.11 +PORTREVISION= 1 CATEGORIES= audio multimedia MASTER_SITES= SF PKGNAMESUFFIX= -lv2 @@ -20,7 +21,7 @@ LIB_DEPENDS= libjack.so:audio/jack \ USES= compiler:c++11-lang gl gmake localbase:ldflags pkgconfig qt:5 shared-mime-info GNU_CONFIGURE= yes CONFIGURE_ARGS= --disable-alsa-midi -USE_QT= core gui widgets xml buildtools_build qmake_build +USE_QT= core gui widgets xml buildtools_build linguisttools_build qmake_build USE_GL= gl USE_LDCONFIG= yes Modified: head/audio/padthv1-lv2/Makefile ============================================================================== --- head/audio/padthv1-lv2/Makefile Sat Jan 25 10:23:15 2020 (r524025) +++ head/audio/padthv1-lv2/Makefile Sat Jan 25 11:18:42 2020 (r524026) @@ -3,6 +3,7 @@ PORTNAME= padthv1 DISTVERSIONPREFIX= ${PORTNAME}_ DISTVERSION= 0_9_11 +PORTREVISION= 1 CATEGORIES= audio PKGNAMESUFFIX= -lv2 @@ -23,7 +24,7 @@ GNU_CONFIGURE= yes USE_GITHUB= yes GH_ACCOUNT= rncbc USE_GL= gl -USE_QT= core gui widgets xml buildtools_build qmake_build +USE_QT= core gui widgets xml buildtools_build linguisttools_build qmake_build CONFIGURE_ARGS= --disable-alsa-midi Modified: head/audio/qmidictl/Makefile ============================================================================== --- head/audio/qmidictl/Makefile Sat Jan 25 10:23:15 2020 (r524025) +++ head/audio/qmidictl/Makefile Sat Jan 25 11:18:42 2020 (r524026) @@ -2,6 +2,7 @@ PORTNAME= qmidictl DISTVERSION= 0.6.1 +PORTREVISION= 1 CATEGORIES= audio MASTER_SITES= SF @@ -13,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/COPYING USES= compiler:c++11-lang gl gmake localbase pkgconfig qt:5 GNU_CONFIGURE= yes -USE_QT= core gui widgets qmake_build buildtools_build +USE_QT= core gui widgets qmake_build buildtools_build linguisttools_build USE_GL= gl BINARY_ALIAS= qmake=${QMAKE} Modified: head/audio/samplv1-lv2/Makefile ============================================================================== --- head/audio/samplv1-lv2/Makefile Sat Jan 25 10:23:15 2020 (r524025) +++ head/audio/samplv1-lv2/Makefile Sat Jan 25 11:18:42 2020 (r524026) @@ -3,6 +3,7 @@ PORTNAME= samplv1 DISTVERSIONPREFIX= ${PORTNAME}_ DISTVERSION= 0_9_11 +PORTREVISION= 1 CATEGORIES= audio PKGNAMESUFFIX= -lv2 @@ -23,7 +24,7 @@ GNU_CONFIGURE= yes USE_GITHUB= yes GH_ACCOUNT= rncbc USE_GL= gl -USE_QT= core gui widgets xml buildtools_build qmake_build +USE_QT= core gui widgets xml buildtools_build linguisttools_build qmake_build PLIST_SUB= SHL3=${PORTVERSION} SHL2=${PORTVERSION:R} Modified: head/audio/synthv1-lv2/Makefile ============================================================================== --- head/audio/synthv1-lv2/Makefile Sat Jan 25 10:23:15 2020 (r524025) +++ head/audio/synthv1-lv2/Makefile Sat Jan 25 11:18:42 2020 (r524026) @@ -3,6 +3,7 @@ PORTNAME= synthv1 DISTVERSIONPREFIX= ${PORTNAME}_ DISTVERSION= 0_9_11 +PORTREVISION= 1 CATEGORIES= audio PKGNAMESUFFIX= -lv2 @@ -22,7 +23,7 @@ GNU_CONFIGURE= yes USE_GITHUB= yes GH_ACCOUNT= rncbc USE_GL= gl -USE_QT= core gui widgets xml buildtools_build qmake_build +USE_QT= core gui widgets xml buildtools_build linguisttools_build qmake_build PLIST_SUB= SHL3=${PORTVERSION} SHL2=${PORTVERSION:R}