summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavide Pesavento <pesa@gentoo.org>2015-09-20 13:12:06 +0200
committerDavide Pesavento <pesa@gentoo.org>2015-09-20 13:12:48 +0200
commit623d9b8cfc6d5c4d193b0a30c3d86f9b255b7fa2 (patch)
tree0189df3ff67919c1ff08c4bf4a62d390c222b8c4 /dev-libs
parentxfce-extra/xfce4-equake-plugin: version bump to 1.3.8 (diff)
downloadgentoo-623d9b8cfc6d5c4d193b0a30c3d86f9b255b7fa2.tar.gz
gentoo-623d9b8cfc6d5c4d193b0a30c3d86f9b255b7fa2.tar.bz2
gentoo-623d9b8cfc6d5c4d193b0a30c3d86f9b255b7fa2.zip
dev-libs/qjson: remove old
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/qjson/qjson-0.8.1.ebuild41
1 files changed, 0 insertions, 41 deletions
diff --git a/dev-libs/qjson/qjson-0.8.1.ebuild b/dev-libs/qjson/qjson-0.8.1.ebuild
deleted file mode 100644
index 1591cc112e2c..000000000000
--- a/dev-libs/qjson/qjson-0.8.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils
-
-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"
-DEPEND="${RDEPEND}
- doc? ( app-doc/doxygen )
- test? ( dev-qt/qttest:4 )"
-
-DOCS=( ChangeLog README.md )
-
-src_configure() {
- local mycmakeargs=(
- $(cmake-utils_use test QJSON_BUILD_TESTS)
- )
-
- cmake-utils_src_configure
-}
-
-src_install() {
- if use doc; then
- cd doc
- doxygen Doxyfile || die "Generating documentation failed"
- HTML_DOCS=( doc/html/ )
- fi
-
- cmake-utils_src_install
-}