blob: 41a32655149658cae005fc1c363979ddd460720c (
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop/kdevelop-3.3.0_beta2-r1.ebuild,v 1.1 2005/10/18 15:33:27 greg_g Exp $
inherit kde eutils
MY_PV=3.2.92
S=${WORKDIR}/${PN}-${MY_PV}
DESCRIPTION="Integrated Development Enviroment for Unix, supporting KDE/Qt, C/C++ and a many other languages."
HOMEPAGE="http://www.kdevelop.org"
#SRC_URI="mirror://kde/stable/${PV/#3.3/3.5}/src/${P}.tar.bz2"
SRC_URI="mirror://kde/unstable/${PV/#3.3.0_/3.5-}/src/${PN}-${MY_PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="3"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="ada clearcase fortran haskell java pascal perforce perl php python ruby sql subversion"
DEPEND="dev-lang/perl
sys-devel/flex
sys-devel/gdb
|| ( kde-base/cervisia kde-base/kdesdk )"
RDEPEND="${DEPEND}
subversion? ( || ( kde-base/kdesdk-kioslaves kde-base/kdesdk ) )"
need-kde 3.3
src_unpack() {
kde_src_unpack
cd ${S}
# See bug #86780 and kde bug 98852.
epatch "${FILESDIR}/kdevelop-3.2.1-makefiles.patch"
# Fix building of ant projects (kde bug 100813).
epatch "${FILESDIR}/kdevelop-3.2.3-ant.patch"
# Update the admin dir used in KDE template projects.
# See also kde bug 104386.
for i in ${S}/admin/*; do
cp "${i}" "${S}/parts/appwizard/common/admin/"
done
}
src_compile() {
local myconf="--with-kdelibsdoxy-dir=${KDEDIR}/share/doc/HTML/en/kdelibs-apidocs"
# languages
myconf="${myconf} $(use_enable java) $(use_enable python)
$(use_enable ruby) $(use_enable ada) $(use_enable fortran)
$(use_enable haskell) $(use_enable pascal) $(use_enable perl)
$(use_enable php) $(use_enable sql)"
# build tools
myconf="${myconf} $(use_enable java antproject)"
# version control systems
myconf="${myconf} $(use_enable clearcase) $(use_enable perforce)
$(use_enable subversion)"
kde_src_compile
}
pkg_postinst() {
einfo "kdevelop can use a wide range of apps for extra functionality. This is an almost"
einfo "complete list. All these packages can be emerged after kdevelop."
einfo
einfo "kde-base/kdebase: (RECOMMENDED) embed konsole kpart in kdevelop ide"
einfo "dev-util/kdbg: (RECOMMENDED) kde frontend to gdb"
einfo "dev-util/valgrind: (RECOMMENDED) integrates valgrind (memory debugger) commands"
einfo "kde-base/kompare: (RECOMMENDED) show differences between files"
einfo "dev-java/ant: support projects using the ant build tool"
einfo "dev-util/ctags: faster and more powerful code browsing logic"
einfo "app-doc/doxygen: generate KDE-style documentation for your project"
einfo "www-misc/htdig: index and search your project's documentation"
einfo "app-arch/rpm: support creating RPMs of your project"
einfo "app-emulation/visualboyadvance: create and run projects for this gameboy"
einfo
einfo "Support for GNU-style make, tmake, qmake is included."
einfo "Support for using clearcase, perforce and subversion"
einfo "as version control systems is optional."
}
|