kensington 15/02/26 12:09:23 Modified: ChangeLog Added: qjson-0.8.1-r1.ebuild Log: Add multilib support by Karol Herbst <[email protected]>. (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Revision Changes Path 1.35 dev-libs/qjson/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qjson/ChangeLog?rev=1.35&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qjson/ChangeLog?rev=1.35&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qjson/ChangeLog?r1=1.34&r2=1.35 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/qjson/ChangeLog,v retrieving revision 1.34 retrieving revision 1.35 diff -u -r1.34 -r1.35 --- ChangeLog 2 Apr 2013 20:56:14 -0000 1.34 +++ ChangeLog 26 Feb 2015 12:09:23 -0000 1.35 @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/qjson -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/qjson/ChangeLog,v 1.34 2013/04/02 20:56:14 ago Exp $ +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/qjson/ChangeLog,v 1.35 2015/02/26 12:09:23 kensington Exp $ + +*qjson-0.8.1-r1 (26 Feb 2015) + + 26 Feb 2015; Michael Palimaka <[email protected]> +qjson-0.8.1-r1.ebuild: + Add multilib support by Karol Herbst <[email protected]>. 02 Apr 2013; Agostino Sarubbo <[email protected]> qjson-0.8.1.ebuild: Stable for ppc64, wrt bug #462890 1.1 dev-libs/qjson/qjson-0.8.1-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qjson/qjson-0.8.1-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/qjson/qjson-0.8.1-r1.ebuild?rev=1.1&content-type=text/plain Index: qjson-0.8.1-r1.ebuild =================================================================== # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/qjson/qjson-0.8.1-r1.ebuild,v 1.1 2015/02/26 12:09:23 kensington Exp $ EAPI=5 inherit cmake-multilib multilib DESCRIPTION="A library for mapping JSON data to QVariant objects" HOMEPAGE="http://qjson.sourceforge.net" SRC_URI="mirror://github/flavio/qjson/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd" IUSE="debug doc test" RDEPEND="dev-qt/qtcore:4[${MULTILIB_USEDEP}]" DEPEND="${RDEPEND} doc? ( app-doc/doxygen ) test? ( dev-qt/qttest:4[${MULTILIB_USEDEP}] )" DOCS=( ChangeLog README.md ) multilib_src_configure() { local mycmakeargs=( $(cmake-utils_use test QJSON_BUILD_TESTS) -DQT_QMAKE_EXECUTABLE=/usr/$(get_libdir)/qt4/bin/qmake ) cmake-utils_src_configure } multilib_src_compile() { cmake-utils_src_compile use doc && if is_final_abi; then cd "${S}"/doc || die "Failed to move inside doc directory" doxygen Doxyfile || die "Generating documentation failed" fi } multilib_src_install_all() { if use doc; then HTML_DOCS=( doc/html/ ) einstalldocs fi }
