# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 inherit pax-utils toolchain-funcs git-r3 DESCRIPTION="Just-In-Time Compiler for the Lua programming language" HOMEPAGE="https://luajit.org/" EGIT_REPO_URI="https://github.com/${PN}/${PN}.git" EGIT_BRANCH="v2.1" LICENSE="MIT" # this should probably be pkgmoved to 2.0 for sake of consistency. SLOT="2" KEYWORDS="" IUSE="lua52compat static-libs" _emake() { emake \ Q= \ PREFIX="${EPREFIX}/usr" \ MULTILIB="$(get_libdir)" \ DESTDIR="${D}" \ CFLAGS="" \ LDFLAGS="" \ HOST_CC="$(tc-getBUILD_CC)" \ HOST_CFLAGS="${BUILD_CPPFLAGS} ${BUILD_CFLAGS}" \ HOST_LDFLAGS="${BUILD_LDFLAGS}" \ STATIC_CC="$(tc-getCC)" \ DYNAMIC_CC="$(tc-getCC) -fPIC" \ TARGET_LD="$(tc-getCC)" \ TARGET_CFLAGS="${CPPFLAGS} ${CFLAGS}" \ TARGET_LDFLAGS="${LDFLAGS}" \ TARGET_AR="$(tc-getAR) rcus" \ BUILDMODE="$(usex static-libs mixed dynamic)" \ TARGET_STRIP="true" \ INSTALL_LIB="${ED}/usr/$(get_libdir)" \ "$@" } src_compile() { tc-export_build_env _emake XCFLAGS="$(usex lua52compat "-DLUAJIT_ENABLE_LUA52COMPAT" "")" } src_install() { _emake install dosym luajit-2.1.1693350652 /usr/bin/luajit pax-mark m "${ED}/usr/bin/luajit-${MY_PV}" HTML_DOCS="doc/." einstalldocs }