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 104301381FA for ; Mon, 5 May 2014 09:36:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 20E8CE0B5A; Mon, 5 May 2014 09:36:30 +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 ACE47E0B5A for ; Mon, 5 May 2014 09:36:29 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BF99234011C for ; Mon, 5 May 2014 09:36:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 5C6AB18744 for ; Mon, 5 May 2014 09:36:27 +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: <1399282552.b8f2691fc74f0c0f85e76c9b2cdc390239aca9f3.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-0.0.13.ebuild X-VCS-Directories: dev-libs/extra-cmake-modules/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: b8f2691fc74f0c0f85e76c9b2cdc390239aca9f3 X-VCS-Branch: master Date: Mon, 5 May 2014 09:36:27 +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: d981cb7f-b173-4ac5-b9fd-165833103999 X-Archives-Hash: 6e4c232b9f9c25e9f26e3bd41b70b390 commit: b8f2691fc74f0c0f85e76c9b2cdc390239aca9f3 Author: Michael Palimaka gentoo org> AuthorDate: Mon May 5 09:35:52 2014 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Mon May 5 09:35:52 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b8f2691f [dev-libs/extra-cmake-modules] Version bump. Package-Manager: portage-2.2.8-r1 --- .../extra-cmake-modules-0.0.13.ebuild | 45 ++++++++++++++++++++++ 1 file changed, 45 insertions(+) diff --git a/dev-libs/extra-cmake-modules/extra-cmake-modules-0.0.13.ebuild b/dev-libs/extra-cmake-modules/extra-cmake-modules-0.0.13.ebuild new file mode 100644 index 0000000..ec2be14 --- /dev/null +++ b/dev-libs/extra-cmake-modules/extra-cmake-modules-0.0.13.ebuild @@ -0,0 +1,45 @@ +# 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_2,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/unstable/frameworks/4.99.0/${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() { + # demos not working + local mycmakeargs=( + $(cmake-utils_use_build doc HTML_DOCS) + $(cmake-utils_use_build doc MAN_DOCS) + ) + + cmake-utils_src_configure +}