summaryrefslogtreecommitdiff
blob: 4448e5312cf0dd5590f4ffe8c09ca642b7e3f86f (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-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Dan Armak <danarmak@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.7 2001/09/29 21:03:25 danarmak Exp $
# This is the kde ebuild for std. kde-dependant apps which follow configure/make/make install
# procedures and have std. configure options. That includes kdevelop, koffice etc.
. /usr/portage/eclass/inherit.eclass || die
inherit c autoconf base || die
ECLASS=kde

DESCRIPTION="Based on the $ECLASS eclass"
HOMEPAGE="http://apps.kde.org/"

DEPEND="${DEPEND}
	kde-base/kdelibs
	objprelink? ( dev-util/objprelink )
	x11-libs/qt-x11"
RDEPEND="${RDEPEND}
	kde-base/kdelibs
	x11-libs/qt-x11"

kde_src_compile() {

	echo "in kde-base_src_compile, 1st parameter is $1"
    [ -z "$1" ] && kde_src_compile all

    while [ "$1" ]; do

	case $1 in
	    myconf)
			echo "in kde_src_compile, action is myconf"
			use qtmt 	&& myconf="$myconf --enable-mt"
	    		use objprelink	&& myconf="$myconf --enable-objprelink" || myconf="$myconf --disable-objprelink"
			;;
	    configure)
			echo "in kde_src_compile, action is configure"
			./configure --host=${CHOST} --with-x \
			${myconf} --with-xinerama || die
			;;
	    make)
			echo "in kde_src_compile, action is make"
			make || die
			;;
		all)
			echo "in kde_src_compile, action is all"
			kde_src_compile myconf configure make
			;;
	esac
	
    shift
    done

}

kde_src_install() {

	echo "in kde-base_src_compile, 1st parameter is $1"
    [ -z "$1" ] && kde_src_install all

    while [ "$1" ]; do

	case $1 in
	    make)
			echo "in kde_src_install, action is make"
			make install DESTDIR=${D} || die
			;;
	    dodoc)
			echo "in kde_src_install, action is dodoc"
			dodoc AUTHORS ChangeLog README*
			;;
	    all)
			echo "in kde_src_install, action is all"
			kde_src_install make dodoc
			;;
	esac

    shift
    done

}


EXPORT_FUNCTIONS src_compile src_install