blob: 7107602f9601e654e80212d7c6a3ad60a43a95ef (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit eutils versionator
SLOT="$(get_major_version)"
RDEPEND=">=virtual/jdk-1.6"
MY_PV="$(get_version_component_range 1-3)"
MY_PN="idea"
MY_PA="ultimate"
MY_PAS="IU"
MY_BUILD="133.193"
#MY_BUILD="$(delete_all_version_separators)"
#MY_BUILD=${MY_BUILD/pre/.}
RESTRICT="strip"
QA_TEXTRELS="opt/${P}/bin/libbreakgen.so"
DESCRIPTION="IntelliJ IDEA is an intelligent Java IDE"
HOMEPAGE="http://jetbrains.com/idea/"
#SRC_URI="http://download.jetbrains.com/${MY_PN}/${MY_PN}${MY_PAS}-$(get_version_component_range 1-3).tar.gz"
#SRC_URI="http://download.jetbrains.com/${MY_PN}/${MY_PN}${MY_PAS}-${MY_BUILD}.tar.gz"
SRC_URI="http://download.jetbrains.com/${MY_PN}/ideaIU-13.tar.gz"
LICENSE="IntelliJ-IDEA"
IUSE=""
KEYWORDS="~x86 ~amd64"
S="${WORKDIR}/${MY_PN}-${MY_PAS}-${MY_BUILD}"
src_prepare() {
epatch "${FILESDIR}"/idea-run.patch
}
src_install() {
local dir="/opt/${MY_PN}${MY_PAS}${SLOT}"
insinto "${dir}"
doins -r *
fperms 755 "${dir}/bin/${MY_PN}.sh"
fperms 755 "${dir}/bin/fsnotifier"
fperms 755 "${dir}/bin/fsnotifier64"
local exe=${MY_PN}${MY_PAS}-${SLOT}
local icon=${exe}.png
newicon "${S}/bin/${MY_PN}.png" ${icon}
dodir /usr/bin
make_wrapper "$exe" "/opt/${MY_PN}${MY_PAS}${SLOT}/bin/${MY_PN}.sh"
make_desktop_entry ${exe} "IntelliJ IDEA ${PV} ${MY_PA}" /usr/share/pixmaps/${icon} "Development;IDE"
insinto /etc/intellij-idea
doins bin/idea.vmoptions || die
}
|