diff options
author | Alexis Ballier <aballier@gentoo.org> | 2016-08-28 16:11:57 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2016-08-28 16:11:57 +0200 |
commit | f7212ea4f94e904e7e48e97678a893ef1d88587c (patch) | |
tree | e677480e6f1f625d1f361d12bac2db3cfc41081d /media-libs/aubio | |
parent | dev-ml/ANSITerminal: fix build with oasis 0.4.7; bug #592288 (diff) | |
download | gentoo-f7212ea4f94e904e7e48e97678a893ef1d88587c.tar.gz gentoo-f7212ea4f94e904e7e48e97678a893ef1d88587c.tar.bz2 gentoo-f7212ea4f94e904e7e48e97678a893ef1d88587c.zip |
media-libs/aubio: fix build with USE=python; bug #592284
Package-Manager: portage-2.3.0
Diffstat (limited to 'media-libs/aubio')
-rw-r--r-- | media-libs/aubio/aubio-0.4.3.ebuild | 4 |
1 files 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 3d53661fa17c..fd52d914be56 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 } |