diff options
author | 2018-11-25 16:51:54 -0500 | |
---|---|---|
committer | 2018-11-25 16:51:54 -0500 | |
commit | 57fc5aa90c123f61011a95bf19c5f6df4ae11120 (patch) | |
tree | 26247ce4641ecb8cb8cf189da2fb75bb7fe43f12 /dev-ruby/em-websocket/em-websocket-0.5.1.ebuild | |
parent | games-emulation/dolphin: enable USE=egl unconditionally (diff) | |
download | gentoo-57fc5aa90c123f61011a95bf19c5f6df4ae11120.tar.gz gentoo-57fc5aa90c123f61011a95bf19c5f6df4ae11120.tar.bz2 gentoo-57fc5aa90c123f61011a95bf19c5f6df4ae11120.zip |
dev-ruby/em-websocket: new package. supports www-apps/jekyll bump
Signed-off-by: Aaron Bauman <bman@gentoo.org>
Diffstat (limited to 'dev-ruby/em-websocket/em-websocket-0.5.1.ebuild')
-rw-r--r-- | dev-ruby/em-websocket/em-websocket-0.5.1.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-ruby/em-websocket/em-websocket-0.5.1.ebuild b/dev-ruby/em-websocket/em-websocket-0.5.1.ebuild new file mode 100644 index 000000000000..9e941fc5e43c --- /dev/null +++ b/dev-ruby/em-websocket/em-websocket-0.5.1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +USE_RUBY="ruby23 ruby24 ruby25" + +RUBY_FAKEGEM_RECIPE_DOC="rdoc" +RUBY_FAKEGEM_DOCDIR="rdoc" +RUBY_FAKEGEM_EXTRADOC="README.md" + +inherit ruby-fakegem + +DESCRIPTION="EventMachine based WebSocket server" +HOMEPAGE="https://rubygems.org/gems/em-websocket" +SRC_URI="https://github.com/igrigorik/em-websocket/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris" +IUSE="" + +DEPEND="" +RDEPEND="" + +ruby_add_rdepend " + >=dev-ruby/eventmachine-0.5 + >=dev-ruby/http_parser_rb-0.6.0 +" + +all_ruby_install() { + all_fakegem_install + + insinto /usr/share/doc/${PF}/ + doins -r examples || die "Failed to install examples" +} |