summaryrefslogtreecommitdiff
blob: b54438ce617abe8b49a20ad0a15f4410ed985e53 (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
85
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/kdevelop/kdevelop-2.1.3-r1.ebuild,v 1.4 2002/10/04 20:58:58 vapier Exp $

inherit kde-base
need-kde 3

S=${WORKDIR}/${P}_for_KDE_3.0
DESCRIPTION="KDevelop ${PV}"
HOMEPAGE="http://www.kdevelop.org/"
SRC_PATH="kde/stable/3.0.3/src/${P}_for_KDE_3.0.tar.bz2"
SRC_URI="ftp://ftp.kde.org/pub/$SRC_PATH
	ftp://ftp.fh-heilbronn.de/pub/mirrors/$SRC_PATH
	ftp://ftp.sourceforge.net/pub/mirrors/$SRC_PATH
	mirror://gentoo/c_cpp_reference-1.0.tar.gz
	mirror://gentoo/kdelibs-kdevelop-docs-3.0.1.tar.bz2
	mirror://gentoo/$P-qt-templates.tar.gz"


LICENSE="GPL-2"
KEYWORDS="x86 ppc"


DEPEND="$DEPEND
	sys-devel/flex
	sys-devel/perl"

newdepend ">=kde-base/kdebase-3
	>=dev-util/kdoc-2.0_alpha24
	>=dev-util/kdbg-1.2.5.3
	>=net-www/htdig-3.1.6
	>=app-text/enscript-1.6.1
	>=app-text/a2ps-4.13b
	>=dev-util/ctags-5.0.1
	>=app-text/sgmltools-lite-3.0.3
	>=app-doc/qt-docs-${QTVER}"

# -j2 and greater fails - see bug #6199
export MAKEOPTS="$MAKEOPTS -j1"

src_unpack() {
    base_src_unpack
    cd ${S}/kdevelop
    for x in *.desktop; do
	mv $x $x.2
	sed -e 's:Exec=kdevelop:Exec=env WANT_AUTOMAKE_1_4=1 WANT_AUTOCONF_2_5=1 kdevelop:g' $x.2 > $x
	rm $x.2
    done
    
    # new qt project templates, fix #5839
    cd $WORKDIR
    mv q*.tar.gz $S/kdevelop/templates/
    
}

src_install() {

    kde_src_install
    
    # setup htdig for use with kdevelop out-of-the-box (sort of)
    sed -e "s:_KDEDIR_:${PREFIX}:g" ${FILESDIR}/htdig.conf > ${D}/${PREFIX}/share/apps/kdevelop/tools/htdig.conf
    dodir ${PREFIX}/share/apps/kdevelop/htdig/db
    
    # kdelibs documentation - pregenerated so we don't need kdelibs sources etc
    cp -r ${WORKDIR}/KDE-Documentation ${D}/${PREFIX}/share/apps/kdevelop/
    
    # c/cpp reference package
    dodir ${PREFIX}/share/doc/HTML/en/kdevelop/reference
    cp -r ${WORKDIR}/c_cpp_reference-1.0/reference/{C,CPLUSPLUS,GRAPHICS} ${D}/${PREFIX}/share/doc/HTML/en/kdevelop/reference/

}

pkg_postinst() {

einfo "Don't run the kdevelop setup! It will try to generate the kdelibs documentation,"
einfo "but a pregenerated package of it has been installed with this ebuild."
einfo "Instead, run kdevelop, go to Options->Kdevelop Setup, Documentation tab, and change"
einfo "the value of KDE-Libraries-Doc to $PREFIX/share/apps/kdevelop/KDE-Documentation/ ."
einfo ""
einfo "Oh, and if you think of a nice way to automate this from the ebuild, pray tell"
einfo "(but test first!) :-)"


}