summaryrefslogtreecommitdiff
path: root/dev-util/kdevplatform/kdevplatform-0.9.91.ebuild
blob: d50abb63a537da0a52f95f1821a2cd90f6b56f82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"

inherit kde4-base

KDEVELOP_PV="3.9.91" # remember to change!
DESCRIPTION="KDE development support libraries and apps"
HOMEPAGE="http://www.kde.org/"
SRC_URI="mirror://kde/unstable/kdevelop/${KDEVELOP_PV}/src/${P}.tar.bz2"

SLOT="1"
KEYWORDS="~amd64 ~x86"
IUSE="bazaar cvs debug git htmlhandbook mercurial subversion"
LICENSE="GPL-2 LGPL-2"

DEPEND="subversion? ( >=dev-util/subversion-1.3 )"

RDEPEND="${DEPEND}
		bazaar? ( dev-util/bzr )
		cvs? ( dev-util/cvs )
		git? ( dev-util/git )
		mercurial? ( dev-util/mercurial )"

src_configure() {
	mycmakeargs="${mycmakeargs}
		-DBUILD_bazaar=$(useq bazaar && echo ON || echo OFF)
		-DBUILD_cvs=$(useq cvs && echo ON || echo OFF)
		-DBUILD_git=$(useq git && echo ON || echo OFF)
		-DBUILD_mercurial=$(useq mercurial && echo ON || echo OFF)
		-DBUILD_subversion=$(useq subversion && echo ON || echo OFF)
		$(cmake-utils_use_with subversion SubversionLibrary)"

	kde4-base_src_configure
}