commit:     7496b4239b8e9b897c312ed6ed041e3efd1a5779
Author:     Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 14 17:14:19 2022 +0000
Commit:     Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Wed Sep 14 17:14:19 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7496b423

dev-util/idea-community: add 2022.2.2

Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>

 dev-util/idea-community/Manifest                   |   1 +
 .../idea-community/idea-community-2022.2.2.ebuild  | 133 +++++++++++++++++++++
 2 files changed, 134 insertions(+)

diff --git a/dev-util/idea-community/Manifest b/dev-util/idea-community/Manifest
index 8bf5489257d2..a352fcc9fab8 100644
--- a/dev-util/idea-community/Manifest
+++ b/dev-util/idea-community/Manifest
@@ -1,2 +1,3 @@
+DIST idea-community-2022.2.2.tar.gz 862373757 BLAKE2B 
ac9c22831397f18099d42a3f4a75f7a8dcebc851e73ed08398821eb481b629cb446e8e60a14e5bcec76e72f75197e9a9ee887141e61bc0bb9953d15771bd7e0f
 SHA512 
4ce495eed028f9d08187d1b1fb0760864511e573aee2d1ddc5502abcc494761e15a9a5227172c8d21153f8ab7107a01948d053803b98de09dcf82ead8e1cb819
 DIST ideaIC-2.1.222.3739.54.tar.gz 683283861 BLAKE2B 
00c61adc4518c83197ff5c7fd125824feff2e733359114cb1a39cad6dd9e7102263a4c1a6d0d0f125e47dc86ac4bf4bd45f139718529102b9de33908de86d8b5
 SHA512 
e87e8b686e9e3bdf2d7f7c93e476a5cbd9460bab61872abc7b8d61139a1580a9f6b0e30e4c302e0adb3b1cd06176bc3bc13fee8ee1fe33f87606756fd8fc677e
 DIST jbr-11_0_13-linux-x64-b1751.21.tar.gz 295860296 BLAKE2B 
cd6edd69fa34896a388ec929d5f53ebc1f078ceebbed8d4e414a19eb91e004e8f53cbae95c2e3b191c39aa89b307bc8a1854b8a86ca2129eb3997c62705563bf
 SHA512 
7d97e520b67197718951609370e90a1e08ef1daca1433373ff6e34fc9c6f4f005478b142190ef5dab46f14e85440f9daca5c662348bbca5207fc2f8d7892361f

diff --git a/dev-util/idea-community/idea-community-2022.2.2.ebuild 
b/dev-util/idea-community/idea-community-2022.2.2.ebuild
new file mode 100644
index 000000000000..e19c8ddeb575
--- /dev/null
+++ b/dev-util/idea-community/idea-community-2022.2.2.ebuild
@@ -0,0 +1,133 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit desktop wrapper
+
+DESCRIPTION="A complete toolset for web, mobile and enterprise development"
+HOMEPAGE="https://www.jetbrains.com/idea";
+SRC_URI="https://download.jetbrains.com/idea/ideaIC-2022.2.2.tar.gz -> 
idea-community-2022.2.2.tar.gz"
+
+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.3_p7-r1:17
+               >=dev-java/openjdk-bin-17.0.3_p7:17
+       )"
+
+RDEPEND="${DEPEND}
+       sys-libs/glibc
+       media-libs/harfbuzz
+       dev-java/jansi-native
+       dev-libs/libdbusmenu"
+
+BDEPEND="dev-util/patchelf"
+RESTRICT="splitdebug"
+S="${WORKDIR}/idea-IC-${PV}"
+
+QA_PREBUILT="opt/${PN}/*"
+
+PATCHES=(
+       "${FILESDIR}/${PN}-jdk.patch"
+)
+
+post_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
+       else
+               JRE_DIR=jre
+       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
+       rm -vf 
"${S}"/plugins/cwm-plugin/quiche-native/linux-aarch64/libquiche.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
+
+       if use arm64; then
+               patchelf --replace-needed libc.so libc.so.6 
"${S}"/lib/pty4j-native/linux/aarch64/libpty.so || die "Unable to patch libpty 
for libc"
+       else
+               rm -vf "${S}"/lib/pty4j-native/linux/{aarch64,arm,x86}/libpty.so
+       fi
+
+       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,restart.py,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
+
+       local bundled_script_name="${PN%-*}.sh" # bundled script is always 
lowercase, and doesn't have -ultimate, -professional suffix.
+       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
+
+       # remove bundled java
+       rm -rf "$dst{jbr,jre{64}}"
+}

Reply via email to