summaryrefslogtreecommitdiff
blob: bf1a73fd954df24a1f8f24e35a0f4c6224b9a32a (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
33
34
35
36
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI="3"

inherit python multilib

SRC_URI="http://dev.gentoo.org/~lxnay/${PN}/${P}.tar.bz2"

KEYWORDS="~x86 ~amd64"
DESCRIPTION="Build and operate a electronic whiteboard Wiimote and IR Pen"
HOMEPAGE="http://github.com/pnegre/python-whiteboard"

LICENSE="GPL-3"
SLOT="0"
IUSE=""

RDEPEND="app-misc/cwiid[python]
	dev-python/numpy
	dev-python/pybluez
	dev-python/PyQt4
	dev-python/python-xlib"
DEPEND="${RDEPEND}"

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
}

pkg_postinst() {
	python_mod_optimize "/usr/$(get_libdir)/${PN}"
}

pkg_postrm() {
	python_mod_cleanup "/usr/$(get_libdir)/${PN}"
}