From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 695EE138A1A for ; Mon, 5 Jan 2015 14:20:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2512AE084B; Mon, 5 Jan 2015 14:20:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BECD9E084B for ; Mon, 5 Jan 2015 14:20:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6E27F3403A3 for ; Mon, 5 Jan 2015 14:20:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DAD18EEBE for ; Mon, 5 Jan 2015 14:20:06 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1420467582.dc98778ef1395f713b232f74277eeed0e7e9f9df.mrueg@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: dev-libs/extra-cmake-modules/ X-VCS-Repository: proj/kde X-VCS-Files: dev-libs/extra-cmake-modules/extra-cmake-modules-1.6.0.ebuild X-VCS-Directories: dev-libs/extra-cmake-modules/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: dc98778ef1395f713b232f74277eeed0e7e9f9df X-VCS-Branch: master Date: Mon, 5 Jan 2015 14:20:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 5b4f7201-96f7-4205-9b1f-ad1aedb19467 X-Archives-Hash: eeba46612078b1392b7855428c86b23c commit: dc98778ef1395f713b232f74277eeed0e7e9f9df Author: Manuel Rüger gentoo org> AuthorDate: Mon Jan 5 14:19:42 2015 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon Jan 5 14:19:42 2015 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=dc98778e [dev-libs/extra-cmake-modules] Version bump. --- .../extra-cmake-modules-1.6.0.ebuild | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) diff --git a/dev-libs/extra-cmake-modules/extra-cmake-modules-1.6.0.ebuild b/dev-libs/extra-cmake-modules/extra-cmake-modules-1.6.0.ebuild new file mode 100644 index 0000000..06aaee1 --- /dev/null +++ b/dev-libs/extra-cmake-modules/extra-cmake-modules-1.6.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/extra-cmake-modules/extra-cmake-modules-1.5.0.ebuild,v 1.1 2014/12/17 21:26:24 mrueg Exp $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit versionator cmake-utils python-any-r1 + +FRAMEWORKS_DIR=5.$(get_version_component_range 2) + +DESCRIPTION="Extra modules and scripts for CMake" +HOMEPAGE="https://projects.kde.org/projects/kdesupport/extra-cmake-modules" +SRC_URI="mirror://kde/stable/frameworks/${FRAMEWORKS_DIR}/${P}.tar.xz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" +IUSE="doc" + +DEPEND=" + app-arch/xz-utils + >=dev-util/cmake-2.8.12 + doc? ( + ${PYTHON_DEPS} + $(python_gen_any_dep 'dev-python/sphinx[${PYTHON_USEDEP}]') + ) +" + +python_check_deps() { + has_version "dev-python/sphinx[${PYTHON_USEDEP}]" +} + +pkg_setup() { + use doc && python-any-r1_pkg_setup +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_build doc HTML_DOCS) + $(cmake-utils_use_build doc MAN_DOCS) + ) + + cmake-utils_src_configure +}