From: switch87 Date: Mon, 7 Sep 2015 07:38:57 +0000 (+0200) Subject: dev-util/webstorm: initial import X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a95d2d7c3d6219977fa85923776aa5ce60c2c1e6;p=gentoo.git dev-util/webstorm: initial import --- diff --git a/dev-util/webstorm/Manifest b/dev-util/webstorm/Manifest new file mode 100644 index 000000000000..d01f2daa6a24 --- /dev/null +++ b/dev-util/webstorm/Manifest @@ -0,0 +1 @@ +DIST WebStorm-10.0.4.tar.gz 130242508 SHA256 f2c6b6fde74513858f204a6fc5d4f39a6b3424edcc1abc435e566ead0929319c SHA512 2523795dc3cc4395549313584e8e597b2782eb2c6ad577d0aae81b72656f00a2cc2f9bbac77f83f9e1f74350aaa762d8b7ba873558a37af316839784e506c6ec WHIRLPOOL a76ad8b92e454e12ce2948c98041a1cbc671848519a3fe329b3f6524b3bc9cb52922755668048b72011f856fadf28386ebd048830558197516029a8594a83d87 diff --git a/dev-util/webstorm/metadata.xml b/dev-util/webstorm/metadata.xml new file mode 100644 index 000000000000..3e44b6f956f2 --- /dev/null +++ b/dev-util/webstorm/metadata.xml @@ -0,0 +1,13 @@ + + + +proxy-maintainers + + gert@gepe-biljarts.be + Gert Pellin + Proxy maintainer. Assign bugs to him. + + +WebStorm is a lightweight yet powerful IDE, perfectly equipped for complex client-side development and server-side development with Node.js + + diff --git a/dev-util/webstorm/webstorm-10.0.4.141.1550.ebuild b/dev-util/webstorm/webstorm-10.0.4.141.1550.ebuild new file mode 100644 index 000000000000..7ca3c6e67847 --- /dev/null +++ b/dev-util/webstorm/webstorm-10.0.4.141.1550.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils versionator + +SLOT="$(get_major_version)" +MY_PV="$(get_version_component_range 4-5)" +MY_PN="WebStorm" + +DESCRIPTION="JavaScript IDE for complex client-side development and server-side development with Node.js" +HOMEPAGE="http://www.jetbrains.com/webstorm" +SRC_URI="http://download.jetbrains.com/${PN}/${MY_PN}-$(get_version_component_range 1-3).tar.gz" + +LICENSE="WebStorm WebStorm_Academic WebStorm_Classroom WebStorm_OpenSource WebStorm_personal" +IUSE="" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=virtual/jdk-1.7" +S=${WORKDIR}/${PN}-${MY_PV} + +src_install() { + local dir="/opt/${PN}" + + insinto "${dir}" + doins -r . + fperms 755 ${dir}/bin/{${PN}.sh,fsnotifier{,64}} + + make_wrapper "${PN}" "${dir}/bin/${PN}.sh" +}