| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/x11-misc/winswitch/winswitch-0.12.14.ebuild,v 1.1 2012/06/22 07:32:32 xmw Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
SUPPORT_PYTHON_ABIS="1"
|
| 8 |
PYTHON_DEPEND="2"
|
| 9 |
RESTRICT_PYTHON_ABIS="2.4 3.*"
|
| 10 |
|
| 11 |
inherit python distutils
|
| 12 |
|
| 13 |
DESCRIPTION="client server tool to start and control virtual desktops"
|
| 14 |
HOMEPAGE="http://winswitch.org"
|
| 15 |
SRC_URI="http://winswitch.org/src/${P}.src.tar.bz2"
|
| 16 |
|
| 17 |
LICENSE="GPL-3"
|
| 18 |
SLOT="0"
|
| 19 |
KEYWORDS="~amd64 ~x86"
|
| 20 |
IUSE=""
|
| 21 |
|
| 22 |
RDEPEND="dev-python/gst-python
|
| 23 |
dev-python/imaging
|
| 24 |
dev-python/netifaces
|
| 25 |
dev-python/notify-python
|
| 26 |
dev-python/pycrypto
|
| 27 |
dev-python/pygobject:3
|
| 28 |
dev-python/pygtk
|
| 29 |
dev-python/twisted
|
| 30 |
dev-python/twisted-conch
|
| 31 |
media-gfx/xloadimage
|
| 32 |
x11-misc/devilspie"
|
| 33 |
DEPEND=""
|
| 34 |
|
| 35 |
src_prepare() {
|
| 36 |
einfo "Remove bundled Vash"
|
| 37 |
rm -r skel/share/Vash || die
|
| 38 |
|
| 39 |
python_convert_shebangs -r 2 skel
|
| 40 |
}
|
| 41 |
|
| 42 |
pkg_postinst() {
|
| 43 |
elog "You might want to install following packages for additional protocol functionality"
|
| 44 |
elog " net-misc/tigervnc[?server]"
|
| 45 |
elog " x11-wm/xpra[?server]"
|
| 46 |
elog " || ( net-misc/nxclient net-misc/nx ) "
|
| 47 |
elog "and net-dns/avahi[python] for automatic server discovery"
|
| 48 |
}
|