blob: 2fd003d766aa6fa57d14dff780ac502d3680eab3 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop wrapper
MY_PV=$(ver_cut 1-2)
DESCRIPTION="A complete toolset for web, mobile and enterprise development"
HOMEPAGE="https://www.jetbrains.com/idea"
SRC_URI="
amd64? ( https://download.jetbrains.com/idea/ideaIC-${MY_PV}.tar.gz -> ${P}-amd64.tar.gz )
arm64? ( https://download.jetbrains.com/idea/ideaIC-${MY_PV}-aarch64.tar.gz -> ${P}-aarch64.tar.gz )
"
S="${WORKDIR}/idea-IC-${PV}"
LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 CC-BY-2.5 CDDL-1.1
codehaus-classworlds CPL-1.0 EPL-1.0 EPL-2.0
GPL-2 GPL-2-with-classpath-exception ISC
JDOM LGPL-2.1 LGPL-2.1+ LGPL-3-with-linking-exception MIT
MPL-1.0 MPL-1.1 OFL ZLIB"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
DEPEND="
|| (
>=dev-java/openjdk-17.0.8.1_p1:17
>=dev-java/openjdk-bin-17.0.8.1_p1:17
)"
RDEPEND="${DEPEND}
sys-libs/glibc
media-libs/harfbuzz
dev-java/jansi-native
dev-libs/libdbusmenu"
BDEPEND="dev-util/patchelf"
RESTRICT="splitdebug"
QA_PREBUILT="opt/${PN}/*"
src_unpack() {
default_src_unpack
if [ ! -d "$S" ]; then
einfo "Renaming source directory to predictable name..."
mv $(ls "${WORKDIR}") "idea-IC-${PV}" || die
fi
}
src_prepare() {
default_src_prepare
if use amd64; then
JRE_DIR=jre64
rm -vf "${S}"/plugins/cwm-plugin/quiche-native/linux-aarch64/libquiche.so
else
JRE_DIR=jre
rm -vf "${S}"/plugins/cwm-plugin/quiche-native/linux-x86-64/libquiche.so
fi
PLUGIN_DIR="${S}/${JRE_DIR}/lib/"
# rm LLDBFrontEnd after licensing questions with Gentoo License Team
rm -vf "${S}"/plugins/Kotlin/bin/linux/LLDBFrontend
rm -vf ${PLUGIN_DIR}/libavplugin*
rm -vf "${S}"/plugins/maven/lib/maven3/lib/jansi-native/*/libjansi*
rm -vrf "${S}"/lib/pty4j-native/linux/ppc64le
rm -vf "${S}"/bin/libdbm64*
rm -vf "${S}"/lib/pty4j-native/linux/mips64el/libpty.so
if [[ -d "${S}"/"${JRE_DIR}" ]]; then
for file in "${PLUGIN_DIR}"/{libfxplugins.so,libjfxmedia.so}
do
if [[ -f "$file" ]]; then
patchelf --set-rpath '$ORIGIN' $file || die
fi
done
fi
rm -vf "${S}"/lib/pty4j-native/linux/x86-64/libpty.so
sed -i \
-e "\$a\\\\" \
-e "\$a#-----------------------------------------------------------------------" \
-e "\$a# Disable automatic updates as these are handled through Gentoo's" \
-e "\$a# package manager. See bug #704494" \
-e "\$a#-----------------------------------------------------------------------" \
-e "\$aide.no.platform.update=Gentoo" bin/idea.properties
eapply_user
}
src_install() {
local dir="/opt/${PN}"
local dst="${D}${dir}"
insinto "${dir}"
doins -r *
fperms 755 "${dir}"/bin/{format.sh,idea.sh,inspect.sh,restarter,fsnotifier}
if use amd64; then
JRE_DIR=jre64
else
JRE_DIR=jre
fi
JRE_BINARIES="jaotc java javapackager jjs jrunscript keytool pack200 rmid rmiregistry unpack200"
if [[ -d ${JRE_DIR} ]]; then
for jrebin in $JRE_BINARIES; do
fperms 755 "${dir}"/"${JRE_DIR}"/bin/"${jrebin}"
done
fi
# bundled script is always lowercase, and doesn't have -ultimate, -professional suffix.
local bundled_script_name="${PN%-*}.sh"
make_wrapper "${PN}" "${dir}/bin/$bundled_script_name" || die
local pngfile="$(find ${dst}/bin -maxdepth 1 -iname '*.png')"
newicon $pngfile "${PN}.png" || die "we died"
make_desktop_entry "${PN}" "IntelliJ Idea Community Edition" "${PN}" "Development;IDE;"
# recommended by: https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit
mkdir -p "${D}/etc/sysctl.d/" || die
echo "fs.inotify.max_user_watches = 524288" > "${D}/etc/sysctl.d/30-idea-inotify-watches.conf" || die
# remove bundled harfbuzz
rm -f "${D}"/lib/libharfbuzz.so || die "Unable to remove bundled harfbuzz"
# remove bundled java
rm -r ${dst}/jbr || die "Unable to remove bundled java"
}
|