blob: afb12e671d569bc75f92c610a5c0c2a89e3222a1 (
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
|
# $Id: PKGBUILD 126168 2011-06-02 00:51:07Z andrea $
# Maintainer: Andrea Scarpino <andrea@archlinux.org>
# Contributor: Pierre Schmitz <pierre@archlinux.de>
pkgbase=kdesdk
pkgname=('kdesdk-cervisia'
'kdesdk-dolphin-plugins'
'kdesdk-kapptemplate'
'kdesdk-kate'
'kdesdk-kcachegrind'
'kdesdk-kdeaccounts-plugin'
'kdesdk-kdepalettes'
'kdesdk-kioslave'
'kdesdk-kmtrace'
'kdesdk-kompare'
'kdesdk-kpartloader'
'kdesdk-kprofilemethod'
'kdesdk-kstartperf'
'kdesdk-kuiviewer'
'kdesdk-lokalize'
'kdesdk-okteta'
'kdesdk-poxml'
'kdesdk-scripts'
'kdesdk-strigi-analyzer'
'kdesdk-umbrello')
pkgver=4.6.3
pkgrel=2
arch=('i686' 'x86_64')
url='http://www.kde.org'
license=('GPL' 'LGPL' 'FDL')
groups=('kde' 'kdesdk')
makedepends=('pkgconfig' 'cmake' 'automoc4' 'boost' 'kdepim-runtime' 'subversion'
'antlr2' 'kdebase-konqueror')
source=("http://download.kde.org/stable/${pkgver}/src/${pkgbase}-${pkgver}.tar.bz2"
'fix-python2-path.patch')
sha1sums=('6faecbd828fda6cf0aced642287d982d3541d746'
'd05ca0231869c484fd3861955d960a60aff7dcfb')
build() {
cd ${srcdir}/${pkgbase}-${pkgver}
# Fix python2 path
patch -Np1 -i ${srcdir}/fix-python2-path.patch
sed -i -e "s|#![ ]*/usr/bin/python$|#!/usr/bin/python2|" \
-e "s|#![ ]*/usr/bin/env python$|#!/usr/bin/env python2|" \
$(find . -name '*.py')
cd ${srcdir}
mkdir build
cd build
cmake ../${pkgbase}-${pkgver} \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_SKIP_RPATH=ON \
-DCMAKE_INSTALL_PREFIX=/usr
make
}
package_kdesdk-cervisia() {
pkgdesc='CVS Frontend'
depends=('kdebase-runtime')
url="http://kde.org/applications/development/cervisia/"
install='kdesdk.install'
cd $srcdir/build/cervisia
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/cervisia
make DESTDIR=$pkgdir install
}
package_kdesdk-dolphin-plugins() {
pkgdesc='Extra Dolphin plugins'
depends=('kdebase-dolphin' 'subversion' 'git' 'kdesdk-kompare')
install='kdesdk.install'
cd $srcdir/build/dolphin-plugins/git
make DESTDIR=$pkgdir install
cd $srcdir/build/dolphin-plugins/svn
make DESTDIR=$pkgdir install
}
package_kdesdk-kapptemplate() {
pkgdesc='KDE Template Generator'
depends=('kdebase-runtime')
url="http://kde.org/applications/development/kapptemplate/"
install='kdesdk.install'
cd $srcdir/build/kapptemplate
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/kapptemplate
make DESTDIR=$pkgdir install
}
package_kdesdk-kate() {
pkgdesc='Advanced Text Editor'
depends=('kdebase-runtime' 'kdebase-lib')
url="http://kde.org/applications/utilities/kate/"
install='kdesdk-kate.install'
cd $srcdir/build/kate
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/kate
make DESTDIR=$pkgdir install
}
package_kdesdk-kcachegrind() {
pkgdesc='Visualization of Performance Profiling Data'
depends=('kdebase-runtime' 'python2')
optdepends=('php: PHP support')
url="http://kde.org/applications/development/kcachegrind/"
install='kdesdk.install'
cd $srcdir/build/kcachegrind
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/kcachegrind
make DESTDIR=$pkgdir install
}
package_kdesdk-kdeaccounts-plugin() {
pkgdesc='KDE Repository Accounts'
depends=('kdepim-runtime')
cd $srcdir/build/kdeaccounts-plugin
make DESTDIR=$pkgdir install
}
package_kdesdk-kdepalettes() {
pkgdesc='Palettes for the Gimp that match the KDE standard color palette'
optdepends=('gimp')
install -D -m644 $srcdir/${pkgbase}-${pkgver}/kdepalettes/KDE_Gimp \
$pkgdir/usr/share/gimp/2.0/palettes/KDE.gpl
}
package_kdesdk-kioslave() {
pkgdesc='KDED Subversion Module'
depends=('kdebase-runtime' 'subversion')
cd $srcdir/build/kioslave
make DESTDIR=$pkgdir install
}
package_kdesdk-kmtrace() {
pkgdesc='A KDE tool to assist with malloc debugging using glibc´s "mtrace" functionality'
depends=('kdebase-runtime')
cd $srcdir/build/kmtrace
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/kmtrace
make DESTDIR=$pkgdir install
}
package_kdesdk-kompare() {
pkgdesc='Diff/Patch Frontend'
depends=('kdebase-runtime')
url="http://kde.org/applications/development/kompare/"
install='kdesdk.install'
cd $srcdir/build/kompare
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/kompare
make DESTDIR=$pkgdir install
}
package_kdesdk-kpartloader() {
pkgdesc='A test application for KParts'
depends=('kdebase-runtime')
install='kdesdk.install'
cd $srcdir/build/kpartloader
make DESTDIR=$pkgdir install
}
package_kdesdk-kprofilemethod() {
pkgdesc='Macros helping to profile'
cd $srcdir/build/kprofilemethod
make DESTDIR=$pkgdir install
}
package_kdesdk-kstartperf() {
pkgdesc='Startup time measurement tool for KDE applications'
depends=('kdebase-runtime')
cd $srcdir/build/kstartperf
make DESTDIR=$pkgdir install
}
package_kdesdk-kuiviewer() {
pkgdesc='Qt Designer UI File Viewer'
depends=('kdebase-runtime')
url="http://kde.org/applications/development/kuiviewer/"
install='kdesdk.install'
cd $srcdir/build/kuiviewer
make DESTDIR=$pkgdir install
}
package_kdesdk-lokalize() {
pkgdesc='Computer-Aided Translation System'
depends=('kdebase-runtime' 'kdebindings-python')
url="http://kde.org/applications/development/lokalize/"
optdepends=('translate-toolkit: enable extra python script')
install='kdesdk.install'
cd $srcdir/build/lokalize
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/lokalize
make DESTDIR=$pkgdir install
}
package_kdesdk-okteta() {
pkgdesc='Hex Editor'
depends=('kdebase-runtime')
replaces=('kdeutils-okteta')
conflicts=('kdeutils-okteta')
url="http://kde.org/applications/utilities/okteta"
install='kdesdk-okteta.install'
cd $srcdir/build/okteta
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/okteta
make DESTDIR=$pkgdir install
}
package_kdesdk-poxml() {
pkgdesc='Translates DocBook XML files using gettext po files'
depends=('qt' 'antlr2')
cd $srcdir/build/poxml
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/poxml
make DESTDIR=$pkgdir install
}
package_kdesdk-scripts() {
pkgdesc='KDE SDK scripts'
depends=('python2')
cd $srcdir/build/scripts
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/scripts
make DESTDIR=$pkgdir install
}
package_kdesdk-strigi-analyzer() {
pkgdesc='Strigi-Analyzer for KDE SDK'
depends=('kdelibs')
cd $srcdir/build/strigi-analyzer
make DESTDIR=$pkgdir install
}
package_kdesdk-umbrello() {
pkgdesc='UML Modeller'
depends=('kdebase-runtime')
url="http://kde.org/applications/development/umbrello/"
install='kdesdk.install'
cd $srcdir/build/umbrello
make DESTDIR=$pkgdir install
cd $srcdir/build/doc/umbrello
make DESTDIR=$pkgdir install
}
|