diff options
author | 2014-04-12 15:42:43 +0000 | |
---|---|---|
committer | 2014-04-12 15:42:43 +0000 | |
commit | 7ce741e4f94d873a0ea577e507668b7eb2187051 (patch) | |
tree | 393eaf8d87abf80a590fa797aa19e66599143dcf | |
parent | Version bump. Removed old (diff) | |
download | gentoo-2-7ce741e4f94d873a0ea577e507668b7eb2187051.tar.gz gentoo-2-7ce741e4f94d873a0ea577e507668b7eb2187051.tar.bz2 gentoo-2-7ce741e4f94d873a0ea577e507668b7eb2187051.zip |
Version bump. Bug #507218
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 09BF4F54C2BA7F3C!)
-rw-r--r-- | dev-libs/json-c/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/json-c/json-c-0.12.ebuild | 39 |
2 files changed, 45 insertions, 1 deletions
diff --git a/dev-libs/json-c/ChangeLog b/dev-libs/json-c/ChangeLog index 79b9197f381b..d47439aba236 100644 --- a/dev-libs/json-c/ChangeLog +++ b/dev-libs/json-c/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/json-c # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.45 2014/03/19 15:13:47 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.46 2014/04/12 15:42:43 hwoarang Exp $ + +*json-c-0.12 (12 Apr 2014) + + 12 Apr 2014; Markos Chandras <hwoarang@gentoo.org> +json-c-0.12.ebuild: + Version bump. Bug #507218 19 Mar 2014; Agostino Sarubbo <ago@gentoo.org> json-c-0.11-r1.ebuild: Stable for alpha, wrt bug #495404 diff --git a/dev-libs/json-c/json-c-0.12.ebuild b/dev-libs/json-c/json-c-0.12.ebuild new file mode 100644 index 000000000000..48481906e79a --- /dev/null +++ b/dev-libs/json-c/json-c-0.12.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.12.ebuild,v 1.1 2014/04/12 15:42:43 hwoarang Exp $ + +EAPI=5 + +AUTOTOOLS_AUTORECONF=true + +inherit autotools-multilib + +DESCRIPTION="A JSON implementation in C" +HOMEPAGE="https://github.com/json-c/json-c/wiki" +SRC_URI="https://s3.amazonaws.com/json-c_releases/releases/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0/0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos" +IUSE="doc static-libs" + +# tests break otherwise +AUTOTOOLS_IN_SOURCE_BUILD=1 + +src_prepare() { + sed -i -e "s:-Werror::" Makefile.am.inc || die + autotools-multilib_src_prepare +} + +src_test() { + export USE_VALGRIND=0 VERBOSE=1 + autotools-multilib_src_test +} + +src_install() { + use doc && HTML_DOCS=( "${S}"/doc/html ) + autotools-multilib_src_install + + # add symlink for projects not using pkgconfig + dosym ../json-c /usr/include/json-c/json +} |