]> git.pld-linux.org Git - packages/kde4-kdebase-runtime.git/blame - kde4-kdebase-runtime.spec
- merged from DEVEL
[packages/kde4-kdebase-runtime.git] / kde4-kdebase-runtime.spec
CommitLineData
04d87fdb 1# TODO
2# - l10n != %lang glibc locales (et = etiopia not estonia!)
6503ce65 3#
1ce0b6cc 4# Conditional build:
5%bcond_without apidocs # do not prepare API documentation
6503ce65 6#
64cd3fcd 7%define _state stable
6503ce65 8%define orgname kdebase-runtime
2e1962a3 9%define qtver 4.5.2
022e9098 10
6503ce65
JB
11Summary: KDE 4 base runtime components
12Summary(pl.UTF-8): Komponenty uruchomieniowe podstawowej części KDE 4
7e876cdb 13Name: kde4-kdebase-runtime
2e1962a3 14Version: 4.3.0
15Release: 1
1ce0b6cc 16License: GPL
17Group: X11/Applications
beb98610 18Source0: ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.bz2
2e1962a3 19# Source0-md5: 9681d074a26e2affe7c0a75db5139846
20#Source0: ftp://ftp.kde.org/pub/kde/%{_state}/%{version}/src/%{orgname}-%{version}.tar.bz2
04d87fdb 21Source1: kdebase-searchproviders.tar.bz2
22# Source1-md5: 126c3524b5367f5096a628acbf9dc86f
23Source2: l10n-iso639-1
2e1962a3 24#Patch100: %{name}-branch.diff
6503ce65 25URL: http://www.kde.org/
c3391395 26BuildRequires: QtOpenGL-devel >= %{qtver}
defb0118 27BuildRequires: QtSvg-devel >= %{qtver}
c3391395 28BuildRequires: QtTest-devel >= %{qtver}
04d87fdb 29BuildRequires: automoc4 >= 0.9.88
2e1962a3 30BuildRequires: clucene-core-devel >= 0.9.21
a6b7eef7 31BuildRequires: cmake >= 2.6.3
1ce0b6cc 32%{?with_apidocs:BuildRequires: doxygen}
1ce0b6cc 33%{?with_apidocs:BuildRequires: graphviz}
0b9ba6e8 34BuildRequires: kde4-kdelibs-devel >= %{version}
2e1962a3 35BuildRequires: kde4-kdelibs-experimental-devel >= %{version}
ea8b15a1
36BuildRequires: kde4-kdepimlibs-devel >= %{version}
37BuildRequires: libsmbclient-devel
2e1962a3 38BuildRequires: openslp-devel
8b7e4bb7 39BuildRequires: phonon-devel >= 4.3.1
04d87fdb 40BuildRequires: pulseaudio-devel
022e9098 41%{?with_apidocs:BuildRequires: qt4-doc >= %{qtver}}
1ce0b6cc 42BuildRequires: rpmbuild(macros) >= 1.129
2e1962a3 43BuildRequires: soprano-devel >= 2.3.0
04d87fdb 44BuildRequires: strigi-devel >= 0.6.3
1ce0b6cc 45BuildRequires: xine-lib-devel
83ae3117 46Provides: dbus(org.freedesktop.Notifications)
7e876cdb 47Obsoletes: kdebase4-runtime
48Conflicts: kdebase4-runtime
1ce0b6cc 49BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
50
1ce0b6cc 51%description
6503ce65
JB
52KDE 4 runtime components.
53
54%description -l pl.UTF-8
55Komponenty uruchomieniowe podstawowej części KDE 4.
1ce0b6cc 56
57%package devel
6503ce65
JB
58Summary: Development files for KDE 4 runtime components
59Summary(pl.UTF-8): Pliki programistyczne komponentów uruchomieniowych KDE 4
1ce0b6cc 60Group: X11/Development/Libraries
e5d7eae0 61Requires: %{name} = %{version}-%{release}
8e9f2df6 62Requires: kde4-kdelibs-devel >= %{version}
1ce0b6cc 63
64%description devel
6503ce65
JB
65Development files for KDE 4 runtime components.
66
67%description devel -l pl.UTF-8
68Pliki programistyczne komponentów uruchomieniowych KDE 4.
1ce0b6cc 69
04d87fdb 70%package -n kde4-phonon
84675b83
JB
71Summary: KDE 4 Phonon plugins
72Summary(pl.UTF-8): Wtyczki KDE 4 dla Phonona
7ea2e501 73Group: X11/Applications
f4833d8e 74
04d87fdb 75%description -n kde4-phonon
84675b83 76KDE 4 Phonon plugins.
f4833d8e 77
04d87fdb 78%description -n kde4-phonon -l pl.UTF-8
84675b83 79Wtyczki KDE 4 dla Phonona.
6503ce65 80
6d86166f 81%package -n kde4-style-oxygen
84dc9fc2 82Summary: KDE Oxygen Style
7ea2e501 83Summary(pl.UTF-8): Styl Oxygen dla KDE
84dc9fc2 84Group: Themes
8e9f2df6 85Obsoletes: kde-style-oxygen
84dc9fc2 86
6d86166f 87%description -n kde4-style-oxygen
84dc9fc2 88KDE Oxygen Style.
89
6d86166f 90%description -n kde4-style-oxygen -l pl.UTF-8
84dc9fc2 91Styl Oxygen dla KDE.
92
1ce0b6cc 93%prep
04d87fdb 94%setup -q -n %{orgname}-%{version} -a1
f87ed5c0 95#%patch100 -p1
1ce0b6cc 96
97%build
3730d34d 98install -d build
1ce0b6cc 99cd build
100%cmake \
101 -DCMAKE_INSTALL_PREFIX=%{_prefix} \
2e1962a3 102 -DLIB_INSTALL_DIR=%{_libdir} \
103 -DLIBEXEC_INSTALL_DIR=%{_libdir}/kde4/libexec \
f55c3542 104 -DCMAKE_BUILD_TYPE=%{!?debug:release}%{?debug:debug} \
5227a2ef 105%if "%{_lib}" == "lib64"
106 -DLIB_SUFFIX=64 \
107%endif
1ce0b6cc 108 ../
109
110%{__make}
111
112%install
113rm -rf $RPM_BUILD_ROOT
114
6503ce65 115%{__make} -C build install \
1ce0b6cc 116 DESTDIR=$RPM_BUILD_ROOT \
117 kde_htmldir=%{_kdedocdir}
118
04d87fdb 119install -d $RPM_BUILD_ROOT%{_datadir}/kde4/services/searchproviders/pld
120cp -a kdebase-searchproviders/*.desktop $RPM_BUILD_ROOT%{_datadir}/kde4/services/searchproviders/pld
121
122collect_l10n_files() {
123 while read country language comment; do
124 [ "$country" != "#" ] || continue
125 if [ "$language" = "-" ]; then
126 # no mapping. just add for now
127 echo >&2 "No mapping for $country $comment, adding without %%lang tag"
128 echo "%{_datadir}/locale/l10n/$country"
129 else
130 echo "%lang($language) %{_datadir}/locale/l10n/$country"
131 fi
132 done
133} < %{SOURCE2}
134collect_l10n_files > %{name}.files
135
136rm -f $RPM_BUILD_ROOT%{_datadir}/icons/default.kde4
137# provided (conflicts) by hicolor-icon-theme
138rm -f $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/index.theme
84dc9fc2 139
1ce0b6cc 140%clean
141rm -rf $RPM_BUILD_ROOT
142
6503ce65
JB
143%post -p /sbin/ldconfig
144%postun -p /sbin/ldconfig
1ce0b6cc 145
04d87fdb 146%files -f %{name}.files
7ea2e501 147%defattr(644,root,root,755)
148%{_sysconfdir}/xdg/menus/kde-information.menu
84dc9fc2 149%attr(755,root,root) %{_bindir}/kcmshell4
150%attr(755,root,root) %{_bindir}/kde-cp
151%attr(755,root,root) %{_bindir}/kde-mv
152%attr(755,root,root) %{_bindir}/kde-open
153%attr(755,root,root) %{_bindir}/kde4-menu
154%attr(755,root,root) %{_bindir}/kdebugdialog
155%attr(755,root,root) %{_bindir}/kfile4
75bd0db2 156%attr(755,root,root) %{_bindir}/kiconfinder
84dc9fc2 157%attr(755,root,root) %{_bindir}/khelpcenter
158%attr(755,root,root) %{_bindir}/khotnewstuff4
159%attr(755,root,root) %{_bindir}/kioclient
160%attr(755,root,root) %{_bindir}/kmimetypefinder
161%attr(755,root,root) %{_bindir}/knotify4
162%attr(755,root,root) %{_bindir}/kquitapp
163%attr(755,root,root) %{_bindir}/kreadconfig
164%attr(755,root,root) %{_bindir}/kstart
ece1862e 165%attr(755,root,root) %{_bindir}/kde4
04d87fdb 166%attr(755,root,root) %{_bindir}/kwalletd
f9496e14 167%attr(755,root,root) %{_bindir}/ksvgtopng
2e1962a3 168%attr(755,root,root) %{_bindir}/keditfiletype
169%attr(755,root,root) %{_bindir}/kglobalaccel
84dc9fc2 170%attr(755,root,root) %{_bindir}/ktraderclient
171%attr(755,root,root) %{_bindir}/ktrash
172%attr(755,root,root) %{_bindir}/kuiserver
173%attr(755,root,root) %{_bindir}/kwriteconfig
75bd0db2 174%attr(755,root,root) %{_bindir}/solid-hardware
2e1962a3 175%attr(755,root,root) %{_bindir}/nepomukserver
176%attr(755,root,root) %{_bindir}/nepomukservicestub
177%attr(755,root,root) %{_bindir}/plasmapkg
6503ce65
JB
178%attr(755,root,root) %{_libdir}/libkdeinit4_kcmshell4.so
179%attr(755,root,root) %{_libdir}/libkdeinit4_khelpcenter.so
180%attr(755,root,root) %{_libdir}/libkdeinit4_kuiserver.so
04d87fdb 181%attr(755,root,root) %{_libdir}/libkdeinit4_kwalletd.so
2e1962a3 182%attr(755,root,root) %{_libdir}/libkdeinit4_kglobalaccel.so
183%attr(755,root,root) %{_libdir}/libkdeinit4_nepomukserver.so
04d87fdb 184# Is it ok to add those files to main package?
2e1962a3 185%attr(755,root,root) %ghost %{_libdir}/libkwalletbackend.so.?
04d87fdb 186%attr(755,root,root) %{_libdir}/libkwalletbackend.so.*.*.*
2e1962a3 187%attr(755,root,root) %ghost %{_libdir}/libmolletnetwork.so.?
188%attr(755,root,root) %{_libdir}/libmolletnetwork.so.4.*.*
04d87fdb 189#
84dc9fc2 190%attr(755,root,root) %{_libdir}/kde4/cursorthumbnail.so
191%attr(755,root,root) %{_libdir}/kde4/djvuthumbnail.so
192%attr(755,root,root) %{_libdir}/kde4/exrthumbnail.so
193%attr(755,root,root) %{_libdir}/kde4/htmlthumbnail.so
194%attr(755,root,root) %{_libdir}/kde4/imagethumbnail.so
04d87fdb 195%attr(755,root,root) %{_libdir}/kde4/jpegthumbnail.so
84dc9fc2 196%attr(755,root,root) %{_libdir}/kde4/kcm_cgi.so
197%attr(755,root,root) %{_libdir}/kde4/kcm_componentchooser.so
75bd0db2 198%attr(755,root,root) %{_libdir}/kde4/kcm_emoticons.so
2e1962a3 199%attr(755,root,root) %{_libdir}/kde4/kcm_filetypes.so
84dc9fc2 200%attr(755,root,root) %{_libdir}/kde4/kcm_icons.so
84dc9fc2 201%attr(755,root,root) %{_libdir}/kde4/kcm_kded.so
202%attr(755,root,root) %{_libdir}/kde4/kcm_kdnssd.so
203%attr(755,root,root) %{_libdir}/kde4/kcm_knotify.so
204%attr(755,root,root) %{_libdir}/kde4/kcm_locale.so
2e1962a3 205%attr(755,root,root) %{_libdir}/kde4/kcm_nepomuk.so
04d87fdb 206%attr(755,root,root) %{_libdir}/kde4/kcm_trash.so
84dc9fc2 207%attr(755,root,root) %{_libdir}/kde4/kded_kpasswdserver.so
208%attr(755,root,root) %{_libdir}/kde4/kded_ktimezoned.so
209%attr(755,root,root) %{_libdir}/kde4/kded_remotedirnotify.so
210%attr(755,root,root) %{_libdir}/kde4/kded_soliduiserver.so
851d83a2 211%attr(755,root,root) %{_libdir}/kde4/kded_desktopnotifier.so
2e1962a3 212%attr(755,root,root) %{_libdir}/kde4/kded_networkwatcher.so
213%attr(755,root,root) %{_libdir}/kde4/kded_solidautoeject.so
04d87fdb 214%attr(755,root,root) %{_libdir}/kde4/kio_applications.so
215%attr(755,root,root) %{_libdir}/kde4/kio_bookmarks.so
851d83a2 216%attr(755,root,root) %{_libdir}/kde4/kio_desktop.so
84dc9fc2 217%attr(755,root,root) %{_libdir}/kde4/kio_about.so
218%attr(755,root,root) %{_libdir}/kde4/kio_archive.so
219%attr(755,root,root) %{_libdir}/kde4/kio_cgi.so
220%attr(755,root,root) %{_libdir}/kde4/kio_filter.so
221%attr(755,root,root) %{_libdir}/kde4/kio_finger.so
222%attr(755,root,root) %{_libdir}/kde4/kio_fish.so
223%attr(755,root,root) %{_libdir}/kde4/kio_floppy.so
224%attr(755,root,root) %{_libdir}/kde4/kio_info.so
225%attr(755,root,root) %{_libdir}/kde4/kio_man.so
04d87fdb 226%attr(755,root,root) %{_libdir}/kde4/kio_nepomuksearch.so
2e1962a3 227%attr(755,root,root) %{_libdir}/kde4/kio_network.so
84dc9fc2 228%attr(755,root,root) %{_libdir}/kde4/kio_nfs.so
229%attr(755,root,root) %{_libdir}/kde4/kio_remote.so
230%attr(755,root,root) %{_libdir}/kde4/kio_settings.so
231%attr(755,root,root) %{_libdir}/kde4/kio_sftp.so
232%attr(755,root,root) %{_libdir}/kde4/kio_smb.so
233%attr(755,root,root) %{_libdir}/kde4/kio_thumbnail.so
234%attr(755,root,root) %{_libdir}/kde4/kio_trash.so
84dc9fc2 235%attr(755,root,root) %{_libdir}/kde4/libkmanpart.so
22ef4f2c
RT
236%attr(755,root,root) %{_libdir}/kde4/fixhosturifilter.so
237%attr(755,root,root) %{_libdir}/kde4/kcm_phonon.so
238%attr(755,root,root) %{_libdir}/kde4/kcmspellchecking.so
239%attr(755,root,root) %{_libdir}/kde4/kshorturifilter.so
240%attr(755,root,root) %{_libdir}/kde4/kuriikwsfilter.so
241%attr(755,root,root) %{_libdir}/kde4/kurisearchfilter.so
242%attr(755,root,root) %{_libdir}/kde4/localdomainurifilter.so
84dc9fc2 243%attr(755,root,root) %{_libdir}/kde4/librenaudioplugin.so
244%attr(755,root,root) %{_libdir}/kde4/librenimageplugin.so
2e1962a3 245%attr(755,root,root) %{_libdir}/kde4/nepomukfilewatch.so
246%attr(755,root,root) %{_libdir}/kde4/nepomukmigration1.so
247%attr(755,root,root) %{_libdir}/kde4/nepomukontologyloader.so
248%attr(755,root,root) %{_libdir}/kde4/nepomukqueryservice.so
249%attr(755,root,root) %{_libdir}/kde4/nepomukstorage.so
250%attr(755,root,root) %{_libdir}/kde4/nepomukstrigiservice.so
251%attr(755,root,root) %{_libdir}/kde4/plasma_appletscript_simple_javascript.so
252%attr(755,root,root) %{_libdir}/kde4/plasma_runnerscript_javascript.so
84dc9fc2 253%attr(755,root,root) %{_libdir}/kde4/svgthumbnail.so
254%attr(755,root,root) %{_libdir}/kde4/textthumbnail.so
6503ce65
JB
255%attr(755,root,root) %{_libdir}/kde4/libexec/drkonqi
256%attr(755,root,root) %{_libdir}/kde4/libexec/kdeeject
257%attr(755,root,root) %{_libdir}/kde4/libexec/kdesu
258%attr(755,root,root) %{_libdir}/kde4/libexec/kdesud
259%attr(755,root,root) %{_libdir}/kde4/libexec/khc_docbookdig.pl
260%attr(755,root,root) %{_libdir}/kde4/libexec/khc_htdig.pl
261%attr(755,root,root) %{_libdir}/kde4/libexec/khc_htsearch.pl
262%attr(755,root,root) %{_libdir}/kde4/libexec/khc_indexbuilder
263%attr(755,root,root) %{_libdir}/kde4/libexec/khc_mansearch.pl
264%attr(755,root,root) %{_libdir}/kde4/libexec/kioexec
265%attr(755,root,root) %{_libdir}/kde4/libexec/klocaldomainurifilterhelper
266%attr(755,root,root) %{_libdir}/kde4/libexec/knetattach
75bd0db2 267%attr(755,root,root) %{_libdir}/strigi/strigiindex_sopranobackend.so
2e1962a3 268%dir %{_libdir}/kde4/plugins/styles
84dc9fc2 269%{_datadir}/apps/drkonqi
04d87fdb 270%dir %{_datadir}/apps/kcm_componentchooser
84dc9fc2 271%{_datadir}/apps/kcm_componentchooser/kcm_browser.desktop
04d87fdb 272%{_datadir}/apps/kcm_componentchooser/kcm_filemanager.desktop
84dc9fc2 273%{_datadir}/apps/kcm_componentchooser/kcm_kemail.desktop
274%{_datadir}/apps/kcm_componentchooser/kcm_terminal.desktop
04d87fdb 275%{_datadir}/apps/kcm_componentchooser/kcm_wm.desktop
84dc9fc2 276%{_datadir}/apps/kcmlocale
277%{_datadir}/apps/kconf_update/kuriikwsfilter.upd
278%{_datadir}/apps/kde/kde.notifyrc
f099521f 279%{_datadir}/apps/khelpcenter
04d87fdb 280%{_datadir}/apps/kio_bookmarks
84dc9fc2 281%{_datadir}/apps/kio_finger
282%{_datadir}/apps/kio_info
84dc9fc2 283%{_datadir}/apps/kio_thumbnail
284%dir %{_datadir}/apps/konqueror/dirtree
285%dir %{_datadir}/apps/konqueror/dirtree/remote
286%{_datadir}/apps/konqueror/dirtree/remote/smb-network.desktop
287%dir %{_datadir}/apps/remoteview
288%{_datadir}/apps/remoteview/smb-network.desktop
04d87fdb 289%dir %{_datadir}/apps/nepomuk
290%dir %{_datadir}/apps/nepomuk/ontologies
2e1962a3 291%{_datadir}/apps/nepomuk/ontologies/*
292%dir %{_datadir}/apps/nepomukstorage
293%{_datadir}/apps/nepomukstorage/nepomukstorage.notifyrc
294%dir %{_datadir}/apps/nepomukstrigiservice
295%{_datadir}/apps/nepomukstrigiservice/nepomukstrigiservice.notifyrc
84dc9fc2 296%{_datadir}/config.kcfg/khelpcenter.kcfg
297%{_datadir}/config/khotnewstuff.knsrc
f9496e14 298%{_datadir}/config/icons.knsrc
75bd0db2 299%{_datadir}/config/emoticons.knsrc
84dc9fc2 300%{_datadir}/config/kshorturifilterrc
84dc9fc2 301%{_datadir}/dbus-1/services/org.kde.knotify.service
2e1962a3 302%{_datadir}/dbus-1/interfaces/*.xml
f099521f 303%{_datadir}/emoticons/kde4
84dc9fc2 304%{_datadir}/kde4/services/about.protocol
305%{_datadir}/kde4/services/applications.protocol
306%{_datadir}/kde4/services/ar.protocol
04d87fdb 307%{_datadir}/kde4/services/bookmarks.protocol
84dc9fc2 308%{_datadir}/kde4/services/bzip.protocol
309%{_datadir}/kde4/services/bzip2.protocol
310%{_datadir}/kde4/services/cgi.protocol
311%{_datadir}/kde4/services/componentchooser.desktop
312%{_datadir}/kde4/services/cursorthumbnail.desktop
313%{_datadir}/kde4/services/djvuthumbnail.desktop
75bd0db2 314%{_datadir}/kde4/services/emoticons.desktop
84dc9fc2 315%{_datadir}/kde4/services/exrthumbnail.desktop
316%{_datadir}/kde4/services/finger.protocol
317%{_datadir}/kde4/services/fish.protocol
318%{_datadir}/kde4/services/fixhosturifilter.desktop
319%{_datadir}/kde4/services/floppy.protocol
320%{_datadir}/kde4/services/gzip.protocol
321%{_datadir}/kde4/services/htmlthumbnail.desktop
322%{_datadir}/kde4/services/icons.desktop
323%{_datadir}/kde4/services/imagethumbnail.desktop
324%{_datadir}/kde4/services/info.protocol
04d87fdb 325%{_datadir}/kde4/services/jpegthumbnail.desktop
84dc9fc2 326%{_datadir}/kde4/services/kcm_kdnssd.desktop
84dc9fc2 327%{_datadir}/kde4/services/kcmcgi.desktop
328%{_datadir}/kde4/services/kcmkded.desktop
329%{_datadir}/kde4/services/kcmnotify.desktop
04d87fdb 330%{_datadir}/kde4/services/kcmtrash.desktop
84dc9fc2 331%{_datadir}/kde4/services/kded/kpasswdserver.desktop
332%{_datadir}/kde4/services/kded/ktimezoned.desktop
333%{_datadir}/kde4/services/kded/remotedirnotify.desktop
334%{_datadir}/kde4/services/kded/soliduiserver.desktop
335%{_datadir}/kde4/services/khelpcenter.desktop
336%{_datadir}/kde4/services/kmanpart.desktop
337%{_datadir}/kde4/services/knotify4.desktop
338%{_datadir}/kde4/services/kshorturifilter.desktop
339%{_datadir}/kde4/services/kuiserver.desktop
340%{_datadir}/kde4/services/kuriikwsfilter.desktop
341%{_datadir}/kde4/services/kurisearchfilter.desktop
04d87fdb 342%{_datadir}/kde4/services/kwalletd.desktop
84dc9fc2 343%{_datadir}/kde4/services/language.desktop
344%{_datadir}/kde4/services/localdomainurifilter.desktop
2e1962a3 345%{_datadir}/kde4/services/lzma.protocol
84dc9fc2 346%{_datadir}/kde4/services/man.protocol
347%{_datadir}/kde4/services/nfs.protocol
84dc9fc2 348%{_datadir}/kde4/services/programs.protocol
349%{_datadir}/kde4/services/remote.protocol
350%{_datadir}/kde4/services/renaudiodlg.desktop
351%{_datadir}/kde4/services/renimagedlg.desktop
352%{_datadir}/kde4/services/searchproviders
353%{_datadir}/kde4/services/settings.protocol
354%{_datadir}/kde4/services/sftp.protocol
355%{_datadir}/kde4/services/smb.protocol
84dc9fc2 356%{_datadir}/kde4/services/svgthumbnail.desktop
357%{_datadir}/kde4/services/tar.protocol
358%{_datadir}/kde4/services/textthumbnail.desktop
359%{_datadir}/kde4/services/thumbnail.protocol
360%{_datadir}/kde4/services/trash.protocol
361%{_datadir}/kde4/services/zip.protocol
2e1962a3 362%{_datadir}/kde4/services/xz.protocol
363%{_datadir}/kde4/services/desktop.protocol
364%{_datadir}/kde4/services/kded/desktopnotifier.desktop
365%{_datadir}/kde4/services/desktopthumbnail.desktop
366%{_datadir}/kde4/services/directorythumbnail.desktop
367%{_datadir}/kde4/services/filetypes.desktop
368%{_datadir}/kde4/services/kded/networkwatcher.desktop
369%{_datadir}/kde4/services/kded/solidautoeject.desktop
370%{_datadir}/kde4/services/kglobalaccel.desktop
371%{_datadir}/kde4/services/network.protocol
372%{_datadir}/kde4/services/kcm_nepomuk.desktop
31b7d9eb 373%{_datadir}/kde4/services/nepomukfilewatch.desktop
ece1862e 374%{_datadir}/kde4/services/nepomukmigration1.desktop
375%{_datadir}/kde4/services/nepomukontologyloader.desktop
2e1962a3 376%{_datadir}/kde4/services/nepomukqueryservice.desktop
377%{_datadir}/kde4/services/nepomuksearch.protocol
ece1862e 378%{_datadir}/kde4/services/nepomukstorage.desktop
379%{_datadir}/kde4/services/nepomukstrigiservice.desktop
2e1962a3 380%{_datadir}/kde4/services/plasma-scriptengine-applet-simple-javascript.desktop
381%{_datadir}/kde4/services/plasma-scriptengine-runner-javascript.desktop
ece1862e 382%{_datadir}/kde4/servicetypes/nepomukservice.desktop
84dc9fc2 383%{_datadir}/kde4/servicetypes/searchprovider.desktop
384%{_datadir}/kde4/servicetypes/thumbcreator.desktop
f9496e14 385%{_datadir}/desktop-directories
2e1962a3 386%{_datadir}/mime/packages/network.xml
387%{_datadir}/autostart/nepomukserver.desktop
04d87fdb 388
6503ce65 389%{_datadir}/locale/en_US/*
84dc9fc2 390%dir %{_datadir}/locale/l10n
04d87fdb 391%{_datadir}/locale/l10n/C
84dc9fc2 392%{_datadir}/locale/l10n/caribbean.desktop
393%{_datadir}/locale/l10n/centralafrica.desktop
394%{_datadir}/locale/l10n/centralamerica.desktop
395%{_datadir}/locale/l10n/centralasia.desktop
396%{_datadir}/locale/l10n/centraleurope.desktop
04d87fdb 397%{_datadir}/locale/l10n/eastafrica.desktop
84dc9fc2 398%{_datadir}/locale/l10n/eastasia.desktop
399%{_datadir}/locale/l10n/easteurope.desktop
400%{_datadir}/locale/l10n/middleeast.desktop
401%{_datadir}/locale/l10n/northafrica.desktop
402%{_datadir}/locale/l10n/northamerica.desktop
403%{_datadir}/locale/l10n/northeurope.desktop
404%{_datadir}/locale/l10n/oceania.desktop
405%{_datadir}/locale/l10n/southafrica.desktop
406%{_datadir}/locale/l10n/southamerica.desktop
407%{_datadir}/locale/l10n/southasia.desktop
408%{_datadir}/locale/l10n/southeastasia.desktop
409%{_datadir}/locale/l10n/southeurope.desktop
410%{_datadir}/locale/l10n/westafrica.desktop
411%{_datadir}/locale/l10n/westeurope.desktop
04d87fdb 412
6503ce65
JB
413%{_desktopdir}/kde4/Help.desktop
414%{_desktopdir}/kde4/knetattach.desktop
04d87fdb 415%lang(en) %{_kdedocdir}/en/kcontrol/*
416%lang(en) %{_kdedocdir}/en/kdebugdialog
417%lang(en) %{_kdedocdir}/en/kdesu
418%lang(en) %{_kdedocdir}/en/khelpcenter
419%lang(en) %{_kdedocdir}/en/kioslave/bzip2
420%lang(en) %{_kdedocdir}/en/kioslave/bookmarks
421%lang(en) %{_kdedocdir}/en/kioslave/cgi
422%lang(en) %{_kdedocdir}/en/kioslave/finger
423%lang(en) %{_kdedocdir}/en/kioslave/fish
424%lang(en) %{_kdedocdir}/en/kioslave/floppy
425%lang(en) %{_kdedocdir}/en/kioslave/gzip
426%lang(en) %{_kdedocdir}/en/kioslave/info
427%lang(en) %{_kdedocdir}/en/kioslave/man
428%lang(en) %{_kdedocdir}/en/kioslave/nfs
429%lang(en) %{_kdedocdir}/en/kioslave/sftp
430%lang(en) %{_kdedocdir}/en/kioslave/smb
431%lang(en) %{_kdedocdir}/en/kioslave/tar
432%lang(en) %{_kdedocdir}/en/kioslave/thumbnail
433%lang(en) %{_kdedocdir}/en/knetattach
2e1962a3 434%lang(en) %{_kdedocdir}/en/network
6503ce65 435%lang(en) %{_mandir}/man1/kdesu.1*
2e1962a3 436%lang(en) %{_mandir}/man8/nepomuk*.8*
04d87fdb 437
6503ce65 438%{_datadir}/sounds/*
84dc9fc2 439%{_iconsdir}/hicolor/*/*/*.png
04d87fdb 440%dir %{_datadir}/apps/ksmserver
441%dir %{_datadir}/apps/ksmserver/windowmanagers
442%{_datadir}/apps/ksmserver/windowmanagers/compiz-custom.desktop
443%{_datadir}/apps/ksmserver/windowmanagers/compiz.desktop
444%{_datadir}/apps/ksmserver/windowmanagers/metacity.desktop
445%{_datadir}/apps/ksmserver/windowmanagers/openbox.desktop
2e1962a3 446%{_datadir}/apps/kio_docfilter
447%dir %{_datadir}/apps/konqsidebartng
448%dir %{_datadir}/apps/konqsidebartng/virtual_folders
449%dir %{_datadir}/apps/konqsidebartng/virtual_folders/remote
450%{_datadir}/apps/konqsidebartng/virtual_folders/remote/virtualfolder_network.desktop
451%{_datadir}/apps/kwalletd
452%{_datadir}/apps/remoteview/network.desktop
04d87fdb 453
454# dir owned by kdelibs
455%{_datadir}/apps/desktoptheme/default/*
6503ce65
JB
456
457%files devel
458%defattr(644,root,root,755)
04d87fdb 459%{_libdir}/libkwalletbackend.so
2e1962a3 460%{_libdir}/libmolletnetwork.so
6503ce65 461%{_datadir}/apps/cmake/modules/FindCLucene.cmake
2e1962a3 462%{_datadir}/apps/cmake/modules/FindSLP.cmake
f099521f 463
04d87fdb 464%files -n kde4-phonon
f4833d8e 465%defattr(644,root,root,755)
04d87fdb 466%attr(755,root,root) %{_libdir}/kconf_update_bin/phonon_devicepreference_update
467%attr(755,root,root) %{_libdir}/kconf_update_bin/phonon_deviceuids_update
468%attr(755,root,root) %{_libdir}/kde4/kded_phononserver.so
6503ce65 469%attr(755,root,root) %{_libdir}/kde4/kcm_phononxine.so
22ef4f2c
RT
470%{_datadir}/kde4/services/kcm_phonon.desktop
471%{_datadir}/kde4/services/spellchecking.desktop
472%{_datadir}/kde4/servicetypes/phononbackend.desktop
04d87fdb 473%{_datadir}/kde4/services/kcm_phononxine.desktop
474
3a95a789 475%dir %{_libdir}/kde4/plugins/phonon_platform
22ef4f2c 476%{_libdir}/kde4/plugins/phonon_platform/kde.so
f81ca0a3 477%dir %{_datadir}/apps/kcm_phonon
22ef4f2c
RT
478%{_datadir}/apps/kcm_phonon/listview-background.png
479%{_datadir}/apps/kconf_update/devicepreference.upd
f81ca0a3 480%dir %{_datadir}/apps/libphonon
22ef4f2c 481%{_datadir}/apps/libphonon/hardwaredatabase
f81ca0a3 482%dir %{_datadir}/apps/phonon
22ef4f2c 483%{_datadir}/apps/phonon/phonon.notifyrc
04d87fdb 484%dir %{_datadir}/apps/kio_desktop
485%dir %{_datadir}/apps/kio_desktop/DesktopLinks
486%{_datadir}/apps/kio_desktop/DesktopLinks/Home.desktop
487%{_datadir}/apps/kio_desktop/directory.desktop
488%{_datadir}/apps/kio_desktop/directory.trash
489%{_datadir}/kde4/services/kded/phononserver.desktop
f4833d8e 490
6d86166f 491%files -n kde4-style-oxygen
84dc9fc2 492%defattr(644,root,root,755)
493%attr(755,root,root) %{_libdir}/kde4/kstyle_oxygen_config.so
494%attr(755,root,root) %{_libdir}/kde4/plugins/styles/oxygen.so
495%{_datadir}/apps/kstyle/themes/oxygen.themerc
2e1962a3 496%dir %{_datadir}/apps/desktoptheme/oxygen
497%dir %{_datadir}/apps/desktoptheme/oxygen/colors
498%{_datadir}/apps/desktoptheme/oxygen/metadata.desktop
This page took 0.110176 seconds and 4 git commands to generate.