blob: 29c998697e279a6b256caf091af97a3ab90ab454 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# 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.3 2009/11/08 15:50:25 jer 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 ~hppa ~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" )
# bug 292387
PATCHES=( "${FILESDIR}/${PN}-quint64.patch" )
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
}
|