# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-python/pyyaml/pyyaml-3.10-r1.ebuild,v 1.1 2013/01/17 22:57:12 chutzpah Exp $ EAPI=5 PYTHON_COMPAT=( python{2_5,2_6,2_7,3_1,3_2,3_3} ) inherit distutils-r1 MY_P="PyYAML-${PV}" DESCRIPTION="YAML parser and emitter for Python" HOMEPAGE="http://pyyaml.org/wiki/PyYAML http://pypi.python.org/pypi/PyYAML" SRC_URI="http://pyyaml.org/download/${PN}/${MY_P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris" IUSE="examples libyaml" DEPEND="libyaml? ( dev-libs/libyaml dev-python/pyrex )" RDEPEND="libyaml? ( dev-libs/libyaml )" S="${WORKDIR}/${MY_P}" python_configure_all() { mydistutilsargs=($(use_with libyaml)) } src_install() { distutils-r1_src_install if use examples; then insinto /usr/share/doc/${PF}/examples doins -r examples/. fi }