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 B485B1389E2 for ; Sat, 6 Dec 2014 17:46:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BFAF6E08B8; Sat, 6 Dec 2014 17:46:44 +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 4A3DBE08B8 for ; Sat, 6 Dec 2014 17:46:44 +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 5E1ED3404D9 for ; Sat, 6 Dec 2014 17:46:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 073EFBB3D for ; Sat, 6 Dec 2014 17:46:42 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1417888006.98c768ec5e2d28676bc84be560a60fff63817d4f.kensington@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.5.0.ebuild X-VCS-Directories: dev-libs/extra-cmake-modules/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 98c768ec5e2d28676bc84be560a60fff63817d4f X-VCS-Branch: master Date: Sat, 6 Dec 2014 17:46:42 +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: b1a14d13-8f47-49cf-836f-ee67f2e9c155 X-Archives-Hash: dba631279b79c52f875207b2a40bfb28 commit: 98c768ec5e2d28676bc84be560a60fff63817d4f Author: Michael Palimaka gentoo org> AuthorDate: Sat Dec 6 17:46:46 2014 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Sat Dec 6 17:46:46 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=98c768ec [dev-libs/extra-cmake-modules] Version bump. Package-Manager: portage-2.2.15 --- .../extra-cmake-modules-1.5.0.ebuild | 44 ++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/dev-libs/extra-cmake-modules/extra-cmake-modules-1.5.0.ebuild b/dev-libs/extra-cmake-modules/extra-cmake-modules-1.5.0.ebuild new file mode 100644 index 0000000..727e9cc --- /dev/null +++ b/dev-libs/extra-cmake-modules/extra-cmake-modules-1.5.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +PYTHON_COMPAT=( python{2_7,3_3,3_4} ) + +inherit cmake-utils python-any-r1 + +DESCRIPTION="Extra modules and scripts for CMake" +HOMEPAGE="https://projects.kde.org/projects/kdesupport/extra-cmake-modules" +SRC_URI="mirror://kde/stable/frameworks/5.4/${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 +}