diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-04-23 09:08:23 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-04-23 09:08:23 +0000 |
commit | ac44e11d015c2caa4aa2e1e1c4863a74440b124a (patch) | |
tree | f2f054ddfb56522ce7dc0ebd156ebd7cc32f78b7 /net-libs | |
parent | Marked stable on AMD64 based on arch testing by Maurizio "k01" Camisaschi & E... (diff) | |
download | gentoo-2-ac44e11d015c2caa4aa2e1e1c4863a74440b124a.tar.gz gentoo-2-ac44e11d015c2caa4aa2e1e1c4863a74440b124a.tar.bz2 gentoo-2-ac44e11d015c2caa4aa2e1e1c4863a74440b124a.zip |
Bump
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/nodejs/ChangeLog | 7 | ||||
-rw-r--r-- | net-libs/nodejs/nodejs-0.7.8.ebuild | 71 |
2 files changed, 77 insertions, 1 deletions
diff --git a/net-libs/nodejs/ChangeLog b/net-libs/nodejs/ChangeLog index 5cbaef931220..bb2ce0514aa8 100644 --- a/net-libs/nodejs/ChangeLog +++ b/net-libs/nodejs/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/nodejs # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v 1.37 2012/04/22 15:01:32 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/ChangeLog,v 1.38 2012/04/23 09:08:23 patrick Exp $ + +*nodejs-0.7.8 (23 Apr 2012) + + 23 Apr 2012; Patrick Lauer <patrick@gentoo.org> +nodejs-0.7.8.ebuild: + Bump 22 Apr 2012; Fabian Groffen <grobian@gentoo.org> nodejs-0.7.7-r1.ebuild: Fix compilation on Darwin, and fix for Prefix diff --git a/net-libs/nodejs/nodejs-0.7.8.ebuild b/net-libs/nodejs/nodejs-0.7.8.ebuild new file mode 100644 index 000000000000..c398c5e778d4 --- /dev/null +++ b/net-libs/nodejs/nodejs-0.7.8.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/nodejs-0.7.8.ebuild,v 1.1 2012/04/23 09:08:23 patrick Exp $ + +EAPI=3 + +PYTHON_DEPEND="2" + +inherit python eutils 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 ~x86 ~x64-macos" +IUSE="" + +DEPEND=">=dev-lang/v8-3.9.24.7 + 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 +} + +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() { + # there are no words to describe the epic idiocy of ... + # NOT using make but a JavaScript thingy to try to install things ... to the wrong place + # WHY U NO MAEK SENSE?! + #emake DESTDIR="${D}" install || die + + mkdir -p "${ED}"/usr/include/node + mkdir -p "${ED}"/usr/bin + mkdir -p "${ED}"/lib/node_modules/npm + cp '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 'deps/uv/include/ares.h' 'deps/uv/include/ares_version.h' "${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}/lib/node_modules/npm || 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 /lib/node_modules/npm/bin/npm-cli.js /bin/npm + pax-mark -m "${ED}"/usr/bin/node +} + +src_test() { + emake test || die +} |