Gentoo Archives: gentoo-commits

From: Davide Pesavento <pesa@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/qjson/
Date: Sun, 20 Sep 2015 11:13:02
Message-Id: 1442747568.623d9b8cfc6d5c4d193b0a30c3d86f9b255b7fa2.pesa@gentoo
1 commit: 623d9b8cfc6d5c4d193b0a30c3d86f9b255b7fa2
2 Author: Davide Pesavento <pesa <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 20 11:12:06 2015 +0000
4 Commit: Davide Pesavento <pesa <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 20 11:12:48 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=623d9b8c
7
8 dev-libs/qjson: remove old
9
10 Package-Manager: portage-2.2.20.1
11
12 dev-libs/qjson/qjson-0.8.1.ebuild | 41 ---------------------------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/dev-libs/qjson/qjson-0.8.1.ebuild b/dev-libs/qjson/qjson-0.8.1.ebuild
16 deleted file mode 100644
17 index 1591cc1..0000000
18 --- a/dev-libs/qjson/qjson-0.8.1.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 1999-2013 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -# $Id$
24 -
25 -EAPI=5
26 -
27 -inherit cmake-utils
28 -
29 -DESCRIPTION="A library for mapping JSON data to QVariant objects"
30 -HOMEPAGE="http://qjson.sourceforge.net"
31 -SRC_URI="mirror://github/flavio/qjson/${P}.tar.bz2"
32 -
33 -LICENSE="LGPL-2.1"
34 -SLOT="0"
35 -KEYWORDS="amd64 ~arm hppa ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd"
36 -IUSE="debug doc test"
37 -
38 -RDEPEND="dev-qt/qtcore:4"
39 -DEPEND="${RDEPEND}
40 - doc? ( app-doc/doxygen )
41 - test? ( dev-qt/qttest:4 )"
42 -
43 -DOCS=( ChangeLog README.md )
44 -
45 -src_configure() {
46 - local mycmakeargs=(
47 - $(cmake-utils_use test QJSON_BUILD_TESTS)
48 - )
49 -
50 - cmake-utils_src_configure
51 -}
52 -
53 -src_install() {
54 - if use doc; then
55 - cd doc
56 - doxygen Doxyfile || die "Generating documentation failed"
57 - HTML_DOCS=( doc/html/ )
58 - fi
59 -
60 - cmake-utils_src_install
61 -}