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 0ECF7138335 for ; Sat, 24 Nov 2018 23:18:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76179E0B5E; Sat, 24 Nov 2018 23:18:07 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 49F67E0B5E for ; Sat, 24 Nov 2018 23:18:07 +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 37487335D55 for ; Sat, 24 Nov 2018 23:18:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 891974B5 for ; Sat, 24 Nov 2018 23:18:02 +0000 (UTC) From: "Andreas Sturmlechner" 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" Message-ID: <1543101402.2a5008e569266c828d659083a5a017acb88cccf2.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/audacious/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/audacious/audacious-9999.ebuild X-VCS-Directories: media-sound/audacious/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 2a5008e569266c828d659083a5a017acb88cccf2 X-VCS-Branch: master Date: Sat, 24 Nov 2018 23:18:02 +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-Archives-Salt: 008fbfa3-547d-45ad-bf84-d6bd13100ec4 X-Archives-Hash: a50b76ef4913bbe83fe650e7342545dd commit: 2a5008e569266c828d659083a5a017acb88cccf2 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Nov 24 22:53:23 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Nov 24 23:16:42 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a5008e5 media-sound/audacious: Disable po dir if USE !nls Build system fails to live up to the promise of --disable-nls, so do it manually. Bug: https://bugs.gentoo.org/512698 Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/audacious/audacious-9999.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/media-sound/audacious/audacious-9999.ebuild b/media-sound/audacious/audacious-9999.ebuild index 3bbf110f138..11547ce4fca 100644 --- a/media-sound/audacious/audacious-9999.ebuild +++ b/media-sound/audacious/audacious-9999.ebuild @@ -51,6 +51,9 @@ src_unpack() { src_prepare() { default + if ! use nls; then + sed -e "/SUBDIRS/s/ po//" -i Makefile || die # bug #512698 + fi [[ ${PV} == *9999 ]] && eautoreconf }