blob: 8f9ccf9540eee57513b097e4a3e8fb440cdc6bcf (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
inherit eutils
DESCRIPTION="C++ toolkit for extending the Google v8 JavaScript engine"
HOMEPAGE="http://code.google.com/p/v8-juice/"
SRC_URI="http://v8-juice.googlecode.com/files/${P}.tar.bz2"
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-lang/v8"
RDEPEND="${DEPEND}"
src_configure() {
econf
}
src_prepare() {
mkdir doc/doxygen
echo -e "install:\n\ttrue" > doc/doxygen/Makefile # little work around
}
src_install() {
emake DESTDIR="${D}" install || die "install failed"
}
|