From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 1C4D2138334 for ; Sun, 24 Mar 2019 12:56:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20EBBE08A5; Sun, 24 Mar 2019 12:56:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 ED0D1E08A5 for ; Sun, 24 Mar 2019 12:56:27 +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 BAD13335D1E for ; Sun, 24 Mar 2019 12:56:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62AE744B for ; Sun, 24 Mar 2019 12:56:25 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1553432175.c853539046b1a468cbae9abf948b3a1115e34bea.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/mixxx/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/mixxx/mixxx-9999.ebuild X-VCS-Directories: media-sound/mixxx/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: c853539046b1a468cbae9abf948b3a1115e34bea X-VCS-Branch: master Date: Sun, 24 Mar 2019 12:56:25 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d866c923-20d9-4f64-b023-ece0ddc9b986 X-Archives-Hash: 80ef17afb7a8b585792f0aaea6a92b11 commit: c853539046b1a468cbae9abf948b3a1115e34bea Author: Gerion Entrup flump de> AuthorDate: Sat Mar 23 20:39:33 2019 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sun Mar 24 12:56:15 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8535390 media-sound/mixxx: fix compilation of live ebuild SConscript file was moved by upstream. Closes: https://bugs.gentoo.org/669552 Package-Manager: Portage-2.3.62, Repoman-2.3.11 Signed-off-by: Gerion Entrup flump.de> Closes: https://github.com/gentoo/gentoo/pull/11471 Signed-off-by: Lars Wendler gentoo.org> media-sound/mixxx/mixxx-9999.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/media-sound/mixxx/mixxx-9999.ebuild b/media-sound/mixxx/mixxx-9999.ebuild index 7de8d9c9434..c3949aa84c2 100644 --- a/media-sound/mixxx/mixxx-9999.ebuild +++ b/media-sound/mixxx/mixxx-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Authors +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -78,13 +78,12 @@ DEPEND=" " PATCHES=( - "${FILESDIR}"/${PN}-2.0.0-docs.patch "${FILESDIR}"/${PN}-2.2.0-lilv_include_fix.patch ) src_prepare() { # use multilib compatible directory for plugins - sed -i -e "/unix_lib_path =/s/'lib'/'$(get_libdir)'/" src/SConscript || die + sed -i -e "/env.Alias('install', docs)/d;"'/unix_lib_path =/!b;n;'"s/'lib'/'$(get_libdir)'/" SConscript || die default }