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 EAA0D138330 for ; Sun, 28 Aug 2016 14:12:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E2131E085C; Sun, 28 Aug 2016 14:12:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 892F1E085C for ; Sun, 28 Aug 2016 14:12:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CD1EC340976 for ; Sun, 28 Aug 2016 14:12:09 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C892F245B for ; Sun, 28 Aug 2016 14:12:06 +0000 (UTC) From: "Alexis Ballier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexis Ballier" Message-ID: <1472393517.f7212ea4f94e904e7e48e97678a893ef1d88587c.aballier@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/aubio/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/aubio/aubio-0.4.3.ebuild X-VCS-Directories: media-libs/aubio/ X-VCS-Committer: aballier X-VCS-Committer-Name: Alexis Ballier X-VCS-Revision: f7212ea4f94e904e7e48e97678a893ef1d88587c X-VCS-Branch: master Date: Sun, 28 Aug 2016 14:12:06 +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: 6ded5e9e-04c6-4baf-9178-7b91d589c190 X-Archives-Hash: 12a0da1ff8cfef725d25d86e5d4c438a commit: f7212ea4f94e904e7e48e97678a893ef1d88587c Author: Alexis Ballier gentoo org> AuthorDate: Sun Aug 28 14:11:57 2016 +0000 Commit: Alexis Ballier gentoo org> CommitDate: Sun Aug 28 14:11:57 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7212ea4 media-libs/aubio: fix build with USE=python; bug #592284 Package-Manager: portage-2.3.0 media-libs/aubio/aubio-0.4.3.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-libs/aubio/aubio-0.4.3.ebuild b/media-libs/aubio/aubio-0.4.3.ebuild index 3d53661..fd52d91 100644 --- a/media-libs/aubio/aubio-0.4.3.ebuild +++ b/media-libs/aubio/aubio-0.4.3.ebuild @@ -37,7 +37,7 @@ DEPEND="${RDEPEND} REQUIRED_USE=${PYTHON_REQUIRED_USE} DOCS=( AUTHORS ChangeLog README.md ) -PYTHON_SRC_DIR="${S}/python" +PYTHON_SRC_DIR="${S}" src_prepare() { sed -i -e "s:doxygen:doxygen_disabled:" wscript || die @@ -101,6 +101,6 @@ src_install() { if use python ; then cd "${PYTHON_SRC_DIR}" || die DOCS="" distutils-r1_src_install - newdoc README README.python + newdoc python/README.md README.python fi }