author | Da Risk <da_risk@geekorum.com> |
Wed, 14 Jan 2015 10:31:13 +0100 | |
changeset 141 | 69dbfec1a678 |
permissions | -rw-r--r-- |
141
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
1 |
# Copyright 1999-2015 Gentoo Foundation |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
2 |
# Distributed under the terms of the GNU General Public License v2 |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
3 |
# $Header: $ |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
4 |
|
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
5 |
EAPI="5" |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
6 |
PYTHON_COMPAT=( python{2_7,3_2,3_3,3_4} ) |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
7 |
|
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
8 |
inherit eutils distutils-r1 |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
9 |
|
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
10 |
DESCRIPTION="Python interface to D-Bus notifications" |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
11 |
HOMEPAGE="https://bitbucket.org/takluyver/pynotify2" |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
12 |
SRC_URI="mirror://pypi/n/${PN}/${PN}-${PV}.tar.gz" |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
13 |
|
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
14 |
LICENSE="BSD-2" |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
15 |
SLOT="0" |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
16 |
KEYWORDS="~amd64" |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
17 |
IUSE="examples" |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
18 |
|
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
19 |
RDEPEND="${PYTHON_DEPS}" |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
20 |
DEPEND="${RDEPEND}" |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
21 |
|
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
22 |
python_install_all() { |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
23 |
use examples && local EXAMPLES=( examples/. ) |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
24 |
|
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
25 |
distutils-r1_python_install_all |
69dbfec1a678
Add ebuild for notify2 a python dbus notification implementation
Da Risk <da_risk@geekorum.com>
parents:
diff
changeset
|
26 |
} |