blob: 961346e410bd3e5c23e4b28eed64d2e1c7aab6a3 (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
|
# 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.28 2001/12/31 22:20:51 danarmak Exp $
# The kde eclass is inherited by all kde-* eclasses. Few ebuilds inherit straight from here.
inherit autoconf base || die
ECLASS=kde
# for versions with _alpha/_beta etc in them
#S=${WORKDIR}/${P//_}
DESCRIPTION="Based on the $ECLASS eclass"
HOMEPAGE="http://www.kde.org/"
kde_src_compile() {
debug-print-function $FUNCNAME $*
[ -z "$1" ] && kde_src_compile all
while [ "$1" ]; do
case $1 in
myconf)
debug-print-section myconf
myconf="$myconf --host=${CHOST} --with-x --enable-mitshm --with-xinerama --prefix=/usr --with-qt-dir=${QTDIR}"
use qtmt && myconf="$myconf --enable-mt"
[ -n "$DEBUG" ] && myconf="$myconf --enable-debug" || myconf="$myconf --disable-debug"
debug-print "$FUNCNAME: myconf: set to ${myconf}"
;;
configure)
debug-print-section configure
debug-print "$FUNCNAME::configure: myconf=$myconf"
export PATH="${KDEDIR}/bin:${PATH}"
./configure ${myconf} || die
;;
make)
export PATH="${KDEDIR}/bin:${PATH}"
debug-print-section make
make || die
;;
all)
debug-print-section all
kde_src_compile myconf configure make
;;
esac
shift
done
}
kde_src_install() {
debug-print-function $FUNCNAME $*
[ -z "$1" ] && kde_src_install all
while [ "$1" ]; do
case $1 in
make)
debug-print-section make
make install DESTDIR=${D} destdir=${D} || die
;;
dodoc)
debug-print-section dodoc
dodoc AUTHORS ChangeLog README* COPYING NEWS TODO
;;
all)
debug-print-section all
kde_src_install make dodoc
;;
esac
shift
done
}
EXPORT_FUNCTIONS src_compile src_install
# This used to be depend.eclass. At some point I realized it might as well be called kde-depend.eclass. And then
# because functions fom there needed functions from here and vice versa I merged them.
#---------------
need-kde() {
debug-print-function $FUNCNAME $*
KDEVER="$1"
newdepend ">=kde-base/kdelibs-$KDEVER"
set-kdedir $KDEVER
qtver-from-kdever $KDEVER
need-qt $selected_version
}
set-kdedir() {
debug-print-function $FUNCNAME $*
local KDEVER
KDEVER=$1
# select 1st element in dot-separated string
IFSBACKUP=$IFS
IFS="."
KDEMAJORVER=""
for x in $KDEVER; do
[ -z "$KDEMAJORVER" ] && KDEMAJORVER=$x
done
IFS=$IFSBACKUP
export KDEDIR="/usr/kde/$KDEMAJORVER"
}
need-qt() {
debug-print-function $FUNCNAME $*
QTVER="$1"
newdepend ">=x11-libs/qt-$QTVER"
set-qtdir $QTVER
}
set-qtdir() {
debug-print-function $FUNCNAME $*
local QTVER
QTVER=$1
# select 1st element in dot-separated string
IFSBACKUP=$IFS
IFS="."
QTMAJORVER=""
for x in $QTVER; do
[ -z "$QTMAJORVER" ] && QTMAJORVER=$x
done
IFS=$IFSBACKUP
export QTDIR="/usr/qt/$QTMAJORVER"
}
# returns minimal qt version needed for specified kde version
qtver-from-kdever() {
local ver
case $1 in
2*) ver=2.3.1;;
3.0*) ver=3.0.1;;
*) echo "!!! error: qtver-from-kdever() (kde.eclass) called with invalid parameter: \"$1\", please report bug" && exit 1;;
esac
selected_version="$ver"
}
# compat
need-kdelibs() {
echo "WARNING: need-kdelibs() called, where need-kde() is correct.
If this happens at the unmerging of an old ebuild, disregard; otherwise report."
need-kde $*
}
|