Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/gjs: gjs-1.36.0.ebuild ChangeLog
Date: Thu, 28 Mar 2013 16:44:28
Message-Id: 20130328164424.CD3E82171C@flycatcher.gentoo.org
1 pacho 13/03/28 16:44:24
2
3 Modified: ChangeLog
4 Added: gjs-1.36.0.ebuild
5 Log:
6 Version bump for Gnome 3.8
7
8 (Portage version: 2.1.11.58/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.19 dev-libs/gjs/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gjs/ChangeLog?rev=1.19&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gjs/ChangeLog?rev=1.19&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gjs/ChangeLog?r1=1.18&r2=1.19
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/gjs/ChangeLog,v
20 retrieving revision 1.18
21 retrieving revision 1.19
22 diff -u -r1.18 -r1.19
23 --- ChangeLog 5 Mar 2013 23:12:35 -0000 1.18
24 +++ ChangeLog 28 Mar 2013 16:44:24 -0000 1.19
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/gjs
27 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gjs/ChangeLog,v 1.18 2013/03/05 23:12:35 eva Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gjs/ChangeLog,v 1.19 2013/03/28 16:44:24 pacho Exp $
30 +
31 +*gjs-1.36.0 (28 Mar 2013)
32 +
33 + 28 Mar 2013; Pacho Ramos <pacho@g.o> +gjs-1.36.0.ebuild:
34 + Version bump for Gnome 3.8
35
36 05 Mar 2013; Gilles Dartiguelongue <eva@g.o> -gjs-1.30.1.ebuild,
37 -gjs-1.32.0.ebuild:
38
39
40
41 1.1 dev-libs/gjs/gjs-1.36.0.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gjs/gjs-1.36.0.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/gjs/gjs-1.36.0.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gjs-1.36.0.ebuild
47 ===================================================================
48 # Copyright 1999-2013 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/gjs/gjs-1.36.0.ebuild,v 1.1 2013/03/28 16:44:24 pacho Exp $
51
52 EAPI="5"
53 GCONF_DEBUG="no"
54
55 inherit gnome2 pax-utils virtualx
56
57 DESCRIPTION="Javascript bindings for GNOME"
58 HOMEPAGE="http://live.gnome.org/Gjs"
59
60 LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )"
61 SLOT="0"
62 IUSE="+cairo examples"
63 KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd"
64
65 RDEPEND=">=dev-libs/glib-2.36.0:2
66 >=dev-libs/gobject-introspection-1.36.0
67
68 dev-libs/dbus-glib
69 sys-libs/readline
70 >=dev-lang/spidermonkey-1.8.5
71 virtual/libffi
72 cairo? ( x11-libs/cairo )"
73 DEPEND="${RDEPEND}
74 sys-devel/gettext
75 virtual/pkgconfig"
76
77 src_configure() {
78 # AUTHORS, ChangeLog are empty
79 DOCS="NEWS README"
80
81 # FIXME: add systemtap/dtrace support, like in glib:2
82 # FIXME: --enable-systemtap installs files in ${D}/${D} for some reason
83 # XXX: Do NOT enable coverage, completely useless for portage installs
84 gnome2_src_configure \
85 --disable-systemtap \
86 --disable-dtrace \
87 --disable-coverage \
88 $(use_with cairo cairo)
89 }
90
91 src_test() {
92 # Tests need dbus
93 Xemake check
94 }
95
96 src_install() {
97 # installation sometimes fails in parallel
98 gnome2_src_install -j1
99
100 if use examples; then
101 insinto /usr/share/doc/${PF}/examples
102 doins ${S}/examples/*
103 fi
104
105 # Required for gjs-console to run correctly on PaX systems
106 pax-mark mr "${ED}/usr/bin/gjs-console"
107 }