dev-python/audioread/audioread-0.6.ebuild
changeset 49 2a51bfe5f6c3
parent 48 1c08ccc7236d
child 50 7db084666240
equal deleted inserted replaced
48:1c08ccc7236d 49:2a51bfe5f6c3
     1 # Copyright 1999-2010 Gentoo Foundation
       
     2 # Distributed under the terms of the GNU General Public License v2
       
     3 # $Header: $
       
     4 
       
     5 EAPI=4
       
     6 
       
     7 inherit distutils python git-2
       
     8 
       
     9 DESCRIPTION="cross-library (GStreamer + Core Audio + MAD + FFmpeg) audio decoding for Python"
       
    10 HOMEPAGE="https://github.com/sampsyo/audioread"
       
    11 
       
    12 EGIT_REPO_URI="git://github.com/sampsyo/audioread.git"
       
    13 EGIT_COMMIT="$PV"
       
    14 
       
    15 LICENSE="MIT"
       
    16 SLOT="0"
       
    17 KEYWORDS="~amd64"
       
    18 IUSE="mad +gstreamer +ffmpeg"
       
    19 
       
    20 PYTHON_DEPEND="2:6"
       
    21 RDEPEND=" mad? ( dev-python/pymad )
       
    22 		  gstreamer? ( dev-python/gst-python )
       
    23 		  ffmpeg? ( virtual/ffmpeg )"
       
    24