blob: 0e0c29e433f33ab5db98501b04bbaf6b8d4ceb43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pynotifier/pynotifier-0.7.0-r1.ebuild,v 1.5 2011/01/12 20:57:08 arfrever Exp $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.* *-jython"
inherit distutils
DESCRIPTION="pyNotifier provides an implementation of a notifier/event scheduler."
HOMEPAGE="http://www.bitkipper.net/"
SRC_URI="http://www.bitkipper.net/bytes/debian/dists/unstable/source/${PN}_${PV}.orig.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="qt4 gtk"
DEPEND=""
RDEPEND="dev-python/twisted
gtk? ( dev-python/pygobject )
qt4? ( dev-python/PyQt4[X] )"
PYTHON_MODNAME="notifier"
src_prepare() {
distutils_src_prepare
use gtk || rm notifier/nf_gtk.py
use qt4 || rm notifier/nf_qt.py
}
|