diff options
-rw-r--r-- | dev-libs/json-glib/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/json-glib/json-glib-0.16.2.ebuild | 33 |
2 files changed, 39 insertions, 1 deletions
diff --git a/dev-libs/json-glib/ChangeLog b/dev-libs/json-glib/ChangeLog index 0d25cc6ffbd8..e1307f3451df 100644 --- a/dev-libs/json-glib/ChangeLog +++ b/dev-libs/json-glib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/json-glib # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-glib/ChangeLog,v 1.51 2013/08/27 21:30:07 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-glib/ChangeLog,v 1.52 2013/09/28 20:25:21 pacho Exp $ + +*json-glib-0.16.2 (28 Sep 2013) + + 28 Sep 2013; Pacho Ramos <pacho@gentoo.org> +json-glib-0.16.2.ebuild: + Version bump 27 Aug 2013; Alexis Ballier <aballier@gentoo.org> json-glib-0.16.0-r1.ebuild: keyword ~amd64-fbsd diff --git a/dev-libs/json-glib/json-glib-0.16.2.ebuild b/dev-libs/json-glib/json-glib-0.16.2.ebuild new file mode 100644 index 000000000000..ec83cf24aca5 --- /dev/null +++ b/dev-libs/json-glib/json-glib-0.16.2.ebuild @@ -0,0 +1,33 @@ +# Copyright 1999-2013 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.16.2.ebuild,v 1.1 2013/09/28 20:25:21 pacho Exp $ + +EAPI=5 +GCONF_DEBUG=yes + +inherit gnome2 + +DESCRIPTION="A library providing GLib serialization and deserialization support for the JSON format" +HOMEPAGE="https://wiki.gnome.org/JsonGlib" + +LICENSE="LGPL-2.1+" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd" +IUSE="+introspection" + +RDEPEND=" + >=dev-libs/glib-2.34.0:2 + introspection? ( >=dev-libs/gobject-introspection-0.9.5 ) +" +DEPEND="${RDEPEND} + >=dev-util/gtk-doc-am-1.13 + >=sys-devel/gettext-0.18 + virtual/pkgconfig +" + +src_configure() { + # Coverage support is useless, and causes runtime problems + gnome2_src_configure \ + --disable-gcov \ + $(use_enable introspection) +} |