Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 291424 | Differences between
and this patch

Collapse All | Expand All

(-)a/dev-libs/gjs/Manifest (-2 / +2 lines)
Lines 1-2 Link Here
1
DIST gjs-0.4.tar.bz2 401868 RMD160 23673430a97f93fc846eab2568bc8a888ae50b7e SHA1 5b90233e9da4b660c3d128800bb7ada8ddfd9d8f SHA256 78c3116cfb0feba08c79b4beea4b6ef16bfca3be9b59efcfa7e6eca79911aca6
1
DIST gjs-0.6.tar.bz2 436575 RMD160 511e79b0556a3ecabac1601f23154cd5bc223b8d SHA1 b36f527c0e72051ec45a908c39a576bb7a03fbc4 SHA256 5c5a54bbb819bfaea1e0e76f0508467e8d5690360ab550e1284951d905a56e5d
2
EBUILD gjs-0.4.ebuild 593 RMD160 46af7d046c26ee4899d1e0e74015b96f582b74a7 SHA1 7986537f87386a3b3d170b8b5273977d133e15ff SHA256 65969dc3271357101d5ac38aa8c7dec43118f89b6d676fac8ab27603c634c1d8
2
EBUILD gjs-0.6.ebuild 992 RMD160 aaddb3d075811b8e934b8e5f082c5d9a64569730 SHA1 2dac0e2e96b803c5234e18d1cde6ef66566ddbea SHA256 64419c3f973cf015861290e3c7105542c175fe149b042dba798e3ca5451bead8
(-)a/dev-libs/gjs/gjs-0.4.ebuild (-29 lines)
Lines 1-29 Link Here
1
# Copyright 1999-2009 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: $
4
5
EAPI="2"
6
7
inherit gnome2
8
9
DESCRIPTION="Javascript bindings for GNOME"
10
HOMEPAGE="http://live.gnome.org/Gjs"
11
12
LICENSE="MIT MPL-1.1 LGPL-2 GPL-2"
13
SLOT="0"
14
KEYWORDS="~amd64 ~x86"
15
IUSE="coverage"
16
17
RDEPEND=">=dev-libs/glib-2.16.0
18
	>=dev-libs/gobject-introspection-0.6.3
19
20
	dev-libs/dbus-glib
21
	net-libs/xulrunner:1.9"
22
DEPEND="${RDEPEND}
23
	sys-devel/gettext
24
	>=dev-util/pkgconfig-0.9
25
	coverage? (
26
		sys-devel/gcc
27
		dev-util/lcov )"
28
# AUTHORS, ChangeLog are empty
29
DOCS="NEWS README"
(-)a/dev-libs/gjs/gjs-0.6.ebuild (-1 / +45 lines)
Line 0 Link Here
0
- 
1
# Copyright 1999-2010 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: $
4
5
EAPI="2"
6
7
inherit gnome2
8
9
DESCRIPTION="Javascript bindings for GNOME"
10
HOMEPAGE="http://live.gnome.org/Gjs"
11
12
LICENSE="MIT MPL-1.1 LGPL-2 GPL-2"
13
SLOT="0"
14
KEYWORDS="~amd64 ~x86"
15
IUSE=""
16
# USE=coverage does not work, see http://bugs.gentoo.org/show_bug.cgi?id=291424#c10
17
#IUSE="coverage"
18
19
RDEPEND=">=dev-libs/glib-2.16.0
20
	>=dev-libs/gobject-introspection-0.6.3
21
22
	dev-libs/dbus-glib
23
	x11-libs/cairo
24
	net-libs/xulrunner:1.9"
25
DEPEND="${RDEPEND}
26
	sys-devel/gettext
27
	>=dev-util/pkgconfig-0.9
28
	coverage? (
29
		sys-devel/gcc
30
		dev-util/lcov )"
31
# AUTHORS, ChangeLog are empty
32
DOCS="NEWS README"
33
34
G2CONF=$(use_enable coverage)
35
36
# parallel make/install dieabled due to random ls file creation error.
37
# having     work/gjs-0.6/.libs/libgjs-dbus.so.0.0.0T
38
# instead of work/gjs-0.6/.libs/libgjs-dbus.so.0.0.0
39
src_compile () {
40
	emake -j1 || die
41
}
42
43
src_install () {
44
	gnome_src_install -j1
45
}

Return to bug 291424