blob: 1bb9cca764efbd7fcf95598e3d402705d2c24b58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python2_7 )
inherit distutils-r1
DESCRIPTION="Synchronization manager for the Neuros Audio Computer"
HOMEPAGE="http://www.xiph.org/positron"
SRC_URI="http://www.xiph.org/positron/files/source/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE="vorbis"
DEPEND="vorbis? ( dev-python/pyvorbis[${PYTHON_USEDEP}] )"
RDEPEND="${DEPEND}"
python_prepare_all() {
# install docs in /usr/share/doc/${PF}, bug #241290
sed -i -e "s:share/doc/positron:share/doc/${PF}:" setup.py
distutils-r1_python_prepare_all
}
|