Files
sablink-distro/dev-python/python-musicbrainz2/python-musicbrainz2-0.4.0.ebuild
T
cvill64 a1672ac8b1 forgot the python stuff
git-svn-id: http://svn.sabayonlinux.org/overlay@201 d7aec97c-591d-0410-af39-a8856400b30a
2006-11-01 01:18:36 +00:00

33 lines
696 B
Bash

# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
inherit distutils
DESCRIPTION="Python bindings for musicbrainz client library"
HOMEPAGE="http://musicbrainz.org/"
SRC_URI="http://ftp.musicbrainz.org/pub/musicbrainz/python-musicbrainz2/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="doc"
DEPEND=">=media-libs/musicbrainz-2.1.1
>=dev-python/ctypes-0.9.6
>=dev-lang/python-2.3
doc? ( dev-python/epydoc )"
DOCS="AUTHORS.txt CHANGES.txt COPYING.txt"
src_install() {
distutils_src_install
docinto examples
dodoc examples/*
if use doc; then
python setup.py docs
docinto html
dohtml html/*
fi
}