From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1043485-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1E6F4138334 for <garchives@archives.gentoo.org>; Wed, 22 Aug 2018 06:58:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C8F7AE0870; Wed, 22 Aug 2018 06:58:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 9CBDFE0870 for <gentoo-commits@lists.gentoo.org>; Wed, 22 Aug 2018 06:58:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A998E335D12 for <gentoo-commits@lists.gentoo.org>; Wed, 22 Aug 2018 06:58:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 954203A2 for <gentoo-commits@lists.gentoo.org>; Wed, 22 Aug 2018 06:58:28 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" <asturm@gentoo.org> Message-ID: <1534921098.d67cbfbdb52013277277814f0fce2c4b7bd028e9.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/musescore/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/musescore/musescore-2.1.0-r1.ebuild X-VCS-Directories: media-sound/musescore/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d67cbfbdb52013277277814f0fce2c4b7bd028e9 X-VCS-Branch: master Date: Wed, 22 Aug 2018 06:58:28 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e6082b93-400e-4247-a449-55db41078d63 X-Archives-Hash: 5c5be5cdbaad6277c01652fdbfaa2e76 commit: d67cbfbdb52013277277814f0fce2c4b7bd028e9 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Wed Aug 22 06:57:31 2018 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Wed Aug 22 06:58:18 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d67cbfbd media-sound/musescore: Drop USE=mp3 from 2.1.0 This is fixed in 2.3.2 but not trivial to backport. Closes: https://bugs.gentoo.org/631868 Package-Manager: Portage-2.3.48, Repoman-2.3.10 media-sound/musescore/musescore-2.1.0-r1.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/media-sound/musescore/musescore-2.1.0-r1.ebuild b/media-sound/musescore/musescore-2.1.0-r1.ebuild index fa7a8544fec..56805b5d007 100644 --- a/media-sound/musescore/musescore-2.1.0-r1.ebuild +++ b/media-sound/musescore/musescore-2.1.0-r1.ebuild @@ -13,7 +13,7 @@ SRC_URI="https://github.com/musescore/MuseScore/archive/v${PV}.tar.gz -> ${P}.ta LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="alsa debug jack mp3 portaudio portmidi pulseaudio vorbis" +IUSE="alsa debug jack portaudio portmidi pulseaudio vorbis" REQUIRED_USE="portmidi? ( portaudio )" RDEPEND=" @@ -32,10 +32,10 @@ RDEPEND=" dev-qt/qtxmlpatterns:5 >=media-libs/freetype-2.5.2 media-libs/libsndfile + media-sound/lame sys-libs/zlib:= alsa? ( >=media-libs/alsa-lib-1.0.0 ) jack? ( virtual/jack ) - mp3? ( media-sound/lame ) portaudio? ( media-libs/portaudio ) portmidi? ( media-libs/portmidi ) pulseaudio? ( media-sound/pulseaudio ) @@ -62,7 +62,7 @@ src_configure() { -DUSE_SYSTEM_FREETYPE=ON -DBUILD_ALSA="$(usex alsa)" -DBUILD_JACK="$(usex jack)" - -DBUILD_LAME="$(usex mp3)" + -DBUILD_LAME=ON -DBUILD_PORTAUDIO="$(usex portaudio)" -DBUILD_PORTMIDI="$(usex portmidi)" -DBUILD_PULSEAUDIO="$(usex pulseaudio)"