# Copyright owners: Gentoo Foundation # Arfrever Frehtes Taifersar Arahesis # Distributed under the terms of the GNU General Public License v2 EAPI="4-python" PYTHON_MULTIPLE_ABIS="1" PYTHON_RESTRICTED_ABIS="*-jython" inherit distutils DESCRIPTION="Linux filesystem events monitoring" HOMEPAGE="https://github.com/seb-m/pyinotify http://pypi.python.org/pypi/pyinotify" SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="MIT" SLOT="0" KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux" IUSE="examples" DEPEND="$(python_abi_depend dev-python/setuptools)" RDEPEND="" PYTHON_MODULES="pyinotify.py" src_install() { distutils_src_install if use examples; then insinto /usr/share/doc/${PF}/examples doins python2/examples/* fi }