diff options
Diffstat (limited to 'net-libs/nodejs/nodejs-0.10.21.ebuild')
-rw-r--r-- | net-libs/nodejs/nodejs-0.10.21.ebuild | 68 |
1 files changed, 0 insertions, 68 deletions
diff --git a/net-libs/nodejs/nodejs-0.10.21.ebuild b/net-libs/nodejs/nodejs-0.10.21.ebuild deleted file mode 100644 index e8f468706861..000000000000 --- a/net-libs/nodejs/nodejs-0.10.21.ebuild +++ /dev/null @@ -1,68 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/nodejs-0.10.21.ebuild,v 1.3 2013/10/21 17:49:08 ago Exp $ - -EAPI=5 - -# has known failures. sigh. -RESTRICT="test" - -PYTHON_COMPAT=( python2_{6,7} ) - -inherit python-any-r1 pax-utils - -DESCRIPTION="Evented IO for V8 Javascript" -HOMEPAGE="http://nodejs.org/" -SRC_URI="http://nodejs.org/dist/v${PV}/node-v${PV}.tar.gz" - -LICENSE="Apache-1.1 Apache-2.0 BSD BSD-2 MIT" -SLOT="0" -KEYWORDS="amd64 ~arm x86 ~x64-macos" -IUSE="+npm +snapshot" - -RDEPEND="dev-libs/openssl" -DEPEND="${RDEPEND}" - -S=${WORKDIR}/node-v${PV} - -src_prepare() { - # fix compilation on Darwin - # http://code.google.com/p/gyp/issues/detail?id=260 - sed -i -e "/append('-arch/d" tools/gyp/pylib/gyp/xcode_emulation.py || die - - # make sure we use python2.* while using gyp - sed -i -e "s/python/python2/" deps/npm/node_modules/node-gyp/gyp/gyp || die - - # less verbose install output (stating the same as portage, basically) - sed -i -e "/print/d" tools/install.py || die -} - -src_configure() { - local myconf="" - ! use npm && myconf="--without-npm" - ! use snapshot && myconf="${myconf} --without-snapshot" - - "${PYTHON}" configure --prefix="${EPREFIX}"/usr \ - --openssl-use-sys --shared-zlib --without-dtrace ${myconf} || die -} - -src_compile() { - emake out/Makefile - emake -C out mksnapshot - pax-mark m out/Release/mksnapshot - emake -} - -src_install() { - "${PYTHON}" tools/install.py install "${D}" - - use npm && dohtml -r "${ED}"/usr/lib/node_modules/npm/html/* - rm -rf "${ED}"/usr/lib/node_modules/npm/doc "${ED}"/usr/lib/node_modules/npm/html - rm -rf "${ED}"/usr/lib/dtrace - - pax-mark -m "${ED}"/usr/bin/node -} - -src_test() { - "${PYTHON}" tools/test.py --mode=release simple message || die -} |