mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-19 07:49:00 -04:00
100 lines
2.8 KiB
Bash
100 lines
2.8 KiB
Bash
# Copyright 2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit desktop wrapper toolchain-funcs
|
|
|
|
DESCRIPTION="An integrated development environment for JavaScript and related technologies."
|
|
HOMEPAGE="https://www.jetbrains.com/webstorm/"
|
|
SRC_URI="https://download-cdn.jetbrains.com/${PN}/WebStorm-${PV}.tar.gz"
|
|
|
|
LICENSE="|| ( JetBrains-business JetBrains-classroom JetBrains-educational JetBrains-individual )
|
|
Apache-2.0
|
|
BSD
|
|
CC0-1.0
|
|
CDDL
|
|
CDDL-1.1
|
|
EPL-1.0
|
|
GPL-2
|
|
GPL-2-with-classpath-exception
|
|
ISC
|
|
LGPL-2.1
|
|
LGPL-3
|
|
MIT
|
|
MPL-1.1
|
|
OFL-1.1
|
|
ZLIB
|
|
"
|
|
SLOT="0/2024"
|
|
KEYWORDS="~amd64"
|
|
IUSE="wayland"
|
|
|
|
RESTRICT="bindist mirror"
|
|
QA_PREBUILT="opt/${P}/*"
|
|
|
|
BDEPEND="dev-util/debugedit
|
|
dev-util/patchelf
|
|
"
|
|
RDEPEND="
|
|
dev-libs/wayland
|
|
sys-libs/pam
|
|
sys-libs/zlib
|
|
sys-process/audit
|
|
"
|
|
|
|
src_unpack() {
|
|
# WebStorm unarchived directory is in format WebStorm-xxx.yyy.zzz, not ${P}
|
|
cp "${DISTDIR}"/WebStorm-${PV}.tar.gz "${WORKDIR}"/ || die
|
|
mkdir -p "${P}"
|
|
tar --strip-components=1 -xzf "WebStorm-${PV}".tar.gz -C "${P}" || die
|
|
}
|
|
|
|
src_prepare() {
|
|
tc-export OBJCOPY
|
|
default
|
|
|
|
local remove_me=(
|
|
lib/async-profiler/aarch64
|
|
plugins/platform-ijent-impl/ijent-aarch64-unknown-linux-musl-release
|
|
)
|
|
|
|
rm -rv "${remove_me[@]}" || die
|
|
|
|
# removing debug symbols and relocating debug files as per #876295
|
|
# we're escaping all the files that contain $() in their name
|
|
# as they should not be executed
|
|
find . -type f ! -name '*$(*)*' -exec sh -c '
|
|
if file "{}" | grep -qE "ELF (32|64)-bit"; then
|
|
${OBJCOPY} --remove-section .note.gnu.build-id "{}"
|
|
debugedit -b "${EPREFIX}/opt/${PN}" -d "/usr/lib/debug" -i "{}"
|
|
fi
|
|
' \;
|
|
|
|
patchelf --set-rpath '$ORIGIN' "jbr/lib/libjcef.so" || die
|
|
patchelf --set-rpath '$ORIGIN' "jbr/lib/jcef_helper" || die
|
|
|
|
# As per https://blog.jetbrains.com/platform/2024/07/wayland-support-preview-in-2024-2/ for full wayland support
|
|
if use wayland; then
|
|
echo "-Dawt.toolkit.name=WLToolkit" >> bin/webstorm64.vmoptions || die
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
local dir="/opt/${P}"
|
|
|
|
insinto "${dir}"
|
|
doins -r *
|
|
fperms 755 "${dir}"/bin/{"${PN}",fsnotifier,format.sh,inspect.sh,jetbrains_client.sh,ltedit.sh,remote-dev-server,remote-dev-server.sh,restarter}
|
|
fperms 755 "${dir}"/jbr/bin/{java,javac,javadoc,jcmd,jdb,jfr,jhsdb,jinfo,jmap,jps,jrunscript,jstack,jstat,jwebserver,keytool,rmiregistry,serialver}
|
|
fperms 755 "${dir}"/jbr/lib/{chrome-sandbox,jcef_helper,jexec,jspawnhelper}
|
|
|
|
make_wrapper "${PN}" "${dir}"/bin/"${PN}"
|
|
newicon bin/"${PN}".svg "${PN}".svg
|
|
make_desktop_entry "${PN}" "WebStorm ${PV}" "${PN}" "Development;IDE;"
|
|
|
|
# recommended by: https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit
|
|
insinto /usr/lib/sysctl.d
|
|
newins - 30-"${PN}"-inotify-watches.conf <<<"fs.inotify.max_user_watches = 524288"
|
|
}
|