Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/aubio/
Date: Sun, 28 Aug 2016 14:12:13
Message-Id: 1472393517.f7212ea4f94e904e7e48e97678a893ef1d88587c.aballier@gentoo
1 commit: f7212ea4f94e904e7e48e97678a893ef1d88587c
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Sun Aug 28 14:11:57 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Sun Aug 28 14:11:57 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7212ea4
7
8 media-libs/aubio: fix build with USE=python; bug #592284
9
10 Package-Manager: portage-2.3.0
11
12 media-libs/aubio/aubio-0.4.3.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/media-libs/aubio/aubio-0.4.3.ebuild b/media-libs/aubio/aubio-0.4.3.ebuild
16 index 3d53661..fd52d91 100644
17 --- a/media-libs/aubio/aubio-0.4.3.ebuild
18 +++ b/media-libs/aubio/aubio-0.4.3.ebuild
19 @@ -37,7 +37,7 @@ DEPEND="${RDEPEND}
20 REQUIRED_USE=${PYTHON_REQUIRED_USE}
21
22 DOCS=( AUTHORS ChangeLog README.md )
23 -PYTHON_SRC_DIR="${S}/python"
24 +PYTHON_SRC_DIR="${S}"
25
26 src_prepare() {
27 sed -i -e "s:doxygen:doxygen_disabled:" wscript || die
28 @@ -101,6 +101,6 @@ src_install() {
29 if use python ; then
30 cd "${PYTHON_SRC_DIR}" || die
31 DOCS="" distutils-r1_src_install
32 - newdoc README README.python
33 + newdoc python/README.md README.python
34 fi
35 }