dev-python/notify2/notify2-0.3.ebuild
changeset 242 d9320a7ed591
parent 241 4fa15504c4dd
child 243 a934278e2d2e
equal deleted inserted replaced
241:4fa15504c4dd 242:d9320a7ed591
     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 }