summaryrefslogtreecommitdiff
path: root/dev-util/kdevplatform/kdevplatform-1.3.90.ebuild
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2012-09-11 14:23:12 +0200
committerJohannes Huber <johu@gentoo.org>2012-09-11 14:23:12 +0200
commitf9178197c20afb16a35e1c90af3a4e06af10ace1 (patch)
tree20b29db24fc394dfe3811fa29182b42d06af187b /dev-util/kdevplatform/kdevplatform-1.3.90.ebuild
parent28ad025b65a5d31a807a129660ac866e2905a59f (diff)
downloadkde-f9178197c20afb16a35e1c90af3a4e06af10ace1.tar.gz
kde-f9178197c20afb16a35e1c90af3a4e06af10ace1.tar.bz2
kde-f9178197c20afb16a35e1c90af3a4e06af10ace1.zip
[kdevelop] Version bump 4.4 rc1.
(Portage version: 2.2.0_alpha125/git/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-util/kdevplatform/kdevplatform-1.3.90.ebuild')
-rw-r--r--dev-util/kdevplatform/kdevplatform-1.3.90.ebuild69
1 files changed, 69 insertions, 0 deletions
diff --git a/dev-util/kdevplatform/kdevplatform-1.3.90.ebuild b/dev-util/kdevplatform/kdevplatform-1.3.90.ebuild
new file mode 100644
index 00000000000..1da1aae4a7e
--- /dev/null
+++ b/dev-util/kdevplatform/kdevplatform-1.3.90.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+KMNAME="kdevelop"
+KDE_MINIMAL="4.7"
+VIRTUALX_REQUIRED=test
+KDE_LINGUAS="bs ca ca@valencia da de el en_GB es et fi fr gl it nb nds nl pl pt
+pt_BR sl sv th uk zh_CN zh_TW"
+EGIT_REPONAME="${PN}"
+
+inherit kde4-base
+
+DESCRIPTION="KDE development support libraries and apps"
+LICENSE="GPL-2 LGPL-2"
+IUSE="cvs debug git reviewboard subversion"
+
+if [[ $PV == *9999 ]]; then
+ KEYWORDS=""
+else
+ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+fi
+
+# Moved to playground for now
+# bazaar? ( dev-vcs/bzr )
+# kompare? ( $(add_kdebase_dep kompare) )
+# mercurial? ( dev-vcs/mercurial )
+DEPEND="
+ dev-libs/boost
+"
+RDEPEND="${DEPEND}
+ !<dev-util/kdevelop-${KDEVELOP_VERSION}:4
+ dev-libs/apr
+ dev-libs/apr-util
+ $(add_kdebase_dep konsole)
+ cvs? ( dev-vcs/cvs )
+ git? ( dev-vcs/git )
+ reviewboard? ( dev-libs/qjson )
+ subversion? ( dev-vcs/subversion )
+"
+# Quite few fails and upstream is aware
+RESTRICT="test"
+
+src_prepare() {
+ kde4-base_src_prepare
+
+ # FindKDevPlatform.cmake is installed by kdelibs
+ sed -i \
+ -e '/cmakeFiles/s/^/#DONOTINSTALL/' \
+ cmake/modules/CMakeLists.txt || die
+}
+
+# Moved to playground for now
+# $(cmake-utils_use_build bazaar)
+# $(cmake-utils_use_with kompare)
+# $(cmake-utils_use_build mercurial)
+src_configure() {
+ mycmakeargs=(
+ $(cmake-utils_use_build cvs)
+ $(cmake-utils_use_build git)
+ $(cmake-utils_use_with reviewboard QJSON)
+ $(cmake-utils_use_build subversion)
+ $(cmake-utils_use_with subversion SubversionLibrary)
+ )
+
+ kde4-base_src_configure
+}