# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: inherit distutils DESCRIPTION="Simple Library for Python." HOMEPAGE="https://fedorahosted.org/python-slip/" SRC_URI="https://fedorahosted.org/releases/p/y/${PN}/${P}.tar.bz2" SLOT="0" LICENSE="GPL-2" KEYWORDS="~amd64 ~x86" IUSE="examples" DEPEND="" RDEPEND=" >=sys-auth/policykit-0.9 dev-python/dbus-python dev-python/pygobject dev-python/pygtk" PYTHON_MODNAME="slip" src_unpack() { unpack ${A} # distutils expects to find setup.py in ${S} cd "${S}" sed -e "s/@VERSION@/${PV}/" setup.py.in >setup.py } src_install() { distutils_src_install docinto dbus dodoc doc/dbus/README if use examples; then insinto /usr/share/doc/${PF}/dbus/examples doins -r doc/dbus/example/* fi }