blob: 40c6e4be26fb48eb7bf9237b0a909ca15acf7bbf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=8
inherit desktop
SLOT="$(ver_cut 1)"
RDEPEND=">=virtual/jdk-1.7"
MY_PN="RubyMine"
MY_PV="$(ver_cut 1-3)"
RESTRICT="strip"
QA_TEXTRELS="opt/${P}/bin/libbreakgen.so"
DESCRIPTION="The most intelligent Ruby and Rails IDE"
HOMEPAGE="http://jetbrains.com/ruby/"
SRC_URI="http://download.jetbrains.com/ruby/${MY_PN}-${MY_PV}.tar.gz"
LICENSE="all-rights-reserved"
IUSE="+jbr17"
KEYWORDS="~amd64 ~x86"
S=${WORKDIR}/${MY_PN}-${MY_PV}
src_prepare() {
# Remove non-linux libs
rm -vrf "${S}"/lib/libpty/macosx
rm -vrf "${S}"/lib/libpty/win
if use !jbr17; then
rm -vrf "${S}"/jbr
fi
# Java config
#if use amd64; then local SUFFIX="64"; fi
#sed -i 's/lcd/on/' "${S}/bin/${PN}${SUFFIX}.vmoptions"
#echo "-Dswing.aatext=true" >> "${S}/bin/${PN}${SUFFIX}.vmoptions"
eapply_user
}
src_install() {
local dir="/opt/${P}"
local exe="${PN}-${SLOT}"
insinto "${dir}"
doins -r *
fperms 755 "${dir}/bin/"{${PN}.sh,rinspect.sh,fsnotifier,repair,format.sh,ltedit.sh,restart.py}
if use jbr17; then
fperms -R 755 "${dir}"/jbr/bin
fi
newicon "bin/${PN}.png" "${exe}.png"
make_wrapper "${exe}" "/opt/${P}/bin/${PN}.sh"
make_desktop_entry ${exe} "RubyMine ${MY_PV}" "${exe}" "Development;IDE"
}
|