diff options
Diffstat (limited to 'www-apps/novnc/novnc-0.5.ebuild')
-rw-r--r-- | www-apps/novnc/novnc-0.5.ebuild | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/www-apps/novnc/novnc-0.5.ebuild b/www-apps/novnc/novnc-0.5.ebuild new file mode 100644 index 000000000000..240136147726 --- /dev/null +++ b/www-apps/novnc/novnc-0.5.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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 -> ${P}.tar.gz" +S="${WORKDIR}/noVNC-${PV}" + +LICENSE="MPL-2.0" +SLOT="0" +KEYWORDS="amd64 x86 ~amd64-linux ~arm-linux ~x86-linux" +IUSE="nova" + +DEPEND="" +RDEPEND="${DEPEND} + nova? ( dev-python/websockify + sys-cluster/nova + dev-python/matplotlib + dev-python/numpy )" + +src_prepare() { + # Use unbundled websockify. + sed 's:${HERE}/websockify:websockify:' -i utils/launch.sh || die +} + +src_install() { + dodir /usr/share/novnc + insinto /usr/share/novnc + doins -r *.html images include + dodoc README.md + exeinto /usr/share/novnc/utils + doexe utils/launch.sh + + 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 +} |