blob: 3f2414f50ce4b33b1a2fd632f08b8f557b0339bc (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop/kdevelop-3.9.95.ebuild,v 1.1 2009/08/29 18:48:35 tampakrap Exp $
EAPI="2"
inherit kde4-base versionator
KDEVPLATFORM_PV="$(($(get_major_version)-3)).$(get_after_major_version)"
DESCRIPTION="Integrated Development Environment for Unix, supporting KDE/Qt, C/C++ and many other languages."
HOMEPAGE="http://www.kdevelop.org/"
SRC_URI="mirror://kde/unstable/${PN}/${PV}/src/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2"
KEYWORDS="~amd64 ~hppa ~x86"
SLOT="4"
IUSE="+cmake +cxx debug +qmake"
DEPEND="
>=dev-util/kdevplatform-${KDEVPLATFORM_PV}
>=kde-base/ksysguard-${KDE_MINIMAL}
>=kde-base/libkworkspace-${KDE_MINIMAL}
>=x11-libs/qt-assistant-4.4:4
"
RDEPEND="${DEPEND}
>=kde-base/kapptemplate-${KDE_MINIMAL}
"
src_prepare() {
# Remove this and the ksysguard dep after libprocessui moved into kdelibs
sed -i -e 's/${KDE4WORKSPACE_PROCESSUI_LIBS}/processui/g' \
debuggers/gdb/CMakeLists.txt \
|| die "Failed to patch CMake files"
}
src_configure() {
mycmakeargs="${mycmakeargs}
$(cmake-utils_use_build cmake)
$(cmake-utils_use_build cmake cmakebuilder)
$(cmake-utils_use_build qmake)
$(cmake-utils_use_build qmake qmakebuilder)
$(cmake-utils_use_build qmake qmake_parser)
$(cmake-utils_use_build cxx cpp)"
kde4-base_src_configure
}
src_install() {
kde4-base_src_install
rm "${D}/${PREFIX}"/share/apps/kdevappwizard/templates/qmake_qt4guiapp.tar.bz2
rm "${D}/${PREFIX}"/share/icons/hicolor/22x22/actions/output_win.png
}
pkg_postinst() {
kde4-base_pkg_postinst
echo
elog "For extra functionality you shuold look at following packages:"
elog "dev-util/valgrind allows you to do memory leak check."
elog ">=sys-devel/gdb-6.8.50 (RECOMMENDED) required by debugger frontend."
echo
}
|