equal
deleted
inserted
replaced
1 # Copyright 1999-2015 Gentoo Foundation |
|
2 # Distributed under the terms of the GNU General Public License v2 |
|
3 # $Header: $ |
|
4 |
|
5 EAPI="5" |
|
6 PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} ) |
|
7 |
|
8 inherit eutils distutils-r1 |
|
9 |
|
10 DESCRIPTION="Python interface to D-Bus notifications" |
|
11 HOMEPAGE="https://bitbucket.org/takluyver/pynotify2" |
|
12 SRC_URI="mirror://pypi/n/${PN}/${PN}-${PV}.tar.gz" |
|
13 |
|
14 LICENSE="BSD-2" |
|
15 SLOT="0" |
|
16 KEYWORDS="~amd64" |
|
17 IUSE="examples" |
|
18 |
|
19 RDEPEND="${PYTHON_DEPS}" |
|
20 DEPEND="${RDEPEND}" |
|
21 |
|
22 python_install_all() { |
|
23 use examples && local EXAMPLES=( examples/. ) |
|
24 |
|
25 distutils-r1_python_install_all |
|
26 } |
|