dev-python/notify2/notify2-0.3.ebuild
changeset 141 69dbfec1a678
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dev-python/notify2/notify2-0.3.ebuild	Wed Jan 14 10:31:13 2015 +0100
@@ -0,0 +1,26 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI="5"
+PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} )
+
+inherit eutils distutils-r1
+
+DESCRIPTION="Python interface to D-Bus notifications"
+HOMEPAGE="https://bitbucket.org/takluyver/pynotify2"
+SRC_URI="mirror://pypi/n/${PN}/${PN}-${PV}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="examples"
+
+RDEPEND="${PYTHON_DEPS}"
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+	use examples && local EXAMPLES=( examples/. )
+
+	distutils-r1_python_install_all
+}