commit: 951de94124539904d9aa498d89ae8f0daf8aa508 Author: Florian Schmaus <flow <AT> gentoo <DOT> org> AuthorDate: Tue Nov 14 11:36:15 2023 +0000 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org> CommitDate: Tue Nov 14 11:38:42 2023 +0000 URL: https://gitweb.gentoo.org/proj/java-config.git/commit/?id=951de941
gjl: obtain library directory via LIBDIR Newer versions of java-config-2.eclass will record LIBDIR in package.env, which we obtain in gjl and use to set java.library.path when invoking the Java VM. Bug: https://bugs.gentoo.org/917326 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org> src/gjl | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/gjl b/src/gjl index 1639ef2..1baa899 100755 --- a/src/gjl +++ b/src/gjl @@ -47,7 +47,15 @@ def get_args(pkg): envlp = os.getenv('LD_LIBRARY_PATH') envjlp = os.getenv('JAVA_LIBRARY_PATH') - newlibrary = manager.eprefix + '/lib:'+ manager.eprefix + '/usr/lib' + libdir = pkg.query('LIBDIR') + if libdir: + newlibrary = manager.eprefix + '/' + libdir + else: + # Old, obsolete fallback path for packages that where + # installed before java-utils-2.eclass recorded LIBDIR. + # Bug #917326. + newlibrary = manager.eprefix + '/lib:'+ manager.eprefix + '/usr/lib' + if library: newlibrary = ':'.join((library, newlibrary)) if envjlp:
