commit: d6325e7ef561e4681ce0ba7bf4703e6529acd0d6 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org> AuthorDate: Tue Dec 10 23:05:31 2024 +0000 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org> CommitDate: Tue Dec 10 23:05:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6325e7e
dev-util/idea-community: Fix make_desktop_entry Closes: https://bugs.gentoo.org/946227 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org> dev-util/idea-community/idea-community-2024.3.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dev-util/idea-community/idea-community-2024.3.1.ebuild b/dev-util/idea-community/idea-community-2024.3.1.ebuild index 3dbdf9c3a743..be13c1703484 100644 --- a/dev-util/idea-community/idea-community-2024.3.1.ebuild +++ b/dev-util/idea-community/idea-community-2024.3.1.ebuild @@ -161,13 +161,13 @@ src_install() { newicon $pngfile "${PN}.png" || die "we died" if use experimental; then - make_desktop_entry "/opt/idea-community/bin/idea -Dawt.toolkit.name=WLToolkit" + make_desktop_entry "/opt/idea-community/bin/idea -Dawt.toolkit.name=WLToolkit" \ "IntelliJ Idea Community Edition" "${PN}" "Development;IDE;" ewarn "You have enabled the experimental USE flag." ewarn "This is a Wayland support preview. Expect instability." else - make_desktop_entry "/opt/idea-community/bin/idea" + make_desktop_entry "/opt/idea-community/bin/idea" \ "IntelliJ Idea Community Edition" "${PN}" "Development;IDE;" fi
