diff options
author | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-03-28 01:00:26 +0000 |
---|---|---|
committer | Alexandre Rostovtsev <tetromino@gentoo.org> | 2012-03-28 01:00:26 +0000 |
commit | 3d7053aa55caaf4f584ebc2914b30454d001533d (patch) | |
tree | c1beaea45568d49e295887aeff35bc3085258585 /dev-libs/gjs | |
parent | Version bump with a new documentation tool and numerous bugfixes. Autotools m... (diff) | |
download | historical-3d7053aa55caaf4f584ebc2914b30454d001533d.tar.gz historical-3d7053aa55caaf4f584ebc2914b30454d001533d.tar.bz2 historical-3d7053aa55caaf4f584ebc2914b30454d001533d.zip |
Version bump. Adds system module, meta classes, better out parameter support, lots of bugfixes. Drop old.
Package-Manager: portage-2.2.0_alpha95/cvs/Linux x86_64
Diffstat (limited to 'dev-libs/gjs')
-rw-r--r-- | dev-libs/gjs/ChangeLog | 9 | ||||
-rw-r--r-- | dev-libs/gjs/gjs-1.32.0.ebuild (renamed from dev-libs/gjs/gjs-1.30.0.ebuild) | 18 |
2 files changed, 18 insertions, 9 deletions
diff --git a/dev-libs/gjs/ChangeLog b/dev-libs/gjs/ChangeLog index 4a05545e6431..3eba78912770 100644 --- a/dev-libs/gjs/ChangeLog +++ b/dev-libs/gjs/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for dev-libs/gjs # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gjs/ChangeLog,v 1.5 2012/01/14 04:54:24 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gjs/ChangeLog,v 1.6 2012/03/28 01:00:26 tetromino Exp $ + +*gjs-1.32.0 (28 Mar 2012) + + 28 Mar 2012; Alexandre Rostovtsev <tetromino@gentoo.org> -gjs-1.30.0.ebuild, + +gjs-1.32.0.ebuild: + Version bump. Adds system module, meta classes, better out parameter support, + lots of bugfixes. Drop old. *gjs-1.30.1 (14 Jan 2012) diff --git a/dev-libs/gjs/gjs-1.30.0.ebuild b/dev-libs/gjs/gjs-1.32.0.ebuild index 43eab0273292..0dd2246a917a 100644 --- a/dev-libs/gjs/gjs-1.30.0.ebuild +++ b/dev-libs/gjs/gjs-1.32.0.ebuild @@ -1,13 +1,13 @@ -# Copyright 1999-2011 Gentoo Foundation +# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/gjs/gjs-1.30.0.ebuild,v 1.2 2011/11/15 09:06:58 nirbheek Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/gjs/gjs-1.32.0.ebuild,v 1.1 2012/03/28 01:00:26 tetromino Exp $ EAPI="4" GCONF_DEBUG="no" GNOME2_LA_PUNT="yes" PYTHON_DEPEND="2" -inherit gnome2 python virtualx +inherit gnome2 pax-utils python virtualx DESCRIPTION="Javascript bindings for GNOME" HOMEPAGE="http://live.gnome.org/Gjs" @@ -17,8 +17,8 @@ SLOT="0" IUSE="examples test" KEYWORDS="~amd64 ~x86" -RDEPEND=">=dev-libs/glib-2.18:2 - >=dev-libs/gobject-introspection-1.29.16 +RDEPEND=">=dev-libs/glib-2.31:2 + >=dev-libs/gobject-introspection-1.31.22 dev-libs/dbus-glib sys-libs/readline @@ -35,7 +35,6 @@ pkg_setup() { # FIXME: --enable-systemtap installs files in ${D}/${D} for some reason # XXX: Do NOT enable coverage, completely useless for portage installs G2CONF="${G2CONF} - --with-js-package=mozjs185 --disable-systemtap --disable-dtrace --disable-coverage" @@ -51,7 +50,7 @@ src_prepare() { src_test() { # Tests need dbus - Xemake check || die + Xemake check } src_install() { @@ -60,6 +59,9 @@ src_install() { if use examples; then insinto /usr/share/doc/${PF}/examples - doins ${S}/examples/* || die "doins examples failed!" + doins ${S}/examples/* fi + + # Required for gjs-console to run correctly on PaX systems + pax-mark mr "${ED}/usr/bin/gjs-console" } |