From owner-svn-ports-head@freebsd.org Mon Aug 5 13:59:26 2019 Return-Path: Delivered-To: svn-ports-head@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 6BC53C4519; Mon, 5 Aug 2019 13:59:26 +0000 (UTC) (envelope-from pkubaj@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 462KBk2D3hz3D2H; Mon, 5 Aug 2019 13:59:26 +0000 (UTC) (envelope-from pkubaj@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 2DDD21CBE0; Mon, 5 Aug 2019 13:59:26 +0000 (UTC) (envelope-from pkubaj@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x75DxQ9Y059869; Mon, 5 Aug 2019 13:59:26 GMT (envelope-from pkubaj@FreeBSD.org) Received: (from pkubaj@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x75DxPqT059867; Mon, 5 Aug 2019 13:59:25 GMT (envelope-from pkubaj@FreeBSD.org) Message-Id: <201908051359.x75DxPqT059867@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pkubaj set sender to pkubaj@FreeBSD.org using -f From: Piotr Kubaj Date: Mon, 5 Aug 2019 13:59:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r508171 - in head/audio/mixxx21: . files X-SVN-Group: ports-head X-SVN-Commit-Author: pkubaj X-SVN-Commit-Paths: in head/audio/mixxx21: . files X-SVN-Commit-Revision: 508171 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 05 Aug 2019 13:59:26 -0000 Author: pkubaj Date: Mon Aug 5 13:59:25 2019 New Revision: 508171 URL: https://svnweb.freebsd.org/changeset/ports/508171 Log: audio/mixxx21: fix build on non-x86 Ports shouldn't optimize for the builder's CPU. It also breaks build on non-x86. Also include sys/types.h in plugins/soundsourcem4a/soundsourcem4a.h. GCC needs it. PR: 239322 Approved by: acm (maintainer timeout), tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D21146 Added: head/audio/mixxx21/files/patch-plugins_soundsourcem4a_soundsourcem4a.h (contents, props changed) Modified: head/audio/mixxx21/Makefile Modified: head/audio/mixxx21/Makefile ============================================================================== --- head/audio/mixxx21/Makefile Mon Aug 5 13:53:19 2019 (r508170) +++ head/audio/mixxx21/Makefile Mon Aug 5 13:59:25 2019 (r508171) @@ -4,7 +4,7 @@ PORTNAME= mixxx DISTVERSIONPREFIX= release- DISTVERSION= 2.1.8 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= audio PKGNAMESUFFIX= 21 @@ -15,7 +15,6 @@ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/LICENSE BROKEN_aarch64= fails to compile: Exception("invalid machine type") -BROKEN_powerpc64= fails to configure: unmet dependencies: Could not find libprotobuf, libchromaprint, libmp4, and libwavpack LIB_DEPENDS= libchromaprint.so:audio/chromaprint \ libFLAC.so:audio/flac \ @@ -47,7 +46,7 @@ USE_QT= buildtools concurrent core dbus gui network o CONFLICTS= mixxx20* mixxx MAKE_ARGS= qtdir="${PREFIX}" install_root="${PREFIX}" \ - build=release optimize=native ${GUI} battery=0 vamp=1 modplug=1 + build=release optimize=off ${GUI} battery=0 vamp=1 modplug=1 LATE_INSTALL_ARGS= --install-sandbox=${STAGEDIR} GUI= qt5=1 Added: head/audio/mixxx21/files/patch-plugins_soundsourcem4a_soundsourcem4a.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/audio/mixxx21/files/patch-plugins_soundsourcem4a_soundsourcem4a.h Mon Aug 5 13:59:25 2019 (r508171) @@ -0,0 +1,11 @@ +--- plugins/soundsourcem4a/soundsourcem4a.h.orig 2019-07-19 22:36:09 UTC ++++ plugins/soundsourcem4a/soundsourcem4a.h +@@ -5,6 +5,8 @@ + + #include "util/readaheadsamplebuffer.h" + ++#include ++ + #ifdef __MP4V2__ + #include + #else