diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2011-04-12 22:29:15 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2011-04-12 22:29:15 +0000 |
commit | 3509323491059b8eab631224b0bcdeddc1a7dbb0 (patch) | |
tree | d70330bde8dcbdcd3c049608ce40fdf9608e75cf /dev-libs/json-glib | |
parent | Add prefix keywords (diff) | |
download | gentoo-2-3509323491059b8eab631224b0bcdeddc1a7dbb0.tar.gz gentoo-2-3509323491059b8eab631224b0bcdeddc1a7dbb0.tar.bz2 gentoo-2-3509323491059b8eab631224b0bcdeddc1a7dbb0.zip |
Bump to 0.12.4, remove coverage support
(Portage version: 2.1.9.45/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/json-glib')
-rw-r--r-- | dev-libs/json-glib/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/json-glib/json-glib-0.12.4.ebuild | 30 |
2 files changed, 37 insertions, 1 deletions
diff --git a/dev-libs/json-glib/ChangeLog b/dev-libs/json-glib/ChangeLog index 7fe3d75c762d..6d34b648f5cd 100644 --- a/dev-libs/json-glib/ChangeLog +++ b/dev-libs/json-glib/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-libs/json-glib # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-glib/ChangeLog,v 1.15 2011/02/26 18:40:29 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-glib/ChangeLog,v 1.16 2011/04/12 22:29:15 nirbheek Exp $ + +*json-glib-0.12.4 (12 Apr 2011) + + 12 Apr 2011; Nirbheek Chauhan <nirbheek@gentoo.org> + +json-glib-0.12.4.ebuild: + Bump to 0.12.4, remove coverage support 26 Feb 2011; Raúl Porcel <armin76@gentoo.org> json-glib-0.10.2.ebuild: alpha/ia64 stable wrt #327053 diff --git a/dev-libs/json-glib/json-glib-0.12.4.ebuild b/dev-libs/json-glib/json-glib-0.12.4.ebuild new file mode 100644 index 000000000000..9e27bec365af --- /dev/null +++ b/dev-libs/json-glib/json-glib-0.12.4.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-glib/json-glib-0.12.4.ebuild,v 1.1 2011/04/12 22:29:15 nirbheek Exp $ + +EAPI="2" + +inherit gnome2 + +DESCRIPTION="A library providing GLib serialization and deserialization support for the JSON format" +HOMEPAGE="http://live.gnome.org/JsonGlib" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="doc +introspection" + +RDEPEND=">=dev-libs/glib-2.16" +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.9 + doc? ( >=dev-util/gtk-doc-1.13 ) + introspection? ( >=dev-libs/gobject-introspection-0.6.5 )" + +DOCS="AUTHORS ChangeLog NEWS README" + +pkg_setup() { + # Coverage support is useless, and causes runtime problems + G2CONF="${G2CONF} + --disable-coverage + $(use_enable introspection)" +} |