blob: 618c24157a9c50680a0c3ab524bc442461783dd2 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/nodejs/nodejs-0.3.1-r1.ebuild,v 1.1 2011/01/06 10:13:58 phajdan.jr Exp $
EAPI="2"
inherit eutils
DESCRIPTION="Evented IO for V8 Javascript"
HOMEPAGE="http://nodejs.org/"
SRC_URI="http://nodejs.org/dist/node-v${PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=">=dev-lang/v8-2.5.9.6-r1
dev-libs/openssl"
RDEPEND="${DEPEND}"
S=${WORKDIR}/node-v${PV}
src_configure() {
# this is a waf confuserator
./configure --shared-v8 --prefix=/usr || die
}
src_compile() {
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die
}
src_test() {
emake test || die
}
|