You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/www-apps/novnc/novnc-0.4.ebuild

40 lines
938 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/novnc/novnc-0.4.ebuild,v 1.6 2013/10/30 05:39:08 patrick Exp $
EAPI=5
DESCRIPTION="noVNC is a VNC client implemented using HTML5 technologies."
HOMEPAGE="http://kanaka.github.com/noVNC/"
SRC_URI="https://github.com/kanaka/noVNC/archive/v${PV}.tar.gz"
S="${WORKDIR}/noVNC-${PV}"
LICENSE="MPL-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="nova"
DEPEND=""
RDEPEND="${DEPEND}
nova? ( dev-python/websockify
sys-cluster/nova
dev-python/matplotlib
dev-python/numpy )"
src_install() {
dodir /usr/share/novnc
insinto /usr/share/novnc
doins -r *.html images include
dodoc README.md
if use nova; then
dobin utils/nova-novncproxy
newconfd "${FILESDIR}/noVNC.confd" nova-noVNC
newinitd "${FILESDIR}/noVNC.initd" nova-noVNC
diropts -m 0750
dodir /var/log/noVNC
fi
}