diff options
Diffstat (limited to 'dev-libs/qjson/qjson-0.6.2.ebuild')
-rw-r--r-- | dev-libs/qjson/qjson-0.6.2.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/dev-libs/qjson/qjson-0.6.2.ebuild b/dev-libs/qjson/qjson-0.6.2.ebuild new file mode 100644 index 000000000000..cb8d58ae483c --- /dev/null +++ b/dev-libs/qjson/qjson-0.6.2.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/qjson/qjson-0.6.2.ebuild,v 1.1 2009/09/16 21:34:41 ayoy Exp $ + +EAPI="2" + +inherit cmake-utils + +DESCRIPTION="A library for mapping JSON data to QVariant objects" +HOMEPAGE="http://qjson.sourceforge.net" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug doc test" + +RDEPEND="x11-libs/qt-core:4" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen ) + test? ( x11-libs/qt-test:4 )" + +S="${WORKDIR}/${PN}" +DOCS=( "${S}/README" ) + +src_configure() { + mycmakeargs="${mycmakeargs} + $(cmake-utils_use test QJSON_BUILD_TESTS)" + + cmake-utils_src_configure +} + +src_install() { + if use doc; then + cd "${S}/doc" + doxygen Doxyfile || die "Generating documentation failed" + HTML_DOCS=( "${S}/doc/html/*" ) + fi + + cmake-utils_src_install +} |