blob: 59053ad3d2694678657564e3ed507d2a773a07a2 (
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
29
30
31
32
33
34
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/kaa-metadata/kaa-metadata-0.7.7.ebuild,v 1.5 2010/06/29 04:29:54 arfrever Exp $
EAPI="3"
PYTHON_DEPEND="2:2.5"
PYTHON_USE_WITH="threads"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="2.4 3.*"
inherit distutils
DESCRIPTION="Powerful media metadata parser for media files in Python, successor of MMPython"
HOMEPAGE="http://freevo.sourceforge.net/kaa/"
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
css? ( media-libs/libdvdcss )
dvd? ( media-libs/libdvdread )"
RDEPEND="${DEPEND}"
PYTHON_MODNAME="kaa"
src_prepare() {
distutils_src_prepare
# Disable experimental exiv2 parser which fails to build.
sed -e "s/-lexiv2/&_nonexistent/" -i setup.py || die "sed setup.py failed"
}
|