1 |
# Copyright 1999-2012 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: /var/cvsroot/gentoo-x86/dev-python/audioread/audioread-0.6.ebuild,v 1.3 2012/05/29 17:12:49 jdhore Exp $ |
4 |
|
5 |
EAPI=4 |
6 |
|
7 |
SUPPORT_PYTHON_ABIS="1" |
8 |
|
9 |
inherit distutils |
10 |
|
11 |
DESCRIPTION="Module for decoding audio files using whichever backend is available" |
12 |
HOMEPAGE="http://pypi.python.org/pypi/audioread" |
13 |
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" |
14 |
|
15 |
LICENSE="MIT" |
16 |
SLOT="0" |
17 |
KEYWORDS="~amd64 ~x86" |
18 |
IUSE="" |
19 |
|
20 |
DEPEND="" |
21 |
RDEPEND="|| ( dev-python/gst-python dev-python/pymad media-video/ffmpeg )" |
22 |
|
23 |
pkg_postinst() { |
24 |
elog "You might need to enable additional USE flags in backends to" |
25 |
elog "decode some types of audio files. Priority of backends:" |
26 |
elog " * gstreamer" |
27 |
elog " * mad" |
28 |
elog " * ffmpeg" |
29 |
} |