summaryrefslogtreecommitdiff
path: root/dev-libs/extra-cmake-modules/extra-cmake-modules-0.0.13.ebuild
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2014-05-05 19:35:52 +1000
committerMichael Palimaka <kensington@gentoo.org>2014-05-05 19:35:52 +1000
commitb8f2691fc74f0c0f85e76c9b2cdc390239aca9f3 (patch)
tree613936beb5ce67fd5e88f8918ec1adaefa7de21a /dev-libs/extra-cmake-modules/extra-cmake-modules-0.0.13.ebuild
parent280a5322a022fdc7940d7d8aae9761931f8587cb (diff)
downloadkde-b8f2691fc74f0c0f85e76c9b2cdc390239aca9f3.tar.gz
kde-b8f2691fc74f0c0f85e76c9b2cdc390239aca9f3.tar.bz2
kde-b8f2691fc74f0c0f85e76c9b2cdc390239aca9f3.zip
[dev-libs/extra-cmake-modules] Version bump.
Package-Manager: portage-2.2.8-r1
Diffstat (limited to 'dev-libs/extra-cmake-modules/extra-cmake-modules-0.0.13.ebuild')
-rw-r--r--dev-libs/extra-cmake-modules/extra-cmake-modules-0.0.13.ebuild45
1 files changed, 45 insertions, 0 deletions
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 00000000000..ec2be1474de
--- /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
+}