diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-01-21 03:58:37 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-01-21 03:58:37 +0000 |
commit | 38aae7e3114d1f1f12cd6ebf9936c176fc46514b (patch) | |
tree | 5eef9a4db5ac608806d868404631737ffe0e6f8c /net-libs/nodejs | |
parent | Disable search of libtool files (like ltdl.la) as well as -I/-L build paths #... (diff) | |
download | gentoo-2-38aae7e3114d1f1f12cd6ebf9936c176fc46514b.tar.gz gentoo-2-38aae7e3114d1f1f12cd6ebf9936c176fc46514b.tar.bz2 gentoo-2-38aae7e3114d1f1f12cd6ebf9936c176fc46514b.zip |
Bump
(Portage version: 2.2.0_alpha154/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'net-libs/nodejs')
-rw-r--r-- | net-libs/nodejs/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/nodejs/nodejs-0.8.18.ebuild | 73 |
2 files changed, 79 insertions, 1 deletions
diff --git a/net-libs/nodejs/ChangeLog b/net-libs/nodejs/ChangeLog index 5fad611bf64e..17db046a3fa3 100644 --- a/net-libs/nodejs/ChangeLog +++ b/net-libs/nodejs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/nodejs # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v 1.68 2013/01/15 06:31:57 zerochaos Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v 1.69 2013/01/21 03:58:37 patrick Exp $ + +*nodejs-0.8.18 (21 Jan 2013) + + 21 Jan 2013; Patrick Lauer <patrick@gentoo.org> +nodejs-0.8.18.ebuild: + Bump 15 Jan 2013; Rick Farina <zerochaos@gentoo.org> nodejs-0.6.21-r1.ebuild, nodejs-0.8.17.ebuild, nodejs-0.9.3-r1.ebuild: diff --git a/net-libs/nodejs/nodejs-0.8.18.ebuild b/net-libs/nodejs/nodejs-0.8.18.ebuild new file mode 100644 index 000000000000..9c6420b51538 --- /dev/null +++ b/net-libs/nodejs/nodejs-0.8.18.ebuild @@ -0,0 +1,73 @@ +# 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.8.18.ebuild,v 1.1 2013/01/21 03:58:37 patrick Exp $ + +EAPI=5 + +PYTHON_DEPEND="2" + +inherit python eutils multilib pax-utils + +# omgwtf +RESTRICT="test" + +DESCRIPTION="Evented IO for V8 Javascript" +HOMEPAGE="http://nodejs.org/" +SRC_URI="http://nodejs.org/dist/v${PV}/node-v${PV}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86 ~x64-macos" +IUSE="" + +DEPEND=">=dev-lang/v8-3.11.10:= + dev-libs/openssl" +RDEPEND="${DEPEND}" + +S=${WORKDIR}/node-v${PV} + +pkg_setup() { + python_set_active_version 2 + python_pkg_setup +} + +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 + # Hardcoded braindamage extraction helper + #sed -i -e 's:wafdir = join(prefix, "lib", "node"):wafdir = "/lib/node/":' tools/node-waf || die + python_convert_shebangs 2 tools/node-waf || die +} + +src_configure() { + # this is an autotools lookalike confuserator + ./configure --shared-v8 --prefix="${EPREFIX}"/usr --shared-v8-includes="${EPREFIX}"/usr/include --openssl-use-sys --shared-zlib || die +} + +src_compile() { + emake || die +} + +src_install() { + local MYLIB=$(get_libdir) + mkdir -p "${ED}"/usr/include/node + mkdir -p "${ED}"/usr/bin + mkdir -p "${ED}"/usr/"${MYLIB}"/node_modules/npm + mkdir -p "${ED}"/usr/"${MYLIB}"/node + cp 'src/eio-emul.h' 'src/ev-emul.h' 'src/node.h' 'src/node_buffer.h' 'src/node_object_wrap.h' 'src/node_version.h' "${ED}"/usr/include/node || die "Failed to copy stuff" + cp -R deps/uv/include/* "${ED}"/usr/include/node || die "Failed to copy stuff" + cp 'out/Release/node' "${ED}"/usr/bin/node || die "Failed to copy stuff" + cp -R deps/npm/* "${ED}"/usr/"${MYLIB}"/node_modules/npm || die "Failed to copy stuff" + cp -R tools/wafadmin "${ED}"/usr/"${MYLIB}"/node/ || die "Failed to copy stuff" + cp 'tools/node-waf' "${ED}"/usr/bin/ || die "Failed to copy stuff" + + # now add some extra stupid just because we can + # needs to be a symlink because of hardcoded paths ... no es bueno! + dosym /usr/"${MYLIB}"/node_modules/npm/bin/npm-cli.js /usr/bin/npm + pax-mark -m "${ED}"/usr/bin/node +} + +src_test() { + emake test || die +} |