blob: cbd2e488f612c5763b54fab966b69f9054aea34d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# 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.9.0.ebuild,v 1.1 2012/07/30 02:18:02 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.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
}
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
mkdir -p "${ED}"/lib/node
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"
cp -R tools/wafadmin "${ED}"/lib/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 /lib/node_modules/npm/bin/npm-cli.js /bin/npm
pax-mark -m "${ED}"/usr/bin/node
}
src_test() {
emake test || die
}
|