From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1071210-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 700D5138334
	for <garchives@archives.gentoo.org>; Sat,  9 Feb 2019 18:17:20 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id 4E255E09FB;
	Sat,  9 Feb 2019 18:17:19 +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 29673E0980
	for <gentoo-commits@lists.gentoo.org>; Sat,  9 Feb 2019 18:17:18 +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 505A6335D53
	for <gentoo-commits@lists.gentoo.org>; Sat,  9 Feb 2019 18:17:17 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id B4A8253D
	for <gentoo-commits@lists.gentoo.org>; Sat,  9 Feb 2019 18:17:15 +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: <1549735818.4d9c2013be1131a1e3998b086aaea010a8a50ad5.asturm@gentoo>
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/ncmpc/
X-VCS-Repository: repo/gentoo
X-VCS-Files: media-sound/ncmpc/ncmpc-0.33-r1.ebuild
X-VCS-Directories: media-sound/ncmpc/
X-VCS-Committer: asturm
X-VCS-Committer-Name: Andreas Sturmlechner
X-VCS-Revision: 4d9c2013be1131a1e3998b086aaea010a8a50ad5
X-VCS-Branch: master
Date: Sat,  9 Feb 2019 18:17:15 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: c0a1c053-9511-43fd-844d-a167c9f57b95
X-Archives-Hash: 8b1eb890973bfcda682e182ad47ff1e7

commit:     4d9c2013be1131a1e3998b086aaea010a8a50ad5
Author:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sat Feb  9 17:47:39 2019 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sat Feb  9 18:10:18 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d9c2013

media-sound/ncmpc: Fix html docdir

Closes: https://bugs.gentoo.org/676084
Package-Manager: Portage-2.3.59, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 media-sound/ncmpc/ncmpc-0.33-r1.ebuild | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/media-sound/ncmpc/ncmpc-0.33-r1.ebuild b/media-sound/ncmpc/ncmpc-0.33-r1.ebuild
index d1eff94cb12..73b2c26e51a 100644
--- a/media-sound/ncmpc/ncmpc-0.33-r1.ebuild
+++ b/media-sound/ncmpc/ncmpc-0.33-r1.ebuild
@@ -34,10 +34,13 @@ src_prepare() {
 	default
 
 	# use correct docdir and don't install license file
-	sed \
-		-e "/^docdir =/s/meson.project_name()/'${PF}'/" \
+	sed -e "/^docdir =/s/meson.project_name()/'${PF}'/" \
 		-e "s/'COPYING', //" \
 		-i meson.build || die
+
+	# use correct (html) docdir
+	sed -e "/install_dir:.*doc/s/meson.project_name()/'${PF}'/" \
+		-i doc/meson.build || die
 }
 
 src_configure() {