diff options
author | Mike Pagano <mpagano@gentoo.org> | 2020-05-13 13:50:37 -0400 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2020-05-13 13:50:37 -0400 |
commit | 9779b0eeae045051e4aab486b7eaf680fbe18081 (patch) | |
tree | e1551d4812c4865062b3b709f2275969c271bf81 /dev-util | |
parent | dev-util/gtk-doc: stable 1.32-r1 for hppa, bug #717144 (diff) | |
download | gentoo-9779b0eeae045051e4aab486b7eaf680fbe18081.tar.gz gentoo-9779b0eeae045051e4aab486b7eaf680fbe18081.tar.bz2 gentoo-9779b0eeae045051e4aab486b7eaf680fbe18081.zip |
dev-util/idea-community: Fix unpack error for !jbr11
Closes: https://bugs.gentoo.org/721404
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Mike Pagano <mpagano@gentoo.org>
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/idea-community/idea-community-2020.1.1.201.7223.91-r1.ebuild | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/dev-util/idea-community/idea-community-2020.1.1.201.7223.91-r1.ebuild b/dev-util/idea-community/idea-community-2020.1.1.201.7223.91-r1.ebuild index 1dc6179a1a3a..d75f70853f1a 100644 --- a/dev-util/idea-community/idea-community-2020.1.1.201.7223.91-r1.ebuild +++ b/dev-util/idea-community/idea-community-2020.1.1.201.7223.91-r1.ebuild @@ -61,12 +61,8 @@ QA_PREBUILT="opt/${PN}-${MY_PV}/*" # jbr11 binary doesn't unpack nicely into a single folder src_unpack() { - if use !jbr11 ; then - default_src_unpack - else - cd "${WORKDIR}" - unpack ${MY_PN}IC-${PV_STRING}.tar.gz - cd "${S}" + default_src_unpack + if use jbr11 ; then mkdir jre64 && cd jre64 && unpack jbr-${JRE11_BASE}-linux-x64-b${JRE11_VER}.tar.gz fi } |