blob: c928e9c8f9b91027cddfd0c4b90018f30a2efd3b (
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
26
27
28
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
PYTHON_COMPAT=( python2_7 )
PYTHON_REQ_USE="threads"
inherit distutils-r1
DESCRIPTION="Powerful media metadata parser for media files in Python, successor of MMPython"
HOMEPAGE="http://www.freevo.org/ https://github.com/freevo/kaa-metadata"
SRC_URI="mirror://sourceforge/freevo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="css dvd"
DEPEND=">=dev-python/kaa-base-0.3.0[${PYTHON_USEDEP}]
css? ( media-libs/libdvdcss )
dvd? ( media-libs/libdvdread )"
RDEPEND="${DEPEND}"
python_prepare_all() {
# Disable experimental exiv2 parser which fails to build.
sed -e "s/-lexiv2/&_nonexistent/" -i setup.py || die "sed setup.py failed"
distutils-r1_python_prepare_all
}
|