# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 PYTHON_COMPAT=( python3_{8..9} ) PYTHON_REQ_USE="threads(+)" inherit bash-completion-r1 flag-o-matic pax-utils python-any-r1 toolchain-funcs xdg-utils DESCRIPTION="A JavaScript runtime built on Chrome's V8 JavaScript engine" HOMEPAGE="https://nodejs.org/" SRC_URI=" https://nodejs.org/dist/v${PV}/node-v${PV}.tar.xz " LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" SLOT="0/$(ver_cut 1)" KEYWORDS="arm64 ppc64 x86" IUSE="cpu_flags_x86_sse2 debug doc icu inspector +npm +snapshot +ssl +system-ssl systemtap test" REQUIRED_USE=" inspector? ( icu ssl ) npm? ( ssl ) system-ssl? ( ssl ) " RDEPEND=" >=app-arch/brotli-1.0.9:= >=dev-libs/libuv-1.39.0:= >=net-dns/c-ares-1.16.0:= >=net-libs/http-parser-2.9.3:= >=net-libs/nghttp2-1.40.0:= sys-libs/zlib icu? ( >=dev-libs/icu-64.2:= ) system-ssl? ( >=dev-libs/openssl-1.1.1:0= "${tmp_npm_completion_file}" newbashcomp "${tmp_npm_completion_file}" npm sed -i -e "s|'${ED}/etc'|'/etc'|g" "${ED}/${npm_config}" || die # Move man pages doman "${LIBDIR}"/node_modules/npm/man/man{1,5,7}/* # Clean up rm "${LIBDIR}"/node_modules/npm/{.mailmap,.npmignore,Makefile} || die rm -rf "${LIBDIR}"/node_modules/npm/{doc,html,man} || die local find_exp="-or -name" local find_name=() for match in "AUTHORS*" "CHANGELOG*" "CONTRIBUT*" "README*" \ ".travis.yml" ".eslint*" ".wercker.yml" ".npmignore" \ "*.md" "*.markdown" "*.bat" "*.cmd"; do find_name+=( ${find_exp} "${match}" ) done # Remove various development and/or inappropriate files and # useless docs of dependend packages. find "${LIBDIR}"/node_modules \ \( -type d -name examples \) -or \( -type f \( \ -iname "LICEN?E*" \ "${find_name[@]}" \ \) \) -exec rm -rf "{}" \; fi mv "${ED}"/usr/share/doc/node "${ED}"/usr/share/doc/${PF} || die } src_test() { out/${BUILDTYPE}/cctest || die "${PYTHON}" tools/test.py --mode=${BUILDTYPE,,} -J message parallel sequential || die } pkg_postinst() { elog "The global npm config lives in /etc/npm. This deviates slightly" elog "from upstream which otherwise would have it live in /usr/etc/." elog "" elog "Protip: When using node-gyp to install native modules, you can" elog "avoid having to download extras by doing the following:" elog "$ node-gyp --nodedir /usr/include/node " }