# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_7 ) inherit cmake-utils distutils-r1 DESCRIPTION="Audio synchronization feature for vidify " HOMEPAGE="https://github.com/vidify/audiosync" SRC_URI="https://github.com/vidify/audiosync/archive/${PV}.tar.gz -> ${P}.tar.gz" LICENSE="LGPL-3" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="debug" RDEPEND=" media-video/ffmpeg[openssl] media-video/vidify[${PYTHON_USEDEP}] sci-libs/fftw debug? ( sci-visualization/gnuplot )" S="${WORKDIR}/audiosync-${PV}" src_prepare() { use debug && sed -i -e "/defines.append(('DEBUG', '1'))/s/^# *//" setup.py default }