diff options
author | Will Andrews <will@FreeBSD.org> | 2001-02-26 19:24:49 +0000 |
---|---|---|
committer | Will Andrews <will@FreeBSD.org> | 2001-02-26 19:24:49 +0000 |
commit | 26121d15aefe3055f4b11633dcaca64da67c0913 (patch) | |
tree | 6ef2924bd6e9cb5e5a689c5d3a30612f8ec5dc50 /x11 | |
parent | Remove '-lc' from LDLIBS so threaded apps can link against libslang (diff) |
Lo and behold, welcome KDE 2.1 to our ports tree. As a direct result of
the KDE team's excellent work, I am initiating burn sequence for KDE
1.x. All base KDE1 ports are hereby nuked. I am also reluctantly
reassuming maintainership of the KDE2 ports. Official KDE 2.1 packages
built for FreeBSD 4.2-STABLE w/ XFree86 4.0.2 are available on KDE's
official ftp mirrors now. Enjoy!
Note: It seems that the KDE people rerolled their kdelibs and kdebase
packages, and a quick examination of diffs reveal minor changes, but the
port should still work. I'll fix the packaging problems that bento runs
into.
Approved by: kevlo
Notes
Notes:
svn path=/head/; revision=38810
Diffstat (limited to 'x11')
96 files changed, 6960 insertions, 7396 deletions
diff --git a/x11/Makefile b/x11/Makefile index 975e29ebebc5..1c1052a9840c 100644 --- a/x11/Makefile +++ b/x11/Makefile @@ -40,9 +40,7 @@ SUBDIR += gyroscope SUBDIR += imwheel SUBDIR += kb2mb2 - SUBDIR += kde11 SUBDIR += kde2 - SUBDIR += kdebase11 SUBDIR += kdebase2 SUBDIR += kdelibs11 SUBDIR += kdelibs2 diff --git a/x11/kde2/Makefile b/x11/kde2/Makefile index fe065aaca901..f16a8b59aa38 100644 --- a/x11/kde2/Makefile +++ b/x11/kde2/Makefile @@ -6,13 +6,13 @@ # PORTNAME= kde -PORTVERSION= 2.0.1 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= # empty DISTFILES= # none EXTRACT_ONLY= # empty -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= kdecore.4:${PORTSDIR}/x11/kdelibs2 RUN_DEPENDS= konqueror:${PORTSDIR}/x11/kdebase2 \ diff --git a/x11/kde3/Makefile b/x11/kde3/Makefile index fe065aaca901..f16a8b59aa38 100644 --- a/x11/kde3/Makefile +++ b/x11/kde3/Makefile @@ -6,13 +6,13 @@ # PORTNAME= kde -PORTVERSION= 2.0.1 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= # empty DISTFILES= # none EXTRACT_ONLY= # empty -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= kdecore.4:${PORTSDIR}/x11/kdelibs2 RUN_DEPENDS= konqueror:${PORTSDIR}/x11/kdebase2 \ diff --git a/x11/kde4-baseapps/Makefile b/x11/kde4-baseapps/Makefile index e44f3da88bf8..a346796a21ee 100644 --- a/x11/kde4-baseapps/Makefile +++ b/x11/kde4-baseapps/Makefile @@ -6,12 +6,12 @@ # PORTNAME= kdebase -PORTVERSION= 2.0.1 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION}/distribution/tar/generic/src -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= kdeui.4:${PORTSDIR}/x11/kdelibs2 \ intl.1:${PORTSDIR}/devel/gettext diff --git a/x11/kde4-baseapps/distinfo b/x11/kde4-baseapps/distinfo index 80f0c4ce35f6..243923f1a5d7 100644 --- a/x11/kde4-baseapps/distinfo +++ b/x11/kde4-baseapps/distinfo @@ -1 +1 @@ -MD5 (kdebase-2.0.1.tar.bz2) = b138a67ae22fbda05def8e932820ac66 +MD5 (kdebase-2.1.tar.bz2) = 54264460bca895cc3e315bb49c297f8f diff --git a/x11/kde4-baseapps/files/patch-Processlist.c b/x11/kde4-baseapps/files/patch-Processlist.c deleted file mode 100644 index 863d56e7ec72..000000000000 --- a/x11/kde4-baseapps/files/patch-Processlist.c +++ /dev/null @@ -1,80 +0,0 @@ ---- ksysguard/ksysguardd/FreeBSD/ProcessList.c.old Tue Jan 23 19:44:29 2001 -+++ ksysguard/ksysguardd/FreeBSD/ProcessList.c Tue Jan 23 20:19:24 2001 -@@ -186,7 +186,20 @@ - if (sysctl(mib, 4, &p, &len, NULL, 0) == -1 || !len) - return -1; - -- /* ?? */ -+#if __FreeBSD_version >= 500015 -+ /* Getting runtime process info */ -+ ps->pid = p.ki_pid; -+ ps->ppid = p.ki_ppid; -+ strcpy(ps->name, p.ki_comm); -+ ps->uid = p.ki_uid; -+ ps->gid = p.ki_pgid; -+ -+ pwent = getpwuid(ps->uid); -+ strcpy(ps->userName, pwent ? pwent->pw_name : "????"); -+ ps->priority = p.ki_priority; -+ ps->niceLevel = p.ki_nice; -+ -+#else - ps->pid = p.kp_proc.p_pid; - ps->ppid = p.kp_eproc.e_ppid; - strcpy(ps->name, p.kp_proc.p_comm); -@@ -198,16 +211,30 @@ - strcpy(ps->userName, pwent ? pwent->pw_name : "????"); - ps->priority = p.kp_proc.p_priority; - ps->niceLevel = p.kp_proc.p_nice; -+#endif - - /* this isn't usertime -- it's total time (??) */ --#if __FreeBSD_version >= 300000 -+#if __FreeBSD_version >= 500015 -+ ps->userTime = p.ki_runtime / 10000; -+#elif __FreeBSD_version >= 300000 - ps->userTime = p.kp_proc.p_runtime / 10000; - #else - ps->userTime = p.kp_proc.p_rtime.tv_sec*100+p.kp_proc.p_rtime.tv_usec/100 - #endif -+ - ps->sysTime = 0; -- ps->userLoad = p.kp_proc.p_pctcpu / 100; - ps->sysLoad = 0; -+#if __FreeBSD_version >= 500015 -+ ps->userLoad = p.ki_pctcpu / 100; -+ -+ /* memory */ -+ ps->vmSize = p.ki_size * getpagesize(); -+ -+ ps->vmRss = p.ki_rssize * getpagesize(); -+ -+ ps->status = p.ki_stat; -+#else -+ ps->userLoad = p.kp_proc.p_pctcpu / 100; - - /* memory */ - ps->vmSize = (p.kp_eproc.e_vm.vm_tsize + -@@ -216,7 +243,7 @@ - ps->vmRss = p.kp_eproc.e_vm.vm_rssize * getpagesize(); - - ps->status = p.kp_proc.p_stat; -- -+#endif - return (0); - } - -@@ -284,8 +311,13 @@ - p = malloc(len); - sysctl(mib, 3, p, &len, NULL, 0); - -+#if __FreeBSD_version >= 500015 -+ for (num = 0; num < len / sizeof(struct kinfo_proc); num++) -+ updateProcess(p[num].ki_pid); -+#else - for (num = 0; num < len / sizeof(struct kinfo_proc); num++) - updateProcess(p[num].kp_proc.p_pid); -+#endif - - cleanupProcessList(); - diff --git a/x11/kde4-baseapps/files/patch-TEPty.C b/x11/kde4-baseapps/files/patch-TEPty.C index 9bfd5db25ccd..796ec243efbf 100644 --- a/x11/kde4-baseapps/files/patch-TEPty.C +++ b/x11/kde4-baseapps/files/patch-TEPty.C @@ -1,83 +1,6 @@ ---- konsole/src/TEPty.C.orig Fri Dec 8 11:51:24 2000 -+++ konsole/src/TEPty.C Fri Dec 8 11:52:51 2000 -@@ -180,27 +180,57 @@ - // param grant: 1 to grant, 0 to revoke - // returns 1 on success 0 on fail - { -- pid_t pid = fork(); -- if (pid < 0) -- { -- return 0; -- } -- if (pid == 0) -- { -- /* We pass the master pseudo terminal as file descriptor PTY_FILENO. */ -- if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) exit(1); -- QString path = locate("exe", BASE_CHOWN); -+ pid_t pid; -+ int pstat; -+ struct sigaction ign; -+ struct sigaction intact; // interupt action -+ struct sigaction quitact; // quit action -+ sigset_t newsigblock, oldsigblock; -+ QString path; -+ -+ ign.sa_handler = SIG_IGN; -+ sigemptyset(&ign.sa_mask); -+ ign.sa_flags = 0; -+ sigaction(SIGINT, &ign, &intact); -+ sigaction(SIGQUIT, &ign, &quitact); -+ sigemptyset(&newsigblock); -+ sigaddset(&newsigblock, SIGCHLD); -+ sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock); -+ -+ switch (pid = fork()) { -+ case -1: -+ return(0); -+ break; -+ case 0: // child -+ if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) -+ exit(1); -+ path = locate("exe", BASE_CHOWN); -+ -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); - execle(path.ascii(), BASE_CHOWN, grant?"--grant":"--revoke", NULL, NULL); -- exit(1); // should not be reached -- } -- if (pid > 0) -- { int w; -- retry: -- int rc = waitpid (pid, &w, 0); -- if ((rc == -1) && (errno == EINTR)) -- goto retry; -- return (rc != -1 && WIFEXITED(w) && WEXITSTATUS(w) == 0); -+ exit(1); -+ break; -+ default: -+ do { -+ pid = waitpid(pid, &pstat, 0); -+ } while (pid == -1 && errno == EINTR); -+ break; - } -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); -+ -+ if (pid == -1) { -+ return 0; -+ } -+ else if (WIFEXITED(pstat) && (WEXITSTATUS(pstat) == 0)) { -+ return 1; -+ } -+ else { -+ return 0; -+ } - return 0; //dummy. - } - -@@ -225,7 +255,7 @@ +--- konsole/src/TEPty.C Sun Feb 18 10:28:28 2001 ++++ konsole/src/TEPty.C.new Fri Feb 23 02:55:58 2001 +@@ -238,7 +238,7 @@ #ifdef HAVE_UTEMPTER removeLineFromUtmp(ttynam, fd); #elif defined(USE_LOGIN) diff --git a/x11/kde4-baseapps/files/patch-kdeeject b/x11/kde4-baseapps/files/patch-kdeeject index 38c12b5eafbf..8a5870ad25ff 100644 --- a/x11/kde4-baseapps/files/patch-kdeeject +++ b/x11/kde4-baseapps/files/patch-kdeeject @@ -1,9 +1,9 @@ ---- kdesktop/kdeeject.orig Fri Dec 1 15:25:26 2000 -+++ kdesktop/kdeeject Fri Dec 1 15:25:33 2000 -@@ -8,7 +8,8 @@ - # kmessage, to show a message box in case of error. - # - if [ $# = 1 -a "$1" != "--help" ]; then +--- kdesktop/kdeeject Wed Dec 13 13:25:02 2000 ++++ kdesktop/kdeeject.new Fri Feb 23 02:59:54 2001 +@@ -11,7 +11,8 @@ + # TODO: On bsd, it should be 'cdcontrol -f $1 eject' + # Checking for stuff in the PATH is ugly with sh though. + # I guess this is the reason for making this a kde app... - if eject $1; then + dev=`echo $1 | sed -E -e 's#/dev/##' -e 's/([0-9])./\1/'` + if cdcontrol -f $dev eject; then diff --git a/x11/kde4-baseapps/files/patch-konsole_grantpty.c b/x11/kde4-baseapps/files/patch-konsole_grantpty.c deleted file mode 100644 index 889d15bdb592..000000000000 --- a/x11/kde4-baseapps/files/patch-konsole_grantpty.c +++ /dev/null @@ -1,79 +0,0 @@ ---- konsole/src/konsole_grantpty.c.orig Sat Jun 12 07:13:31 1999 -+++ konsole/src/konsole_grantpty.c Fri Dec 8 11:54:43 2000 -@@ -31,13 +31,15 @@ - #include <string.h> - #include <sys/stat.h> - #include <unistd.h> -+#include <dirent.h> -+#include <paths.h> - - #define PTY_FILENO 3 /* keep in sync with grantpty */ - #define TTY_GROUP "tty" - - int main (int argc, char *argv[]) - { -- char* pty; -+ char* pty = NULL; - struct stat st; - struct group* p; - gid_t gid; -@@ -81,6 +83,7 @@ - - /* get slave pty name from master pty file handle in PTY_FILENO *********/ - -+#if 0 - /* Check that PTY_FILENO is a valid master pseudo terminal. */ - pty = ttyname(PTY_FILENO); /* posix */ - if (pty == NULL) -@@ -89,6 +92,42 @@ - return 1; /* FAIL */ - } - close(PTY_FILENO); -+#else -+ /* The trouble with the ifdef'd-out portion above is that ttyname() -+ ** does not work correctly when not passed a valid tty, but a pseudotty -+ ** instead. All we're doing here is finding out what the name of -+ ** the associated pty is without having to pass it in on the command line. -+ ** Nothing complex. -+ */ -+ { -+ struct stat sb; -+ struct stat dsb; -+ struct dirent *dirp; -+ static char buf[sizeof(_PATH_DEV) + MAXNAMLEN] = _PATH_DEV; -+ DIR *dp; -+ -+ pty = NULL; -+ -+ if (fstat(PTY_FILENO, &sb)) -+ return 1; /* FAIL */ -+ if ((dp = opendir(_PATH_DEV)) == NULL) -+ return 1; /* FAIL */ -+ -+ while ((dirp = readdir(dp))) { -+ if (dirp->d_fileno != sb.st_ino) -+ continue; -+ bcopy(dirp->d_name, buf + sizeof(_PATH_DEV) - 1, dirp->d_namlen+1); -+ /*fprintf(stderr, "looking at %s\n", buf);*/ -+ if (stat(buf, &dsb) || sb.st_dev != dsb.st_dev || sb.st_ino != dsb.st_ino) -+ continue; -+ pty = buf; -+ } -+ closedir(dp); -+ if (pty == NULL) -+ return 1; /* FAIL */ -+ } -+ /*fprintf(stderr, "successful at finding %s\n", pty);*/ -+#endif - - /* matches /dev/pty?? */ - if (strlen(pty) < 8 || strncmp(pty,"/dev/pty",8)) -@@ -120,6 +159,8 @@ - fprintf(stderr,"%s: cannot chmod %s.\n",argv[0],tty); perror("Reason"); - return 1; /* FAIL */ - } -+ -+ /*fprintf(stderr, "made it here\n");*/ - - return 0; /* OK */ - } diff --git a/x11/kde4-baseapps/pkg-plist b/x11/kde4-baseapps/pkg-plist index 7a8ef62507e2..5424c20a9cca 100644 --- a/x11/kde4-baseapps/pkg-plist +++ b/x11/kde4-baseapps/pkg-plist @@ -2,6 +2,7 @@ bin/appletproxy bin/chooser bin/conttest bin/drkonqi +bin/extensionproxy bin/kaccess bin/kappfinder bin/kbanner.kss @@ -21,6 +22,7 @@ bin/kdesu bin/kdesud bin/kdm bin/kdmdesktop +bin/keditbookmarks bin/keditfiletype bin/kfmclient bin/kfmexec @@ -33,25 +35,22 @@ bin/klegacyimport bin/klines.kss bin/klipper bin/klorenz.kss -bin/kman2html bin/kmatrix.kss bin/kmenuedit -bin/kmorph3d.kss bin/konqueror bin/konsole bin/konsole_grantpty bin/kpager -bin/kpipes.kss bin/kpolygon.kss bin/kpyro.kss bin/krandom.kss bin/krdb +bin/kreadconfig bin/krock.kss bin/kscience.kss bin/kslidescreen.kss bin/kslideshow.kss bin/ksmserver -bin/kspace.kss bin/ksplash bin/kstart bin/kswarm.kss @@ -59,7 +58,9 @@ bin/ksysguard bin/ksysguardd bin/ktip bin/kvm.kss +bin/kwebdesktop bin/kwin +bin/kwmtheme bin/kwrite bin/kwrited bin/kxkb @@ -75,6 +76,10 @@ include/KonquerorIface.h include/ccont.h include/kbookmark.h include/kbookmarkbar.h +include/kbookmarkdrag.h +include/kbookmarkexporter.h +include/kbookmarkimporter.h +include/kbookmarkmanager.h include/kbookmarkmenu.h include/kfileivi.h include/knewmenu.h @@ -84,61 +89,189 @@ include/konq_dirlister.h include/konq_dirpart.h include/konq_drag.h include/konq_events.h +include/konq_faviconmgr.h include/konq_fileitem.h +include/konq_historycomm.h +include/konq_historymgr.h include/konq_iconviewwidget.h include/konq_imagepreviewjob.h +include/konq_mimetyperesolver.h include/konq_operations.h +include/konq_pixmapprovider.h include/konq_popupmenu.h include/konq_propsview.h include/konq_settings.h include/konq_undo.h +include/kwin/client.h +include/kwin/options.h +include/kwin/workspace.h +include/thumbcreator.h lib/appletproxy.la lib/appletproxy.so -lib/kaccess.la -lib/kaccess.so +lib/extensionproxy.la +lib/extensionproxy.so lib/kcminit.la lib/kcminit.so lib/kcmshell.la lib/kcmshell.so lib/kcontrol.la lib/kcontrol.so +lib/kde2/htmlthumbnail.la +lib/kde2/htmlthumbnail.so +lib/kde2/imagethumbnail.la +lib/kde2/imagethumbnail.so +lib/kde2/kaccess.la +lib/kde2/kaccess.so +lib/kde2/kio_filter.la +lib/kde2/kio_filter.so +lib/kde2/kio_finger.la +lib/kde2/kio_finger.so +lib/kde2/kio_floppy.la +lib/kde2/kio_floppy.so +lib/kde2/kio_gopher.la +lib/kde2/kio_gopher.so +lib/kde2/kio_help.la +lib/kde2/kio_help.so +lib/kde2/kio_imap4.la +lib/kde2/kio_imap4.so +lib/kde2/kio_info.la +lib/kde2/kio_info.so +lib/kde2/kio_ldap.la +lib/kde2/kio_ldap.so +lib/kde2/kio_man.la +lib/kde2/kio_man.so +lib/kde2/kio_nfs.la +lib/kde2/kio_nfs.so +lib/kde2/kio_nntp.la +lib/kde2/kio_nntp.so +lib/kde2/kio_pop3.la +lib/kde2/kio_pop3.so +lib/kde2/kio_smb.la +lib/kde2/kio_smb.so +lib/kde2/kio_smtp.la +lib/kde2/kio_smtp.so +lib/kde2/kio_tar.la +lib/kde2/kio_tar.so +lib/kde2/kio_thumbnail.la +lib/kde2/kio_thumbnail.so +lib/kde2/libkcm_access.la +lib/kde2/libkcm_access.so +lib/kde2/libkcm_arts.la +lib/kde2/libkcm_arts.so +lib/kde2/libkcm_background.la +lib/kde2/libkcm_background.so +lib/kde2/libkcm_bell.la +lib/kde2/libkcm_bell.so +lib/kde2/libkcm_clock.la +lib/kde2/libkcm_clock.so +lib/kde2/libkcm_colors.la +lib/kde2/libkcm_colors.so +lib/kde2/libkcm_crypto.la +lib/kde2/libkcm_crypto.so +lib/kde2/libkcm_email.la +lib/kde2/libkcm_email.so +lib/kde2/libkcm_energy.la +lib/kde2/libkcm_energy.so +lib/kde2/libkcm_filetypes.la +lib/kde2/libkcm_filetypes.so +lib/kde2/libkcm_fonts.la +lib/kde2/libkcm_fonts.so +lib/kde2/libkcm_icons.la +lib/kde2/libkcm_icons.so +lib/kde2/libkcm_info.la +lib/kde2/libkcm_info.so +lib/kde2/libkcm_input.la +lib/kde2/libkcm_input.so +lib/kde2/libkcm_kdm.la +lib/kde2/libkcm_kdm.so +lib/kde2/libkcm_keys.la +lib/kde2/libkcm_keys.so +lib/kde2/libkcm_khotkeys.la +lib/kde2/libkcm_khotkeys.so +lib/kde2/libkcm_kicker.la +lib/kde2/libkcm_kicker.so +lib/kde2/libkcm_kio.la +lib/kde2/libkcm_kio.so +lib/kde2/libkcm_knotify.la +lib/kde2/libkcm_knotify.so +lib/kde2/libkcm_konq.la +lib/kde2/libkcm_konq.so +lib/kde2/libkcm_konqhtml.la +lib/kde2/libkcm_konqhtml.so +lib/kde2/libkcm_kurifilt.la +lib/kde2/libkcm_kurifilt.so +lib/kde2/libkcm_kwinoptions.la +lib/kde2/libkcm_kwinoptions.so +lib/kde2/libkcm_locale.la +lib/kde2/libkcm_locale.so +lib/kde2/libkcm_midi.la +lib/kde2/libkcm_midi.so +lib/kde2/libkcm_passwords.la +lib/kde2/libkcm_passwords.so +lib/kde2/libkcm_samba.la +lib/kde2/libkcm_samba.so +lib/kde2/libkcm_screensaver.la +lib/kde2/libkcm_screensaver.so +lib/kde2/libkcm_smserver.la +lib/kde2/libkcm_smserver.so +lib/kde2/libkcm_style.la +lib/kde2/libkcm_style.so +lib/kde2/libkcm_taskbar.la +lib/kde2/libkcm_taskbar.so +lib/kde2/libkcm_themes.la +lib/kde2/libkcm_themes.so +lib/kde2/libkfindpart.la +lib/kde2/libkfindpart.so +lib/kde2/libkonqiconview.la +lib/kde2/libkonqiconview.so +lib/kde2/libkonqlistview.la +lib/kde2/libkonqlistview.so +lib/kde2/libkonqtree.la +lib/kde2/libkonqtree.so +lib/kde2/libkshellcmdplugin.la +lib/kde2/libkshellcmdplugin.so +lib/kde2/libkshorturifilter.la +lib/kde2/libkshorturifilter.so +lib/kde2/libkuriikwsfilter.la +lib/kde2/libkuriikwsfilter.so +lib/kde2/libkurisearchfilter.la +lib/kde2/libkurisearchfilter.so +lib/kde2/libkwin2k.la +lib/kde2/libkwin2k.so +lib/kde2/libkwinb2.la +lib/kde2/libkwinb2.so +lib/kde2/libkwinkde1.la +lib/kde2/libkwinkde1.so +lib/kde2/libkwinkstep.la +lib/kde2/libkwinkstep.so +lib/kde2/libkwinkwmtheme.la +lib/kde2/libkwinkwmtheme.so +lib/kde2/libkwinlaptop.la +lib/kde2/libkwinlaptop.so +lib/kde2/libkwinmodernsys.la +lib/kde2/libkwinmodernsys.so +lib/kde2/libkwinriscos.la +lib/kde2/libkwinriscos.so +lib/kde2/libkwinsystem.la +lib/kde2/libkwinsystem.so +lib/kde2/textthumbnail.la +lib/kde2/textthumbnail.so lib/kdesktop.la lib/kdesktop.so +lib/keditbookmarks.la +lib/keditbookmarks.so lib/kfmclient.la lib/kfmclient.so lib/khotkeys.la lib/khotkeys.so lib/kicker.la lib/kicker.so -lib/kio_gopher.la -lib/kio_gopher.so -lib/kio_gzip.la -lib/kio_gzip.so -lib/kio_help.la -lib/kio_help.so -lib/kio_info.la -lib/kio_info.so -lib/kio_man.la -lib/kio_man.so -lib/kio_nfs.la -lib/kio_nfs.so -lib/kio_nntp.la -lib/kio_nntp.so -lib/kio_pop3.la -lib/kio_pop3.so -lib/kio_smb.la -lib/kio_smb.so -lib/kio_smtp.la -lib/kio_smtp.so -lib/kio_tar.la -lib/kio_tar.so lib/klegacyimport.la lib/klegacyimport.so lib/klipper.la lib/klipper.so lib/kmenuedit.la lib/kmenuedit.so -lib/kmenuedit.so.0 lib/konqueror.la lib/konqueror.so lib/konsole.la @@ -153,86 +286,29 @@ lib/kxkb.la lib/kxkb.so lib/kxmlrpcd.la lib/kxmlrpcd.so +lib/libKdmGreet.la +lib/libKdmGreet.so lib/libccont.a +lib/libchildpanelextension.la +lib/libchildpanelextension.so +lib/libchildpanelextension.so.1 lib/libclockapplet.la lib/libclockapplet.so lib/libclockapplet.so.1 +lib/libdockbarextension.la +lib/libdockbarextension.so +lib/libdockbarextension.so.1 lib/libhtmlsearch.la lib/libhtmlsearch.so -lib/libkcm_access.la -lib/libkcm_access.so -lib/libkcm_arts.la -lib/libkcm_arts.so -lib/libkcm_background.la -lib/libkcm_background.so -lib/libkcm_bell.la -lib/libkcm_bell.so -lib/libkcm_clock.la -lib/libkcm_clock.so -lib/libkcm_colors.la -lib/libkcm_colors.so -lib/libkcm_crypto.la -lib/libkcm_crypto.so -lib/libkcm_email.la -lib/libkcm_email.so -lib/libkcm_energy.la -lib/libkcm_energy.so -lib/libkcm_filetypes.la -lib/libkcm_filetypes.so -lib/libkcm_fonts.la -lib/libkcm_fonts.so +lib/libkasbarextension.la +lib/libkasbarextension.so +lib/libkasbarextension.so.1 lib/libkcm_htmlsearch.la lib/libkcm_htmlsearch.so -lib/libkcm_icons.la -lib/libkcm_icons.so -lib/libkcm_iconthemes.la -lib/libkcm_iconthemes.so -lib/libkcm_info.la -lib/libkcm_info.so -lib/libkcm_input.la -lib/libkcm_input.so -lib/libkcm_kdm.la -lib/libkcm_kdm.so -lib/libkcm_keys.la -lib/libkcm_keys.so -lib/libkcm_khotkeys.la -lib/libkcm_khotkeys.so -lib/libkcm_kicker.la -lib/libkcm_kicker.so -lib/libkcm_kio.la -lib/libkcm_kio.so -lib/libkcm_knotify.la -lib/libkcm_knotify.so -lib/libkcm_konq.la -lib/libkcm_konq.so -lib/libkcm_konqhtml.la -lib/libkcm_konqhtml.so -lib/libkcm_kurifilt.la -lib/libkcm_kurifilt.so -lib/libkcm_kwindesktop.la -lib/libkcm_kwindesktop.so -lib/libkcm_kwinmouse.la -lib/libkcm_kwinmouse.so -lib/libkcm_kwinoptions.la -lib/libkcm_kwinoptions.so +lib/libkcm_ioslaveinfo.la +lib/libkcm_ioslaveinfo.so lib/libkcm_layout.la lib/libkcm_layout.so -lib/libkcm_locale.la -lib/libkcm_locale.so -lib/libkcm_midi.la -lib/libkcm_midi.so -lib/libkcm_passwords.la -lib/libkcm_passwords.so -lib/libkcm_samba.la -lib/libkcm_samba.so -lib/libkcm_screensaver.la -lib/libkcm_screensaver.so -lib/libkcm_style.la -lib/libkcm_style.so -lib/libkcm_taskbar.la -lib/libkcm_taskbar.so -lib/libkcm_virtualdesktops.la -lib/libkcm_virtualdesktops.so lib/libkcm_xmlrpcd.la lib/libkcm_xmlrpcd.so lib/libkhelpcenter.la @@ -244,71 +320,60 @@ lib/libkminipagerapplet.so.1 lib/libkonq.la lib/libkonq.so lib/libkonq.so.4 -lib/libkonqdirtree.la -lib/libkonqdirtree.so -lib/libkonqiconview.la -lib/libkonqiconview.so -lib/libkonqlistview.la -lib/libkonqlistview.so +lib/libkonqaboutpage.la +lib/libkonqaboutpage.so lib/libkonsolepart.la lib/libkonsolepart.so lib/libkrunapplet.la lib/libkrunapplet.so lib/libkrunapplet.so.1 -lib/libkshorturifilter.la -lib/libkshorturifilter.so -lib/libkshorturifilter.so.1 +lib/libksysguardapplet.la +lib/libksysguardapplet.so +lib/libksysguardapplet.so.1 lib/libksystemtrayapplet.la lib/libksystemtrayapplet.so lib/libksystemtrayapplet.so.1 lib/libktaskbarapplet.la lib/libktaskbarapplet.so lib/libktaskbarapplet.so.1 -lib/libkuriikwsfilter.la -lib/libkuriikwsfilter.so -lib/libkuriikwsfilter.so.1 -lib/libkurisearchfilter.la -lib/libkurisearchfilter.so -lib/libkurisearchfilter.so.1 -lib/libkwinb2.la -lib/libkwinb2.so lib/libkwindefault.la lib/libkwindefault.so lib/libkwindefault.so.0 -lib/libkwinkde1.la -lib/libkwinkde1.so -lib/libkwinkstep.la -lib/libkwinkstep.so -lib/libkwinlaptop.la -lib/libkwinlaptop.so -lib/libkwinmodernsys.la -lib/libkwinmodernsys.so -lib/libkwinriscos.la -lib/libkwinriscos.so -lib/libkwinsystem.la -lib/libkwinsystem.so lib/libkwritepart.la lib/libkwritepart.so +lib/libnaughtyapplet.la +lib/libnaughtyapplet.so +lib/libnaughtyapplet.so.1 lib/libquicklauncher.la lib/libquicklauncher.so lib/libquicklauncher.so.1 -lib/libsmb++.la -lib/libsmb++.so -lib/libsmb++.so.0 +lib/libtaskbarextension.la +lib/libtaskbarextension.so +lib/libtaskbarextension.so.1 +lib/libtaskmanager.la +lib/libtaskmanager.so +lib/libtaskmanager.so.1 share/applnk/.directory share/applnk/.hidden/konqfilemgr.desktop share/applnk/Applications/.directory -share/applnk/Development/designer.desktop +share/applnk/Development/.directory share/applnk/Editors/.directory +share/applnk/Editors/gvim.desktop share/applnk/Editors/kwrite.desktop +share/applnk/Editors/xedit.desktop share/applnk/Games/.directory share/applnk/Graphics/.directory +share/applnk/Graphics/gimp.desktop share/applnk/Help.desktop share/applnk/Home.desktop share/applnk/Internet/.directory +share/applnk/Internet/keditbookmarks.desktop share/applnk/Internet/konqbrowser.desktop +share/applnk/Internet/netscape.desktop share/applnk/KControl.desktop share/applnk/Multimedia/.directory +share/applnk/Multimedia/aviplay.desktop +share/applnk/Multimedia/xawtv.desktop share/applnk/Office/.directory share/applnk/Settings/.directory share/applnk/Settings/FileBrowsing/.directory @@ -321,6 +386,7 @@ share/applnk/Settings/Information/devices.desktop share/applnk/Settings/Information/dma.desktop share/applnk/Settings/Information/interrupts.desktop share/applnk/Settings/Information/ioports.desktop +share/applnk/Settings/Information/ioslaveinfo.desktop share/applnk/Settings/Information/memory.desktop share/applnk/Settings/Information/partitions.desktop share/applnk/Settings/Information/pci.desktop @@ -330,28 +396,29 @@ share/applnk/Settings/Information/smbstatus.desktop share/applnk/Settings/Information/sound.desktop share/applnk/Settings/Information/xserver.desktop share/applnk/Settings/LookNFeel/.directory -share/applnk/Settings/LookNFeel/Desktop/.directory share/applnk/Settings/LookNFeel/Desktop/background.desktop share/applnk/Settings/LookNFeel/Desktop/borders.desktop share/applnk/Settings/LookNFeel/Desktop/desktop.desktop share/applnk/Settings/LookNFeel/Desktop/virtualdesktops.desktop -share/applnk/Settings/LookNFeel/Panel/.directory -share/applnk/Settings/LookNFeel/Themes/.directory share/applnk/Settings/LookNFeel/Themes/iconthemes.desktop share/applnk/Settings/LookNFeel/Themes/style.desktop -share/applnk/Settings/LookNFeel/Windows/.directory share/applnk/Settings/LookNFeel/Windows/actions.desktop -share/applnk/Settings/LookNFeel/Windows/mouse.desktop +share/applnk/Settings/LookNFeel/Windows/kwinmouse.desktop +share/applnk/Settings/LookNFeel/background.desktop share/applnk/Settings/LookNFeel/colors.desktop +share/applnk/Settings/LookNFeel/desktop.desktop share/applnk/Settings/LookNFeel/fonts.desktop share/applnk/Settings/LookNFeel/icons.desktop share/applnk/Settings/LookNFeel/kcmnotify.desktop share/applnk/Settings/LookNFeel/kcmtaskbar.desktop share/applnk/Settings/LookNFeel/keys.desktop +share/applnk/Settings/LookNFeel/kthememgr.desktop +share/applnk/Settings/LookNFeel/kwinoptions.desktop share/applnk/Settings/LookNFeel/panel.desktop share/applnk/Settings/LookNFeel/screensaver.desktop +share/applnk/Settings/LookNFeel/style.desktop +share/applnk/Settings/LookNFeel/virtualdesktops.desktop share/applnk/Settings/Network/.directory -share/applnk/Settings/Network/smb.desktop share/applnk/Settings/Peripherals/.directory share/applnk/Settings/Peripherals/keyboard.desktop share/applnk/Settings/Peripherals/mouse.desktop @@ -370,28 +437,24 @@ share/applnk/Settings/Sound/bell.desktop share/applnk/Settings/Sound/midi.desktop share/applnk/Settings/System/.directory share/applnk/Settings/System/clock.desktop +share/applnk/Settings/System/kcmsmserver.desktop share/applnk/Settings/System/kdm.desktop share/applnk/Settings/WebBrowsing/.directory share/applnk/Settings/WebBrowsing/cookies.desktop share/applnk/Settings/WebBrowsing/ebrowsing.desktop share/applnk/Settings/WebBrowsing/konqhtml.desktop share/applnk/Settings/WebBrowsing/proxy.desktop +share/applnk/Settings/WebBrowsing/smb.desktop share/applnk/Settings/WebBrowsing/useragent.desktop share/applnk/System/.directory -share/applnk/System/Arrange.desktop share/applnk/System/ScreenSavers/.directory -share/applnk/System/ScreenSavers/KAttration.desktop share/applnk/System/ScreenSavers/KBanner.desktop share/applnk/System/ScreenSavers/KBlankscreen.desktop share/applnk/System/ScreenSavers/KBlob.desktop share/applnk/System/ScreenSavers/KBouboule.desktop share/applnk/System/ScreenSavers/KBsod.desktop -share/applnk/System/ScreenSavers/KFlame.desktop -share/applnk/System/ScreenSavers/KForest.desktop share/applnk/System/ScreenSavers/KHop.desktop -share/applnk/System/ScreenSavers/KLaser.desktop share/applnk/System/ScreenSavers/KLines.desktop -share/applnk/System/ScreenSavers/KLissie.desktop share/applnk/System/ScreenSavers/KLorenz.desktop share/applnk/System/ScreenSavers/KMatrix.desktop share/applnk/System/ScreenSavers/KMorph3D.desktop @@ -403,12 +466,14 @@ share/applnk/System/ScreenSavers/KRock.desktop share/applnk/System/ScreenSavers/KScience.desktop share/applnk/System/ScreenSavers/KSlidescreen.desktop share/applnk/System/ScreenSavers/KSlideshow.desktop -share/applnk/System/ScreenSavers/KSlip.desktop share/applnk/System/ScreenSavers/KSpace.desktop share/applnk/System/ScreenSavers/KSwarm.desktop share/applnk/System/ScreenSavers/KVm.desktop +share/applnk/System/ScreenSavers/Worm.desktop share/applnk/System/kappfinder.desktop share/applnk/System/kfmclient.desktop +share/applnk/System/kfmclient_dir.desktop +share/applnk/System/kfmclient_html.desktop share/applnk/System/klegacyimport.desktop share/applnk/System/kmenuedit.desktop share/applnk/System/konquerorsu.desktop @@ -417,15 +482,19 @@ share/applnk/System/konsolesu.desktop share/applnk/System/ksysguard.desktop share/applnk/Toys/.directory share/applnk/Toys/ktip.desktop +share/applnk/Toys/xeyes.desktop share/applnk/Utilities/.directory +share/applnk/Utilities/XUtilities/xcalc.desktop +share/applnk/Utilities/XUtilities/xclipboard.desktop +share/applnk/Utilities/XUtilities/xclock.desktop +share/applnk/Utilities/XUtilities/xconsole.desktop +share/applnk/Utilities/XUtilities/xload.desktop +share/applnk/Utilities/XUtilities/xmag.desktop +share/applnk/Utilities/XUtilities/xterm.desktop share/applnk/Utilities/klipper.desktop share/applnk/Utilities/kpager.desktop -share/applnk/Utilities/passwd.desktop -share/applnk/Utilities/xclipboard.desktop -share/applnk/Utilities/xclock.desktop -share/applnk/Utilities/xconsole.desktop -share/applnk/Utilities/xmag.desktop -share/applnk/Utilities/xterm.desktop +share/applnk/WordProcessing/gv.desktop +share/applnk/WordProcessing/xpdf.desktop share/apps/clockapplet/pics/lcd.png share/apps/drkonqi/debuggers/gdbrc share/apps/drkonqi/pics/konqi.png @@ -443,6 +512,13 @@ share/apps/kappfinder/apps/Editors/lemacs.desktop share/apps/kappfinder/apps/Editors/nedit.desktop share/apps/kappfinder/apps/Editors/xedit.desktop share/apps/kappfinder/apps/Editors/xemacs.desktop +share/apps/kappfinder/apps/Games/.directory +share/apps/kappfinder/apps/Games/Clanbomber.desktop +share/apps/kappfinder/apps/Games/Qmamecat.desktop +share/apps/kappfinder/apps/Games/defendguin.desktop +share/apps/kappfinder/apps/Games/freeciv.desktop +share/apps/kappfinder/apps/Games/penguin-command.desktop +share/apps/kappfinder/apps/Games/xshipwars.desktop share/apps/kappfinder/apps/Graphics/.directory share/apps/kappfinder/apps/Graphics/gimp.desktop share/apps/kappfinder/apps/Graphics/xfig.desktop @@ -451,6 +527,8 @@ share/apps/kappfinder/apps/Graphics/xv.desktop share/apps/kappfinder/apps/Internet/.directory share/apps/kappfinder/apps/Internet/arena.desktop share/apps/kappfinder/apps/Internet/coolmail.desktop +share/apps/kappfinder/apps/Internet/ethereal.desktop +share/apps/kappfinder/apps/Internet/ncftp.desktop share/apps/kappfinder/apps/Internet/netscape.desktop share/apps/kappfinder/apps/Internet/pine.desktop share/apps/kappfinder/apps/Internet/xbiff.desktop @@ -458,7 +536,11 @@ share/apps/kappfinder/apps/Internet/xchat.desktop share/apps/kappfinder/apps/Internet/xfmail.desktop share/apps/kappfinder/apps/Internet/xftp.desktop share/apps/kappfinder/apps/Multimedia/.directory +share/apps/kappfinder/apps/Multimedia/alevt.desktop +share/apps/kappfinder/apps/Multimedia/aviplay.desktop +share/apps/kappfinder/apps/Multimedia/gtv.desktop share/apps/kappfinder/apps/Multimedia/realplayer.desktop +share/apps/kappfinder/apps/Multimedia/xawtv.desktop share/apps/kappfinder/apps/Multimedia/xmms.desktop share/apps/kappfinder/apps/Office/.directory share/apps/kappfinder/apps/Office/Applix.desktop @@ -531,15 +613,14 @@ share/apps/kappfinder/apps/Toys/.directory share/apps/kappfinder/apps/Toys/xeyes.desktop share/apps/kappfinder/apps/Toys/xpinguin.desktop share/apps/kappfinder/apps/Utilities/.directory -share/apps/kappfinder/apps/Utilities/jar.desktop -share/apps/kappfinder/apps/Utilities/passwd.desktop -share/apps/kappfinder/apps/Utilities/xcalc.desktop -share/apps/kappfinder/apps/Utilities/xclipboard.desktop -share/apps/kappfinder/apps/Utilities/xclock.desktop -share/apps/kappfinder/apps/Utilities/xconsole.desktop -share/apps/kappfinder/apps/Utilities/xload.desktop -share/apps/kappfinder/apps/Utilities/xmag.desktop -share/apps/kappfinder/apps/Utilities/xterm.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/.directory +share/apps/kappfinder/apps/Utilities/XUtilities/xcalc.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclipboard.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclock.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xconsole.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xload.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xmag.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xterm.desktop share/apps/kappfinder/apps/WordProcessing/.directory share/apps/kappfinder/apps/WordProcessing/WordPerfect.desktop share/apps/kappfinder/apps/WordProcessing/WordPerfect2000.desktop @@ -547,10 +628,12 @@ share/apps/kappfinder/apps/WordProcessing/acroread.desktop share/apps/kappfinder/apps/WordProcessing/ghostview.desktop share/apps/kappfinder/apps/WordProcessing/gv.desktop share/apps/kappfinder/apps/WordProcessing/lyx.desktop +share/apps/kappfinder/apps/WordProcessing/pybliographic.desktop share/apps/kappfinder/apps/WordProcessing/xdvi.desktop share/apps/kappfinder/apps/WordProcessing/xpdf.desktop share/apps/kbookmark/directory_bookmarkbar.desktop share/apps/kcminput/cursor_large.pcf.gz +share/apps/kcmkeys/standard/Unix.kksrc share/apps/kcmlocale/pics/background.png share/apps/kcontrol/kcontrolui.rc share/apps/kcontrol/pics/energybig.png @@ -560,8 +643,10 @@ share/apps/kcontrol/pics/mini-world.png share/apps/kcontrol/pics/monitor.png share/apps/kcontrol/pics/onlyone.png share/apps/kcontrol/pics/overlapping.png +share/apps/kcontrol/pics/part1.png +share/apps/kcontrol/pics/part2.png +share/apps/kcontrol/pics/part3.png share/apps/kcontrol/pics/play.png -share/apps/kcontrol/pics/wizard.png share/apps/kdcop/kdcopui.rc share/apps/kdesktop/DesktopLinks/Home.desktop share/apps/kdesktop/directory.autostart @@ -586,8 +671,10 @@ share/apps/kdesktop/pics/kde2.xbm share/apps/kdesktop/pics/ksslogo.png share/apps/kdesktop/pics/splash.png share/apps/kdesktop/pics/splash2.png +share/apps/kdesktop/programs/kwebdesktop.desktop share/apps/kdesktop/programs/xearth.desktop share/apps/kdesktop/programs/xglobe.desktop +share/apps/kdesktop/programs/xplanet.desktop share/apps/kdewizard/pics/wizard_small.png share/apps/kdewizard/tips share/apps/kdisplay/app-defaults/AAAAAAGeneral.ad @@ -605,6 +692,8 @@ share/apps/kdisplay/app-defaults/XCalc.ad share/apps/kdisplay/app-defaults/XOsview.ad share/apps/kdisplay/app-defaults/XTerm.ad share/apps/kdisplay/app-defaults/XV.ad +share/apps/kdisplay/app-defaults/Xawtv.ad +share/apps/kdisplay/app-defaults/Xpdf.ad share/apps/kdisplay/color-schemes/AtlasGreen.kcsrc share/apps/kdisplay/color-schemes/BeOS.kcsrc share/apps/kdisplay/color-schemes/BlueSlate.kcsrc @@ -627,15 +716,21 @@ share/apps/kdm/pics/users/default.png share/apps/kdm/pics/users/default2.png share/apps/kdm/pics/users/root.png share/apps/kdm/pics/users/root2.png +share/apps/keditbookmarks/keditbookmarksui.rc +share/apps/kfind/icons/locolor/22x22/actions/archive.png +share/apps/kfind/icons/locolor/22x22/actions/delete.png +share/apps/kfind/icons/locolor/22x22/actions/idea.png +share/apps/kfind/icons/locolor/22x22/actions/info.png +share/apps/kfind/icons/locolor/22x22/actions/openfile.png +share/apps/kfind/icons/locolor/22x22/actions/save.png +share/apps/kfind/icons/locolor/22x22/actions/search.png share/apps/khelpcenter/en/bad_words share/apps/khelpcenter/en/long.html share/apps/khelpcenter/en/nomatch.html share/apps/khelpcenter/en/short.html share/apps/khelpcenter/en/syntax.html share/apps/khelpcenter/en/wrapper.html -share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook.png share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook_open.png -share/apps/khelpcenter/icons/locolor/16x16/apps/helpdoc.png share/apps/khelpcenter/pics/checked.xpm share/apps/khelpcenter/pics/star.png share/apps/khelpcenter/pics/star_blank.png @@ -646,9 +741,16 @@ share/apps/khelpcenter/plugins/Tutorials/visualdict.desktop share/apps/kicker/applets/clockapplet.desktop share/apps/kicker/applets/kminipagerapplet.desktop share/apps/kicker/applets/krunapplet.desktop +share/apps/kicker/applets/ksysguardapplet.desktop share/apps/kicker/applets/ksystemtrayapplet.desktop share/apps/kicker/applets/ktaskbarapplet.desktop +share/apps/kicker/applets/naughtyapplet.desktop share/apps/kicker/applets/quicklauncher.desktop +share/apps/kicker/extensions/childpanelextension.desktop +share/apps/kicker/extensions/dockbarextension.desktop +share/apps/kicker/extensions/kasbarextension.desktop +share/apps/kicker/extensions/taskbarextension.desktop +share/apps/kicker/icons/hicolor/16x16/actions/modified.png share/apps/kicker/icons/locolor/16x16/actions/modified.png share/apps/kicker/pics/disk1.png share/apps/kicker/pics/disk2.png @@ -761,6 +863,8 @@ share/apps/kicker/tiles/solid_tgri_tiny_up.png share/apps/kicker/wallpapers/deck_plate.png share/apps/kicker/wallpapers/green_line.png share/apps/kicker/wallpapers/rail.png +share/apps/kio_finger/kio_finger.css +share/apps/kio_finger/kio_finger.pl share/apps/kio_info/kde-info2html share/apps/kio_info/kde-info2html.conf share/apps/kmenuedit/icons/hicolor/22x22/actions/menu_new.png @@ -769,17 +873,46 @@ share/apps/kmenuedit/icons/locolor/16x16/actions/menu_new.png share/apps/kmenuedit/kmenueditui.rc share/apps/konqiconview/konq_iconview.rc share/apps/konqiconview/konq_multicolumnview.rc +share/apps/konqiconview/kpartplugins/kshellcmdplugin.rc share/apps/konqlistview/konq_detailedlistview.rc share/apps/konqlistview/konq_textview.rc share/apps/konqlistview/konq_treeview.rc +share/apps/konqlistview/kpartplugins/kshellcmdplugin.rc +share/apps/konqueror/about/back.png +share/apps/konqueror/about/background.png +share/apps/konqueror/about/bgtable.png +share/apps/konqueror/about/gohome.png +share/apps/konqueror/about/history.png +share/apps/konqueror/about/intro.html +share/apps/konqueror/about/kdelogo2.png +share/apps/konqueror/about/konq.css +share/apps/konqueror/about/konqueror.png +share/apps/konqueror/about/lines.png +share/apps/konqueror/about/lines2.png +share/apps/konqueror/about/locationbar_erase.png +share/apps/konqueror/about/more.png +share/apps/konqueror/about/openterm.png +share/apps/konqueror/about/pointers.gif +share/apps/konqueror/about/shadow1.png +share/apps/konqueror/about/specs.html +share/apps/konqueror/about/tips.html +share/apps/konqueror/about/view_left_right.png +share/apps/konqueror/about/viewmag.png +share/apps/konqueror/about/window_fullscreen.png +share/apps/konqueror/dirtree/bookmarks.desktop +share/apps/konqueror/dirtree/history.desktop share/apps/konqueror/dirtree/home.desktop share/apps/konqueror/dirtree/remote/.directory share/apps/konqueror/dirtree/remote/ftp/.directory share/apps/konqueror/dirtree/remote/ftp/kde_ftp.desktop share/apps/konqueror/dirtree/remote/web/.directory share/apps/konqueror/dirtree/remote/web/kde_web.desktop -share/apps/konqueror/dirtree/remote/windows.desktop share/apps/konqueror/dirtree/root.desktop +share/apps/konqueror/icons/hicolor/16x16/actions/remove_view.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_bottom.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_left_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_top_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/remove_view.png share/apps/konqueror/icons/hicolor/22x22/actions/view_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/view_left_right.png @@ -796,7 +929,6 @@ share/apps/konqueror/icons/locolor/16x16/actions/kde3.png share/apps/konqueror/icons/locolor/16x16/actions/kde4.png share/apps/konqueror/icons/locolor/16x16/actions/kde5.png share/apps/konqueror/icons/locolor/16x16/actions/kde6.png -share/apps/konqueror/icons/locolor/16x16/actions/locationbar_erase.png share/apps/konqueror/icons/locolor/16x16/actions/remove_view.png share/apps/konqueror/icons/locolor/16x16/actions/view_bottom.png share/apps/konqueror/icons/locolor/16x16/actions/view_left_right.png @@ -808,13 +940,17 @@ share/apps/konqueror/pics/indicator_connect.png share/apps/konqueror/pics/indicator_empty.png share/apps/konqueror/pics/indicator_noconnect.png share/apps/konqueror/pics/indicator_viewactive.png +share/apps/konqueror/pics/thumbnailfont_7x4.png share/apps/konqueror/profiles/filemanagement +share/apps/konqueror/profiles/filepreview +share/apps/konqueror/profiles/midnightcommander share/apps/konqueror/profiles/webbrowsing share/apps/konqueror/tiles/bluemorning.png share/apps/konqueror/tiles/canvas.png share/apps/konqueror/tiles/checker.png share/apps/konqueror/tiles/cubic.png share/apps/konqueror/tiles/kde4ever.png +share/apps/konqueror/tiles/kenwimer.png share/apps/konqueror/tiles/noise.png share/apps/konqueror/tiles/paper_flieder.png share/apps/konqueror/tiles/punika_attack.png @@ -850,12 +986,18 @@ share/apps/konsole/syscolor.schema share/apps/konsole/vim.schema share/apps/konsole/vt100.keytab share/apps/konsole/vt420pc.keytab +share/apps/konsole/x11r5.keytab share/apps/kscreensaver/kscience-small.gif share/apps/kscreensaver/kscience.gif +share/apps/ksplash/pics/locolor/splash_active_bar.png +share/apps/ksplash/pics/locolor/splash_bottom.png +share/apps/ksplash/pics/locolor/splash_inactive_bar.png +share/apps/ksplash/pics/locolor/splash_top.png share/apps/ksplash/pics/splash_active_bar.png share/apps/ksplash/pics/splash_bottom.png share/apps/ksplash/pics/splash_inactive_bar.png share/apps/ksplash/pics/splash_top.png +share/apps/ksysguard/KSysGuardApplet.xml share/apps/ksysguard/ProcessTable.sgrd share/apps/ksysguard/SystemLoad.sgrd share/apps/ksysguard/icons/locolor/16x16/apps/X.png @@ -906,6 +1048,13 @@ share/apps/ksysguard/icons/locolor/16x16/apps/xntpd.png share/apps/ksysguard/icons/locolor/16x16/apps/xterm.png share/apps/ksysguard/icons/locolor/16x16/apps/ypbind.png share/apps/ksysguard/ksysguardui.rc +share/apps/kthememgr/Themes/Default.ktheme +share/apps/kthememgr/Themes/Eclipse.ktheme +share/apps/kthememgr/Themes/MGBreizh.ktheme +share/apps/kthememgr/Themes/Nostalgy.ktheme +share/apps/kthememgr/Themes/Template.themerc +share/apps/kthememgr/Themes/Wood.ktheme +share/apps/kthememgr/theme.mappings share/apps/kwin/b2.desktop share/apps/kwin/eventsrc share/apps/kwin/kde.desktop @@ -928,12 +1077,19 @@ share/apps/kwin/pics/pinup.png share/apps/kwin/pics/unknown.png share/apps/kwin/riscos.desktop share/apps/kwin/system.desktop +share/apps/kwin/win2k.desktop share/apps/kwrite/kwrite_browser.rc share/apps/kwrite/kwrite_shell.rc share/apps/kwrite/kwriteui.rc -share/apps/quickbrowser/Home.desktop -share/apps/quickbrowser/KDE.desktop -share/apps/quickbrowser/Root.desktop +share/apps/kwrite/syntax.xml +share/apps/naughtyapplet/pics/naughty-happy.png +share/apps/naughtyapplet/pics/naughty-sad.png +share/autostart/kdesktop.desktop +share/autostart/khotkeys.desktop +share/autostart/klipper.desktop +share/autostart/ktip.desktop +share/autostart/kwrited.desktop +share/autostart/panel.desktop share/config/antrc share/config/attractionrc share/config/bouboulerc @@ -955,6 +1111,8 @@ share/config/gravrc share/config/halorc share/config/imsmaprc share/config/interferencerc +share/config/kdesktop_custom_menu1 +share/config/kdesktop_custom_menu2 share/config/kdmrc share/config/klipperrc share/config/konsolerc @@ -991,12 +1149,9 @@ share/doc/HTML/en/kcontrol/email.html share/doc/HTML/en/kcontrol/energy.html share/doc/HTML/en/kcontrol/file-assoc.html share/doc/HTML/en/kcontrol/file-manager.html -share/doc/HTML/en/kcontrol/kfileman1.png -share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/fonts.html share/doc/HTML/en/kcontrol/help-index.html share/doc/HTML/en/kcontrol/icons.html -share/doc/HTML/en/kcontrol/iconstyle.html share/doc/HTML/en/kcontrol/index.docbook share/doc/HTML/en/kcontrol/index.html share/doc/HTML/en/kcontrol/interrupts.html @@ -1034,7 +1189,6 @@ share/doc/HTML/en/kcontrol/kcmkbd.docbook share/doc/HTML/en/kcontrol/kcmkblayout.docbook share/doc/HTML/en/kcontrol/kcmkbrowse.docbook share/doc/HTML/en/kcontrol/kcmkeybind.docbook -share/doc/HTML/en/kcontrol/kcmkeys.docbook share/doc/HTML/en/kcontrol/kcmlocate.docbook share/doc/HTML/en/kcontrol/kcmloginmanage.docbook share/doc/HTML/en/kcontrol/kcmlowbatcrit.docbook @@ -1044,6 +1198,7 @@ share/doc/HTML/en/kcontrol/kcmmidi.docbook share/doc/HTML/en/kcontrol/kcmmixer.docbook share/doc/HTML/en/kcontrol/kcmmouse.docbook share/doc/HTML/en/kcontrol/kcmmousebeh.docbook +share/doc/HTML/en/kcontrol/kcmnetscapeplugins.docbook share/doc/HTML/en/kcontrol/kcmnumbername.docbook share/doc/HTML/en/kcontrol/kcmpanel.docbook share/doc/HTML/en/kcontrol/kcmpartitioninfo.docbook @@ -1055,6 +1210,7 @@ share/doc/HTML/en/kcontrol/kcmprocinfo.docbook share/doc/HTML/en/kcontrol/kcmproxie.docbook share/doc/HTML/en/kcontrol/kcmscnsave.docbook share/doc/HTML/en/kcontrol/kcmscsiinfo.docbook +share/doc/HTML/en/kcontrol/kcmsessionman.docbook share/doc/HTML/en/kcontrol/kcmsmbstat.docbook share/doc/HTML/en/kcontrol/kcmsndinfo.docbook share/doc/HTML/en/kcontrol/kcmsndsrv.docbook @@ -1066,6 +1222,8 @@ share/doc/HTML/en/kcontrol/kcmuseragent.docbook share/doc/HTML/en/kcontrol/kcmwinshare.docbook share/doc/HTML/en/kcontrol/kcmxservinfo.docbook share/doc/HTML/en/kcontrol/key-bindings.html +share/doc/HTML/en/kcontrol/kfileman1.png +share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/konq-browsing.html share/doc/HTML/en/kcontrol/laptop.html share/doc/HTML/en/kcontrol/locale.html @@ -1079,7 +1237,7 @@ share/doc/HTML/en/kcontrol/module.html share/doc/HTML/en/kcontrol/modules.html share/doc/HTML/en/kcontrol/mouse-behav.html share/doc/HTML/en/kcontrol/mouse.html -share/doc/HTML/en/kcontrol/numbername.html +share/doc/HTML/en/kcontrol/nsplugins.html share/doc/HTML/en/kcontrol/panel.html share/doc/HTML/en/kcontrol/partitions.html share/doc/HTML/en/kcontrol/passwords.html @@ -1092,11 +1250,11 @@ share/doc/HTML/en/kcontrol/sambastatus.html share/doc/HTML/en/kcontrol/screensaver.html share/doc/HTML/en/kcontrol/screenshot.png share/doc/HTML/en/kcontrol/scsi.html +share/doc/HTML/en/kcontrol/sessions.html share/doc/HTML/en/kcontrol/sndserver.html share/doc/HTML/en/kcontrol/soundinfo.html share/doc/HTML/en/kcontrol/style.html share/doc/HTML/en/kcontrol/sys-notify.html -share/doc/HTML/en/kcontrol/talk.html share/doc/HTML/en/kcontrol/taskbar.html share/doc/HTML/en/kcontrol/user-agent.html share/doc/HTML/en/kcontrol/windows-shares.html @@ -1135,6 +1293,8 @@ share/doc/HTML/en/kdm/lilo.html share/doc/HTML/en/kdm/locale.html share/doc/HTML/en/kdm/other-information.html share/doc/HTML/en/khelpcenter/.anchors +share/doc/HTML/en/khelpcenter/background.png +share/doc/HTML/en/khelpcenter/bgtable.png share/doc/HTML/en/khelpcenter/common share/doc/HTML/en/khelpcenter/contact-developers.html share/doc/HTML/en/khelpcenter/contact-more-information.html @@ -1144,16 +1304,6 @@ share/doc/HTML/en/khelpcenter/contact.docbook share/doc/HTML/en/khelpcenter/credits.html share/doc/HTML/en/khelpcenter/faq/.anchors share/doc/HTML/en/khelpcenter/faq/TODO -share/doc/HTML/en/khelpcenter/faq/index.docbook -share/doc/HTML/en/khelpcenter/faq/index.html -share/doc/HTML/en/khelpcenter/help-system-user-manual.html -share/doc/HTML/en/khelpcenter/help.docbook -share/doc/HTML/en/khelpcenter/index.docbook -share/doc/HTML/en/khelpcenter/index.html -share/doc/HTML/en/khelpcenter/interface-basics.html -share/doc/HTML/en/khelpcenter/invoking-help.html -share/doc/HTML/en/khelpcenter/links.docbook -share/doc/HTML/en/khelpcenter/no-html.html share/doc/HTML/en/khelpcenter/faq/about.html share/doc/HTML/en/khelpcenter/faq/applications.html share/doc/HTML/en/khelpcenter/faq/common @@ -1163,6 +1313,8 @@ share/doc/HTML/en/khelpcenter/faq/credits.html share/doc/HTML/en/khelpcenter/faq/desktop.html share/doc/HTML/en/khelpcenter/faq/filemanager.html share/doc/HTML/en/khelpcenter/faq/getting-kde.html +share/doc/HTML/en/khelpcenter/faq/index.docbook +share/doc/HTML/en/khelpcenter/faq/index.html share/doc/HTML/en/khelpcenter/faq/install.html share/doc/HTML/en/khelpcenter/faq/introduction.html share/doc/HTML/en/khelpcenter/faq/misc.html @@ -1172,6 +1324,21 @@ share/doc/HTML/en/khelpcenter/faq/not-kde.html share/doc/HTML/en/khelpcenter/faq/panel.html share/doc/HTML/en/khelpcenter/faq/tips.html share/doc/HTML/en/khelpcenter/faq/windowmanager.html +share/doc/HTML/en/khelpcenter/help-system-user-manual.html +share/doc/HTML/en/khelpcenter/help.docbook +share/doc/HTML/en/khelpcenter/index.docbook +share/doc/HTML/en/khelpcenter/index.html +share/doc/HTML/en/khelpcenter/interface-basics.html +share/doc/HTML/en/khelpcenter/invoking-help.html +share/doc/HTML/en/khelpcenter/kdelogo2.png +share/doc/HTML/en/khelpcenter/khelpcenter.png +share/doc/HTML/en/khelpcenter/konq.css +share/doc/HTML/en/khelpcenter/lines.png +share/doc/HTML/en/khelpcenter/lines2.png +share/doc/HTML/en/khelpcenter/links.docbook +share/doc/HTML/en/khelpcenter/main.html +share/doc/HTML/en/khelpcenter/no-html.html +share/doc/HTML/en/khelpcenter/pointers.png share/doc/HTML/en/khelpcenter/quickstart/.anchors share/doc/HTML/en/khelpcenter/quickstart/advanced-topics.html share/doc/HTML/en/khelpcenter/quickstart/an-overview-of-kde.html @@ -1193,6 +1360,7 @@ share/doc/HTML/en/khelpcenter/quickstart/using-templates.html share/doc/HTML/en/khelpcenter/quickstart/using-v-desktops.html share/doc/HTML/en/khelpcenter/quickstart/want-command-line-back.html share/doc/HTML/en/khelpcenter/quickstart/working-with-windows.html +share/doc/HTML/en/khelpcenter/shadow1.png share/doc/HTML/en/khelpcenter/support.docbook share/doc/HTML/en/khelpcenter/supporting-kde-financial-support.html share/doc/HTML/en/khelpcenter/supporting-kde-get-started.html @@ -1276,44 +1444,48 @@ share/doc/HTML/en/khelpcenter/what-is-kde-the-office-suite.html share/doc/HTML/en/khelpcenter/what-is-kde.html share/doc/HTML/en/khelpcenter/whatiskde.docbook share/doc/HTML/en/kicker/.anchors -share/doc/HTML/en/kicker/access_config.png -share/doc/HTML/en/kicker/basic_icons.png -share/doc/HTML/en/kicker/button-preferences.html +share/doc/HTML/en/kicker/applets.html +share/doc/HTML/en/kicker/application-group.html +share/doc/HTML/en/kicker/basics.html +share/doc/HTML/en/kicker/browsers.html +share/doc/HTML/en/kicker/child-panel-extension.html +share/doc/HTML/en/kicker/clock-applet.html +share/doc/HTML/en/kicker/commands.html share/doc/HTML/en/kicker/common -share/doc/HTML/en/kicker/config_window.png -share/doc/HTML/en/kicker/configuration-adding-icons.html -share/doc/HTML/en/kicker/configuration-config-window.html +share/doc/HTML/en/kicker/compilation.html share/doc/HTML/en/kicker/configuration.html +share/doc/HTML/en/kicker/configuring-apps.html +share/doc/HTML/en/kicker/configuring.html share/doc/HTML/en/kicker/credits.html -share/doc/HTML/en/kicker/drag-and-drop.html -share/doc/HTML/en/kicker/drag_applet.png -share/doc/HTML/en/kicker/five-minute-course.html -share/doc/HTML/en/kicker/glossary.html -share/doc/HTML/en/kicker/handles.png -share/doc/HTML/en/kicker/hide_buttons.png -share/doc/HTML/en/kicker/i_adv_editor.png -share/doc/HTML/en/kicker/i_control_center.png -share/doc/HTML/en/kicker/i_desktop.png -share/doc/HTML/en/kicker/i_help.png -share/doc/HTML/en/kicker/i_home_dir.png -share/doc/HTML/en/kicker/i_k_button.png -share/doc/HTML/en/kicker/i_kandalfs_tips.png -share/doc/HTML/en/kicker/i_shell.png -share/doc/HTML/en/kicker/i_window_list.png +share/doc/HTML/en/kicker/dock-application-bar-extension.html +share/doc/HTML/en/kicker/extensions.html +share/doc/HTML/en/kicker/faq.html share/doc/HTML/en/kicker/index.docbook share/doc/HTML/en/kicker/index.html share/doc/HTML/en/kicker/installation.html share/doc/HTML/en/kicker/introduction.html -share/doc/HTML/en/kicker/kicker-for-admins-symbolic-links.html -share/doc/HTML/en/kicker/kicker-for-admins.html -share/doc/HTML/en/kicker/kicker-panel-elements.html -share/doc/HTML/en/kicker/kicker_access_size.png -share/doc/HTML/en/kicker/kicker_add_basic.png -share/doc/HTML/en/kicker/kicker_basic_icons.png -share/doc/HTML/en/kicker/kicker_basic_icons_2.png -share/doc/HTML/en/kicker/other-features.html -share/doc/HTML/en/kicker/qb_root.png +share/doc/HTML/en/kicker/k-menu.html +share/doc/HTML/en/kicker/k_menu_icon.png +share/doc/HTML/en/kicker/kasbar-extension.html +share/doc/HTML/en/kicker/kfind-advanced.html +share/doc/HTML/en/kicker/kfind-date-range.html +share/doc/HTML/en/kicker/kfind.html +share/doc/HTML/en/kicker/launcher-applet.html +share/doc/HTML/en/kicker/most-recently-group.html +share/doc/HTML/en/kicker/naughty-applet.html +share/doc/HTML/en/kicker/pager-applet.html +share/doc/HTML/en/kicker/panel-applets.html +share/doc/HTML/en/kicker/panel-buttons.html +share/doc/HTML/en/kicker/panel-looknfeel.html +share/doc/HTML/en/kicker/panel-menus.html +share/doc/HTML/en/kicker/requirements.html +share/doc/HTML/en/kicker/run-applet.html +share/doc/HTML/en/kicker/run-command.html +share/doc/HTML/en/kicker/screenshot_left.png +share/doc/HTML/en/kicker/screenshot_right.png +share/doc/HTML/en/kicker/systemtray-applet.html share/doc/HTML/en/kicker/using-kicker.html +share/doc/HTML/en/kicker/windowlist_icon.png share/doc/HTML/en/klipper/.anchors share/doc/HTML/en/klipper/actions.html share/doc/HTML/en/klipper/common @@ -1329,6 +1501,7 @@ share/doc/HTML/en/klipper/screenshot.png share/doc/HTML/en/klipper/using-klipper.html share/doc/HTML/en/kmenuedit/.anchors share/doc/HTML/en/kmenuedit/common +share/doc/HTML/en/kmenuedit/compilation.html share/doc/HTML/en/kmenuedit/credits.html share/doc/HTML/en/kmenuedit/details-advanced.html share/doc/HTML/en/kmenuedit/glossary.html @@ -1343,30 +1516,33 @@ share/doc/HTML/en/kmenuedit/icon_sets.png share/doc/HTML/en/kmenuedit/icons.png share/doc/HTML/en/kmenuedit/index.docbook share/doc/HTML/en/kmenuedit/index.html +share/doc/HTML/en/kmenuedit/installation.html share/doc/HTML/en/kmenuedit/introduction.html share/doc/HTML/en/kmenuedit/menu-reference.html share/doc/HTML/en/kmenuedit/using-kmenuedit.html share/doc/HTML/en/konqueror/.anchors -share/doc/HTML/en/konqueror/autocomplete.html share/doc/HTML/en/konqueror/basics.html share/doc/HTML/en/konqueror/bookmarks.html share/doc/HTML/en/konqueror/browser.html share/doc/HTML/en/konqueror/bubble.html -share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/cmndline.png share/doc/HTML/en/konqueror/commandline.html share/doc/HTML/en/konqueror/commands.html -share/doc/HTML/en/konqueror/config-prox.html +share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/config.html -share/doc/HTML/en/konqueror/configure-bars.html -share/doc/HTML/en/konqueror/cook.html +share/doc/HTML/en/konqueror/configfm.html +share/doc/HTML/en/konqueror/configure-browser.html +share/doc/HTML/en/konqueror/configure-enhanced-browsing.html +share/doc/HTML/en/konqueror/configure-proxy.html +share/doc/HTML/en/konqueror/configure-user-agent.html +share/doc/HTML/en/konqueror/cookies.html share/doc/HTML/en/konqueror/credits.html share/doc/HTML/en/konqueror/crypto.html share/doc/HTML/en/konqueror/deleting.html share/doc/HTML/en/konqueror/dirtree.png share/doc/HTML/en/konqueror/dragdrop.png share/doc/HTML/en/konqueror/faq.html -share/doc/HTML/en/konqueror/fileassoc.html +share/doc/HTML/en/konqueror/file-associations.html share/doc/HTML/en/konqueror/filemanager.html share/doc/HTML/en/konqueror/filetype1.png share/doc/HTML/en/konqueror/filetype3.png @@ -1375,23 +1551,20 @@ share/doc/HTML/en/konqueror/ftp.html share/doc/HTML/en/konqueror/index.docbook share/doc/HTML/en/konqueror/index.html share/doc/HTML/en/konqueror/installation.html -share/doc/HTML/en/konqueror/introduction.html share/doc/HTML/en/konqueror/konqorg.png -share/doc/HTML/en/konqueror/lmbmmb.html +share/doc/HTML/en/konqueror/lmb-mmb.html share/doc/HTML/en/konqueror/making.html -share/doc/HTML/en/konqueror/miscbrowser.html +share/doc/HTML/en/konqueror/man-info.html share/doc/HTML/en/konqueror/moving.html share/doc/HTML/en/konqueror/multiple.html share/doc/HTML/en/konqueror/newname.html -share/doc/HTML/en/konqueror/optionalbrowser.html share/doc/HTML/en/konqueror/parts.html share/doc/HTML/en/konqueror/parts.png share/doc/HTML/en/konqueror/plugin.html share/doc/HTML/en/konqueror/rmb-menus.html -share/doc/HTML/en/konqueror/samba.html share/doc/HTML/en/konqueror/samba.png share/doc/HTML/en/konqueror/save-print-web.html -share/doc/HTML/en/konqueror/saveset.html +share/doc/HTML/en/konqueror/save-settings.html share/doc/HTML/en/konqueror/surf.html share/doc/HTML/en/konsole/.anchors share/doc/HTML/en/konsole/command-line-options.html @@ -1447,6 +1620,7 @@ share/doc/HTML/en/kwrite/go.html share/doc/HTML/en/kwrite/help.html share/doc/HTML/en/kwrite/index.docbook share/doc/HTML/en/kwrite/index.html +share/doc/HTML/en/kwrite/installation.html share/doc/HTML/en/kwrite/introduction.html share/doc/HTML/en/kwrite/keybindings.html share/doc/HTML/en/kwrite/on-screen-fundamentals.html @@ -1465,6 +1639,66 @@ share/fonts/console8x16.pcf.gz share/fonts/console8x8.pcf.gz share/fonts/fonts.dir share/fonts/override/fonts.dir +share/icons/hicolor/16x16/apps/background.png +share/icons/hicolor/16x16/apps/bell.png +share/icons/hicolor/16x16/apps/cookie.png +share/icons/hicolor/16x16/apps/email.png +share/icons/hicolor/16x16/apps/energy.png +share/icons/hicolor/16x16/apps/enhanced_browsing.png +share/icons/hicolor/16x16/apps/go.png +share/icons/hicolor/16x16/apps/hwinfo.png +share/icons/hicolor/16x16/apps/input_devices_settings.png +share/icons/hicolor/16x16/apps/kappfinder.png +share/icons/hicolor/16x16/apps/kcmkwm.png +share/icons/hicolor/16x16/apps/kcmsystem.png +share/icons/hicolor/16x16/apps/kcontrol.png +share/icons/hicolor/16x16/apps/kdisknav.png +share/icons/hicolor/16x16/apps/keditbookmarks.png +share/icons/hicolor/16x16/apps/kfm.png +share/icons/hicolor/16x16/apps/kfm_home.png +share/icons/hicolor/16x16/apps/khelpcenter.png +share/icons/hicolor/16x16/apps/klipper.png +share/icons/hicolor/16x16/apps/konqueror.png +share/icons/hicolor/16x16/apps/konsole.png +share/icons/hicolor/16x16/apps/kscreensaver.png +share/icons/hicolor/16x16/apps/ksysguard.png +share/icons/hicolor/16x16/apps/ktip.png +share/icons/hicolor/16x16/apps/kwrite.png +share/icons/hicolor/16x16/apps/locale.png +share/icons/hicolor/16x16/apps/looknfeel.png +share/icons/hicolor/16x16/apps/multimedia.png +share/icons/hicolor/16x16/apps/netscape.png +share/icons/hicolor/16x16/apps/package_applications.png +share/icons/hicolor/16x16/apps/package_development.png +share/icons/hicolor/16x16/apps/package_editors.png +share/icons/hicolor/16x16/apps/package_graphics.png +share/icons/hicolor/16x16/apps/package_multimedia.png +share/icons/hicolor/16x16/apps/package_network.png +share/icons/hicolor/16x16/apps/package_settings.png +share/icons/hicolor/16x16/apps/package_system.png +share/icons/hicolor/16x16/apps/package_toys.png +share/icons/hicolor/16x16/apps/package_utilities.png +share/icons/hicolor/16x16/apps/package_wordprocessing.png +share/icons/hicolor/16x16/apps/realplayer.png +share/icons/hicolor/16x16/apps/remote.png +share/icons/hicolor/16x16/apps/samba.png +share/icons/hicolor/16x16/apps/style.png +share/icons/hicolor/16x16/apps/window_list.png +share/icons/hicolor/16x16/devices/3floppy_mount.png +share/icons/hicolor/16x16/devices/3floppy_unmount.png +share/icons/hicolor/16x16/devices/cdaudio_mount.png +share/icons/hicolor/16x16/devices/cdaudio_unmount.png +share/icons/hicolor/16x16/devices/cdrom_mount.png +share/icons/hicolor/16x16/devices/cdrom_unmount.png +share/icons/hicolor/16x16/devices/dvd_mount.png +share/icons/hicolor/16x16/devices/dvd_unmount.png +share/icons/hicolor/16x16/devices/hdd_mount.png +share/icons/hicolor/16x16/devices/hdd_unmount.png +share/icons/hicolor/16x16/devices/nfs_mount.png +share/icons/hicolor/16x16/devices/nfs_unmount.png +share/icons/hicolor/16x16/devices/printer1.png +share/icons/hicolor/16x16/filesystems/file_important.png +share/icons/hicolor/16x16/filesystems/folder_important.png share/icons/hicolor/22x22/actions/view_choose.png share/icons/hicolor/22x22/actions/view_detailed.png share/icons/hicolor/22x22/actions/view_icon.png @@ -1478,11 +1712,13 @@ share/icons/hicolor/32x32/actions/view_multicolumn.png share/icons/hicolor/32x32/actions/view_text.png share/icons/hicolor/32x32/actions/view_tree.png share/icons/hicolor/32x32/apps/access.png +share/icons/hicolor/32x32/apps/acroread.png share/icons/hicolor/32x32/apps/agent.png share/icons/hicolor/32x32/apps/bell.png -share/icons/hicolor/32x32/apps/buttons.png +share/icons/hicolor/32x32/apps/blender.png share/icons/hicolor/32x32/apps/clock.png share/icons/hicolor/32x32/apps/colors.png +share/icons/hicolor/32x32/apps/cookie.png share/icons/hicolor/32x32/apps/date.png share/icons/hicolor/32x32/apps/designer.png share/icons/hicolor/32x32/apps/emacs.png @@ -1512,6 +1748,7 @@ share/icons/hicolor/32x32/apps/kcmx.png share/icons/hicolor/32x32/apps/kcontrol.png share/icons/hicolor/32x32/apps/kdisknav.png share/icons/hicolor/32x32/apps/kdmconfig.png +share/icons/hicolor/32x32/apps/keditbookmarks.png share/icons/hicolor/32x32/apps/key_bindings.png share/icons/hicolor/32x32/apps/keyboard_layout.png share/icons/hicolor/32x32/apps/kfm.png @@ -1544,15 +1781,18 @@ share/icons/hicolor/32x32/apps/package_multimedia.png share/icons/hicolor/32x32/apps/package_network.png share/icons/hicolor/32x32/apps/package_settings.png share/icons/hicolor/32x32/apps/package_system.png +share/icons/hicolor/32x32/apps/package_toys.png share/icons/hicolor/32x32/apps/package_utilities.png +share/icons/hicolor/32x32/apps/package_wordprocessing.png share/icons/hicolor/32x32/apps/password.png share/icons/hicolor/32x32/apps/proxy.png +share/icons/hicolor/32x32/apps/realplayer.png share/icons/hicolor/32x32/apps/style.png share/icons/hicolor/32x32/apps/terminal.png -share/icons/hicolor/32x32/apps/titlebar.png share/icons/hicolor/32x32/apps/window_list.png share/icons/hicolor/32x32/apps/winprops.png share/icons/hicolor/32x32/apps/xapp.png +share/icons/hicolor/32x32/apps/xawtv.png share/icons/hicolor/32x32/apps/xedit.png share/icons/hicolor/32x32/apps/xemacs.png share/icons/hicolor/32x32/apps/xmag.png @@ -1574,16 +1814,20 @@ share/icons/hicolor/32x32/devices/hdd_unmount.png share/icons/hicolor/32x32/devices/memory.png share/icons/hicolor/32x32/devices/mo_mount.png share/icons/hicolor/32x32/devices/mo_unmount.png +share/icons/hicolor/32x32/devices/nfs_mount.png +share/icons/hicolor/32x32/devices/nfs_unmount.png share/icons/hicolor/32x32/devices/printer1.png share/icons/hicolor/32x32/devices/printer2.png share/icons/hicolor/32x32/devices/scanner.png share/icons/hicolor/32x32/devices/tablet.png share/icons/hicolor/32x32/devices/zip_mount.png share/icons/hicolor/32x32/devices/zip_unmount.png +share/icons/hicolor/32x32/filesystems/file_important.png +share/icons/hicolor/32x32/filesystems/folder_important.png share/icons/hicolor/48x48/apps/access.png share/icons/hicolor/48x48/apps/agent.png share/icons/hicolor/48x48/apps/bell.png -share/icons/hicolor/48x48/apps/buttons.png +share/icons/hicolor/48x48/apps/blender.png share/icons/hicolor/48x48/apps/clock.png share/icons/hicolor/48x48/apps/colors.png share/icons/hicolor/48x48/apps/cookie.png @@ -1649,12 +1893,15 @@ share/icons/hicolor/48x48/apps/package_multimedia.png share/icons/hicolor/48x48/apps/package_network.png share/icons/hicolor/48x48/apps/package_settings.png share/icons/hicolor/48x48/apps/package_system.png +share/icons/hicolor/48x48/apps/package_toys.png share/icons/hicolor/48x48/apps/package_utilities.png +share/icons/hicolor/48x48/apps/package_wordprocessing.png share/icons/hicolor/48x48/apps/password.png share/icons/hicolor/48x48/apps/proxy.png +share/icons/hicolor/48x48/apps/remote.png +share/icons/hicolor/48x48/apps/samba.png share/icons/hicolor/48x48/apps/style.png share/icons/hicolor/48x48/apps/terminal.png -share/icons/hicolor/48x48/apps/titlebar.png share/icons/hicolor/48x48/apps/window_list.png share/icons/hicolor/48x48/apps/winprops.png share/icons/hicolor/48x48/apps/xedit.png @@ -1678,12 +1925,17 @@ share/icons/hicolor/48x48/devices/hdd_unmount.png share/icons/hicolor/48x48/devices/memory.png share/icons/hicolor/48x48/devices/mo_mount.png share/icons/hicolor/48x48/devices/mo_unmount.png +share/icons/hicolor/48x48/devices/nfs_mount.png +share/icons/hicolor/48x48/devices/nfs_unmount.png share/icons/hicolor/48x48/devices/printer1.png share/icons/hicolor/48x48/devices/printer2.png share/icons/hicolor/48x48/devices/scanner.png share/icons/hicolor/48x48/devices/tablet.png share/icons/hicolor/48x48/devices/zip_mount.png share/icons/hicolor/48x48/devices/zip_unmount.png +share/icons/hicolor/48x48/filesystems/file_important.png +share/icons/hicolor/48x48/filesystems/folder_important.png +share/icons/locolor/16x16/actions/bookmark_folder.png share/icons/locolor/16x16/actions/view_choose.png share/icons/locolor/16x16/actions/view_detailed.png share/icons/locolor/16x16/actions/view_icon.png @@ -1693,12 +1945,13 @@ share/icons/locolor/16x16/actions/view_tree.png share/icons/locolor/16x16/apps/access.png share/icons/locolor/16x16/apps/acroread.png share/icons/locolor/16x16/apps/agent.png +share/icons/locolor/16x16/apps/alevt.png share/icons/locolor/16x16/apps/applixware.png share/icons/locolor/16x16/apps/arts.png share/icons/locolor/16x16/apps/background.png share/icons/locolor/16x16/apps/bell.png -share/icons/locolor/16x16/apps/borders.png -share/icons/locolor/16x16/apps/buttons.png +share/icons/locolor/16x16/apps/blender.png +share/icons/locolor/16x16/apps/clock.png share/icons/locolor/16x16/apps/colors.png share/icons/locolor/16x16/apps/cookie.png share/icons/locolor/16x16/apps/date.png @@ -1735,12 +1988,14 @@ share/icons/locolor/16x16/apps/kcmx.png share/icons/locolor/16x16/apps/kcontrol.png share/icons/locolor/16x16/apps/kdisknav.png share/icons/locolor/16x16/apps/kdmconfig.png +share/icons/locolor/16x16/apps/keditbookmarks.png share/icons/locolor/16x16/apps/key_bindings.png share/icons/locolor/16x16/apps/keyboard.png share/icons/locolor/16x16/apps/keyboard_layout.png share/icons/locolor/16x16/apps/kfm.png share/icons/locolor/16x16/apps/kfm_home.png share/icons/locolor/16x16/apps/khelpcenter.png +share/icons/locolor/16x16/apps/kicker.png share/icons/locolor/16x16/apps/klipper.png share/icons/locolor/16x16/apps/kmenuedit.png share/icons/locolor/16x16/apps/knotify.png @@ -1758,6 +2013,7 @@ share/icons/locolor/16x16/apps/looknfeel.png share/icons/locolor/16x16/apps/lyx.png share/icons/locolor/16x16/apps/mathematica.png share/icons/locolor/16x16/apps/mouse.png +share/icons/locolor/16x16/apps/mozilla.png share/icons/locolor/16x16/apps/multimedia.png share/icons/locolor/16x16/apps/nedit.png share/icons/locolor/16x16/apps/netscape.png @@ -1778,11 +2034,12 @@ share/icons/locolor/16x16/apps/password.png share/icons/locolor/16x16/apps/penguin.png share/icons/locolor/16x16/apps/plan.png share/icons/locolor/16x16/apps/proxy.png +share/icons/locolor/16x16/apps/pybliographic.png share/icons/locolor/16x16/apps/realplayer.png +share/icons/locolor/16x16/apps/remote.png share/icons/locolor/16x16/apps/samba.png share/icons/locolor/16x16/apps/style.png share/icons/locolor/16x16/apps/terminal.png -share/icons/locolor/16x16/apps/titlebar.png share/icons/locolor/16x16/apps/wabi.png share/icons/locolor/16x16/apps/window_list.png share/icons/locolor/16x16/apps/winprops.png @@ -1824,11 +2081,12 @@ share/icons/locolor/16x16/devices/zip_unmount.png share/icons/locolor/32x32/apps/access.png share/icons/locolor/32x32/apps/acroread.png share/icons/locolor/32x32/apps/agent.png +share/icons/locolor/32x32/apps/alevt.png share/icons/locolor/32x32/apps/applixware.png share/icons/locolor/32x32/apps/background.png share/icons/locolor/32x32/apps/bell.png -share/icons/locolor/32x32/apps/borders.png -share/icons/locolor/32x32/apps/buttons.png +share/icons/locolor/32x32/apps/blender.png +share/icons/locolor/32x32/apps/clanbomber.png share/icons/locolor/32x32/apps/clock.png share/icons/locolor/32x32/apps/colors.png share/icons/locolor/32x32/apps/cookie.png @@ -1908,16 +2166,18 @@ share/icons/locolor/32x32/apps/password.png share/icons/locolor/32x32/apps/penguin.png share/icons/locolor/32x32/apps/plan.png share/icons/locolor/32x32/apps/proxy.png +share/icons/locolor/32x32/apps/pybliographic.png +share/icons/locolor/32x32/apps/pysol.png share/icons/locolor/32x32/apps/realplayer.png share/icons/locolor/32x32/apps/samba.png share/icons/locolor/32x32/apps/style.png share/icons/locolor/32x32/apps/terminal.png -share/icons/locolor/32x32/apps/titlebar.png share/icons/locolor/32x32/apps/wabi.png share/icons/locolor/32x32/apps/window_list.png share/icons/locolor/32x32/apps/winprops.png share/icons/locolor/32x32/apps/wp.png share/icons/locolor/32x32/apps/xapp.png +share/icons/locolor/32x32/apps/xawtv.png share/icons/locolor/32x32/apps/xcalc.png share/icons/locolor/32x32/apps/xclipboard.png share/icons/locolor/32x32/apps/xclock.png @@ -2041,8 +2301,12 @@ share/locale/l10n/kr/entry.desktop share/locale/l10n/kr/flag.png share/locale/l10n/lc/entry.desktop share/locale/l10n/lc/flag.png +share/locale/l10n/lt/entry.desktop +share/locale/l10n/lt/flag.png share/locale/l10n/lu/entry.desktop share/locale/l10n/lu/flag.png +share/locale/l10n/lv/entry.desktop +share/locale/l10n/lv/flag.png share/locale/l10n/mk/entry.desktop share/locale/l10n/mk/flag.png share/locale/l10n/mx/entry.desktop @@ -2104,12 +2368,23 @@ share/locale/l10n/westeurope.desktop share/locale/l10n/za/entry.desktop share/locale/l10n/za/flag.png share/mimelnk/application/x-konsole.desktop +share/mimelnk/application/x-ktheme.desktop +share/services/bzip.protocol +share/services/bzip2.protocol +share/services/finger.protocol +share/services/floppy.protocol share/services/gopher.protocol share/services/gzip.protocol share/services/help.protocol +share/services/htmlthumbnail.desktop +share/services/imagethumbnail.desktop +share/services/imap4.protocol +share/services/imaps.protocol share/services/info.protocol share/services/kaccess.desktop +share/services/kfindpart.desktop share/services/khelpcenter.desktop +share/services/konq_aboutpage.desktop share/services/konq_detailedlistview.desktop share/services/konq_dirtree.desktop share/services/konq_iconview.desktop @@ -2117,6 +2392,7 @@ share/services/konq_multicolumnview.desktop share/services/konq_textview.desktop share/services/konq_treeview.desktop share/services/konqueror.desktop +share/services/konqueror_config.desktop share/services/konsolepart.desktop share/services/kshorturifilter.desktop share/services/kuriikwsfilter.desktop @@ -2124,14 +2400,58 @@ share/services/kurisearchfilter.desktop share/services/kwrite_component.desktop share/services/kxkb.desktop share/services/kxmlrpcd.desktop +share/services/ldap.protocol share/services/man.protocol share/services/nfs.protocol share/services/nntp.protocol share/services/pop3.protocol share/services/pop3s.protocol +share/services/searchproviders/acronym.desktop +share/services/searchproviders/altavista.desktop +share/services/searchproviders/austronaut.desktop +share/services/searchproviders/bugft.desktop +share/services/searchproviders/bugno.desktop +share/services/searchproviders/deja.desktop +share/services/searchproviders/dmoz.desktop +share/services/searchproviders/excite.desktop +share/services/searchproviders/foldoc.desktop +share/services/searchproviders/freshmeat.desktop +share/services/searchproviders/google.desktop +share/services/searchproviders/hotbot.desktop +share/services/searchproviders/jeeves.desktop +share/services/searchproviders/leo.desktop +share/services/searchproviders/lycos.desktop +share/services/searchproviders/mamma.desktop +share/services/searchproviders/metacrawler.desktop +share/services/searchproviders/realnames.desktop +share/services/searchproviders/rpmfind.desktop +share/services/searchproviders/seek.desktop +share/services/searchproviders/thesaurus.desktop +share/services/searchproviders/voila.desktop +share/services/searchproviders/webster.desktop share/services/smb.protocol share/services/smtp.protocol share/services/tar.protocol +share/services/textthumbnail.desktop +share/services/thumbnail.protocol +share/servicetypes/findpart.desktop +share/servicetypes/konqaboutpage.desktop +share/servicetypes/searchprovider.desktop +share/servicetypes/thumbcreator.desktop +share/sounds/KDE_Beep_Ahem.wav +share/sounds/KDE_Beep_Beep.wav +share/sounds/KDE_Beep_Bottles.wav +share/sounds/KDE_Beep_ClassicBeep.wav +share/sounds/KDE_Beep_ClockChime.wav +share/sounds/KDE_Beep_Connect.wav +share/sounds/KDE_Beep_Door.wav +share/sounds/KDE_Beep_Honk.wav +share/sounds/KDE_Beep_Lightning.wav +share/sounds/KDE_Beep_Pop.wav +share/sounds/KDE_Beep_RimShot.wav +share/sounds/KDE_Beep_RingRing.wav +share/sounds/KDE_Beep_ShortBeep.wav +share/sounds/KDE_Beep_Yo.wav share/sounds/KDE_Close_Window.wav share/sounds/KDE_Logout.wav share/sounds/KDE_Startup.wav @@ -2185,6 +2505,105 @@ share/wallpapers/northbeach.jpg share/wallpapers/simple_wallpaper.jpg share/wallpapers/sunday_brunch.jpg share/wallpapers/vegetative_fog.jpg +@dirrm share/wallpapers +@dirrm share/templates/.source +@dirrm share/templates +@dirrm share/sounds +@dirrm share/servicetypes +@dirrm share/services/searchproviders +@dirrm share/services +@dirrm share/mimelnk/application +@dirrm share/locale/l10n/za +@dirrm share/locale/l10n/ve +@dirrm share/locale/l10n/vc +@dirrm share/locale/l10n/uy +@dirrm share/locale/l10n/us +@dirrm share/locale/l10n/ua +@dirrm share/locale/l10n/tw +@dirrm share/locale/l10n/tt +@dirrm share/locale/l10n/tr +@dirrm share/locale/l10n/th +@dirrm share/locale/l10n/sv +@dirrm share/locale/l10n/sr +@dirrm share/locale/l10n/sk +@dirrm share/locale/l10n/si +@dirrm share/locale/l10n/se +@dirrm share/locale/l10n/ru +@dirrm share/locale/l10n/ro +@dirrm share/locale/l10n/py +@dirrm share/locale/l10n/pt +@dirrm share/locale/l10n/pl +@dirrm share/locale/l10n/pe +@dirrm share/locale/l10n/pa +@dirrm share/locale/l10n/nz +@dirrm share/locale/l10n/no +@dirrm share/locale/l10n/nl +@dirrm share/locale/l10n/mx +@dirrm share/locale/l10n/mk +@dirrm share/locale/l10n/lv +@dirrm share/locale/l10n/lu +@dirrm share/locale/l10n/lt +@dirrm share/locale/l10n/lc +@dirrm share/locale/l10n/kr +@dirrm share/locale/l10n/kp +@dirrm share/locale/l10n/kn +@dirrm share/locale/l10n/jp +@dirrm share/locale/l10n/jm +@dirrm share/locale/l10n/it +@dirrm share/locale/l10n/is +@dirrm share/locale/l10n/il +@dirrm share/locale/l10n/ie +@dirrm share/locale/l10n/hu +@dirrm share/locale/l10n/hr +@dirrm share/locale/l10n/hn +@dirrm share/locale/l10n/gt +@dirrm share/locale/l10n/gr +@dirrm share/locale/l10n/gd +@dirrm share/locale/l10n/gb +@dirrm share/locale/l10n/fr +@dirrm share/locale/l10n/fi +@dirrm share/locale/l10n/es +@dirrm share/locale/l10n/ee +@dirrm share/locale/l10n/ec +@dirrm share/locale/l10n/do +@dirrm share/locale/l10n/dk +@dirrm share/locale/l10n/de +@dirrm share/locale/l10n/cz +@dirrm share/locale/l10n/co +@dirrm share/locale/l10n/cn +@dirrm share/locale/l10n/cl +@dirrm share/locale/l10n/ch +@dirrm share/locale/l10n/ca +@dirrm share/locale/l10n/br +@dirrm share/locale/l10n/bo +@dirrm share/locale/l10n/bg +@dirrm share/locale/l10n/be +@dirrm share/locale/l10n/bb +@dirrm share/locale/l10n/au +@dirrm share/locale/l10n/at +@dirrm share/locale/l10n/ar +@dirrm share/locale/l10n/ag +@dirrm share/locale/l10n/C +@dirrm share/locale/l10n +@dirrm share/locale/C +@dirrm share/icons/locolor/32x32/devices +@dirrm share/icons/locolor/32x32/apps +@dirrm share/icons/locolor/16x16/devices +@dirrm share/icons/locolor/16x16/apps +@dirrm share/icons/locolor/16x16/actions +@dirrm share/icons/hicolor/48x48/filesystems +@dirrm share/icons/hicolor/48x48/devices +@dirrm share/icons/hicolor/48x48/apps +@dirrm share/icons/hicolor/32x32/filesystems +@dirrm share/icons/hicolor/32x32/devices +@dirrm share/icons/hicolor/32x32/apps +@dirrm share/icons/hicolor/32x32/actions +@dirrm share/icons/hicolor/22x22/actions +@dirrm share/icons/hicolor/16x16/filesystems +@dirrm share/icons/hicolor/16x16/devices +@dirrm share/icons/hicolor/16x16/apps +@dirrm share/fonts/override +@dirrm share/fonts @dirrm share/doc/HTML/en/kwrite @dirrm share/doc/HTML/en/ksysguard @dirrm share/doc/HTML/en/kpager @@ -2202,17 +2621,22 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/doc/HTML/en/kdesu @dirrm share/doc/HTML/en/kdebugdialog @dirrm share/doc/HTML/en/kcontrol -@dirrm share/apps/quickbrowser +@dirrm share/doc/HTML/en +@dirrm share/config +@dirrm share/autostart +@dirrm share/apps/naughtyapplet/pics @dirrm share/apps/kwrite @dirrm share/apps/kwin/pics @dirrm share/apps/kwin +@dirrm share/apps/kthememgr/Themes +@dirrm share/apps/kthememgr @dirrm share/apps/ksysguard/icons/locolor/16x16/apps @dirrm share/apps/ksysguard/icons/locolor/16x16 @dirrm share/apps/ksysguard/icons/locolor @dirrm share/apps/ksysguard/icons @dirrm share/apps/ksysguard +@dirrm share/apps/ksplash/pics/locolor @dirrm share/apps/ksplash/pics -@dirrm share/apps/ksplash @dirrm share/apps/kscreensaver @dirrm share/apps/konsole/pics @dirrm share/apps/konsole @@ -2226,14 +2650,18 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/konqueror/icons/hicolor/32x32 @dirrm share/apps/konqueror/icons/hicolor/22x22/actions @dirrm share/apps/konqueror/icons/hicolor/22x22 +@dirrm share/apps/konqueror/icons/hicolor/16x16/actions @dirrm share/apps/konqueror/icons/hicolor @dirrm share/apps/konqueror/icons @dirrm share/apps/konqueror/dirtree/remote/web @dirrm share/apps/konqueror/dirtree/remote/ftp @dirrm share/apps/konqueror/dirtree/remote @dirrm share/apps/konqueror/dirtree +@dirrm share/apps/konqueror/about @dirrm share/apps/konqueror +@dirrm share/apps/konqlistview/kpartplugins @dirrm share/apps/konqlistview +@dirrm share/apps/konqiconview/kpartplugins @dirrm share/apps/konqiconview @dirrm share/apps/kmenuedit/icons/locolor/16x16/actions @dirrm share/apps/kmenuedit/icons/locolor/16x16 @@ -2246,13 +2674,16 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kmenuedit/icons @dirrm share/apps/kmenuedit @dirrm share/apps/kio_info +@dirrm share/apps/kio_finger @dirrm share/apps/kicker/wallpapers @dirrm share/apps/kicker/tiles @dirrm share/apps/kicker/pics @dirrm share/apps/kicker/icons/locolor/16x16/actions @dirrm share/apps/kicker/icons/locolor/16x16 @dirrm share/apps/kicker/icons/locolor +@dirrm share/apps/kicker/icons/hicolor/16x16/actions @dirrm share/apps/kicker/icons +@dirrm share/apps/kicker/extensions @dirrm share/apps/kicker/applets @dirrm share/apps/kicker @dirrm share/apps/khelpcenter/plugins/Tutorials @@ -2264,6 +2695,8 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/khelpcenter/icons @dirrm share/apps/khelpcenter/en @dirrm share/apps/khelpcenter +@dirrm share/apps/kfind/icons/locolor/22x22/actions +@dirrm share/apps/keditbookmarks @dirrm share/apps/kdm/pics/users @dirrm share/apps/kdm/pics @dirrm share/apps/kdm @@ -2282,9 +2715,11 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kcontrol @dirrm share/apps/kcmlocale/pics @dirrm share/apps/kcmlocale +@dirrm share/apps/kcmkeys/standard @dirrm share/apps/kcminput @dirrm share/apps/kbookmark @dirrm share/apps/kappfinder/apps/WordProcessing +@dirrm share/apps/kappfinder/apps/Utilities/XUtilities @dirrm share/apps/kappfinder/apps/Utilities @dirrm share/apps/kappfinder/apps/Toys @dirrm share/apps/kappfinder/apps/System/ScreenSavers @@ -2293,13 +2728,45 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kappfinder/apps/Multimedia @dirrm share/apps/kappfinder/apps/Internet @dirrm share/apps/kappfinder/apps/Graphics +@dirrm share/apps/kappfinder/apps/Games @dirrm share/apps/kappfinder/apps/Editors @dirrm share/apps/kappfinder/apps/Development @dirrm share/apps/kappfinder/apps -@dirrm share/apps/kappfinder @dirrm share/apps/drkonqi/presets @dirrm share/apps/drkonqi/pics @dirrm share/apps/drkonqi/debuggers @dirrm share/apps/drkonqi @dirrm share/apps/clockapplet/pics @dirrm share/apps/clockapplet +@dirrm share/apps +@dirrm share/applnk/Utilities +@dirrm share/applnk/Toys +@dirrm share/applnk/System/ScreenSavers +@dirrm share/applnk/System +@dirrm share/applnk/Settings/WebBrowsing +@dirrm share/applnk/Settings/System +@dirrm share/applnk/Settings/Sound +@dirrm share/applnk/Settings/PowerControl +@dirrm share/applnk/Settings/Personalization +@dirrm share/applnk/Settings/Peripherals +@dirrm share/applnk/Settings/Network +@dirrm share/applnk/Settings/LookNFeel/Windows +@dirrm share/applnk/Settings/LookNFeel/Themes +@dirrm share/applnk/Settings/LookNFeel/Desktop +@dirrm share/applnk/Settings/LookNFeel +@dirrm share/applnk/Settings/Information +@dirrm share/applnk/Settings/Help +@dirrm share/applnk/Settings/FileBrowsing +@dirrm share/applnk/Settings +@dirrm share/applnk/Office +@dirrm share/applnk/Multimedia +@dirrm share/applnk/Internet +@dirrm share/applnk/Graphics +@dirrm share/applnk/Games +@dirrm share/applnk/Editors +@dirrm share/applnk/Development +@dirrm share/applnk/Applications +@dirrm share/applnk/.hidden +@dirrm share/applnk +@dirrm lib/kde2 +@dirrm include/kwin diff --git a/x11/kde4-runtime/Makefile b/x11/kde4-runtime/Makefile index e44f3da88bf8..a346796a21ee 100644 --- a/x11/kde4-runtime/Makefile +++ b/x11/kde4-runtime/Makefile @@ -6,12 +6,12 @@ # PORTNAME= kdebase -PORTVERSION= 2.0.1 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION}/distribution/tar/generic/src -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= kdeui.4:${PORTSDIR}/x11/kdelibs2 \ intl.1:${PORTSDIR}/devel/gettext diff --git a/x11/kde4-runtime/distinfo b/x11/kde4-runtime/distinfo index 80f0c4ce35f6..243923f1a5d7 100644 --- a/x11/kde4-runtime/distinfo +++ b/x11/kde4-runtime/distinfo @@ -1 +1 @@ -MD5 (kdebase-2.0.1.tar.bz2) = b138a67ae22fbda05def8e932820ac66 +MD5 (kdebase-2.1.tar.bz2) = 54264460bca895cc3e315bb49c297f8f diff --git a/x11/kde4-runtime/files/patch-Processlist.c b/x11/kde4-runtime/files/patch-Processlist.c deleted file mode 100644 index 863d56e7ec72..000000000000 --- a/x11/kde4-runtime/files/patch-Processlist.c +++ /dev/null @@ -1,80 +0,0 @@ ---- ksysguard/ksysguardd/FreeBSD/ProcessList.c.old Tue Jan 23 19:44:29 2001 -+++ ksysguard/ksysguardd/FreeBSD/ProcessList.c Tue Jan 23 20:19:24 2001 -@@ -186,7 +186,20 @@ - if (sysctl(mib, 4, &p, &len, NULL, 0) == -1 || !len) - return -1; - -- /* ?? */ -+#if __FreeBSD_version >= 500015 -+ /* Getting runtime process info */ -+ ps->pid = p.ki_pid; -+ ps->ppid = p.ki_ppid; -+ strcpy(ps->name, p.ki_comm); -+ ps->uid = p.ki_uid; -+ ps->gid = p.ki_pgid; -+ -+ pwent = getpwuid(ps->uid); -+ strcpy(ps->userName, pwent ? pwent->pw_name : "????"); -+ ps->priority = p.ki_priority; -+ ps->niceLevel = p.ki_nice; -+ -+#else - ps->pid = p.kp_proc.p_pid; - ps->ppid = p.kp_eproc.e_ppid; - strcpy(ps->name, p.kp_proc.p_comm); -@@ -198,16 +211,30 @@ - strcpy(ps->userName, pwent ? pwent->pw_name : "????"); - ps->priority = p.kp_proc.p_priority; - ps->niceLevel = p.kp_proc.p_nice; -+#endif - - /* this isn't usertime -- it's total time (??) */ --#if __FreeBSD_version >= 300000 -+#if __FreeBSD_version >= 500015 -+ ps->userTime = p.ki_runtime / 10000; -+#elif __FreeBSD_version >= 300000 - ps->userTime = p.kp_proc.p_runtime / 10000; - #else - ps->userTime = p.kp_proc.p_rtime.tv_sec*100+p.kp_proc.p_rtime.tv_usec/100 - #endif -+ - ps->sysTime = 0; -- ps->userLoad = p.kp_proc.p_pctcpu / 100; - ps->sysLoad = 0; -+#if __FreeBSD_version >= 500015 -+ ps->userLoad = p.ki_pctcpu / 100; -+ -+ /* memory */ -+ ps->vmSize = p.ki_size * getpagesize(); -+ -+ ps->vmRss = p.ki_rssize * getpagesize(); -+ -+ ps->status = p.ki_stat; -+#else -+ ps->userLoad = p.kp_proc.p_pctcpu / 100; - - /* memory */ - ps->vmSize = (p.kp_eproc.e_vm.vm_tsize + -@@ -216,7 +243,7 @@ - ps->vmRss = p.kp_eproc.e_vm.vm_rssize * getpagesize(); - - ps->status = p.kp_proc.p_stat; -- -+#endif - return (0); - } - -@@ -284,8 +311,13 @@ - p = malloc(len); - sysctl(mib, 3, p, &len, NULL, 0); - -+#if __FreeBSD_version >= 500015 -+ for (num = 0; num < len / sizeof(struct kinfo_proc); num++) -+ updateProcess(p[num].ki_pid); -+#else - for (num = 0; num < len / sizeof(struct kinfo_proc); num++) - updateProcess(p[num].kp_proc.p_pid); -+#endif - - cleanupProcessList(); - diff --git a/x11/kde4-runtime/files/patch-TEPty.C b/x11/kde4-runtime/files/patch-TEPty.C index 9bfd5db25ccd..796ec243efbf 100644 --- a/x11/kde4-runtime/files/patch-TEPty.C +++ b/x11/kde4-runtime/files/patch-TEPty.C @@ -1,83 +1,6 @@ ---- konsole/src/TEPty.C.orig Fri Dec 8 11:51:24 2000 -+++ konsole/src/TEPty.C Fri Dec 8 11:52:51 2000 -@@ -180,27 +180,57 @@ - // param grant: 1 to grant, 0 to revoke - // returns 1 on success 0 on fail - { -- pid_t pid = fork(); -- if (pid < 0) -- { -- return 0; -- } -- if (pid == 0) -- { -- /* We pass the master pseudo terminal as file descriptor PTY_FILENO. */ -- if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) exit(1); -- QString path = locate("exe", BASE_CHOWN); -+ pid_t pid; -+ int pstat; -+ struct sigaction ign; -+ struct sigaction intact; // interupt action -+ struct sigaction quitact; // quit action -+ sigset_t newsigblock, oldsigblock; -+ QString path; -+ -+ ign.sa_handler = SIG_IGN; -+ sigemptyset(&ign.sa_mask); -+ ign.sa_flags = 0; -+ sigaction(SIGINT, &ign, &intact); -+ sigaction(SIGQUIT, &ign, &quitact); -+ sigemptyset(&newsigblock); -+ sigaddset(&newsigblock, SIGCHLD); -+ sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock); -+ -+ switch (pid = fork()) { -+ case -1: -+ return(0); -+ break; -+ case 0: // child -+ if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) -+ exit(1); -+ path = locate("exe", BASE_CHOWN); -+ -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); - execle(path.ascii(), BASE_CHOWN, grant?"--grant":"--revoke", NULL, NULL); -- exit(1); // should not be reached -- } -- if (pid > 0) -- { int w; -- retry: -- int rc = waitpid (pid, &w, 0); -- if ((rc == -1) && (errno == EINTR)) -- goto retry; -- return (rc != -1 && WIFEXITED(w) && WEXITSTATUS(w) == 0); -+ exit(1); -+ break; -+ default: -+ do { -+ pid = waitpid(pid, &pstat, 0); -+ } while (pid == -1 && errno == EINTR); -+ break; - } -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); -+ -+ if (pid == -1) { -+ return 0; -+ } -+ else if (WIFEXITED(pstat) && (WEXITSTATUS(pstat) == 0)) { -+ return 1; -+ } -+ else { -+ return 0; -+ } - return 0; //dummy. - } - -@@ -225,7 +255,7 @@ +--- konsole/src/TEPty.C Sun Feb 18 10:28:28 2001 ++++ konsole/src/TEPty.C.new Fri Feb 23 02:55:58 2001 +@@ -238,7 +238,7 @@ #ifdef HAVE_UTEMPTER removeLineFromUtmp(ttynam, fd); #elif defined(USE_LOGIN) diff --git a/x11/kde4-runtime/files/patch-kdeeject b/x11/kde4-runtime/files/patch-kdeeject index 38c12b5eafbf..8a5870ad25ff 100644 --- a/x11/kde4-runtime/files/patch-kdeeject +++ b/x11/kde4-runtime/files/patch-kdeeject @@ -1,9 +1,9 @@ ---- kdesktop/kdeeject.orig Fri Dec 1 15:25:26 2000 -+++ kdesktop/kdeeject Fri Dec 1 15:25:33 2000 -@@ -8,7 +8,8 @@ - # kmessage, to show a message box in case of error. - # - if [ $# = 1 -a "$1" != "--help" ]; then +--- kdesktop/kdeeject Wed Dec 13 13:25:02 2000 ++++ kdesktop/kdeeject.new Fri Feb 23 02:59:54 2001 +@@ -11,7 +11,8 @@ + # TODO: On bsd, it should be 'cdcontrol -f $1 eject' + # Checking for stuff in the PATH is ugly with sh though. + # I guess this is the reason for making this a kde app... - if eject $1; then + dev=`echo $1 | sed -E -e 's#/dev/##' -e 's/([0-9])./\1/'` + if cdcontrol -f $dev eject; then diff --git a/x11/kde4-runtime/files/patch-konsole_grantpty.c b/x11/kde4-runtime/files/patch-konsole_grantpty.c deleted file mode 100644 index 889d15bdb592..000000000000 --- a/x11/kde4-runtime/files/patch-konsole_grantpty.c +++ /dev/null @@ -1,79 +0,0 @@ ---- konsole/src/konsole_grantpty.c.orig Sat Jun 12 07:13:31 1999 -+++ konsole/src/konsole_grantpty.c Fri Dec 8 11:54:43 2000 -@@ -31,13 +31,15 @@ - #include <string.h> - #include <sys/stat.h> - #include <unistd.h> -+#include <dirent.h> -+#include <paths.h> - - #define PTY_FILENO 3 /* keep in sync with grantpty */ - #define TTY_GROUP "tty" - - int main (int argc, char *argv[]) - { -- char* pty; -+ char* pty = NULL; - struct stat st; - struct group* p; - gid_t gid; -@@ -81,6 +83,7 @@ - - /* get slave pty name from master pty file handle in PTY_FILENO *********/ - -+#if 0 - /* Check that PTY_FILENO is a valid master pseudo terminal. */ - pty = ttyname(PTY_FILENO); /* posix */ - if (pty == NULL) -@@ -89,6 +92,42 @@ - return 1; /* FAIL */ - } - close(PTY_FILENO); -+#else -+ /* The trouble with the ifdef'd-out portion above is that ttyname() -+ ** does not work correctly when not passed a valid tty, but a pseudotty -+ ** instead. All we're doing here is finding out what the name of -+ ** the associated pty is without having to pass it in on the command line. -+ ** Nothing complex. -+ */ -+ { -+ struct stat sb; -+ struct stat dsb; -+ struct dirent *dirp; -+ static char buf[sizeof(_PATH_DEV) + MAXNAMLEN] = _PATH_DEV; -+ DIR *dp; -+ -+ pty = NULL; -+ -+ if (fstat(PTY_FILENO, &sb)) -+ return 1; /* FAIL */ -+ if ((dp = opendir(_PATH_DEV)) == NULL) -+ return 1; /* FAIL */ -+ -+ while ((dirp = readdir(dp))) { -+ if (dirp->d_fileno != sb.st_ino) -+ continue; -+ bcopy(dirp->d_name, buf + sizeof(_PATH_DEV) - 1, dirp->d_namlen+1); -+ /*fprintf(stderr, "looking at %s\n", buf);*/ -+ if (stat(buf, &dsb) || sb.st_dev != dsb.st_dev || sb.st_ino != dsb.st_ino) -+ continue; -+ pty = buf; -+ } -+ closedir(dp); -+ if (pty == NULL) -+ return 1; /* FAIL */ -+ } -+ /*fprintf(stderr, "successful at finding %s\n", pty);*/ -+#endif - - /* matches /dev/pty?? */ - if (strlen(pty) < 8 || strncmp(pty,"/dev/pty",8)) -@@ -120,6 +159,8 @@ - fprintf(stderr,"%s: cannot chmod %s.\n",argv[0],tty); perror("Reason"); - return 1; /* FAIL */ - } -+ -+ /*fprintf(stderr, "made it here\n");*/ - - return 0; /* OK */ - } diff --git a/x11/kde4-runtime/pkg-plist b/x11/kde4-runtime/pkg-plist index 7a8ef62507e2..5424c20a9cca 100644 --- a/x11/kde4-runtime/pkg-plist +++ b/x11/kde4-runtime/pkg-plist @@ -2,6 +2,7 @@ bin/appletproxy bin/chooser bin/conttest bin/drkonqi +bin/extensionproxy bin/kaccess bin/kappfinder bin/kbanner.kss @@ -21,6 +22,7 @@ bin/kdesu bin/kdesud bin/kdm bin/kdmdesktop +bin/keditbookmarks bin/keditfiletype bin/kfmclient bin/kfmexec @@ -33,25 +35,22 @@ bin/klegacyimport bin/klines.kss bin/klipper bin/klorenz.kss -bin/kman2html bin/kmatrix.kss bin/kmenuedit -bin/kmorph3d.kss bin/konqueror bin/konsole bin/konsole_grantpty bin/kpager -bin/kpipes.kss bin/kpolygon.kss bin/kpyro.kss bin/krandom.kss bin/krdb +bin/kreadconfig bin/krock.kss bin/kscience.kss bin/kslidescreen.kss bin/kslideshow.kss bin/ksmserver -bin/kspace.kss bin/ksplash bin/kstart bin/kswarm.kss @@ -59,7 +58,9 @@ bin/ksysguard bin/ksysguardd bin/ktip bin/kvm.kss +bin/kwebdesktop bin/kwin +bin/kwmtheme bin/kwrite bin/kwrited bin/kxkb @@ -75,6 +76,10 @@ include/KonquerorIface.h include/ccont.h include/kbookmark.h include/kbookmarkbar.h +include/kbookmarkdrag.h +include/kbookmarkexporter.h +include/kbookmarkimporter.h +include/kbookmarkmanager.h include/kbookmarkmenu.h include/kfileivi.h include/knewmenu.h @@ -84,61 +89,189 @@ include/konq_dirlister.h include/konq_dirpart.h include/konq_drag.h include/konq_events.h +include/konq_faviconmgr.h include/konq_fileitem.h +include/konq_historycomm.h +include/konq_historymgr.h include/konq_iconviewwidget.h include/konq_imagepreviewjob.h +include/konq_mimetyperesolver.h include/konq_operations.h +include/konq_pixmapprovider.h include/konq_popupmenu.h include/konq_propsview.h include/konq_settings.h include/konq_undo.h +include/kwin/client.h +include/kwin/options.h +include/kwin/workspace.h +include/thumbcreator.h lib/appletproxy.la lib/appletproxy.so -lib/kaccess.la -lib/kaccess.so +lib/extensionproxy.la +lib/extensionproxy.so lib/kcminit.la lib/kcminit.so lib/kcmshell.la lib/kcmshell.so lib/kcontrol.la lib/kcontrol.so +lib/kde2/htmlthumbnail.la +lib/kde2/htmlthumbnail.so +lib/kde2/imagethumbnail.la +lib/kde2/imagethumbnail.so +lib/kde2/kaccess.la +lib/kde2/kaccess.so +lib/kde2/kio_filter.la +lib/kde2/kio_filter.so +lib/kde2/kio_finger.la +lib/kde2/kio_finger.so +lib/kde2/kio_floppy.la +lib/kde2/kio_floppy.so +lib/kde2/kio_gopher.la +lib/kde2/kio_gopher.so +lib/kde2/kio_help.la +lib/kde2/kio_help.so +lib/kde2/kio_imap4.la +lib/kde2/kio_imap4.so +lib/kde2/kio_info.la +lib/kde2/kio_info.so +lib/kde2/kio_ldap.la +lib/kde2/kio_ldap.so +lib/kde2/kio_man.la +lib/kde2/kio_man.so +lib/kde2/kio_nfs.la +lib/kde2/kio_nfs.so +lib/kde2/kio_nntp.la +lib/kde2/kio_nntp.so +lib/kde2/kio_pop3.la +lib/kde2/kio_pop3.so +lib/kde2/kio_smb.la +lib/kde2/kio_smb.so +lib/kde2/kio_smtp.la +lib/kde2/kio_smtp.so +lib/kde2/kio_tar.la +lib/kde2/kio_tar.so +lib/kde2/kio_thumbnail.la +lib/kde2/kio_thumbnail.so +lib/kde2/libkcm_access.la +lib/kde2/libkcm_access.so +lib/kde2/libkcm_arts.la +lib/kde2/libkcm_arts.so +lib/kde2/libkcm_background.la +lib/kde2/libkcm_background.so +lib/kde2/libkcm_bell.la +lib/kde2/libkcm_bell.so +lib/kde2/libkcm_clock.la +lib/kde2/libkcm_clock.so +lib/kde2/libkcm_colors.la +lib/kde2/libkcm_colors.so +lib/kde2/libkcm_crypto.la +lib/kde2/libkcm_crypto.so +lib/kde2/libkcm_email.la +lib/kde2/libkcm_email.so +lib/kde2/libkcm_energy.la +lib/kde2/libkcm_energy.so +lib/kde2/libkcm_filetypes.la +lib/kde2/libkcm_filetypes.so +lib/kde2/libkcm_fonts.la +lib/kde2/libkcm_fonts.so +lib/kde2/libkcm_icons.la +lib/kde2/libkcm_icons.so +lib/kde2/libkcm_info.la +lib/kde2/libkcm_info.so +lib/kde2/libkcm_input.la +lib/kde2/libkcm_input.so +lib/kde2/libkcm_kdm.la +lib/kde2/libkcm_kdm.so +lib/kde2/libkcm_keys.la +lib/kde2/libkcm_keys.so +lib/kde2/libkcm_khotkeys.la +lib/kde2/libkcm_khotkeys.so +lib/kde2/libkcm_kicker.la +lib/kde2/libkcm_kicker.so +lib/kde2/libkcm_kio.la +lib/kde2/libkcm_kio.so +lib/kde2/libkcm_knotify.la +lib/kde2/libkcm_knotify.so +lib/kde2/libkcm_konq.la +lib/kde2/libkcm_konq.so +lib/kde2/libkcm_konqhtml.la +lib/kde2/libkcm_konqhtml.so +lib/kde2/libkcm_kurifilt.la +lib/kde2/libkcm_kurifilt.so +lib/kde2/libkcm_kwinoptions.la +lib/kde2/libkcm_kwinoptions.so +lib/kde2/libkcm_locale.la +lib/kde2/libkcm_locale.so +lib/kde2/libkcm_midi.la +lib/kde2/libkcm_midi.so +lib/kde2/libkcm_passwords.la +lib/kde2/libkcm_passwords.so +lib/kde2/libkcm_samba.la +lib/kde2/libkcm_samba.so +lib/kde2/libkcm_screensaver.la +lib/kde2/libkcm_screensaver.so +lib/kde2/libkcm_smserver.la +lib/kde2/libkcm_smserver.so +lib/kde2/libkcm_style.la +lib/kde2/libkcm_style.so +lib/kde2/libkcm_taskbar.la +lib/kde2/libkcm_taskbar.so +lib/kde2/libkcm_themes.la +lib/kde2/libkcm_themes.so +lib/kde2/libkfindpart.la +lib/kde2/libkfindpart.so +lib/kde2/libkonqiconview.la +lib/kde2/libkonqiconview.so +lib/kde2/libkonqlistview.la +lib/kde2/libkonqlistview.so +lib/kde2/libkonqtree.la +lib/kde2/libkonqtree.so +lib/kde2/libkshellcmdplugin.la +lib/kde2/libkshellcmdplugin.so +lib/kde2/libkshorturifilter.la +lib/kde2/libkshorturifilter.so +lib/kde2/libkuriikwsfilter.la +lib/kde2/libkuriikwsfilter.so +lib/kde2/libkurisearchfilter.la +lib/kde2/libkurisearchfilter.so +lib/kde2/libkwin2k.la +lib/kde2/libkwin2k.so +lib/kde2/libkwinb2.la +lib/kde2/libkwinb2.so +lib/kde2/libkwinkde1.la +lib/kde2/libkwinkde1.so +lib/kde2/libkwinkstep.la +lib/kde2/libkwinkstep.so +lib/kde2/libkwinkwmtheme.la +lib/kde2/libkwinkwmtheme.so +lib/kde2/libkwinlaptop.la +lib/kde2/libkwinlaptop.so +lib/kde2/libkwinmodernsys.la +lib/kde2/libkwinmodernsys.so +lib/kde2/libkwinriscos.la +lib/kde2/libkwinriscos.so +lib/kde2/libkwinsystem.la +lib/kde2/libkwinsystem.so +lib/kde2/textthumbnail.la +lib/kde2/textthumbnail.so lib/kdesktop.la lib/kdesktop.so +lib/keditbookmarks.la +lib/keditbookmarks.so lib/kfmclient.la lib/kfmclient.so lib/khotkeys.la lib/khotkeys.so lib/kicker.la lib/kicker.so -lib/kio_gopher.la -lib/kio_gopher.so -lib/kio_gzip.la -lib/kio_gzip.so -lib/kio_help.la -lib/kio_help.so -lib/kio_info.la -lib/kio_info.so -lib/kio_man.la -lib/kio_man.so -lib/kio_nfs.la -lib/kio_nfs.so -lib/kio_nntp.la -lib/kio_nntp.so -lib/kio_pop3.la -lib/kio_pop3.so -lib/kio_smb.la -lib/kio_smb.so -lib/kio_smtp.la -lib/kio_smtp.so -lib/kio_tar.la -lib/kio_tar.so lib/klegacyimport.la lib/klegacyimport.so lib/klipper.la lib/klipper.so lib/kmenuedit.la lib/kmenuedit.so -lib/kmenuedit.so.0 lib/konqueror.la lib/konqueror.so lib/konsole.la @@ -153,86 +286,29 @@ lib/kxkb.la lib/kxkb.so lib/kxmlrpcd.la lib/kxmlrpcd.so +lib/libKdmGreet.la +lib/libKdmGreet.so lib/libccont.a +lib/libchildpanelextension.la +lib/libchildpanelextension.so +lib/libchildpanelextension.so.1 lib/libclockapplet.la lib/libclockapplet.so lib/libclockapplet.so.1 +lib/libdockbarextension.la +lib/libdockbarextension.so +lib/libdockbarextension.so.1 lib/libhtmlsearch.la lib/libhtmlsearch.so -lib/libkcm_access.la -lib/libkcm_access.so -lib/libkcm_arts.la -lib/libkcm_arts.so -lib/libkcm_background.la -lib/libkcm_background.so -lib/libkcm_bell.la -lib/libkcm_bell.so -lib/libkcm_clock.la -lib/libkcm_clock.so -lib/libkcm_colors.la -lib/libkcm_colors.so -lib/libkcm_crypto.la -lib/libkcm_crypto.so -lib/libkcm_email.la -lib/libkcm_email.so -lib/libkcm_energy.la -lib/libkcm_energy.so -lib/libkcm_filetypes.la -lib/libkcm_filetypes.so -lib/libkcm_fonts.la -lib/libkcm_fonts.so +lib/libkasbarextension.la +lib/libkasbarextension.so +lib/libkasbarextension.so.1 lib/libkcm_htmlsearch.la lib/libkcm_htmlsearch.so -lib/libkcm_icons.la -lib/libkcm_icons.so -lib/libkcm_iconthemes.la -lib/libkcm_iconthemes.so -lib/libkcm_info.la -lib/libkcm_info.so -lib/libkcm_input.la -lib/libkcm_input.so -lib/libkcm_kdm.la -lib/libkcm_kdm.so -lib/libkcm_keys.la -lib/libkcm_keys.so -lib/libkcm_khotkeys.la -lib/libkcm_khotkeys.so -lib/libkcm_kicker.la -lib/libkcm_kicker.so -lib/libkcm_kio.la -lib/libkcm_kio.so -lib/libkcm_knotify.la -lib/libkcm_knotify.so -lib/libkcm_konq.la -lib/libkcm_konq.so -lib/libkcm_konqhtml.la -lib/libkcm_konqhtml.so -lib/libkcm_kurifilt.la -lib/libkcm_kurifilt.so -lib/libkcm_kwindesktop.la -lib/libkcm_kwindesktop.so -lib/libkcm_kwinmouse.la -lib/libkcm_kwinmouse.so -lib/libkcm_kwinoptions.la -lib/libkcm_kwinoptions.so +lib/libkcm_ioslaveinfo.la +lib/libkcm_ioslaveinfo.so lib/libkcm_layout.la lib/libkcm_layout.so -lib/libkcm_locale.la -lib/libkcm_locale.so -lib/libkcm_midi.la -lib/libkcm_midi.so -lib/libkcm_passwords.la -lib/libkcm_passwords.so -lib/libkcm_samba.la -lib/libkcm_samba.so -lib/libkcm_screensaver.la -lib/libkcm_screensaver.so -lib/libkcm_style.la -lib/libkcm_style.so -lib/libkcm_taskbar.la -lib/libkcm_taskbar.so -lib/libkcm_virtualdesktops.la -lib/libkcm_virtualdesktops.so lib/libkcm_xmlrpcd.la lib/libkcm_xmlrpcd.so lib/libkhelpcenter.la @@ -244,71 +320,60 @@ lib/libkminipagerapplet.so.1 lib/libkonq.la lib/libkonq.so lib/libkonq.so.4 -lib/libkonqdirtree.la -lib/libkonqdirtree.so -lib/libkonqiconview.la -lib/libkonqiconview.so -lib/libkonqlistview.la -lib/libkonqlistview.so +lib/libkonqaboutpage.la +lib/libkonqaboutpage.so lib/libkonsolepart.la lib/libkonsolepart.so lib/libkrunapplet.la lib/libkrunapplet.so lib/libkrunapplet.so.1 -lib/libkshorturifilter.la -lib/libkshorturifilter.so -lib/libkshorturifilter.so.1 +lib/libksysguardapplet.la +lib/libksysguardapplet.so +lib/libksysguardapplet.so.1 lib/libksystemtrayapplet.la lib/libksystemtrayapplet.so lib/libksystemtrayapplet.so.1 lib/libktaskbarapplet.la lib/libktaskbarapplet.so lib/libktaskbarapplet.so.1 -lib/libkuriikwsfilter.la -lib/libkuriikwsfilter.so -lib/libkuriikwsfilter.so.1 -lib/libkurisearchfilter.la -lib/libkurisearchfilter.so -lib/libkurisearchfilter.so.1 -lib/libkwinb2.la -lib/libkwinb2.so lib/libkwindefault.la lib/libkwindefault.so lib/libkwindefault.so.0 -lib/libkwinkde1.la -lib/libkwinkde1.so -lib/libkwinkstep.la -lib/libkwinkstep.so -lib/libkwinlaptop.la -lib/libkwinlaptop.so -lib/libkwinmodernsys.la -lib/libkwinmodernsys.so -lib/libkwinriscos.la -lib/libkwinriscos.so -lib/libkwinsystem.la -lib/libkwinsystem.so lib/libkwritepart.la lib/libkwritepart.so +lib/libnaughtyapplet.la +lib/libnaughtyapplet.so +lib/libnaughtyapplet.so.1 lib/libquicklauncher.la lib/libquicklauncher.so lib/libquicklauncher.so.1 -lib/libsmb++.la -lib/libsmb++.so -lib/libsmb++.so.0 +lib/libtaskbarextension.la +lib/libtaskbarextension.so +lib/libtaskbarextension.so.1 +lib/libtaskmanager.la +lib/libtaskmanager.so +lib/libtaskmanager.so.1 share/applnk/.directory share/applnk/.hidden/konqfilemgr.desktop share/applnk/Applications/.directory -share/applnk/Development/designer.desktop +share/applnk/Development/.directory share/applnk/Editors/.directory +share/applnk/Editors/gvim.desktop share/applnk/Editors/kwrite.desktop +share/applnk/Editors/xedit.desktop share/applnk/Games/.directory share/applnk/Graphics/.directory +share/applnk/Graphics/gimp.desktop share/applnk/Help.desktop share/applnk/Home.desktop share/applnk/Internet/.directory +share/applnk/Internet/keditbookmarks.desktop share/applnk/Internet/konqbrowser.desktop +share/applnk/Internet/netscape.desktop share/applnk/KControl.desktop share/applnk/Multimedia/.directory +share/applnk/Multimedia/aviplay.desktop +share/applnk/Multimedia/xawtv.desktop share/applnk/Office/.directory share/applnk/Settings/.directory share/applnk/Settings/FileBrowsing/.directory @@ -321,6 +386,7 @@ share/applnk/Settings/Information/devices.desktop share/applnk/Settings/Information/dma.desktop share/applnk/Settings/Information/interrupts.desktop share/applnk/Settings/Information/ioports.desktop +share/applnk/Settings/Information/ioslaveinfo.desktop share/applnk/Settings/Information/memory.desktop share/applnk/Settings/Information/partitions.desktop share/applnk/Settings/Information/pci.desktop @@ -330,28 +396,29 @@ share/applnk/Settings/Information/smbstatus.desktop share/applnk/Settings/Information/sound.desktop share/applnk/Settings/Information/xserver.desktop share/applnk/Settings/LookNFeel/.directory -share/applnk/Settings/LookNFeel/Desktop/.directory share/applnk/Settings/LookNFeel/Desktop/background.desktop share/applnk/Settings/LookNFeel/Desktop/borders.desktop share/applnk/Settings/LookNFeel/Desktop/desktop.desktop share/applnk/Settings/LookNFeel/Desktop/virtualdesktops.desktop -share/applnk/Settings/LookNFeel/Panel/.directory -share/applnk/Settings/LookNFeel/Themes/.directory share/applnk/Settings/LookNFeel/Themes/iconthemes.desktop share/applnk/Settings/LookNFeel/Themes/style.desktop -share/applnk/Settings/LookNFeel/Windows/.directory share/applnk/Settings/LookNFeel/Windows/actions.desktop -share/applnk/Settings/LookNFeel/Windows/mouse.desktop +share/applnk/Settings/LookNFeel/Windows/kwinmouse.desktop +share/applnk/Settings/LookNFeel/background.desktop share/applnk/Settings/LookNFeel/colors.desktop +share/applnk/Settings/LookNFeel/desktop.desktop share/applnk/Settings/LookNFeel/fonts.desktop share/applnk/Settings/LookNFeel/icons.desktop share/applnk/Settings/LookNFeel/kcmnotify.desktop share/applnk/Settings/LookNFeel/kcmtaskbar.desktop share/applnk/Settings/LookNFeel/keys.desktop +share/applnk/Settings/LookNFeel/kthememgr.desktop +share/applnk/Settings/LookNFeel/kwinoptions.desktop share/applnk/Settings/LookNFeel/panel.desktop share/applnk/Settings/LookNFeel/screensaver.desktop +share/applnk/Settings/LookNFeel/style.desktop +share/applnk/Settings/LookNFeel/virtualdesktops.desktop share/applnk/Settings/Network/.directory -share/applnk/Settings/Network/smb.desktop share/applnk/Settings/Peripherals/.directory share/applnk/Settings/Peripherals/keyboard.desktop share/applnk/Settings/Peripherals/mouse.desktop @@ -370,28 +437,24 @@ share/applnk/Settings/Sound/bell.desktop share/applnk/Settings/Sound/midi.desktop share/applnk/Settings/System/.directory share/applnk/Settings/System/clock.desktop +share/applnk/Settings/System/kcmsmserver.desktop share/applnk/Settings/System/kdm.desktop share/applnk/Settings/WebBrowsing/.directory share/applnk/Settings/WebBrowsing/cookies.desktop share/applnk/Settings/WebBrowsing/ebrowsing.desktop share/applnk/Settings/WebBrowsing/konqhtml.desktop share/applnk/Settings/WebBrowsing/proxy.desktop +share/applnk/Settings/WebBrowsing/smb.desktop share/applnk/Settings/WebBrowsing/useragent.desktop share/applnk/System/.directory -share/applnk/System/Arrange.desktop share/applnk/System/ScreenSavers/.directory -share/applnk/System/ScreenSavers/KAttration.desktop share/applnk/System/ScreenSavers/KBanner.desktop share/applnk/System/ScreenSavers/KBlankscreen.desktop share/applnk/System/ScreenSavers/KBlob.desktop share/applnk/System/ScreenSavers/KBouboule.desktop share/applnk/System/ScreenSavers/KBsod.desktop -share/applnk/System/ScreenSavers/KFlame.desktop -share/applnk/System/ScreenSavers/KForest.desktop share/applnk/System/ScreenSavers/KHop.desktop -share/applnk/System/ScreenSavers/KLaser.desktop share/applnk/System/ScreenSavers/KLines.desktop -share/applnk/System/ScreenSavers/KLissie.desktop share/applnk/System/ScreenSavers/KLorenz.desktop share/applnk/System/ScreenSavers/KMatrix.desktop share/applnk/System/ScreenSavers/KMorph3D.desktop @@ -403,12 +466,14 @@ share/applnk/System/ScreenSavers/KRock.desktop share/applnk/System/ScreenSavers/KScience.desktop share/applnk/System/ScreenSavers/KSlidescreen.desktop share/applnk/System/ScreenSavers/KSlideshow.desktop -share/applnk/System/ScreenSavers/KSlip.desktop share/applnk/System/ScreenSavers/KSpace.desktop share/applnk/System/ScreenSavers/KSwarm.desktop share/applnk/System/ScreenSavers/KVm.desktop +share/applnk/System/ScreenSavers/Worm.desktop share/applnk/System/kappfinder.desktop share/applnk/System/kfmclient.desktop +share/applnk/System/kfmclient_dir.desktop +share/applnk/System/kfmclient_html.desktop share/applnk/System/klegacyimport.desktop share/applnk/System/kmenuedit.desktop share/applnk/System/konquerorsu.desktop @@ -417,15 +482,19 @@ share/applnk/System/konsolesu.desktop share/applnk/System/ksysguard.desktop share/applnk/Toys/.directory share/applnk/Toys/ktip.desktop +share/applnk/Toys/xeyes.desktop share/applnk/Utilities/.directory +share/applnk/Utilities/XUtilities/xcalc.desktop +share/applnk/Utilities/XUtilities/xclipboard.desktop +share/applnk/Utilities/XUtilities/xclock.desktop +share/applnk/Utilities/XUtilities/xconsole.desktop +share/applnk/Utilities/XUtilities/xload.desktop +share/applnk/Utilities/XUtilities/xmag.desktop +share/applnk/Utilities/XUtilities/xterm.desktop share/applnk/Utilities/klipper.desktop share/applnk/Utilities/kpager.desktop -share/applnk/Utilities/passwd.desktop -share/applnk/Utilities/xclipboard.desktop -share/applnk/Utilities/xclock.desktop -share/applnk/Utilities/xconsole.desktop -share/applnk/Utilities/xmag.desktop -share/applnk/Utilities/xterm.desktop +share/applnk/WordProcessing/gv.desktop +share/applnk/WordProcessing/xpdf.desktop share/apps/clockapplet/pics/lcd.png share/apps/drkonqi/debuggers/gdbrc share/apps/drkonqi/pics/konqi.png @@ -443,6 +512,13 @@ share/apps/kappfinder/apps/Editors/lemacs.desktop share/apps/kappfinder/apps/Editors/nedit.desktop share/apps/kappfinder/apps/Editors/xedit.desktop share/apps/kappfinder/apps/Editors/xemacs.desktop +share/apps/kappfinder/apps/Games/.directory +share/apps/kappfinder/apps/Games/Clanbomber.desktop +share/apps/kappfinder/apps/Games/Qmamecat.desktop +share/apps/kappfinder/apps/Games/defendguin.desktop +share/apps/kappfinder/apps/Games/freeciv.desktop +share/apps/kappfinder/apps/Games/penguin-command.desktop +share/apps/kappfinder/apps/Games/xshipwars.desktop share/apps/kappfinder/apps/Graphics/.directory share/apps/kappfinder/apps/Graphics/gimp.desktop share/apps/kappfinder/apps/Graphics/xfig.desktop @@ -451,6 +527,8 @@ share/apps/kappfinder/apps/Graphics/xv.desktop share/apps/kappfinder/apps/Internet/.directory share/apps/kappfinder/apps/Internet/arena.desktop share/apps/kappfinder/apps/Internet/coolmail.desktop +share/apps/kappfinder/apps/Internet/ethereal.desktop +share/apps/kappfinder/apps/Internet/ncftp.desktop share/apps/kappfinder/apps/Internet/netscape.desktop share/apps/kappfinder/apps/Internet/pine.desktop share/apps/kappfinder/apps/Internet/xbiff.desktop @@ -458,7 +536,11 @@ share/apps/kappfinder/apps/Internet/xchat.desktop share/apps/kappfinder/apps/Internet/xfmail.desktop share/apps/kappfinder/apps/Internet/xftp.desktop share/apps/kappfinder/apps/Multimedia/.directory +share/apps/kappfinder/apps/Multimedia/alevt.desktop +share/apps/kappfinder/apps/Multimedia/aviplay.desktop +share/apps/kappfinder/apps/Multimedia/gtv.desktop share/apps/kappfinder/apps/Multimedia/realplayer.desktop +share/apps/kappfinder/apps/Multimedia/xawtv.desktop share/apps/kappfinder/apps/Multimedia/xmms.desktop share/apps/kappfinder/apps/Office/.directory share/apps/kappfinder/apps/Office/Applix.desktop @@ -531,15 +613,14 @@ share/apps/kappfinder/apps/Toys/.directory share/apps/kappfinder/apps/Toys/xeyes.desktop share/apps/kappfinder/apps/Toys/xpinguin.desktop share/apps/kappfinder/apps/Utilities/.directory -share/apps/kappfinder/apps/Utilities/jar.desktop -share/apps/kappfinder/apps/Utilities/passwd.desktop -share/apps/kappfinder/apps/Utilities/xcalc.desktop -share/apps/kappfinder/apps/Utilities/xclipboard.desktop -share/apps/kappfinder/apps/Utilities/xclock.desktop -share/apps/kappfinder/apps/Utilities/xconsole.desktop -share/apps/kappfinder/apps/Utilities/xload.desktop -share/apps/kappfinder/apps/Utilities/xmag.desktop -share/apps/kappfinder/apps/Utilities/xterm.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/.directory +share/apps/kappfinder/apps/Utilities/XUtilities/xcalc.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclipboard.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclock.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xconsole.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xload.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xmag.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xterm.desktop share/apps/kappfinder/apps/WordProcessing/.directory share/apps/kappfinder/apps/WordProcessing/WordPerfect.desktop share/apps/kappfinder/apps/WordProcessing/WordPerfect2000.desktop @@ -547,10 +628,12 @@ share/apps/kappfinder/apps/WordProcessing/acroread.desktop share/apps/kappfinder/apps/WordProcessing/ghostview.desktop share/apps/kappfinder/apps/WordProcessing/gv.desktop share/apps/kappfinder/apps/WordProcessing/lyx.desktop +share/apps/kappfinder/apps/WordProcessing/pybliographic.desktop share/apps/kappfinder/apps/WordProcessing/xdvi.desktop share/apps/kappfinder/apps/WordProcessing/xpdf.desktop share/apps/kbookmark/directory_bookmarkbar.desktop share/apps/kcminput/cursor_large.pcf.gz +share/apps/kcmkeys/standard/Unix.kksrc share/apps/kcmlocale/pics/background.png share/apps/kcontrol/kcontrolui.rc share/apps/kcontrol/pics/energybig.png @@ -560,8 +643,10 @@ share/apps/kcontrol/pics/mini-world.png share/apps/kcontrol/pics/monitor.png share/apps/kcontrol/pics/onlyone.png share/apps/kcontrol/pics/overlapping.png +share/apps/kcontrol/pics/part1.png +share/apps/kcontrol/pics/part2.png +share/apps/kcontrol/pics/part3.png share/apps/kcontrol/pics/play.png -share/apps/kcontrol/pics/wizard.png share/apps/kdcop/kdcopui.rc share/apps/kdesktop/DesktopLinks/Home.desktop share/apps/kdesktop/directory.autostart @@ -586,8 +671,10 @@ share/apps/kdesktop/pics/kde2.xbm share/apps/kdesktop/pics/ksslogo.png share/apps/kdesktop/pics/splash.png share/apps/kdesktop/pics/splash2.png +share/apps/kdesktop/programs/kwebdesktop.desktop share/apps/kdesktop/programs/xearth.desktop share/apps/kdesktop/programs/xglobe.desktop +share/apps/kdesktop/programs/xplanet.desktop share/apps/kdewizard/pics/wizard_small.png share/apps/kdewizard/tips share/apps/kdisplay/app-defaults/AAAAAAGeneral.ad @@ -605,6 +692,8 @@ share/apps/kdisplay/app-defaults/XCalc.ad share/apps/kdisplay/app-defaults/XOsview.ad share/apps/kdisplay/app-defaults/XTerm.ad share/apps/kdisplay/app-defaults/XV.ad +share/apps/kdisplay/app-defaults/Xawtv.ad +share/apps/kdisplay/app-defaults/Xpdf.ad share/apps/kdisplay/color-schemes/AtlasGreen.kcsrc share/apps/kdisplay/color-schemes/BeOS.kcsrc share/apps/kdisplay/color-schemes/BlueSlate.kcsrc @@ -627,15 +716,21 @@ share/apps/kdm/pics/users/default.png share/apps/kdm/pics/users/default2.png share/apps/kdm/pics/users/root.png share/apps/kdm/pics/users/root2.png +share/apps/keditbookmarks/keditbookmarksui.rc +share/apps/kfind/icons/locolor/22x22/actions/archive.png +share/apps/kfind/icons/locolor/22x22/actions/delete.png +share/apps/kfind/icons/locolor/22x22/actions/idea.png +share/apps/kfind/icons/locolor/22x22/actions/info.png +share/apps/kfind/icons/locolor/22x22/actions/openfile.png +share/apps/kfind/icons/locolor/22x22/actions/save.png +share/apps/kfind/icons/locolor/22x22/actions/search.png share/apps/khelpcenter/en/bad_words share/apps/khelpcenter/en/long.html share/apps/khelpcenter/en/nomatch.html share/apps/khelpcenter/en/short.html share/apps/khelpcenter/en/syntax.html share/apps/khelpcenter/en/wrapper.html -share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook.png share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook_open.png -share/apps/khelpcenter/icons/locolor/16x16/apps/helpdoc.png share/apps/khelpcenter/pics/checked.xpm share/apps/khelpcenter/pics/star.png share/apps/khelpcenter/pics/star_blank.png @@ -646,9 +741,16 @@ share/apps/khelpcenter/plugins/Tutorials/visualdict.desktop share/apps/kicker/applets/clockapplet.desktop share/apps/kicker/applets/kminipagerapplet.desktop share/apps/kicker/applets/krunapplet.desktop +share/apps/kicker/applets/ksysguardapplet.desktop share/apps/kicker/applets/ksystemtrayapplet.desktop share/apps/kicker/applets/ktaskbarapplet.desktop +share/apps/kicker/applets/naughtyapplet.desktop share/apps/kicker/applets/quicklauncher.desktop +share/apps/kicker/extensions/childpanelextension.desktop +share/apps/kicker/extensions/dockbarextension.desktop +share/apps/kicker/extensions/kasbarextension.desktop +share/apps/kicker/extensions/taskbarextension.desktop +share/apps/kicker/icons/hicolor/16x16/actions/modified.png share/apps/kicker/icons/locolor/16x16/actions/modified.png share/apps/kicker/pics/disk1.png share/apps/kicker/pics/disk2.png @@ -761,6 +863,8 @@ share/apps/kicker/tiles/solid_tgri_tiny_up.png share/apps/kicker/wallpapers/deck_plate.png share/apps/kicker/wallpapers/green_line.png share/apps/kicker/wallpapers/rail.png +share/apps/kio_finger/kio_finger.css +share/apps/kio_finger/kio_finger.pl share/apps/kio_info/kde-info2html share/apps/kio_info/kde-info2html.conf share/apps/kmenuedit/icons/hicolor/22x22/actions/menu_new.png @@ -769,17 +873,46 @@ share/apps/kmenuedit/icons/locolor/16x16/actions/menu_new.png share/apps/kmenuedit/kmenueditui.rc share/apps/konqiconview/konq_iconview.rc share/apps/konqiconview/konq_multicolumnview.rc +share/apps/konqiconview/kpartplugins/kshellcmdplugin.rc share/apps/konqlistview/konq_detailedlistview.rc share/apps/konqlistview/konq_textview.rc share/apps/konqlistview/konq_treeview.rc +share/apps/konqlistview/kpartplugins/kshellcmdplugin.rc +share/apps/konqueror/about/back.png +share/apps/konqueror/about/background.png +share/apps/konqueror/about/bgtable.png +share/apps/konqueror/about/gohome.png +share/apps/konqueror/about/history.png +share/apps/konqueror/about/intro.html +share/apps/konqueror/about/kdelogo2.png +share/apps/konqueror/about/konq.css +share/apps/konqueror/about/konqueror.png +share/apps/konqueror/about/lines.png +share/apps/konqueror/about/lines2.png +share/apps/konqueror/about/locationbar_erase.png +share/apps/konqueror/about/more.png +share/apps/konqueror/about/openterm.png +share/apps/konqueror/about/pointers.gif +share/apps/konqueror/about/shadow1.png +share/apps/konqueror/about/specs.html +share/apps/konqueror/about/tips.html +share/apps/konqueror/about/view_left_right.png +share/apps/konqueror/about/viewmag.png +share/apps/konqueror/about/window_fullscreen.png +share/apps/konqueror/dirtree/bookmarks.desktop +share/apps/konqueror/dirtree/history.desktop share/apps/konqueror/dirtree/home.desktop share/apps/konqueror/dirtree/remote/.directory share/apps/konqueror/dirtree/remote/ftp/.directory share/apps/konqueror/dirtree/remote/ftp/kde_ftp.desktop share/apps/konqueror/dirtree/remote/web/.directory share/apps/konqueror/dirtree/remote/web/kde_web.desktop -share/apps/konqueror/dirtree/remote/windows.desktop share/apps/konqueror/dirtree/root.desktop +share/apps/konqueror/icons/hicolor/16x16/actions/remove_view.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_bottom.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_left_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_top_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/remove_view.png share/apps/konqueror/icons/hicolor/22x22/actions/view_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/view_left_right.png @@ -796,7 +929,6 @@ share/apps/konqueror/icons/locolor/16x16/actions/kde3.png share/apps/konqueror/icons/locolor/16x16/actions/kde4.png share/apps/konqueror/icons/locolor/16x16/actions/kde5.png share/apps/konqueror/icons/locolor/16x16/actions/kde6.png -share/apps/konqueror/icons/locolor/16x16/actions/locationbar_erase.png share/apps/konqueror/icons/locolor/16x16/actions/remove_view.png share/apps/konqueror/icons/locolor/16x16/actions/view_bottom.png share/apps/konqueror/icons/locolor/16x16/actions/view_left_right.png @@ -808,13 +940,17 @@ share/apps/konqueror/pics/indicator_connect.png share/apps/konqueror/pics/indicator_empty.png share/apps/konqueror/pics/indicator_noconnect.png share/apps/konqueror/pics/indicator_viewactive.png +share/apps/konqueror/pics/thumbnailfont_7x4.png share/apps/konqueror/profiles/filemanagement +share/apps/konqueror/profiles/filepreview +share/apps/konqueror/profiles/midnightcommander share/apps/konqueror/profiles/webbrowsing share/apps/konqueror/tiles/bluemorning.png share/apps/konqueror/tiles/canvas.png share/apps/konqueror/tiles/checker.png share/apps/konqueror/tiles/cubic.png share/apps/konqueror/tiles/kde4ever.png +share/apps/konqueror/tiles/kenwimer.png share/apps/konqueror/tiles/noise.png share/apps/konqueror/tiles/paper_flieder.png share/apps/konqueror/tiles/punika_attack.png @@ -850,12 +986,18 @@ share/apps/konsole/syscolor.schema share/apps/konsole/vim.schema share/apps/konsole/vt100.keytab share/apps/konsole/vt420pc.keytab +share/apps/konsole/x11r5.keytab share/apps/kscreensaver/kscience-small.gif share/apps/kscreensaver/kscience.gif +share/apps/ksplash/pics/locolor/splash_active_bar.png +share/apps/ksplash/pics/locolor/splash_bottom.png +share/apps/ksplash/pics/locolor/splash_inactive_bar.png +share/apps/ksplash/pics/locolor/splash_top.png share/apps/ksplash/pics/splash_active_bar.png share/apps/ksplash/pics/splash_bottom.png share/apps/ksplash/pics/splash_inactive_bar.png share/apps/ksplash/pics/splash_top.png +share/apps/ksysguard/KSysGuardApplet.xml share/apps/ksysguard/ProcessTable.sgrd share/apps/ksysguard/SystemLoad.sgrd share/apps/ksysguard/icons/locolor/16x16/apps/X.png @@ -906,6 +1048,13 @@ share/apps/ksysguard/icons/locolor/16x16/apps/xntpd.png share/apps/ksysguard/icons/locolor/16x16/apps/xterm.png share/apps/ksysguard/icons/locolor/16x16/apps/ypbind.png share/apps/ksysguard/ksysguardui.rc +share/apps/kthememgr/Themes/Default.ktheme +share/apps/kthememgr/Themes/Eclipse.ktheme +share/apps/kthememgr/Themes/MGBreizh.ktheme +share/apps/kthememgr/Themes/Nostalgy.ktheme +share/apps/kthememgr/Themes/Template.themerc +share/apps/kthememgr/Themes/Wood.ktheme +share/apps/kthememgr/theme.mappings share/apps/kwin/b2.desktop share/apps/kwin/eventsrc share/apps/kwin/kde.desktop @@ -928,12 +1077,19 @@ share/apps/kwin/pics/pinup.png share/apps/kwin/pics/unknown.png share/apps/kwin/riscos.desktop share/apps/kwin/system.desktop +share/apps/kwin/win2k.desktop share/apps/kwrite/kwrite_browser.rc share/apps/kwrite/kwrite_shell.rc share/apps/kwrite/kwriteui.rc -share/apps/quickbrowser/Home.desktop -share/apps/quickbrowser/KDE.desktop -share/apps/quickbrowser/Root.desktop +share/apps/kwrite/syntax.xml +share/apps/naughtyapplet/pics/naughty-happy.png +share/apps/naughtyapplet/pics/naughty-sad.png +share/autostart/kdesktop.desktop +share/autostart/khotkeys.desktop +share/autostart/klipper.desktop +share/autostart/ktip.desktop +share/autostart/kwrited.desktop +share/autostart/panel.desktop share/config/antrc share/config/attractionrc share/config/bouboulerc @@ -955,6 +1111,8 @@ share/config/gravrc share/config/halorc share/config/imsmaprc share/config/interferencerc +share/config/kdesktop_custom_menu1 +share/config/kdesktop_custom_menu2 share/config/kdmrc share/config/klipperrc share/config/konsolerc @@ -991,12 +1149,9 @@ share/doc/HTML/en/kcontrol/email.html share/doc/HTML/en/kcontrol/energy.html share/doc/HTML/en/kcontrol/file-assoc.html share/doc/HTML/en/kcontrol/file-manager.html -share/doc/HTML/en/kcontrol/kfileman1.png -share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/fonts.html share/doc/HTML/en/kcontrol/help-index.html share/doc/HTML/en/kcontrol/icons.html -share/doc/HTML/en/kcontrol/iconstyle.html share/doc/HTML/en/kcontrol/index.docbook share/doc/HTML/en/kcontrol/index.html share/doc/HTML/en/kcontrol/interrupts.html @@ -1034,7 +1189,6 @@ share/doc/HTML/en/kcontrol/kcmkbd.docbook share/doc/HTML/en/kcontrol/kcmkblayout.docbook share/doc/HTML/en/kcontrol/kcmkbrowse.docbook share/doc/HTML/en/kcontrol/kcmkeybind.docbook -share/doc/HTML/en/kcontrol/kcmkeys.docbook share/doc/HTML/en/kcontrol/kcmlocate.docbook share/doc/HTML/en/kcontrol/kcmloginmanage.docbook share/doc/HTML/en/kcontrol/kcmlowbatcrit.docbook @@ -1044,6 +1198,7 @@ share/doc/HTML/en/kcontrol/kcmmidi.docbook share/doc/HTML/en/kcontrol/kcmmixer.docbook share/doc/HTML/en/kcontrol/kcmmouse.docbook share/doc/HTML/en/kcontrol/kcmmousebeh.docbook +share/doc/HTML/en/kcontrol/kcmnetscapeplugins.docbook share/doc/HTML/en/kcontrol/kcmnumbername.docbook share/doc/HTML/en/kcontrol/kcmpanel.docbook share/doc/HTML/en/kcontrol/kcmpartitioninfo.docbook @@ -1055,6 +1210,7 @@ share/doc/HTML/en/kcontrol/kcmprocinfo.docbook share/doc/HTML/en/kcontrol/kcmproxie.docbook share/doc/HTML/en/kcontrol/kcmscnsave.docbook share/doc/HTML/en/kcontrol/kcmscsiinfo.docbook +share/doc/HTML/en/kcontrol/kcmsessionman.docbook share/doc/HTML/en/kcontrol/kcmsmbstat.docbook share/doc/HTML/en/kcontrol/kcmsndinfo.docbook share/doc/HTML/en/kcontrol/kcmsndsrv.docbook @@ -1066,6 +1222,8 @@ share/doc/HTML/en/kcontrol/kcmuseragent.docbook share/doc/HTML/en/kcontrol/kcmwinshare.docbook share/doc/HTML/en/kcontrol/kcmxservinfo.docbook share/doc/HTML/en/kcontrol/key-bindings.html +share/doc/HTML/en/kcontrol/kfileman1.png +share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/konq-browsing.html share/doc/HTML/en/kcontrol/laptop.html share/doc/HTML/en/kcontrol/locale.html @@ -1079,7 +1237,7 @@ share/doc/HTML/en/kcontrol/module.html share/doc/HTML/en/kcontrol/modules.html share/doc/HTML/en/kcontrol/mouse-behav.html share/doc/HTML/en/kcontrol/mouse.html -share/doc/HTML/en/kcontrol/numbername.html +share/doc/HTML/en/kcontrol/nsplugins.html share/doc/HTML/en/kcontrol/panel.html share/doc/HTML/en/kcontrol/partitions.html share/doc/HTML/en/kcontrol/passwords.html @@ -1092,11 +1250,11 @@ share/doc/HTML/en/kcontrol/sambastatus.html share/doc/HTML/en/kcontrol/screensaver.html share/doc/HTML/en/kcontrol/screenshot.png share/doc/HTML/en/kcontrol/scsi.html +share/doc/HTML/en/kcontrol/sessions.html share/doc/HTML/en/kcontrol/sndserver.html share/doc/HTML/en/kcontrol/soundinfo.html share/doc/HTML/en/kcontrol/style.html share/doc/HTML/en/kcontrol/sys-notify.html -share/doc/HTML/en/kcontrol/talk.html share/doc/HTML/en/kcontrol/taskbar.html share/doc/HTML/en/kcontrol/user-agent.html share/doc/HTML/en/kcontrol/windows-shares.html @@ -1135,6 +1293,8 @@ share/doc/HTML/en/kdm/lilo.html share/doc/HTML/en/kdm/locale.html share/doc/HTML/en/kdm/other-information.html share/doc/HTML/en/khelpcenter/.anchors +share/doc/HTML/en/khelpcenter/background.png +share/doc/HTML/en/khelpcenter/bgtable.png share/doc/HTML/en/khelpcenter/common share/doc/HTML/en/khelpcenter/contact-developers.html share/doc/HTML/en/khelpcenter/contact-more-information.html @@ -1144,16 +1304,6 @@ share/doc/HTML/en/khelpcenter/contact.docbook share/doc/HTML/en/khelpcenter/credits.html share/doc/HTML/en/khelpcenter/faq/.anchors share/doc/HTML/en/khelpcenter/faq/TODO -share/doc/HTML/en/khelpcenter/faq/index.docbook -share/doc/HTML/en/khelpcenter/faq/index.html -share/doc/HTML/en/khelpcenter/help-system-user-manual.html -share/doc/HTML/en/khelpcenter/help.docbook -share/doc/HTML/en/khelpcenter/index.docbook -share/doc/HTML/en/khelpcenter/index.html -share/doc/HTML/en/khelpcenter/interface-basics.html -share/doc/HTML/en/khelpcenter/invoking-help.html -share/doc/HTML/en/khelpcenter/links.docbook -share/doc/HTML/en/khelpcenter/no-html.html share/doc/HTML/en/khelpcenter/faq/about.html share/doc/HTML/en/khelpcenter/faq/applications.html share/doc/HTML/en/khelpcenter/faq/common @@ -1163,6 +1313,8 @@ share/doc/HTML/en/khelpcenter/faq/credits.html share/doc/HTML/en/khelpcenter/faq/desktop.html share/doc/HTML/en/khelpcenter/faq/filemanager.html share/doc/HTML/en/khelpcenter/faq/getting-kde.html +share/doc/HTML/en/khelpcenter/faq/index.docbook +share/doc/HTML/en/khelpcenter/faq/index.html share/doc/HTML/en/khelpcenter/faq/install.html share/doc/HTML/en/khelpcenter/faq/introduction.html share/doc/HTML/en/khelpcenter/faq/misc.html @@ -1172,6 +1324,21 @@ share/doc/HTML/en/khelpcenter/faq/not-kde.html share/doc/HTML/en/khelpcenter/faq/panel.html share/doc/HTML/en/khelpcenter/faq/tips.html share/doc/HTML/en/khelpcenter/faq/windowmanager.html +share/doc/HTML/en/khelpcenter/help-system-user-manual.html +share/doc/HTML/en/khelpcenter/help.docbook +share/doc/HTML/en/khelpcenter/index.docbook +share/doc/HTML/en/khelpcenter/index.html +share/doc/HTML/en/khelpcenter/interface-basics.html +share/doc/HTML/en/khelpcenter/invoking-help.html +share/doc/HTML/en/khelpcenter/kdelogo2.png +share/doc/HTML/en/khelpcenter/khelpcenter.png +share/doc/HTML/en/khelpcenter/konq.css +share/doc/HTML/en/khelpcenter/lines.png +share/doc/HTML/en/khelpcenter/lines2.png +share/doc/HTML/en/khelpcenter/links.docbook +share/doc/HTML/en/khelpcenter/main.html +share/doc/HTML/en/khelpcenter/no-html.html +share/doc/HTML/en/khelpcenter/pointers.png share/doc/HTML/en/khelpcenter/quickstart/.anchors share/doc/HTML/en/khelpcenter/quickstart/advanced-topics.html share/doc/HTML/en/khelpcenter/quickstart/an-overview-of-kde.html @@ -1193,6 +1360,7 @@ share/doc/HTML/en/khelpcenter/quickstart/using-templates.html share/doc/HTML/en/khelpcenter/quickstart/using-v-desktops.html share/doc/HTML/en/khelpcenter/quickstart/want-command-line-back.html share/doc/HTML/en/khelpcenter/quickstart/working-with-windows.html +share/doc/HTML/en/khelpcenter/shadow1.png share/doc/HTML/en/khelpcenter/support.docbook share/doc/HTML/en/khelpcenter/supporting-kde-financial-support.html share/doc/HTML/en/khelpcenter/supporting-kde-get-started.html @@ -1276,44 +1444,48 @@ share/doc/HTML/en/khelpcenter/what-is-kde-the-office-suite.html share/doc/HTML/en/khelpcenter/what-is-kde.html share/doc/HTML/en/khelpcenter/whatiskde.docbook share/doc/HTML/en/kicker/.anchors -share/doc/HTML/en/kicker/access_config.png -share/doc/HTML/en/kicker/basic_icons.png -share/doc/HTML/en/kicker/button-preferences.html +share/doc/HTML/en/kicker/applets.html +share/doc/HTML/en/kicker/application-group.html +share/doc/HTML/en/kicker/basics.html +share/doc/HTML/en/kicker/browsers.html +share/doc/HTML/en/kicker/child-panel-extension.html +share/doc/HTML/en/kicker/clock-applet.html +share/doc/HTML/en/kicker/commands.html share/doc/HTML/en/kicker/common -share/doc/HTML/en/kicker/config_window.png -share/doc/HTML/en/kicker/configuration-adding-icons.html -share/doc/HTML/en/kicker/configuration-config-window.html +share/doc/HTML/en/kicker/compilation.html share/doc/HTML/en/kicker/configuration.html +share/doc/HTML/en/kicker/configuring-apps.html +share/doc/HTML/en/kicker/configuring.html share/doc/HTML/en/kicker/credits.html -share/doc/HTML/en/kicker/drag-and-drop.html -share/doc/HTML/en/kicker/drag_applet.png -share/doc/HTML/en/kicker/five-minute-course.html -share/doc/HTML/en/kicker/glossary.html -share/doc/HTML/en/kicker/handles.png -share/doc/HTML/en/kicker/hide_buttons.png -share/doc/HTML/en/kicker/i_adv_editor.png -share/doc/HTML/en/kicker/i_control_center.png -share/doc/HTML/en/kicker/i_desktop.png -share/doc/HTML/en/kicker/i_help.png -share/doc/HTML/en/kicker/i_home_dir.png -share/doc/HTML/en/kicker/i_k_button.png -share/doc/HTML/en/kicker/i_kandalfs_tips.png -share/doc/HTML/en/kicker/i_shell.png -share/doc/HTML/en/kicker/i_window_list.png +share/doc/HTML/en/kicker/dock-application-bar-extension.html +share/doc/HTML/en/kicker/extensions.html +share/doc/HTML/en/kicker/faq.html share/doc/HTML/en/kicker/index.docbook share/doc/HTML/en/kicker/index.html share/doc/HTML/en/kicker/installation.html share/doc/HTML/en/kicker/introduction.html -share/doc/HTML/en/kicker/kicker-for-admins-symbolic-links.html -share/doc/HTML/en/kicker/kicker-for-admins.html -share/doc/HTML/en/kicker/kicker-panel-elements.html -share/doc/HTML/en/kicker/kicker_access_size.png -share/doc/HTML/en/kicker/kicker_add_basic.png -share/doc/HTML/en/kicker/kicker_basic_icons.png -share/doc/HTML/en/kicker/kicker_basic_icons_2.png -share/doc/HTML/en/kicker/other-features.html -share/doc/HTML/en/kicker/qb_root.png +share/doc/HTML/en/kicker/k-menu.html +share/doc/HTML/en/kicker/k_menu_icon.png +share/doc/HTML/en/kicker/kasbar-extension.html +share/doc/HTML/en/kicker/kfind-advanced.html +share/doc/HTML/en/kicker/kfind-date-range.html +share/doc/HTML/en/kicker/kfind.html +share/doc/HTML/en/kicker/launcher-applet.html +share/doc/HTML/en/kicker/most-recently-group.html +share/doc/HTML/en/kicker/naughty-applet.html +share/doc/HTML/en/kicker/pager-applet.html +share/doc/HTML/en/kicker/panel-applets.html +share/doc/HTML/en/kicker/panel-buttons.html +share/doc/HTML/en/kicker/panel-looknfeel.html +share/doc/HTML/en/kicker/panel-menus.html +share/doc/HTML/en/kicker/requirements.html +share/doc/HTML/en/kicker/run-applet.html +share/doc/HTML/en/kicker/run-command.html +share/doc/HTML/en/kicker/screenshot_left.png +share/doc/HTML/en/kicker/screenshot_right.png +share/doc/HTML/en/kicker/systemtray-applet.html share/doc/HTML/en/kicker/using-kicker.html +share/doc/HTML/en/kicker/windowlist_icon.png share/doc/HTML/en/klipper/.anchors share/doc/HTML/en/klipper/actions.html share/doc/HTML/en/klipper/common @@ -1329,6 +1501,7 @@ share/doc/HTML/en/klipper/screenshot.png share/doc/HTML/en/klipper/using-klipper.html share/doc/HTML/en/kmenuedit/.anchors share/doc/HTML/en/kmenuedit/common +share/doc/HTML/en/kmenuedit/compilation.html share/doc/HTML/en/kmenuedit/credits.html share/doc/HTML/en/kmenuedit/details-advanced.html share/doc/HTML/en/kmenuedit/glossary.html @@ -1343,30 +1516,33 @@ share/doc/HTML/en/kmenuedit/icon_sets.png share/doc/HTML/en/kmenuedit/icons.png share/doc/HTML/en/kmenuedit/index.docbook share/doc/HTML/en/kmenuedit/index.html +share/doc/HTML/en/kmenuedit/installation.html share/doc/HTML/en/kmenuedit/introduction.html share/doc/HTML/en/kmenuedit/menu-reference.html share/doc/HTML/en/kmenuedit/using-kmenuedit.html share/doc/HTML/en/konqueror/.anchors -share/doc/HTML/en/konqueror/autocomplete.html share/doc/HTML/en/konqueror/basics.html share/doc/HTML/en/konqueror/bookmarks.html share/doc/HTML/en/konqueror/browser.html share/doc/HTML/en/konqueror/bubble.html -share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/cmndline.png share/doc/HTML/en/konqueror/commandline.html share/doc/HTML/en/konqueror/commands.html -share/doc/HTML/en/konqueror/config-prox.html +share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/config.html -share/doc/HTML/en/konqueror/configure-bars.html -share/doc/HTML/en/konqueror/cook.html +share/doc/HTML/en/konqueror/configfm.html +share/doc/HTML/en/konqueror/configure-browser.html +share/doc/HTML/en/konqueror/configure-enhanced-browsing.html +share/doc/HTML/en/konqueror/configure-proxy.html +share/doc/HTML/en/konqueror/configure-user-agent.html +share/doc/HTML/en/konqueror/cookies.html share/doc/HTML/en/konqueror/credits.html share/doc/HTML/en/konqueror/crypto.html share/doc/HTML/en/konqueror/deleting.html share/doc/HTML/en/konqueror/dirtree.png share/doc/HTML/en/konqueror/dragdrop.png share/doc/HTML/en/konqueror/faq.html -share/doc/HTML/en/konqueror/fileassoc.html +share/doc/HTML/en/konqueror/file-associations.html share/doc/HTML/en/konqueror/filemanager.html share/doc/HTML/en/konqueror/filetype1.png share/doc/HTML/en/konqueror/filetype3.png @@ -1375,23 +1551,20 @@ share/doc/HTML/en/konqueror/ftp.html share/doc/HTML/en/konqueror/index.docbook share/doc/HTML/en/konqueror/index.html share/doc/HTML/en/konqueror/installation.html -share/doc/HTML/en/konqueror/introduction.html share/doc/HTML/en/konqueror/konqorg.png -share/doc/HTML/en/konqueror/lmbmmb.html +share/doc/HTML/en/konqueror/lmb-mmb.html share/doc/HTML/en/konqueror/making.html -share/doc/HTML/en/konqueror/miscbrowser.html +share/doc/HTML/en/konqueror/man-info.html share/doc/HTML/en/konqueror/moving.html share/doc/HTML/en/konqueror/multiple.html share/doc/HTML/en/konqueror/newname.html -share/doc/HTML/en/konqueror/optionalbrowser.html share/doc/HTML/en/konqueror/parts.html share/doc/HTML/en/konqueror/parts.png share/doc/HTML/en/konqueror/plugin.html share/doc/HTML/en/konqueror/rmb-menus.html -share/doc/HTML/en/konqueror/samba.html share/doc/HTML/en/konqueror/samba.png share/doc/HTML/en/konqueror/save-print-web.html -share/doc/HTML/en/konqueror/saveset.html +share/doc/HTML/en/konqueror/save-settings.html share/doc/HTML/en/konqueror/surf.html share/doc/HTML/en/konsole/.anchors share/doc/HTML/en/konsole/command-line-options.html @@ -1447,6 +1620,7 @@ share/doc/HTML/en/kwrite/go.html share/doc/HTML/en/kwrite/help.html share/doc/HTML/en/kwrite/index.docbook share/doc/HTML/en/kwrite/index.html +share/doc/HTML/en/kwrite/installation.html share/doc/HTML/en/kwrite/introduction.html share/doc/HTML/en/kwrite/keybindings.html share/doc/HTML/en/kwrite/on-screen-fundamentals.html @@ -1465,6 +1639,66 @@ share/fonts/console8x16.pcf.gz share/fonts/console8x8.pcf.gz share/fonts/fonts.dir share/fonts/override/fonts.dir +share/icons/hicolor/16x16/apps/background.png +share/icons/hicolor/16x16/apps/bell.png +share/icons/hicolor/16x16/apps/cookie.png +share/icons/hicolor/16x16/apps/email.png +share/icons/hicolor/16x16/apps/energy.png +share/icons/hicolor/16x16/apps/enhanced_browsing.png +share/icons/hicolor/16x16/apps/go.png +share/icons/hicolor/16x16/apps/hwinfo.png +share/icons/hicolor/16x16/apps/input_devices_settings.png +share/icons/hicolor/16x16/apps/kappfinder.png +share/icons/hicolor/16x16/apps/kcmkwm.png +share/icons/hicolor/16x16/apps/kcmsystem.png +share/icons/hicolor/16x16/apps/kcontrol.png +share/icons/hicolor/16x16/apps/kdisknav.png +share/icons/hicolor/16x16/apps/keditbookmarks.png +share/icons/hicolor/16x16/apps/kfm.png +share/icons/hicolor/16x16/apps/kfm_home.png +share/icons/hicolor/16x16/apps/khelpcenter.png +share/icons/hicolor/16x16/apps/klipper.png +share/icons/hicolor/16x16/apps/konqueror.png +share/icons/hicolor/16x16/apps/konsole.png +share/icons/hicolor/16x16/apps/kscreensaver.png +share/icons/hicolor/16x16/apps/ksysguard.png +share/icons/hicolor/16x16/apps/ktip.png +share/icons/hicolor/16x16/apps/kwrite.png +share/icons/hicolor/16x16/apps/locale.png +share/icons/hicolor/16x16/apps/looknfeel.png +share/icons/hicolor/16x16/apps/multimedia.png +share/icons/hicolor/16x16/apps/netscape.png +share/icons/hicolor/16x16/apps/package_applications.png +share/icons/hicolor/16x16/apps/package_development.png +share/icons/hicolor/16x16/apps/package_editors.png +share/icons/hicolor/16x16/apps/package_graphics.png +share/icons/hicolor/16x16/apps/package_multimedia.png +share/icons/hicolor/16x16/apps/package_network.png +share/icons/hicolor/16x16/apps/package_settings.png +share/icons/hicolor/16x16/apps/package_system.png +share/icons/hicolor/16x16/apps/package_toys.png +share/icons/hicolor/16x16/apps/package_utilities.png +share/icons/hicolor/16x16/apps/package_wordprocessing.png +share/icons/hicolor/16x16/apps/realplayer.png +share/icons/hicolor/16x16/apps/remote.png +share/icons/hicolor/16x16/apps/samba.png +share/icons/hicolor/16x16/apps/style.png +share/icons/hicolor/16x16/apps/window_list.png +share/icons/hicolor/16x16/devices/3floppy_mount.png +share/icons/hicolor/16x16/devices/3floppy_unmount.png +share/icons/hicolor/16x16/devices/cdaudio_mount.png +share/icons/hicolor/16x16/devices/cdaudio_unmount.png +share/icons/hicolor/16x16/devices/cdrom_mount.png +share/icons/hicolor/16x16/devices/cdrom_unmount.png +share/icons/hicolor/16x16/devices/dvd_mount.png +share/icons/hicolor/16x16/devices/dvd_unmount.png +share/icons/hicolor/16x16/devices/hdd_mount.png +share/icons/hicolor/16x16/devices/hdd_unmount.png +share/icons/hicolor/16x16/devices/nfs_mount.png +share/icons/hicolor/16x16/devices/nfs_unmount.png +share/icons/hicolor/16x16/devices/printer1.png +share/icons/hicolor/16x16/filesystems/file_important.png +share/icons/hicolor/16x16/filesystems/folder_important.png share/icons/hicolor/22x22/actions/view_choose.png share/icons/hicolor/22x22/actions/view_detailed.png share/icons/hicolor/22x22/actions/view_icon.png @@ -1478,11 +1712,13 @@ share/icons/hicolor/32x32/actions/view_multicolumn.png share/icons/hicolor/32x32/actions/view_text.png share/icons/hicolor/32x32/actions/view_tree.png share/icons/hicolor/32x32/apps/access.png +share/icons/hicolor/32x32/apps/acroread.png share/icons/hicolor/32x32/apps/agent.png share/icons/hicolor/32x32/apps/bell.png -share/icons/hicolor/32x32/apps/buttons.png +share/icons/hicolor/32x32/apps/blender.png share/icons/hicolor/32x32/apps/clock.png share/icons/hicolor/32x32/apps/colors.png +share/icons/hicolor/32x32/apps/cookie.png share/icons/hicolor/32x32/apps/date.png share/icons/hicolor/32x32/apps/designer.png share/icons/hicolor/32x32/apps/emacs.png @@ -1512,6 +1748,7 @@ share/icons/hicolor/32x32/apps/kcmx.png share/icons/hicolor/32x32/apps/kcontrol.png share/icons/hicolor/32x32/apps/kdisknav.png share/icons/hicolor/32x32/apps/kdmconfig.png +share/icons/hicolor/32x32/apps/keditbookmarks.png share/icons/hicolor/32x32/apps/key_bindings.png share/icons/hicolor/32x32/apps/keyboard_layout.png share/icons/hicolor/32x32/apps/kfm.png @@ -1544,15 +1781,18 @@ share/icons/hicolor/32x32/apps/package_multimedia.png share/icons/hicolor/32x32/apps/package_network.png share/icons/hicolor/32x32/apps/package_settings.png share/icons/hicolor/32x32/apps/package_system.png +share/icons/hicolor/32x32/apps/package_toys.png share/icons/hicolor/32x32/apps/package_utilities.png +share/icons/hicolor/32x32/apps/package_wordprocessing.png share/icons/hicolor/32x32/apps/password.png share/icons/hicolor/32x32/apps/proxy.png +share/icons/hicolor/32x32/apps/realplayer.png share/icons/hicolor/32x32/apps/style.png share/icons/hicolor/32x32/apps/terminal.png -share/icons/hicolor/32x32/apps/titlebar.png share/icons/hicolor/32x32/apps/window_list.png share/icons/hicolor/32x32/apps/winprops.png share/icons/hicolor/32x32/apps/xapp.png +share/icons/hicolor/32x32/apps/xawtv.png share/icons/hicolor/32x32/apps/xedit.png share/icons/hicolor/32x32/apps/xemacs.png share/icons/hicolor/32x32/apps/xmag.png @@ -1574,16 +1814,20 @@ share/icons/hicolor/32x32/devices/hdd_unmount.png share/icons/hicolor/32x32/devices/memory.png share/icons/hicolor/32x32/devices/mo_mount.png share/icons/hicolor/32x32/devices/mo_unmount.png +share/icons/hicolor/32x32/devices/nfs_mount.png +share/icons/hicolor/32x32/devices/nfs_unmount.png share/icons/hicolor/32x32/devices/printer1.png share/icons/hicolor/32x32/devices/printer2.png share/icons/hicolor/32x32/devices/scanner.png share/icons/hicolor/32x32/devices/tablet.png share/icons/hicolor/32x32/devices/zip_mount.png share/icons/hicolor/32x32/devices/zip_unmount.png +share/icons/hicolor/32x32/filesystems/file_important.png +share/icons/hicolor/32x32/filesystems/folder_important.png share/icons/hicolor/48x48/apps/access.png share/icons/hicolor/48x48/apps/agent.png share/icons/hicolor/48x48/apps/bell.png -share/icons/hicolor/48x48/apps/buttons.png +share/icons/hicolor/48x48/apps/blender.png share/icons/hicolor/48x48/apps/clock.png share/icons/hicolor/48x48/apps/colors.png share/icons/hicolor/48x48/apps/cookie.png @@ -1649,12 +1893,15 @@ share/icons/hicolor/48x48/apps/package_multimedia.png share/icons/hicolor/48x48/apps/package_network.png share/icons/hicolor/48x48/apps/package_settings.png share/icons/hicolor/48x48/apps/package_system.png +share/icons/hicolor/48x48/apps/package_toys.png share/icons/hicolor/48x48/apps/package_utilities.png +share/icons/hicolor/48x48/apps/package_wordprocessing.png share/icons/hicolor/48x48/apps/password.png share/icons/hicolor/48x48/apps/proxy.png +share/icons/hicolor/48x48/apps/remote.png +share/icons/hicolor/48x48/apps/samba.png share/icons/hicolor/48x48/apps/style.png share/icons/hicolor/48x48/apps/terminal.png -share/icons/hicolor/48x48/apps/titlebar.png share/icons/hicolor/48x48/apps/window_list.png share/icons/hicolor/48x48/apps/winprops.png share/icons/hicolor/48x48/apps/xedit.png @@ -1678,12 +1925,17 @@ share/icons/hicolor/48x48/devices/hdd_unmount.png share/icons/hicolor/48x48/devices/memory.png share/icons/hicolor/48x48/devices/mo_mount.png share/icons/hicolor/48x48/devices/mo_unmount.png +share/icons/hicolor/48x48/devices/nfs_mount.png +share/icons/hicolor/48x48/devices/nfs_unmount.png share/icons/hicolor/48x48/devices/printer1.png share/icons/hicolor/48x48/devices/printer2.png share/icons/hicolor/48x48/devices/scanner.png share/icons/hicolor/48x48/devices/tablet.png share/icons/hicolor/48x48/devices/zip_mount.png share/icons/hicolor/48x48/devices/zip_unmount.png +share/icons/hicolor/48x48/filesystems/file_important.png +share/icons/hicolor/48x48/filesystems/folder_important.png +share/icons/locolor/16x16/actions/bookmark_folder.png share/icons/locolor/16x16/actions/view_choose.png share/icons/locolor/16x16/actions/view_detailed.png share/icons/locolor/16x16/actions/view_icon.png @@ -1693,12 +1945,13 @@ share/icons/locolor/16x16/actions/view_tree.png share/icons/locolor/16x16/apps/access.png share/icons/locolor/16x16/apps/acroread.png share/icons/locolor/16x16/apps/agent.png +share/icons/locolor/16x16/apps/alevt.png share/icons/locolor/16x16/apps/applixware.png share/icons/locolor/16x16/apps/arts.png share/icons/locolor/16x16/apps/background.png share/icons/locolor/16x16/apps/bell.png -share/icons/locolor/16x16/apps/borders.png -share/icons/locolor/16x16/apps/buttons.png +share/icons/locolor/16x16/apps/blender.png +share/icons/locolor/16x16/apps/clock.png share/icons/locolor/16x16/apps/colors.png share/icons/locolor/16x16/apps/cookie.png share/icons/locolor/16x16/apps/date.png @@ -1735,12 +1988,14 @@ share/icons/locolor/16x16/apps/kcmx.png share/icons/locolor/16x16/apps/kcontrol.png share/icons/locolor/16x16/apps/kdisknav.png share/icons/locolor/16x16/apps/kdmconfig.png +share/icons/locolor/16x16/apps/keditbookmarks.png share/icons/locolor/16x16/apps/key_bindings.png share/icons/locolor/16x16/apps/keyboard.png share/icons/locolor/16x16/apps/keyboard_layout.png share/icons/locolor/16x16/apps/kfm.png share/icons/locolor/16x16/apps/kfm_home.png share/icons/locolor/16x16/apps/khelpcenter.png +share/icons/locolor/16x16/apps/kicker.png share/icons/locolor/16x16/apps/klipper.png share/icons/locolor/16x16/apps/kmenuedit.png share/icons/locolor/16x16/apps/knotify.png @@ -1758,6 +2013,7 @@ share/icons/locolor/16x16/apps/looknfeel.png share/icons/locolor/16x16/apps/lyx.png share/icons/locolor/16x16/apps/mathematica.png share/icons/locolor/16x16/apps/mouse.png +share/icons/locolor/16x16/apps/mozilla.png share/icons/locolor/16x16/apps/multimedia.png share/icons/locolor/16x16/apps/nedit.png share/icons/locolor/16x16/apps/netscape.png @@ -1778,11 +2034,12 @@ share/icons/locolor/16x16/apps/password.png share/icons/locolor/16x16/apps/penguin.png share/icons/locolor/16x16/apps/plan.png share/icons/locolor/16x16/apps/proxy.png +share/icons/locolor/16x16/apps/pybliographic.png share/icons/locolor/16x16/apps/realplayer.png +share/icons/locolor/16x16/apps/remote.png share/icons/locolor/16x16/apps/samba.png share/icons/locolor/16x16/apps/style.png share/icons/locolor/16x16/apps/terminal.png -share/icons/locolor/16x16/apps/titlebar.png share/icons/locolor/16x16/apps/wabi.png share/icons/locolor/16x16/apps/window_list.png share/icons/locolor/16x16/apps/winprops.png @@ -1824,11 +2081,12 @@ share/icons/locolor/16x16/devices/zip_unmount.png share/icons/locolor/32x32/apps/access.png share/icons/locolor/32x32/apps/acroread.png share/icons/locolor/32x32/apps/agent.png +share/icons/locolor/32x32/apps/alevt.png share/icons/locolor/32x32/apps/applixware.png share/icons/locolor/32x32/apps/background.png share/icons/locolor/32x32/apps/bell.png -share/icons/locolor/32x32/apps/borders.png -share/icons/locolor/32x32/apps/buttons.png +share/icons/locolor/32x32/apps/blender.png +share/icons/locolor/32x32/apps/clanbomber.png share/icons/locolor/32x32/apps/clock.png share/icons/locolor/32x32/apps/colors.png share/icons/locolor/32x32/apps/cookie.png @@ -1908,16 +2166,18 @@ share/icons/locolor/32x32/apps/password.png share/icons/locolor/32x32/apps/penguin.png share/icons/locolor/32x32/apps/plan.png share/icons/locolor/32x32/apps/proxy.png +share/icons/locolor/32x32/apps/pybliographic.png +share/icons/locolor/32x32/apps/pysol.png share/icons/locolor/32x32/apps/realplayer.png share/icons/locolor/32x32/apps/samba.png share/icons/locolor/32x32/apps/style.png share/icons/locolor/32x32/apps/terminal.png -share/icons/locolor/32x32/apps/titlebar.png share/icons/locolor/32x32/apps/wabi.png share/icons/locolor/32x32/apps/window_list.png share/icons/locolor/32x32/apps/winprops.png share/icons/locolor/32x32/apps/wp.png share/icons/locolor/32x32/apps/xapp.png +share/icons/locolor/32x32/apps/xawtv.png share/icons/locolor/32x32/apps/xcalc.png share/icons/locolor/32x32/apps/xclipboard.png share/icons/locolor/32x32/apps/xclock.png @@ -2041,8 +2301,12 @@ share/locale/l10n/kr/entry.desktop share/locale/l10n/kr/flag.png share/locale/l10n/lc/entry.desktop share/locale/l10n/lc/flag.png +share/locale/l10n/lt/entry.desktop +share/locale/l10n/lt/flag.png share/locale/l10n/lu/entry.desktop share/locale/l10n/lu/flag.png +share/locale/l10n/lv/entry.desktop +share/locale/l10n/lv/flag.png share/locale/l10n/mk/entry.desktop share/locale/l10n/mk/flag.png share/locale/l10n/mx/entry.desktop @@ -2104,12 +2368,23 @@ share/locale/l10n/westeurope.desktop share/locale/l10n/za/entry.desktop share/locale/l10n/za/flag.png share/mimelnk/application/x-konsole.desktop +share/mimelnk/application/x-ktheme.desktop +share/services/bzip.protocol +share/services/bzip2.protocol +share/services/finger.protocol +share/services/floppy.protocol share/services/gopher.protocol share/services/gzip.protocol share/services/help.protocol +share/services/htmlthumbnail.desktop +share/services/imagethumbnail.desktop +share/services/imap4.protocol +share/services/imaps.protocol share/services/info.protocol share/services/kaccess.desktop +share/services/kfindpart.desktop share/services/khelpcenter.desktop +share/services/konq_aboutpage.desktop share/services/konq_detailedlistview.desktop share/services/konq_dirtree.desktop share/services/konq_iconview.desktop @@ -2117,6 +2392,7 @@ share/services/konq_multicolumnview.desktop share/services/konq_textview.desktop share/services/konq_treeview.desktop share/services/konqueror.desktop +share/services/konqueror_config.desktop share/services/konsolepart.desktop share/services/kshorturifilter.desktop share/services/kuriikwsfilter.desktop @@ -2124,14 +2400,58 @@ share/services/kurisearchfilter.desktop share/services/kwrite_component.desktop share/services/kxkb.desktop share/services/kxmlrpcd.desktop +share/services/ldap.protocol share/services/man.protocol share/services/nfs.protocol share/services/nntp.protocol share/services/pop3.protocol share/services/pop3s.protocol +share/services/searchproviders/acronym.desktop +share/services/searchproviders/altavista.desktop +share/services/searchproviders/austronaut.desktop +share/services/searchproviders/bugft.desktop +share/services/searchproviders/bugno.desktop +share/services/searchproviders/deja.desktop +share/services/searchproviders/dmoz.desktop +share/services/searchproviders/excite.desktop +share/services/searchproviders/foldoc.desktop +share/services/searchproviders/freshmeat.desktop +share/services/searchproviders/google.desktop +share/services/searchproviders/hotbot.desktop +share/services/searchproviders/jeeves.desktop +share/services/searchproviders/leo.desktop +share/services/searchproviders/lycos.desktop +share/services/searchproviders/mamma.desktop +share/services/searchproviders/metacrawler.desktop +share/services/searchproviders/realnames.desktop +share/services/searchproviders/rpmfind.desktop +share/services/searchproviders/seek.desktop +share/services/searchproviders/thesaurus.desktop +share/services/searchproviders/voila.desktop +share/services/searchproviders/webster.desktop share/services/smb.protocol share/services/smtp.protocol share/services/tar.protocol +share/services/textthumbnail.desktop +share/services/thumbnail.protocol +share/servicetypes/findpart.desktop +share/servicetypes/konqaboutpage.desktop +share/servicetypes/searchprovider.desktop +share/servicetypes/thumbcreator.desktop +share/sounds/KDE_Beep_Ahem.wav +share/sounds/KDE_Beep_Beep.wav +share/sounds/KDE_Beep_Bottles.wav +share/sounds/KDE_Beep_ClassicBeep.wav +share/sounds/KDE_Beep_ClockChime.wav +share/sounds/KDE_Beep_Connect.wav +share/sounds/KDE_Beep_Door.wav +share/sounds/KDE_Beep_Honk.wav +share/sounds/KDE_Beep_Lightning.wav +share/sounds/KDE_Beep_Pop.wav +share/sounds/KDE_Beep_RimShot.wav +share/sounds/KDE_Beep_RingRing.wav +share/sounds/KDE_Beep_ShortBeep.wav +share/sounds/KDE_Beep_Yo.wav share/sounds/KDE_Close_Window.wav share/sounds/KDE_Logout.wav share/sounds/KDE_Startup.wav @@ -2185,6 +2505,105 @@ share/wallpapers/northbeach.jpg share/wallpapers/simple_wallpaper.jpg share/wallpapers/sunday_brunch.jpg share/wallpapers/vegetative_fog.jpg +@dirrm share/wallpapers +@dirrm share/templates/.source +@dirrm share/templates +@dirrm share/sounds +@dirrm share/servicetypes +@dirrm share/services/searchproviders +@dirrm share/services +@dirrm share/mimelnk/application +@dirrm share/locale/l10n/za +@dirrm share/locale/l10n/ve +@dirrm share/locale/l10n/vc +@dirrm share/locale/l10n/uy +@dirrm share/locale/l10n/us +@dirrm share/locale/l10n/ua +@dirrm share/locale/l10n/tw +@dirrm share/locale/l10n/tt +@dirrm share/locale/l10n/tr +@dirrm share/locale/l10n/th +@dirrm share/locale/l10n/sv +@dirrm share/locale/l10n/sr +@dirrm share/locale/l10n/sk +@dirrm share/locale/l10n/si +@dirrm share/locale/l10n/se +@dirrm share/locale/l10n/ru +@dirrm share/locale/l10n/ro +@dirrm share/locale/l10n/py +@dirrm share/locale/l10n/pt +@dirrm share/locale/l10n/pl +@dirrm share/locale/l10n/pe +@dirrm share/locale/l10n/pa +@dirrm share/locale/l10n/nz +@dirrm share/locale/l10n/no +@dirrm share/locale/l10n/nl +@dirrm share/locale/l10n/mx +@dirrm share/locale/l10n/mk +@dirrm share/locale/l10n/lv +@dirrm share/locale/l10n/lu +@dirrm share/locale/l10n/lt +@dirrm share/locale/l10n/lc +@dirrm share/locale/l10n/kr +@dirrm share/locale/l10n/kp +@dirrm share/locale/l10n/kn +@dirrm share/locale/l10n/jp +@dirrm share/locale/l10n/jm +@dirrm share/locale/l10n/it +@dirrm share/locale/l10n/is +@dirrm share/locale/l10n/il +@dirrm share/locale/l10n/ie +@dirrm share/locale/l10n/hu +@dirrm share/locale/l10n/hr +@dirrm share/locale/l10n/hn +@dirrm share/locale/l10n/gt +@dirrm share/locale/l10n/gr +@dirrm share/locale/l10n/gd +@dirrm share/locale/l10n/gb +@dirrm share/locale/l10n/fr +@dirrm share/locale/l10n/fi +@dirrm share/locale/l10n/es +@dirrm share/locale/l10n/ee +@dirrm share/locale/l10n/ec +@dirrm share/locale/l10n/do +@dirrm share/locale/l10n/dk +@dirrm share/locale/l10n/de +@dirrm share/locale/l10n/cz +@dirrm share/locale/l10n/co +@dirrm share/locale/l10n/cn +@dirrm share/locale/l10n/cl +@dirrm share/locale/l10n/ch +@dirrm share/locale/l10n/ca +@dirrm share/locale/l10n/br +@dirrm share/locale/l10n/bo +@dirrm share/locale/l10n/bg +@dirrm share/locale/l10n/be +@dirrm share/locale/l10n/bb +@dirrm share/locale/l10n/au +@dirrm share/locale/l10n/at +@dirrm share/locale/l10n/ar +@dirrm share/locale/l10n/ag +@dirrm share/locale/l10n/C +@dirrm share/locale/l10n +@dirrm share/locale/C +@dirrm share/icons/locolor/32x32/devices +@dirrm share/icons/locolor/32x32/apps +@dirrm share/icons/locolor/16x16/devices +@dirrm share/icons/locolor/16x16/apps +@dirrm share/icons/locolor/16x16/actions +@dirrm share/icons/hicolor/48x48/filesystems +@dirrm share/icons/hicolor/48x48/devices +@dirrm share/icons/hicolor/48x48/apps +@dirrm share/icons/hicolor/32x32/filesystems +@dirrm share/icons/hicolor/32x32/devices +@dirrm share/icons/hicolor/32x32/apps +@dirrm share/icons/hicolor/32x32/actions +@dirrm share/icons/hicolor/22x22/actions +@dirrm share/icons/hicolor/16x16/filesystems +@dirrm share/icons/hicolor/16x16/devices +@dirrm share/icons/hicolor/16x16/apps +@dirrm share/fonts/override +@dirrm share/fonts @dirrm share/doc/HTML/en/kwrite @dirrm share/doc/HTML/en/ksysguard @dirrm share/doc/HTML/en/kpager @@ -2202,17 +2621,22 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/doc/HTML/en/kdesu @dirrm share/doc/HTML/en/kdebugdialog @dirrm share/doc/HTML/en/kcontrol -@dirrm share/apps/quickbrowser +@dirrm share/doc/HTML/en +@dirrm share/config +@dirrm share/autostart +@dirrm share/apps/naughtyapplet/pics @dirrm share/apps/kwrite @dirrm share/apps/kwin/pics @dirrm share/apps/kwin +@dirrm share/apps/kthememgr/Themes +@dirrm share/apps/kthememgr @dirrm share/apps/ksysguard/icons/locolor/16x16/apps @dirrm share/apps/ksysguard/icons/locolor/16x16 @dirrm share/apps/ksysguard/icons/locolor @dirrm share/apps/ksysguard/icons @dirrm share/apps/ksysguard +@dirrm share/apps/ksplash/pics/locolor @dirrm share/apps/ksplash/pics -@dirrm share/apps/ksplash @dirrm share/apps/kscreensaver @dirrm share/apps/konsole/pics @dirrm share/apps/konsole @@ -2226,14 +2650,18 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/konqueror/icons/hicolor/32x32 @dirrm share/apps/konqueror/icons/hicolor/22x22/actions @dirrm share/apps/konqueror/icons/hicolor/22x22 +@dirrm share/apps/konqueror/icons/hicolor/16x16/actions @dirrm share/apps/konqueror/icons/hicolor @dirrm share/apps/konqueror/icons @dirrm share/apps/konqueror/dirtree/remote/web @dirrm share/apps/konqueror/dirtree/remote/ftp @dirrm share/apps/konqueror/dirtree/remote @dirrm share/apps/konqueror/dirtree +@dirrm share/apps/konqueror/about @dirrm share/apps/konqueror +@dirrm share/apps/konqlistview/kpartplugins @dirrm share/apps/konqlistview +@dirrm share/apps/konqiconview/kpartplugins @dirrm share/apps/konqiconview @dirrm share/apps/kmenuedit/icons/locolor/16x16/actions @dirrm share/apps/kmenuedit/icons/locolor/16x16 @@ -2246,13 +2674,16 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kmenuedit/icons @dirrm share/apps/kmenuedit @dirrm share/apps/kio_info +@dirrm share/apps/kio_finger @dirrm share/apps/kicker/wallpapers @dirrm share/apps/kicker/tiles @dirrm share/apps/kicker/pics @dirrm share/apps/kicker/icons/locolor/16x16/actions @dirrm share/apps/kicker/icons/locolor/16x16 @dirrm share/apps/kicker/icons/locolor +@dirrm share/apps/kicker/icons/hicolor/16x16/actions @dirrm share/apps/kicker/icons +@dirrm share/apps/kicker/extensions @dirrm share/apps/kicker/applets @dirrm share/apps/kicker @dirrm share/apps/khelpcenter/plugins/Tutorials @@ -2264,6 +2695,8 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/khelpcenter/icons @dirrm share/apps/khelpcenter/en @dirrm share/apps/khelpcenter +@dirrm share/apps/kfind/icons/locolor/22x22/actions +@dirrm share/apps/keditbookmarks @dirrm share/apps/kdm/pics/users @dirrm share/apps/kdm/pics @dirrm share/apps/kdm @@ -2282,9 +2715,11 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kcontrol @dirrm share/apps/kcmlocale/pics @dirrm share/apps/kcmlocale +@dirrm share/apps/kcmkeys/standard @dirrm share/apps/kcminput @dirrm share/apps/kbookmark @dirrm share/apps/kappfinder/apps/WordProcessing +@dirrm share/apps/kappfinder/apps/Utilities/XUtilities @dirrm share/apps/kappfinder/apps/Utilities @dirrm share/apps/kappfinder/apps/Toys @dirrm share/apps/kappfinder/apps/System/ScreenSavers @@ -2293,13 +2728,45 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kappfinder/apps/Multimedia @dirrm share/apps/kappfinder/apps/Internet @dirrm share/apps/kappfinder/apps/Graphics +@dirrm share/apps/kappfinder/apps/Games @dirrm share/apps/kappfinder/apps/Editors @dirrm share/apps/kappfinder/apps/Development @dirrm share/apps/kappfinder/apps -@dirrm share/apps/kappfinder @dirrm share/apps/drkonqi/presets @dirrm share/apps/drkonqi/pics @dirrm share/apps/drkonqi/debuggers @dirrm share/apps/drkonqi @dirrm share/apps/clockapplet/pics @dirrm share/apps/clockapplet +@dirrm share/apps +@dirrm share/applnk/Utilities +@dirrm share/applnk/Toys +@dirrm share/applnk/System/ScreenSavers +@dirrm share/applnk/System +@dirrm share/applnk/Settings/WebBrowsing +@dirrm share/applnk/Settings/System +@dirrm share/applnk/Settings/Sound +@dirrm share/applnk/Settings/PowerControl +@dirrm share/applnk/Settings/Personalization +@dirrm share/applnk/Settings/Peripherals +@dirrm share/applnk/Settings/Network +@dirrm share/applnk/Settings/LookNFeel/Windows +@dirrm share/applnk/Settings/LookNFeel/Themes +@dirrm share/applnk/Settings/LookNFeel/Desktop +@dirrm share/applnk/Settings/LookNFeel +@dirrm share/applnk/Settings/Information +@dirrm share/applnk/Settings/Help +@dirrm share/applnk/Settings/FileBrowsing +@dirrm share/applnk/Settings +@dirrm share/applnk/Office +@dirrm share/applnk/Multimedia +@dirrm share/applnk/Internet +@dirrm share/applnk/Graphics +@dirrm share/applnk/Games +@dirrm share/applnk/Editors +@dirrm share/applnk/Development +@dirrm share/applnk/Applications +@dirrm share/applnk/.hidden +@dirrm share/applnk +@dirrm lib/kde2 +@dirrm include/kwin diff --git a/x11/kde4-workspace/Makefile b/x11/kde4-workspace/Makefile index e44f3da88bf8..a346796a21ee 100644 --- a/x11/kde4-workspace/Makefile +++ b/x11/kde4-workspace/Makefile @@ -6,12 +6,12 @@ # PORTNAME= kdebase -PORTVERSION= 2.0.1 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION}/distribution/tar/generic/src -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= kdeui.4:${PORTSDIR}/x11/kdelibs2 \ intl.1:${PORTSDIR}/devel/gettext diff --git a/x11/kde4-workspace/distinfo b/x11/kde4-workspace/distinfo index 80f0c4ce35f6..243923f1a5d7 100644 --- a/x11/kde4-workspace/distinfo +++ b/x11/kde4-workspace/distinfo @@ -1 +1 @@ -MD5 (kdebase-2.0.1.tar.bz2) = b138a67ae22fbda05def8e932820ac66 +MD5 (kdebase-2.1.tar.bz2) = 54264460bca895cc3e315bb49c297f8f diff --git a/x11/kde4-workspace/files/patch-Processlist.c b/x11/kde4-workspace/files/patch-Processlist.c deleted file mode 100644 index 863d56e7ec72..000000000000 --- a/x11/kde4-workspace/files/patch-Processlist.c +++ /dev/null @@ -1,80 +0,0 @@ ---- ksysguard/ksysguardd/FreeBSD/ProcessList.c.old Tue Jan 23 19:44:29 2001 -+++ ksysguard/ksysguardd/FreeBSD/ProcessList.c Tue Jan 23 20:19:24 2001 -@@ -186,7 +186,20 @@ - if (sysctl(mib, 4, &p, &len, NULL, 0) == -1 || !len) - return -1; - -- /* ?? */ -+#if __FreeBSD_version >= 500015 -+ /* Getting runtime process info */ -+ ps->pid = p.ki_pid; -+ ps->ppid = p.ki_ppid; -+ strcpy(ps->name, p.ki_comm); -+ ps->uid = p.ki_uid; -+ ps->gid = p.ki_pgid; -+ -+ pwent = getpwuid(ps->uid); -+ strcpy(ps->userName, pwent ? pwent->pw_name : "????"); -+ ps->priority = p.ki_priority; -+ ps->niceLevel = p.ki_nice; -+ -+#else - ps->pid = p.kp_proc.p_pid; - ps->ppid = p.kp_eproc.e_ppid; - strcpy(ps->name, p.kp_proc.p_comm); -@@ -198,16 +211,30 @@ - strcpy(ps->userName, pwent ? pwent->pw_name : "????"); - ps->priority = p.kp_proc.p_priority; - ps->niceLevel = p.kp_proc.p_nice; -+#endif - - /* this isn't usertime -- it's total time (??) */ --#if __FreeBSD_version >= 300000 -+#if __FreeBSD_version >= 500015 -+ ps->userTime = p.ki_runtime / 10000; -+#elif __FreeBSD_version >= 300000 - ps->userTime = p.kp_proc.p_runtime / 10000; - #else - ps->userTime = p.kp_proc.p_rtime.tv_sec*100+p.kp_proc.p_rtime.tv_usec/100 - #endif -+ - ps->sysTime = 0; -- ps->userLoad = p.kp_proc.p_pctcpu / 100; - ps->sysLoad = 0; -+#if __FreeBSD_version >= 500015 -+ ps->userLoad = p.ki_pctcpu / 100; -+ -+ /* memory */ -+ ps->vmSize = p.ki_size * getpagesize(); -+ -+ ps->vmRss = p.ki_rssize * getpagesize(); -+ -+ ps->status = p.ki_stat; -+#else -+ ps->userLoad = p.kp_proc.p_pctcpu / 100; - - /* memory */ - ps->vmSize = (p.kp_eproc.e_vm.vm_tsize + -@@ -216,7 +243,7 @@ - ps->vmRss = p.kp_eproc.e_vm.vm_rssize * getpagesize(); - - ps->status = p.kp_proc.p_stat; -- -+#endif - return (0); - } - -@@ -284,8 +311,13 @@ - p = malloc(len); - sysctl(mib, 3, p, &len, NULL, 0); - -+#if __FreeBSD_version >= 500015 -+ for (num = 0; num < len / sizeof(struct kinfo_proc); num++) -+ updateProcess(p[num].ki_pid); -+#else - for (num = 0; num < len / sizeof(struct kinfo_proc); num++) - updateProcess(p[num].kp_proc.p_pid); -+#endif - - cleanupProcessList(); - diff --git a/x11/kde4-workspace/files/patch-TEPty.C b/x11/kde4-workspace/files/patch-TEPty.C index 9bfd5db25ccd..796ec243efbf 100644 --- a/x11/kde4-workspace/files/patch-TEPty.C +++ b/x11/kde4-workspace/files/patch-TEPty.C @@ -1,83 +1,6 @@ ---- konsole/src/TEPty.C.orig Fri Dec 8 11:51:24 2000 -+++ konsole/src/TEPty.C Fri Dec 8 11:52:51 2000 -@@ -180,27 +180,57 @@ - // param grant: 1 to grant, 0 to revoke - // returns 1 on success 0 on fail - { -- pid_t pid = fork(); -- if (pid < 0) -- { -- return 0; -- } -- if (pid == 0) -- { -- /* We pass the master pseudo terminal as file descriptor PTY_FILENO. */ -- if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) exit(1); -- QString path = locate("exe", BASE_CHOWN); -+ pid_t pid; -+ int pstat; -+ struct sigaction ign; -+ struct sigaction intact; // interupt action -+ struct sigaction quitact; // quit action -+ sigset_t newsigblock, oldsigblock; -+ QString path; -+ -+ ign.sa_handler = SIG_IGN; -+ sigemptyset(&ign.sa_mask); -+ ign.sa_flags = 0; -+ sigaction(SIGINT, &ign, &intact); -+ sigaction(SIGQUIT, &ign, &quitact); -+ sigemptyset(&newsigblock); -+ sigaddset(&newsigblock, SIGCHLD); -+ sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock); -+ -+ switch (pid = fork()) { -+ case -1: -+ return(0); -+ break; -+ case 0: // child -+ if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) -+ exit(1); -+ path = locate("exe", BASE_CHOWN); -+ -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); - execle(path.ascii(), BASE_CHOWN, grant?"--grant":"--revoke", NULL, NULL); -- exit(1); // should not be reached -- } -- if (pid > 0) -- { int w; -- retry: -- int rc = waitpid (pid, &w, 0); -- if ((rc == -1) && (errno == EINTR)) -- goto retry; -- return (rc != -1 && WIFEXITED(w) && WEXITSTATUS(w) == 0); -+ exit(1); -+ break; -+ default: -+ do { -+ pid = waitpid(pid, &pstat, 0); -+ } while (pid == -1 && errno == EINTR); -+ break; - } -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); -+ -+ if (pid == -1) { -+ return 0; -+ } -+ else if (WIFEXITED(pstat) && (WEXITSTATUS(pstat) == 0)) { -+ return 1; -+ } -+ else { -+ return 0; -+ } - return 0; //dummy. - } - -@@ -225,7 +255,7 @@ +--- konsole/src/TEPty.C Sun Feb 18 10:28:28 2001 ++++ konsole/src/TEPty.C.new Fri Feb 23 02:55:58 2001 +@@ -238,7 +238,7 @@ #ifdef HAVE_UTEMPTER removeLineFromUtmp(ttynam, fd); #elif defined(USE_LOGIN) diff --git a/x11/kde4-workspace/files/patch-kdeeject b/x11/kde4-workspace/files/patch-kdeeject index 38c12b5eafbf..8a5870ad25ff 100644 --- a/x11/kde4-workspace/files/patch-kdeeject +++ b/x11/kde4-workspace/files/patch-kdeeject @@ -1,9 +1,9 @@ ---- kdesktop/kdeeject.orig Fri Dec 1 15:25:26 2000 -+++ kdesktop/kdeeject Fri Dec 1 15:25:33 2000 -@@ -8,7 +8,8 @@ - # kmessage, to show a message box in case of error. - # - if [ $# = 1 -a "$1" != "--help" ]; then +--- kdesktop/kdeeject Wed Dec 13 13:25:02 2000 ++++ kdesktop/kdeeject.new Fri Feb 23 02:59:54 2001 +@@ -11,7 +11,8 @@ + # TODO: On bsd, it should be 'cdcontrol -f $1 eject' + # Checking for stuff in the PATH is ugly with sh though. + # I guess this is the reason for making this a kde app... - if eject $1; then + dev=`echo $1 | sed -E -e 's#/dev/##' -e 's/([0-9])./\1/'` + if cdcontrol -f $dev eject; then diff --git a/x11/kde4-workspace/files/patch-konsole_grantpty.c b/x11/kde4-workspace/files/patch-konsole_grantpty.c deleted file mode 100644 index 889d15bdb592..000000000000 --- a/x11/kde4-workspace/files/patch-konsole_grantpty.c +++ /dev/null @@ -1,79 +0,0 @@ ---- konsole/src/konsole_grantpty.c.orig Sat Jun 12 07:13:31 1999 -+++ konsole/src/konsole_grantpty.c Fri Dec 8 11:54:43 2000 -@@ -31,13 +31,15 @@ - #include <string.h> - #include <sys/stat.h> - #include <unistd.h> -+#include <dirent.h> -+#include <paths.h> - - #define PTY_FILENO 3 /* keep in sync with grantpty */ - #define TTY_GROUP "tty" - - int main (int argc, char *argv[]) - { -- char* pty; -+ char* pty = NULL; - struct stat st; - struct group* p; - gid_t gid; -@@ -81,6 +83,7 @@ - - /* get slave pty name from master pty file handle in PTY_FILENO *********/ - -+#if 0 - /* Check that PTY_FILENO is a valid master pseudo terminal. */ - pty = ttyname(PTY_FILENO); /* posix */ - if (pty == NULL) -@@ -89,6 +92,42 @@ - return 1; /* FAIL */ - } - close(PTY_FILENO); -+#else -+ /* The trouble with the ifdef'd-out portion above is that ttyname() -+ ** does not work correctly when not passed a valid tty, but a pseudotty -+ ** instead. All we're doing here is finding out what the name of -+ ** the associated pty is without having to pass it in on the command line. -+ ** Nothing complex. -+ */ -+ { -+ struct stat sb; -+ struct stat dsb; -+ struct dirent *dirp; -+ static char buf[sizeof(_PATH_DEV) + MAXNAMLEN] = _PATH_DEV; -+ DIR *dp; -+ -+ pty = NULL; -+ -+ if (fstat(PTY_FILENO, &sb)) -+ return 1; /* FAIL */ -+ if ((dp = opendir(_PATH_DEV)) == NULL) -+ return 1; /* FAIL */ -+ -+ while ((dirp = readdir(dp))) { -+ if (dirp->d_fileno != sb.st_ino) -+ continue; -+ bcopy(dirp->d_name, buf + sizeof(_PATH_DEV) - 1, dirp->d_namlen+1); -+ /*fprintf(stderr, "looking at %s\n", buf);*/ -+ if (stat(buf, &dsb) || sb.st_dev != dsb.st_dev || sb.st_ino != dsb.st_ino) -+ continue; -+ pty = buf; -+ } -+ closedir(dp); -+ if (pty == NULL) -+ return 1; /* FAIL */ -+ } -+ /*fprintf(stderr, "successful at finding %s\n", pty);*/ -+#endif - - /* matches /dev/pty?? */ - if (strlen(pty) < 8 || strncmp(pty,"/dev/pty",8)) -@@ -120,6 +159,8 @@ - fprintf(stderr,"%s: cannot chmod %s.\n",argv[0],tty); perror("Reason"); - return 1; /* FAIL */ - } -+ -+ /*fprintf(stderr, "made it here\n");*/ - - return 0; /* OK */ - } diff --git a/x11/kde4-workspace/pkg-plist b/x11/kde4-workspace/pkg-plist index 7a8ef62507e2..5424c20a9cca 100644 --- a/x11/kde4-workspace/pkg-plist +++ b/x11/kde4-workspace/pkg-plist @@ -2,6 +2,7 @@ bin/appletproxy bin/chooser bin/conttest bin/drkonqi +bin/extensionproxy bin/kaccess bin/kappfinder bin/kbanner.kss @@ -21,6 +22,7 @@ bin/kdesu bin/kdesud bin/kdm bin/kdmdesktop +bin/keditbookmarks bin/keditfiletype bin/kfmclient bin/kfmexec @@ -33,25 +35,22 @@ bin/klegacyimport bin/klines.kss bin/klipper bin/klorenz.kss -bin/kman2html bin/kmatrix.kss bin/kmenuedit -bin/kmorph3d.kss bin/konqueror bin/konsole bin/konsole_grantpty bin/kpager -bin/kpipes.kss bin/kpolygon.kss bin/kpyro.kss bin/krandom.kss bin/krdb +bin/kreadconfig bin/krock.kss bin/kscience.kss bin/kslidescreen.kss bin/kslideshow.kss bin/ksmserver -bin/kspace.kss bin/ksplash bin/kstart bin/kswarm.kss @@ -59,7 +58,9 @@ bin/ksysguard bin/ksysguardd bin/ktip bin/kvm.kss +bin/kwebdesktop bin/kwin +bin/kwmtheme bin/kwrite bin/kwrited bin/kxkb @@ -75,6 +76,10 @@ include/KonquerorIface.h include/ccont.h include/kbookmark.h include/kbookmarkbar.h +include/kbookmarkdrag.h +include/kbookmarkexporter.h +include/kbookmarkimporter.h +include/kbookmarkmanager.h include/kbookmarkmenu.h include/kfileivi.h include/knewmenu.h @@ -84,61 +89,189 @@ include/konq_dirlister.h include/konq_dirpart.h include/konq_drag.h include/konq_events.h +include/konq_faviconmgr.h include/konq_fileitem.h +include/konq_historycomm.h +include/konq_historymgr.h include/konq_iconviewwidget.h include/konq_imagepreviewjob.h +include/konq_mimetyperesolver.h include/konq_operations.h +include/konq_pixmapprovider.h include/konq_popupmenu.h include/konq_propsview.h include/konq_settings.h include/konq_undo.h +include/kwin/client.h +include/kwin/options.h +include/kwin/workspace.h +include/thumbcreator.h lib/appletproxy.la lib/appletproxy.so -lib/kaccess.la -lib/kaccess.so +lib/extensionproxy.la +lib/extensionproxy.so lib/kcminit.la lib/kcminit.so lib/kcmshell.la lib/kcmshell.so lib/kcontrol.la lib/kcontrol.so +lib/kde2/htmlthumbnail.la +lib/kde2/htmlthumbnail.so +lib/kde2/imagethumbnail.la +lib/kde2/imagethumbnail.so +lib/kde2/kaccess.la +lib/kde2/kaccess.so +lib/kde2/kio_filter.la +lib/kde2/kio_filter.so +lib/kde2/kio_finger.la +lib/kde2/kio_finger.so +lib/kde2/kio_floppy.la +lib/kde2/kio_floppy.so +lib/kde2/kio_gopher.la +lib/kde2/kio_gopher.so +lib/kde2/kio_help.la +lib/kde2/kio_help.so +lib/kde2/kio_imap4.la +lib/kde2/kio_imap4.so +lib/kde2/kio_info.la +lib/kde2/kio_info.so +lib/kde2/kio_ldap.la +lib/kde2/kio_ldap.so +lib/kde2/kio_man.la +lib/kde2/kio_man.so +lib/kde2/kio_nfs.la +lib/kde2/kio_nfs.so +lib/kde2/kio_nntp.la +lib/kde2/kio_nntp.so +lib/kde2/kio_pop3.la +lib/kde2/kio_pop3.so +lib/kde2/kio_smb.la +lib/kde2/kio_smb.so +lib/kde2/kio_smtp.la +lib/kde2/kio_smtp.so +lib/kde2/kio_tar.la +lib/kde2/kio_tar.so +lib/kde2/kio_thumbnail.la +lib/kde2/kio_thumbnail.so +lib/kde2/libkcm_access.la +lib/kde2/libkcm_access.so +lib/kde2/libkcm_arts.la +lib/kde2/libkcm_arts.so +lib/kde2/libkcm_background.la +lib/kde2/libkcm_background.so +lib/kde2/libkcm_bell.la +lib/kde2/libkcm_bell.so +lib/kde2/libkcm_clock.la +lib/kde2/libkcm_clock.so +lib/kde2/libkcm_colors.la +lib/kde2/libkcm_colors.so +lib/kde2/libkcm_crypto.la +lib/kde2/libkcm_crypto.so +lib/kde2/libkcm_email.la +lib/kde2/libkcm_email.so +lib/kde2/libkcm_energy.la +lib/kde2/libkcm_energy.so +lib/kde2/libkcm_filetypes.la +lib/kde2/libkcm_filetypes.so +lib/kde2/libkcm_fonts.la +lib/kde2/libkcm_fonts.so +lib/kde2/libkcm_icons.la +lib/kde2/libkcm_icons.so +lib/kde2/libkcm_info.la +lib/kde2/libkcm_info.so +lib/kde2/libkcm_input.la +lib/kde2/libkcm_input.so +lib/kde2/libkcm_kdm.la +lib/kde2/libkcm_kdm.so +lib/kde2/libkcm_keys.la +lib/kde2/libkcm_keys.so +lib/kde2/libkcm_khotkeys.la +lib/kde2/libkcm_khotkeys.so +lib/kde2/libkcm_kicker.la +lib/kde2/libkcm_kicker.so +lib/kde2/libkcm_kio.la +lib/kde2/libkcm_kio.so +lib/kde2/libkcm_knotify.la +lib/kde2/libkcm_knotify.so +lib/kde2/libkcm_konq.la +lib/kde2/libkcm_konq.so +lib/kde2/libkcm_konqhtml.la +lib/kde2/libkcm_konqhtml.so +lib/kde2/libkcm_kurifilt.la +lib/kde2/libkcm_kurifilt.so +lib/kde2/libkcm_kwinoptions.la +lib/kde2/libkcm_kwinoptions.so +lib/kde2/libkcm_locale.la +lib/kde2/libkcm_locale.so +lib/kde2/libkcm_midi.la +lib/kde2/libkcm_midi.so +lib/kde2/libkcm_passwords.la +lib/kde2/libkcm_passwords.so +lib/kde2/libkcm_samba.la +lib/kde2/libkcm_samba.so +lib/kde2/libkcm_screensaver.la +lib/kde2/libkcm_screensaver.so +lib/kde2/libkcm_smserver.la +lib/kde2/libkcm_smserver.so +lib/kde2/libkcm_style.la +lib/kde2/libkcm_style.so +lib/kde2/libkcm_taskbar.la +lib/kde2/libkcm_taskbar.so +lib/kde2/libkcm_themes.la +lib/kde2/libkcm_themes.so +lib/kde2/libkfindpart.la +lib/kde2/libkfindpart.so +lib/kde2/libkonqiconview.la +lib/kde2/libkonqiconview.so +lib/kde2/libkonqlistview.la +lib/kde2/libkonqlistview.so +lib/kde2/libkonqtree.la +lib/kde2/libkonqtree.so +lib/kde2/libkshellcmdplugin.la +lib/kde2/libkshellcmdplugin.so +lib/kde2/libkshorturifilter.la +lib/kde2/libkshorturifilter.so +lib/kde2/libkuriikwsfilter.la +lib/kde2/libkuriikwsfilter.so +lib/kde2/libkurisearchfilter.la +lib/kde2/libkurisearchfilter.so +lib/kde2/libkwin2k.la +lib/kde2/libkwin2k.so +lib/kde2/libkwinb2.la +lib/kde2/libkwinb2.so +lib/kde2/libkwinkde1.la +lib/kde2/libkwinkde1.so +lib/kde2/libkwinkstep.la +lib/kde2/libkwinkstep.so +lib/kde2/libkwinkwmtheme.la +lib/kde2/libkwinkwmtheme.so +lib/kde2/libkwinlaptop.la +lib/kde2/libkwinlaptop.so +lib/kde2/libkwinmodernsys.la +lib/kde2/libkwinmodernsys.so +lib/kde2/libkwinriscos.la +lib/kde2/libkwinriscos.so +lib/kde2/libkwinsystem.la +lib/kde2/libkwinsystem.so +lib/kde2/textthumbnail.la +lib/kde2/textthumbnail.so lib/kdesktop.la lib/kdesktop.so +lib/keditbookmarks.la +lib/keditbookmarks.so lib/kfmclient.la lib/kfmclient.so lib/khotkeys.la lib/khotkeys.so lib/kicker.la lib/kicker.so -lib/kio_gopher.la -lib/kio_gopher.so -lib/kio_gzip.la -lib/kio_gzip.so -lib/kio_help.la -lib/kio_help.so -lib/kio_info.la -lib/kio_info.so -lib/kio_man.la -lib/kio_man.so -lib/kio_nfs.la -lib/kio_nfs.so -lib/kio_nntp.la -lib/kio_nntp.so -lib/kio_pop3.la -lib/kio_pop3.so -lib/kio_smb.la -lib/kio_smb.so -lib/kio_smtp.la -lib/kio_smtp.so -lib/kio_tar.la -lib/kio_tar.so lib/klegacyimport.la lib/klegacyimport.so lib/klipper.la lib/klipper.so lib/kmenuedit.la lib/kmenuedit.so -lib/kmenuedit.so.0 lib/konqueror.la lib/konqueror.so lib/konsole.la @@ -153,86 +286,29 @@ lib/kxkb.la lib/kxkb.so lib/kxmlrpcd.la lib/kxmlrpcd.so +lib/libKdmGreet.la +lib/libKdmGreet.so lib/libccont.a +lib/libchildpanelextension.la +lib/libchildpanelextension.so +lib/libchildpanelextension.so.1 lib/libclockapplet.la lib/libclockapplet.so lib/libclockapplet.so.1 +lib/libdockbarextension.la +lib/libdockbarextension.so +lib/libdockbarextension.so.1 lib/libhtmlsearch.la lib/libhtmlsearch.so -lib/libkcm_access.la -lib/libkcm_access.so -lib/libkcm_arts.la -lib/libkcm_arts.so -lib/libkcm_background.la -lib/libkcm_background.so -lib/libkcm_bell.la -lib/libkcm_bell.so -lib/libkcm_clock.la -lib/libkcm_clock.so -lib/libkcm_colors.la -lib/libkcm_colors.so -lib/libkcm_crypto.la -lib/libkcm_crypto.so -lib/libkcm_email.la -lib/libkcm_email.so -lib/libkcm_energy.la -lib/libkcm_energy.so -lib/libkcm_filetypes.la -lib/libkcm_filetypes.so -lib/libkcm_fonts.la -lib/libkcm_fonts.so +lib/libkasbarextension.la +lib/libkasbarextension.so +lib/libkasbarextension.so.1 lib/libkcm_htmlsearch.la lib/libkcm_htmlsearch.so -lib/libkcm_icons.la -lib/libkcm_icons.so -lib/libkcm_iconthemes.la -lib/libkcm_iconthemes.so -lib/libkcm_info.la -lib/libkcm_info.so -lib/libkcm_input.la -lib/libkcm_input.so -lib/libkcm_kdm.la -lib/libkcm_kdm.so -lib/libkcm_keys.la -lib/libkcm_keys.so -lib/libkcm_khotkeys.la -lib/libkcm_khotkeys.so -lib/libkcm_kicker.la -lib/libkcm_kicker.so -lib/libkcm_kio.la -lib/libkcm_kio.so -lib/libkcm_knotify.la -lib/libkcm_knotify.so -lib/libkcm_konq.la -lib/libkcm_konq.so -lib/libkcm_konqhtml.la -lib/libkcm_konqhtml.so -lib/libkcm_kurifilt.la -lib/libkcm_kurifilt.so -lib/libkcm_kwindesktop.la -lib/libkcm_kwindesktop.so -lib/libkcm_kwinmouse.la -lib/libkcm_kwinmouse.so -lib/libkcm_kwinoptions.la -lib/libkcm_kwinoptions.so +lib/libkcm_ioslaveinfo.la +lib/libkcm_ioslaveinfo.so lib/libkcm_layout.la lib/libkcm_layout.so -lib/libkcm_locale.la -lib/libkcm_locale.so -lib/libkcm_midi.la -lib/libkcm_midi.so -lib/libkcm_passwords.la -lib/libkcm_passwords.so -lib/libkcm_samba.la -lib/libkcm_samba.so -lib/libkcm_screensaver.la -lib/libkcm_screensaver.so -lib/libkcm_style.la -lib/libkcm_style.so -lib/libkcm_taskbar.la -lib/libkcm_taskbar.so -lib/libkcm_virtualdesktops.la -lib/libkcm_virtualdesktops.so lib/libkcm_xmlrpcd.la lib/libkcm_xmlrpcd.so lib/libkhelpcenter.la @@ -244,71 +320,60 @@ lib/libkminipagerapplet.so.1 lib/libkonq.la lib/libkonq.so lib/libkonq.so.4 -lib/libkonqdirtree.la -lib/libkonqdirtree.so -lib/libkonqiconview.la -lib/libkonqiconview.so -lib/libkonqlistview.la -lib/libkonqlistview.so +lib/libkonqaboutpage.la +lib/libkonqaboutpage.so lib/libkonsolepart.la lib/libkonsolepart.so lib/libkrunapplet.la lib/libkrunapplet.so lib/libkrunapplet.so.1 -lib/libkshorturifilter.la -lib/libkshorturifilter.so -lib/libkshorturifilter.so.1 +lib/libksysguardapplet.la +lib/libksysguardapplet.so +lib/libksysguardapplet.so.1 lib/libksystemtrayapplet.la lib/libksystemtrayapplet.so lib/libksystemtrayapplet.so.1 lib/libktaskbarapplet.la lib/libktaskbarapplet.so lib/libktaskbarapplet.so.1 -lib/libkuriikwsfilter.la -lib/libkuriikwsfilter.so -lib/libkuriikwsfilter.so.1 -lib/libkurisearchfilter.la -lib/libkurisearchfilter.so -lib/libkurisearchfilter.so.1 -lib/libkwinb2.la -lib/libkwinb2.so lib/libkwindefault.la lib/libkwindefault.so lib/libkwindefault.so.0 -lib/libkwinkde1.la -lib/libkwinkde1.so -lib/libkwinkstep.la -lib/libkwinkstep.so -lib/libkwinlaptop.la -lib/libkwinlaptop.so -lib/libkwinmodernsys.la -lib/libkwinmodernsys.so -lib/libkwinriscos.la -lib/libkwinriscos.so -lib/libkwinsystem.la -lib/libkwinsystem.so lib/libkwritepart.la lib/libkwritepart.so +lib/libnaughtyapplet.la +lib/libnaughtyapplet.so +lib/libnaughtyapplet.so.1 lib/libquicklauncher.la lib/libquicklauncher.so lib/libquicklauncher.so.1 -lib/libsmb++.la -lib/libsmb++.so -lib/libsmb++.so.0 +lib/libtaskbarextension.la +lib/libtaskbarextension.so +lib/libtaskbarextension.so.1 +lib/libtaskmanager.la +lib/libtaskmanager.so +lib/libtaskmanager.so.1 share/applnk/.directory share/applnk/.hidden/konqfilemgr.desktop share/applnk/Applications/.directory -share/applnk/Development/designer.desktop +share/applnk/Development/.directory share/applnk/Editors/.directory +share/applnk/Editors/gvim.desktop share/applnk/Editors/kwrite.desktop +share/applnk/Editors/xedit.desktop share/applnk/Games/.directory share/applnk/Graphics/.directory +share/applnk/Graphics/gimp.desktop share/applnk/Help.desktop share/applnk/Home.desktop share/applnk/Internet/.directory +share/applnk/Internet/keditbookmarks.desktop share/applnk/Internet/konqbrowser.desktop +share/applnk/Internet/netscape.desktop share/applnk/KControl.desktop share/applnk/Multimedia/.directory +share/applnk/Multimedia/aviplay.desktop +share/applnk/Multimedia/xawtv.desktop share/applnk/Office/.directory share/applnk/Settings/.directory share/applnk/Settings/FileBrowsing/.directory @@ -321,6 +386,7 @@ share/applnk/Settings/Information/devices.desktop share/applnk/Settings/Information/dma.desktop share/applnk/Settings/Information/interrupts.desktop share/applnk/Settings/Information/ioports.desktop +share/applnk/Settings/Information/ioslaveinfo.desktop share/applnk/Settings/Information/memory.desktop share/applnk/Settings/Information/partitions.desktop share/applnk/Settings/Information/pci.desktop @@ -330,28 +396,29 @@ share/applnk/Settings/Information/smbstatus.desktop share/applnk/Settings/Information/sound.desktop share/applnk/Settings/Information/xserver.desktop share/applnk/Settings/LookNFeel/.directory -share/applnk/Settings/LookNFeel/Desktop/.directory share/applnk/Settings/LookNFeel/Desktop/background.desktop share/applnk/Settings/LookNFeel/Desktop/borders.desktop share/applnk/Settings/LookNFeel/Desktop/desktop.desktop share/applnk/Settings/LookNFeel/Desktop/virtualdesktops.desktop -share/applnk/Settings/LookNFeel/Panel/.directory -share/applnk/Settings/LookNFeel/Themes/.directory share/applnk/Settings/LookNFeel/Themes/iconthemes.desktop share/applnk/Settings/LookNFeel/Themes/style.desktop -share/applnk/Settings/LookNFeel/Windows/.directory share/applnk/Settings/LookNFeel/Windows/actions.desktop -share/applnk/Settings/LookNFeel/Windows/mouse.desktop +share/applnk/Settings/LookNFeel/Windows/kwinmouse.desktop +share/applnk/Settings/LookNFeel/background.desktop share/applnk/Settings/LookNFeel/colors.desktop +share/applnk/Settings/LookNFeel/desktop.desktop share/applnk/Settings/LookNFeel/fonts.desktop share/applnk/Settings/LookNFeel/icons.desktop share/applnk/Settings/LookNFeel/kcmnotify.desktop share/applnk/Settings/LookNFeel/kcmtaskbar.desktop share/applnk/Settings/LookNFeel/keys.desktop +share/applnk/Settings/LookNFeel/kthememgr.desktop +share/applnk/Settings/LookNFeel/kwinoptions.desktop share/applnk/Settings/LookNFeel/panel.desktop share/applnk/Settings/LookNFeel/screensaver.desktop +share/applnk/Settings/LookNFeel/style.desktop +share/applnk/Settings/LookNFeel/virtualdesktops.desktop share/applnk/Settings/Network/.directory -share/applnk/Settings/Network/smb.desktop share/applnk/Settings/Peripherals/.directory share/applnk/Settings/Peripherals/keyboard.desktop share/applnk/Settings/Peripherals/mouse.desktop @@ -370,28 +437,24 @@ share/applnk/Settings/Sound/bell.desktop share/applnk/Settings/Sound/midi.desktop share/applnk/Settings/System/.directory share/applnk/Settings/System/clock.desktop +share/applnk/Settings/System/kcmsmserver.desktop share/applnk/Settings/System/kdm.desktop share/applnk/Settings/WebBrowsing/.directory share/applnk/Settings/WebBrowsing/cookies.desktop share/applnk/Settings/WebBrowsing/ebrowsing.desktop share/applnk/Settings/WebBrowsing/konqhtml.desktop share/applnk/Settings/WebBrowsing/proxy.desktop +share/applnk/Settings/WebBrowsing/smb.desktop share/applnk/Settings/WebBrowsing/useragent.desktop share/applnk/System/.directory -share/applnk/System/Arrange.desktop share/applnk/System/ScreenSavers/.directory -share/applnk/System/ScreenSavers/KAttration.desktop share/applnk/System/ScreenSavers/KBanner.desktop share/applnk/System/ScreenSavers/KBlankscreen.desktop share/applnk/System/ScreenSavers/KBlob.desktop share/applnk/System/ScreenSavers/KBouboule.desktop share/applnk/System/ScreenSavers/KBsod.desktop -share/applnk/System/ScreenSavers/KFlame.desktop -share/applnk/System/ScreenSavers/KForest.desktop share/applnk/System/ScreenSavers/KHop.desktop -share/applnk/System/ScreenSavers/KLaser.desktop share/applnk/System/ScreenSavers/KLines.desktop -share/applnk/System/ScreenSavers/KLissie.desktop share/applnk/System/ScreenSavers/KLorenz.desktop share/applnk/System/ScreenSavers/KMatrix.desktop share/applnk/System/ScreenSavers/KMorph3D.desktop @@ -403,12 +466,14 @@ share/applnk/System/ScreenSavers/KRock.desktop share/applnk/System/ScreenSavers/KScience.desktop share/applnk/System/ScreenSavers/KSlidescreen.desktop share/applnk/System/ScreenSavers/KSlideshow.desktop -share/applnk/System/ScreenSavers/KSlip.desktop share/applnk/System/ScreenSavers/KSpace.desktop share/applnk/System/ScreenSavers/KSwarm.desktop share/applnk/System/ScreenSavers/KVm.desktop +share/applnk/System/ScreenSavers/Worm.desktop share/applnk/System/kappfinder.desktop share/applnk/System/kfmclient.desktop +share/applnk/System/kfmclient_dir.desktop +share/applnk/System/kfmclient_html.desktop share/applnk/System/klegacyimport.desktop share/applnk/System/kmenuedit.desktop share/applnk/System/konquerorsu.desktop @@ -417,15 +482,19 @@ share/applnk/System/konsolesu.desktop share/applnk/System/ksysguard.desktop share/applnk/Toys/.directory share/applnk/Toys/ktip.desktop +share/applnk/Toys/xeyes.desktop share/applnk/Utilities/.directory +share/applnk/Utilities/XUtilities/xcalc.desktop +share/applnk/Utilities/XUtilities/xclipboard.desktop +share/applnk/Utilities/XUtilities/xclock.desktop +share/applnk/Utilities/XUtilities/xconsole.desktop +share/applnk/Utilities/XUtilities/xload.desktop +share/applnk/Utilities/XUtilities/xmag.desktop +share/applnk/Utilities/XUtilities/xterm.desktop share/applnk/Utilities/klipper.desktop share/applnk/Utilities/kpager.desktop -share/applnk/Utilities/passwd.desktop -share/applnk/Utilities/xclipboard.desktop -share/applnk/Utilities/xclock.desktop -share/applnk/Utilities/xconsole.desktop -share/applnk/Utilities/xmag.desktop -share/applnk/Utilities/xterm.desktop +share/applnk/WordProcessing/gv.desktop +share/applnk/WordProcessing/xpdf.desktop share/apps/clockapplet/pics/lcd.png share/apps/drkonqi/debuggers/gdbrc share/apps/drkonqi/pics/konqi.png @@ -443,6 +512,13 @@ share/apps/kappfinder/apps/Editors/lemacs.desktop share/apps/kappfinder/apps/Editors/nedit.desktop share/apps/kappfinder/apps/Editors/xedit.desktop share/apps/kappfinder/apps/Editors/xemacs.desktop +share/apps/kappfinder/apps/Games/.directory +share/apps/kappfinder/apps/Games/Clanbomber.desktop +share/apps/kappfinder/apps/Games/Qmamecat.desktop +share/apps/kappfinder/apps/Games/defendguin.desktop +share/apps/kappfinder/apps/Games/freeciv.desktop +share/apps/kappfinder/apps/Games/penguin-command.desktop +share/apps/kappfinder/apps/Games/xshipwars.desktop share/apps/kappfinder/apps/Graphics/.directory share/apps/kappfinder/apps/Graphics/gimp.desktop share/apps/kappfinder/apps/Graphics/xfig.desktop @@ -451,6 +527,8 @@ share/apps/kappfinder/apps/Graphics/xv.desktop share/apps/kappfinder/apps/Internet/.directory share/apps/kappfinder/apps/Internet/arena.desktop share/apps/kappfinder/apps/Internet/coolmail.desktop +share/apps/kappfinder/apps/Internet/ethereal.desktop +share/apps/kappfinder/apps/Internet/ncftp.desktop share/apps/kappfinder/apps/Internet/netscape.desktop share/apps/kappfinder/apps/Internet/pine.desktop share/apps/kappfinder/apps/Internet/xbiff.desktop @@ -458,7 +536,11 @@ share/apps/kappfinder/apps/Internet/xchat.desktop share/apps/kappfinder/apps/Internet/xfmail.desktop share/apps/kappfinder/apps/Internet/xftp.desktop share/apps/kappfinder/apps/Multimedia/.directory +share/apps/kappfinder/apps/Multimedia/alevt.desktop +share/apps/kappfinder/apps/Multimedia/aviplay.desktop +share/apps/kappfinder/apps/Multimedia/gtv.desktop share/apps/kappfinder/apps/Multimedia/realplayer.desktop +share/apps/kappfinder/apps/Multimedia/xawtv.desktop share/apps/kappfinder/apps/Multimedia/xmms.desktop share/apps/kappfinder/apps/Office/.directory share/apps/kappfinder/apps/Office/Applix.desktop @@ -531,15 +613,14 @@ share/apps/kappfinder/apps/Toys/.directory share/apps/kappfinder/apps/Toys/xeyes.desktop share/apps/kappfinder/apps/Toys/xpinguin.desktop share/apps/kappfinder/apps/Utilities/.directory -share/apps/kappfinder/apps/Utilities/jar.desktop -share/apps/kappfinder/apps/Utilities/passwd.desktop -share/apps/kappfinder/apps/Utilities/xcalc.desktop -share/apps/kappfinder/apps/Utilities/xclipboard.desktop -share/apps/kappfinder/apps/Utilities/xclock.desktop -share/apps/kappfinder/apps/Utilities/xconsole.desktop -share/apps/kappfinder/apps/Utilities/xload.desktop -share/apps/kappfinder/apps/Utilities/xmag.desktop -share/apps/kappfinder/apps/Utilities/xterm.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/.directory +share/apps/kappfinder/apps/Utilities/XUtilities/xcalc.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclipboard.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclock.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xconsole.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xload.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xmag.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xterm.desktop share/apps/kappfinder/apps/WordProcessing/.directory share/apps/kappfinder/apps/WordProcessing/WordPerfect.desktop share/apps/kappfinder/apps/WordProcessing/WordPerfect2000.desktop @@ -547,10 +628,12 @@ share/apps/kappfinder/apps/WordProcessing/acroread.desktop share/apps/kappfinder/apps/WordProcessing/ghostview.desktop share/apps/kappfinder/apps/WordProcessing/gv.desktop share/apps/kappfinder/apps/WordProcessing/lyx.desktop +share/apps/kappfinder/apps/WordProcessing/pybliographic.desktop share/apps/kappfinder/apps/WordProcessing/xdvi.desktop share/apps/kappfinder/apps/WordProcessing/xpdf.desktop share/apps/kbookmark/directory_bookmarkbar.desktop share/apps/kcminput/cursor_large.pcf.gz +share/apps/kcmkeys/standard/Unix.kksrc share/apps/kcmlocale/pics/background.png share/apps/kcontrol/kcontrolui.rc share/apps/kcontrol/pics/energybig.png @@ -560,8 +643,10 @@ share/apps/kcontrol/pics/mini-world.png share/apps/kcontrol/pics/monitor.png share/apps/kcontrol/pics/onlyone.png share/apps/kcontrol/pics/overlapping.png +share/apps/kcontrol/pics/part1.png +share/apps/kcontrol/pics/part2.png +share/apps/kcontrol/pics/part3.png share/apps/kcontrol/pics/play.png -share/apps/kcontrol/pics/wizard.png share/apps/kdcop/kdcopui.rc share/apps/kdesktop/DesktopLinks/Home.desktop share/apps/kdesktop/directory.autostart @@ -586,8 +671,10 @@ share/apps/kdesktop/pics/kde2.xbm share/apps/kdesktop/pics/ksslogo.png share/apps/kdesktop/pics/splash.png share/apps/kdesktop/pics/splash2.png +share/apps/kdesktop/programs/kwebdesktop.desktop share/apps/kdesktop/programs/xearth.desktop share/apps/kdesktop/programs/xglobe.desktop +share/apps/kdesktop/programs/xplanet.desktop share/apps/kdewizard/pics/wizard_small.png share/apps/kdewizard/tips share/apps/kdisplay/app-defaults/AAAAAAGeneral.ad @@ -605,6 +692,8 @@ share/apps/kdisplay/app-defaults/XCalc.ad share/apps/kdisplay/app-defaults/XOsview.ad share/apps/kdisplay/app-defaults/XTerm.ad share/apps/kdisplay/app-defaults/XV.ad +share/apps/kdisplay/app-defaults/Xawtv.ad +share/apps/kdisplay/app-defaults/Xpdf.ad share/apps/kdisplay/color-schemes/AtlasGreen.kcsrc share/apps/kdisplay/color-schemes/BeOS.kcsrc share/apps/kdisplay/color-schemes/BlueSlate.kcsrc @@ -627,15 +716,21 @@ share/apps/kdm/pics/users/default.png share/apps/kdm/pics/users/default2.png share/apps/kdm/pics/users/root.png share/apps/kdm/pics/users/root2.png +share/apps/keditbookmarks/keditbookmarksui.rc +share/apps/kfind/icons/locolor/22x22/actions/archive.png +share/apps/kfind/icons/locolor/22x22/actions/delete.png +share/apps/kfind/icons/locolor/22x22/actions/idea.png +share/apps/kfind/icons/locolor/22x22/actions/info.png +share/apps/kfind/icons/locolor/22x22/actions/openfile.png +share/apps/kfind/icons/locolor/22x22/actions/save.png +share/apps/kfind/icons/locolor/22x22/actions/search.png share/apps/khelpcenter/en/bad_words share/apps/khelpcenter/en/long.html share/apps/khelpcenter/en/nomatch.html share/apps/khelpcenter/en/short.html share/apps/khelpcenter/en/syntax.html share/apps/khelpcenter/en/wrapper.html -share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook.png share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook_open.png -share/apps/khelpcenter/icons/locolor/16x16/apps/helpdoc.png share/apps/khelpcenter/pics/checked.xpm share/apps/khelpcenter/pics/star.png share/apps/khelpcenter/pics/star_blank.png @@ -646,9 +741,16 @@ share/apps/khelpcenter/plugins/Tutorials/visualdict.desktop share/apps/kicker/applets/clockapplet.desktop share/apps/kicker/applets/kminipagerapplet.desktop share/apps/kicker/applets/krunapplet.desktop +share/apps/kicker/applets/ksysguardapplet.desktop share/apps/kicker/applets/ksystemtrayapplet.desktop share/apps/kicker/applets/ktaskbarapplet.desktop +share/apps/kicker/applets/naughtyapplet.desktop share/apps/kicker/applets/quicklauncher.desktop +share/apps/kicker/extensions/childpanelextension.desktop +share/apps/kicker/extensions/dockbarextension.desktop +share/apps/kicker/extensions/kasbarextension.desktop +share/apps/kicker/extensions/taskbarextension.desktop +share/apps/kicker/icons/hicolor/16x16/actions/modified.png share/apps/kicker/icons/locolor/16x16/actions/modified.png share/apps/kicker/pics/disk1.png share/apps/kicker/pics/disk2.png @@ -761,6 +863,8 @@ share/apps/kicker/tiles/solid_tgri_tiny_up.png share/apps/kicker/wallpapers/deck_plate.png share/apps/kicker/wallpapers/green_line.png share/apps/kicker/wallpapers/rail.png +share/apps/kio_finger/kio_finger.css +share/apps/kio_finger/kio_finger.pl share/apps/kio_info/kde-info2html share/apps/kio_info/kde-info2html.conf share/apps/kmenuedit/icons/hicolor/22x22/actions/menu_new.png @@ -769,17 +873,46 @@ share/apps/kmenuedit/icons/locolor/16x16/actions/menu_new.png share/apps/kmenuedit/kmenueditui.rc share/apps/konqiconview/konq_iconview.rc share/apps/konqiconview/konq_multicolumnview.rc +share/apps/konqiconview/kpartplugins/kshellcmdplugin.rc share/apps/konqlistview/konq_detailedlistview.rc share/apps/konqlistview/konq_textview.rc share/apps/konqlistview/konq_treeview.rc +share/apps/konqlistview/kpartplugins/kshellcmdplugin.rc +share/apps/konqueror/about/back.png +share/apps/konqueror/about/background.png +share/apps/konqueror/about/bgtable.png +share/apps/konqueror/about/gohome.png +share/apps/konqueror/about/history.png +share/apps/konqueror/about/intro.html +share/apps/konqueror/about/kdelogo2.png +share/apps/konqueror/about/konq.css +share/apps/konqueror/about/konqueror.png +share/apps/konqueror/about/lines.png +share/apps/konqueror/about/lines2.png +share/apps/konqueror/about/locationbar_erase.png +share/apps/konqueror/about/more.png +share/apps/konqueror/about/openterm.png +share/apps/konqueror/about/pointers.gif +share/apps/konqueror/about/shadow1.png +share/apps/konqueror/about/specs.html +share/apps/konqueror/about/tips.html +share/apps/konqueror/about/view_left_right.png +share/apps/konqueror/about/viewmag.png +share/apps/konqueror/about/window_fullscreen.png +share/apps/konqueror/dirtree/bookmarks.desktop +share/apps/konqueror/dirtree/history.desktop share/apps/konqueror/dirtree/home.desktop share/apps/konqueror/dirtree/remote/.directory share/apps/konqueror/dirtree/remote/ftp/.directory share/apps/konqueror/dirtree/remote/ftp/kde_ftp.desktop share/apps/konqueror/dirtree/remote/web/.directory share/apps/konqueror/dirtree/remote/web/kde_web.desktop -share/apps/konqueror/dirtree/remote/windows.desktop share/apps/konqueror/dirtree/root.desktop +share/apps/konqueror/icons/hicolor/16x16/actions/remove_view.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_bottom.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_left_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_top_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/remove_view.png share/apps/konqueror/icons/hicolor/22x22/actions/view_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/view_left_right.png @@ -796,7 +929,6 @@ share/apps/konqueror/icons/locolor/16x16/actions/kde3.png share/apps/konqueror/icons/locolor/16x16/actions/kde4.png share/apps/konqueror/icons/locolor/16x16/actions/kde5.png share/apps/konqueror/icons/locolor/16x16/actions/kde6.png -share/apps/konqueror/icons/locolor/16x16/actions/locationbar_erase.png share/apps/konqueror/icons/locolor/16x16/actions/remove_view.png share/apps/konqueror/icons/locolor/16x16/actions/view_bottom.png share/apps/konqueror/icons/locolor/16x16/actions/view_left_right.png @@ -808,13 +940,17 @@ share/apps/konqueror/pics/indicator_connect.png share/apps/konqueror/pics/indicator_empty.png share/apps/konqueror/pics/indicator_noconnect.png share/apps/konqueror/pics/indicator_viewactive.png +share/apps/konqueror/pics/thumbnailfont_7x4.png share/apps/konqueror/profiles/filemanagement +share/apps/konqueror/profiles/filepreview +share/apps/konqueror/profiles/midnightcommander share/apps/konqueror/profiles/webbrowsing share/apps/konqueror/tiles/bluemorning.png share/apps/konqueror/tiles/canvas.png share/apps/konqueror/tiles/checker.png share/apps/konqueror/tiles/cubic.png share/apps/konqueror/tiles/kde4ever.png +share/apps/konqueror/tiles/kenwimer.png share/apps/konqueror/tiles/noise.png share/apps/konqueror/tiles/paper_flieder.png share/apps/konqueror/tiles/punika_attack.png @@ -850,12 +986,18 @@ share/apps/konsole/syscolor.schema share/apps/konsole/vim.schema share/apps/konsole/vt100.keytab share/apps/konsole/vt420pc.keytab +share/apps/konsole/x11r5.keytab share/apps/kscreensaver/kscience-small.gif share/apps/kscreensaver/kscience.gif +share/apps/ksplash/pics/locolor/splash_active_bar.png +share/apps/ksplash/pics/locolor/splash_bottom.png +share/apps/ksplash/pics/locolor/splash_inactive_bar.png +share/apps/ksplash/pics/locolor/splash_top.png share/apps/ksplash/pics/splash_active_bar.png share/apps/ksplash/pics/splash_bottom.png share/apps/ksplash/pics/splash_inactive_bar.png share/apps/ksplash/pics/splash_top.png +share/apps/ksysguard/KSysGuardApplet.xml share/apps/ksysguard/ProcessTable.sgrd share/apps/ksysguard/SystemLoad.sgrd share/apps/ksysguard/icons/locolor/16x16/apps/X.png @@ -906,6 +1048,13 @@ share/apps/ksysguard/icons/locolor/16x16/apps/xntpd.png share/apps/ksysguard/icons/locolor/16x16/apps/xterm.png share/apps/ksysguard/icons/locolor/16x16/apps/ypbind.png share/apps/ksysguard/ksysguardui.rc +share/apps/kthememgr/Themes/Default.ktheme +share/apps/kthememgr/Themes/Eclipse.ktheme +share/apps/kthememgr/Themes/MGBreizh.ktheme +share/apps/kthememgr/Themes/Nostalgy.ktheme +share/apps/kthememgr/Themes/Template.themerc +share/apps/kthememgr/Themes/Wood.ktheme +share/apps/kthememgr/theme.mappings share/apps/kwin/b2.desktop share/apps/kwin/eventsrc share/apps/kwin/kde.desktop @@ -928,12 +1077,19 @@ share/apps/kwin/pics/pinup.png share/apps/kwin/pics/unknown.png share/apps/kwin/riscos.desktop share/apps/kwin/system.desktop +share/apps/kwin/win2k.desktop share/apps/kwrite/kwrite_browser.rc share/apps/kwrite/kwrite_shell.rc share/apps/kwrite/kwriteui.rc -share/apps/quickbrowser/Home.desktop -share/apps/quickbrowser/KDE.desktop -share/apps/quickbrowser/Root.desktop +share/apps/kwrite/syntax.xml +share/apps/naughtyapplet/pics/naughty-happy.png +share/apps/naughtyapplet/pics/naughty-sad.png +share/autostart/kdesktop.desktop +share/autostart/khotkeys.desktop +share/autostart/klipper.desktop +share/autostart/ktip.desktop +share/autostart/kwrited.desktop +share/autostart/panel.desktop share/config/antrc share/config/attractionrc share/config/bouboulerc @@ -955,6 +1111,8 @@ share/config/gravrc share/config/halorc share/config/imsmaprc share/config/interferencerc +share/config/kdesktop_custom_menu1 +share/config/kdesktop_custom_menu2 share/config/kdmrc share/config/klipperrc share/config/konsolerc @@ -991,12 +1149,9 @@ share/doc/HTML/en/kcontrol/email.html share/doc/HTML/en/kcontrol/energy.html share/doc/HTML/en/kcontrol/file-assoc.html share/doc/HTML/en/kcontrol/file-manager.html -share/doc/HTML/en/kcontrol/kfileman1.png -share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/fonts.html share/doc/HTML/en/kcontrol/help-index.html share/doc/HTML/en/kcontrol/icons.html -share/doc/HTML/en/kcontrol/iconstyle.html share/doc/HTML/en/kcontrol/index.docbook share/doc/HTML/en/kcontrol/index.html share/doc/HTML/en/kcontrol/interrupts.html @@ -1034,7 +1189,6 @@ share/doc/HTML/en/kcontrol/kcmkbd.docbook share/doc/HTML/en/kcontrol/kcmkblayout.docbook share/doc/HTML/en/kcontrol/kcmkbrowse.docbook share/doc/HTML/en/kcontrol/kcmkeybind.docbook -share/doc/HTML/en/kcontrol/kcmkeys.docbook share/doc/HTML/en/kcontrol/kcmlocate.docbook share/doc/HTML/en/kcontrol/kcmloginmanage.docbook share/doc/HTML/en/kcontrol/kcmlowbatcrit.docbook @@ -1044,6 +1198,7 @@ share/doc/HTML/en/kcontrol/kcmmidi.docbook share/doc/HTML/en/kcontrol/kcmmixer.docbook share/doc/HTML/en/kcontrol/kcmmouse.docbook share/doc/HTML/en/kcontrol/kcmmousebeh.docbook +share/doc/HTML/en/kcontrol/kcmnetscapeplugins.docbook share/doc/HTML/en/kcontrol/kcmnumbername.docbook share/doc/HTML/en/kcontrol/kcmpanel.docbook share/doc/HTML/en/kcontrol/kcmpartitioninfo.docbook @@ -1055,6 +1210,7 @@ share/doc/HTML/en/kcontrol/kcmprocinfo.docbook share/doc/HTML/en/kcontrol/kcmproxie.docbook share/doc/HTML/en/kcontrol/kcmscnsave.docbook share/doc/HTML/en/kcontrol/kcmscsiinfo.docbook +share/doc/HTML/en/kcontrol/kcmsessionman.docbook share/doc/HTML/en/kcontrol/kcmsmbstat.docbook share/doc/HTML/en/kcontrol/kcmsndinfo.docbook share/doc/HTML/en/kcontrol/kcmsndsrv.docbook @@ -1066,6 +1222,8 @@ share/doc/HTML/en/kcontrol/kcmuseragent.docbook share/doc/HTML/en/kcontrol/kcmwinshare.docbook share/doc/HTML/en/kcontrol/kcmxservinfo.docbook share/doc/HTML/en/kcontrol/key-bindings.html +share/doc/HTML/en/kcontrol/kfileman1.png +share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/konq-browsing.html share/doc/HTML/en/kcontrol/laptop.html share/doc/HTML/en/kcontrol/locale.html @@ -1079,7 +1237,7 @@ share/doc/HTML/en/kcontrol/module.html share/doc/HTML/en/kcontrol/modules.html share/doc/HTML/en/kcontrol/mouse-behav.html share/doc/HTML/en/kcontrol/mouse.html -share/doc/HTML/en/kcontrol/numbername.html +share/doc/HTML/en/kcontrol/nsplugins.html share/doc/HTML/en/kcontrol/panel.html share/doc/HTML/en/kcontrol/partitions.html share/doc/HTML/en/kcontrol/passwords.html @@ -1092,11 +1250,11 @@ share/doc/HTML/en/kcontrol/sambastatus.html share/doc/HTML/en/kcontrol/screensaver.html share/doc/HTML/en/kcontrol/screenshot.png share/doc/HTML/en/kcontrol/scsi.html +share/doc/HTML/en/kcontrol/sessions.html share/doc/HTML/en/kcontrol/sndserver.html share/doc/HTML/en/kcontrol/soundinfo.html share/doc/HTML/en/kcontrol/style.html share/doc/HTML/en/kcontrol/sys-notify.html -share/doc/HTML/en/kcontrol/talk.html share/doc/HTML/en/kcontrol/taskbar.html share/doc/HTML/en/kcontrol/user-agent.html share/doc/HTML/en/kcontrol/windows-shares.html @@ -1135,6 +1293,8 @@ share/doc/HTML/en/kdm/lilo.html share/doc/HTML/en/kdm/locale.html share/doc/HTML/en/kdm/other-information.html share/doc/HTML/en/khelpcenter/.anchors +share/doc/HTML/en/khelpcenter/background.png +share/doc/HTML/en/khelpcenter/bgtable.png share/doc/HTML/en/khelpcenter/common share/doc/HTML/en/khelpcenter/contact-developers.html share/doc/HTML/en/khelpcenter/contact-more-information.html @@ -1144,16 +1304,6 @@ share/doc/HTML/en/khelpcenter/contact.docbook share/doc/HTML/en/khelpcenter/credits.html share/doc/HTML/en/khelpcenter/faq/.anchors share/doc/HTML/en/khelpcenter/faq/TODO -share/doc/HTML/en/khelpcenter/faq/index.docbook -share/doc/HTML/en/khelpcenter/faq/index.html -share/doc/HTML/en/khelpcenter/help-system-user-manual.html -share/doc/HTML/en/khelpcenter/help.docbook -share/doc/HTML/en/khelpcenter/index.docbook -share/doc/HTML/en/khelpcenter/index.html -share/doc/HTML/en/khelpcenter/interface-basics.html -share/doc/HTML/en/khelpcenter/invoking-help.html -share/doc/HTML/en/khelpcenter/links.docbook -share/doc/HTML/en/khelpcenter/no-html.html share/doc/HTML/en/khelpcenter/faq/about.html share/doc/HTML/en/khelpcenter/faq/applications.html share/doc/HTML/en/khelpcenter/faq/common @@ -1163,6 +1313,8 @@ share/doc/HTML/en/khelpcenter/faq/credits.html share/doc/HTML/en/khelpcenter/faq/desktop.html share/doc/HTML/en/khelpcenter/faq/filemanager.html share/doc/HTML/en/khelpcenter/faq/getting-kde.html +share/doc/HTML/en/khelpcenter/faq/index.docbook +share/doc/HTML/en/khelpcenter/faq/index.html share/doc/HTML/en/khelpcenter/faq/install.html share/doc/HTML/en/khelpcenter/faq/introduction.html share/doc/HTML/en/khelpcenter/faq/misc.html @@ -1172,6 +1324,21 @@ share/doc/HTML/en/khelpcenter/faq/not-kde.html share/doc/HTML/en/khelpcenter/faq/panel.html share/doc/HTML/en/khelpcenter/faq/tips.html share/doc/HTML/en/khelpcenter/faq/windowmanager.html +share/doc/HTML/en/khelpcenter/help-system-user-manual.html +share/doc/HTML/en/khelpcenter/help.docbook +share/doc/HTML/en/khelpcenter/index.docbook +share/doc/HTML/en/khelpcenter/index.html +share/doc/HTML/en/khelpcenter/interface-basics.html +share/doc/HTML/en/khelpcenter/invoking-help.html +share/doc/HTML/en/khelpcenter/kdelogo2.png +share/doc/HTML/en/khelpcenter/khelpcenter.png +share/doc/HTML/en/khelpcenter/konq.css +share/doc/HTML/en/khelpcenter/lines.png +share/doc/HTML/en/khelpcenter/lines2.png +share/doc/HTML/en/khelpcenter/links.docbook +share/doc/HTML/en/khelpcenter/main.html +share/doc/HTML/en/khelpcenter/no-html.html +share/doc/HTML/en/khelpcenter/pointers.png share/doc/HTML/en/khelpcenter/quickstart/.anchors share/doc/HTML/en/khelpcenter/quickstart/advanced-topics.html share/doc/HTML/en/khelpcenter/quickstart/an-overview-of-kde.html @@ -1193,6 +1360,7 @@ share/doc/HTML/en/khelpcenter/quickstart/using-templates.html share/doc/HTML/en/khelpcenter/quickstart/using-v-desktops.html share/doc/HTML/en/khelpcenter/quickstart/want-command-line-back.html share/doc/HTML/en/khelpcenter/quickstart/working-with-windows.html +share/doc/HTML/en/khelpcenter/shadow1.png share/doc/HTML/en/khelpcenter/support.docbook share/doc/HTML/en/khelpcenter/supporting-kde-financial-support.html share/doc/HTML/en/khelpcenter/supporting-kde-get-started.html @@ -1276,44 +1444,48 @@ share/doc/HTML/en/khelpcenter/what-is-kde-the-office-suite.html share/doc/HTML/en/khelpcenter/what-is-kde.html share/doc/HTML/en/khelpcenter/whatiskde.docbook share/doc/HTML/en/kicker/.anchors -share/doc/HTML/en/kicker/access_config.png -share/doc/HTML/en/kicker/basic_icons.png -share/doc/HTML/en/kicker/button-preferences.html +share/doc/HTML/en/kicker/applets.html +share/doc/HTML/en/kicker/application-group.html +share/doc/HTML/en/kicker/basics.html +share/doc/HTML/en/kicker/browsers.html +share/doc/HTML/en/kicker/child-panel-extension.html +share/doc/HTML/en/kicker/clock-applet.html +share/doc/HTML/en/kicker/commands.html share/doc/HTML/en/kicker/common -share/doc/HTML/en/kicker/config_window.png -share/doc/HTML/en/kicker/configuration-adding-icons.html -share/doc/HTML/en/kicker/configuration-config-window.html +share/doc/HTML/en/kicker/compilation.html share/doc/HTML/en/kicker/configuration.html +share/doc/HTML/en/kicker/configuring-apps.html +share/doc/HTML/en/kicker/configuring.html share/doc/HTML/en/kicker/credits.html -share/doc/HTML/en/kicker/drag-and-drop.html -share/doc/HTML/en/kicker/drag_applet.png -share/doc/HTML/en/kicker/five-minute-course.html -share/doc/HTML/en/kicker/glossary.html -share/doc/HTML/en/kicker/handles.png -share/doc/HTML/en/kicker/hide_buttons.png -share/doc/HTML/en/kicker/i_adv_editor.png -share/doc/HTML/en/kicker/i_control_center.png -share/doc/HTML/en/kicker/i_desktop.png -share/doc/HTML/en/kicker/i_help.png -share/doc/HTML/en/kicker/i_home_dir.png -share/doc/HTML/en/kicker/i_k_button.png -share/doc/HTML/en/kicker/i_kandalfs_tips.png -share/doc/HTML/en/kicker/i_shell.png -share/doc/HTML/en/kicker/i_window_list.png +share/doc/HTML/en/kicker/dock-application-bar-extension.html +share/doc/HTML/en/kicker/extensions.html +share/doc/HTML/en/kicker/faq.html share/doc/HTML/en/kicker/index.docbook share/doc/HTML/en/kicker/index.html share/doc/HTML/en/kicker/installation.html share/doc/HTML/en/kicker/introduction.html -share/doc/HTML/en/kicker/kicker-for-admins-symbolic-links.html -share/doc/HTML/en/kicker/kicker-for-admins.html -share/doc/HTML/en/kicker/kicker-panel-elements.html -share/doc/HTML/en/kicker/kicker_access_size.png -share/doc/HTML/en/kicker/kicker_add_basic.png -share/doc/HTML/en/kicker/kicker_basic_icons.png -share/doc/HTML/en/kicker/kicker_basic_icons_2.png -share/doc/HTML/en/kicker/other-features.html -share/doc/HTML/en/kicker/qb_root.png +share/doc/HTML/en/kicker/k-menu.html +share/doc/HTML/en/kicker/k_menu_icon.png +share/doc/HTML/en/kicker/kasbar-extension.html +share/doc/HTML/en/kicker/kfind-advanced.html +share/doc/HTML/en/kicker/kfind-date-range.html +share/doc/HTML/en/kicker/kfind.html +share/doc/HTML/en/kicker/launcher-applet.html +share/doc/HTML/en/kicker/most-recently-group.html +share/doc/HTML/en/kicker/naughty-applet.html +share/doc/HTML/en/kicker/pager-applet.html +share/doc/HTML/en/kicker/panel-applets.html +share/doc/HTML/en/kicker/panel-buttons.html +share/doc/HTML/en/kicker/panel-looknfeel.html +share/doc/HTML/en/kicker/panel-menus.html +share/doc/HTML/en/kicker/requirements.html +share/doc/HTML/en/kicker/run-applet.html +share/doc/HTML/en/kicker/run-command.html +share/doc/HTML/en/kicker/screenshot_left.png +share/doc/HTML/en/kicker/screenshot_right.png +share/doc/HTML/en/kicker/systemtray-applet.html share/doc/HTML/en/kicker/using-kicker.html +share/doc/HTML/en/kicker/windowlist_icon.png share/doc/HTML/en/klipper/.anchors share/doc/HTML/en/klipper/actions.html share/doc/HTML/en/klipper/common @@ -1329,6 +1501,7 @@ share/doc/HTML/en/klipper/screenshot.png share/doc/HTML/en/klipper/using-klipper.html share/doc/HTML/en/kmenuedit/.anchors share/doc/HTML/en/kmenuedit/common +share/doc/HTML/en/kmenuedit/compilation.html share/doc/HTML/en/kmenuedit/credits.html share/doc/HTML/en/kmenuedit/details-advanced.html share/doc/HTML/en/kmenuedit/glossary.html @@ -1343,30 +1516,33 @@ share/doc/HTML/en/kmenuedit/icon_sets.png share/doc/HTML/en/kmenuedit/icons.png share/doc/HTML/en/kmenuedit/index.docbook share/doc/HTML/en/kmenuedit/index.html +share/doc/HTML/en/kmenuedit/installation.html share/doc/HTML/en/kmenuedit/introduction.html share/doc/HTML/en/kmenuedit/menu-reference.html share/doc/HTML/en/kmenuedit/using-kmenuedit.html share/doc/HTML/en/konqueror/.anchors -share/doc/HTML/en/konqueror/autocomplete.html share/doc/HTML/en/konqueror/basics.html share/doc/HTML/en/konqueror/bookmarks.html share/doc/HTML/en/konqueror/browser.html share/doc/HTML/en/konqueror/bubble.html -share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/cmndline.png share/doc/HTML/en/konqueror/commandline.html share/doc/HTML/en/konqueror/commands.html -share/doc/HTML/en/konqueror/config-prox.html +share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/config.html -share/doc/HTML/en/konqueror/configure-bars.html -share/doc/HTML/en/konqueror/cook.html +share/doc/HTML/en/konqueror/configfm.html +share/doc/HTML/en/konqueror/configure-browser.html +share/doc/HTML/en/konqueror/configure-enhanced-browsing.html +share/doc/HTML/en/konqueror/configure-proxy.html +share/doc/HTML/en/konqueror/configure-user-agent.html +share/doc/HTML/en/konqueror/cookies.html share/doc/HTML/en/konqueror/credits.html share/doc/HTML/en/konqueror/crypto.html share/doc/HTML/en/konqueror/deleting.html share/doc/HTML/en/konqueror/dirtree.png share/doc/HTML/en/konqueror/dragdrop.png share/doc/HTML/en/konqueror/faq.html -share/doc/HTML/en/konqueror/fileassoc.html +share/doc/HTML/en/konqueror/file-associations.html share/doc/HTML/en/konqueror/filemanager.html share/doc/HTML/en/konqueror/filetype1.png share/doc/HTML/en/konqueror/filetype3.png @@ -1375,23 +1551,20 @@ share/doc/HTML/en/konqueror/ftp.html share/doc/HTML/en/konqueror/index.docbook share/doc/HTML/en/konqueror/index.html share/doc/HTML/en/konqueror/installation.html -share/doc/HTML/en/konqueror/introduction.html share/doc/HTML/en/konqueror/konqorg.png -share/doc/HTML/en/konqueror/lmbmmb.html +share/doc/HTML/en/konqueror/lmb-mmb.html share/doc/HTML/en/konqueror/making.html -share/doc/HTML/en/konqueror/miscbrowser.html +share/doc/HTML/en/konqueror/man-info.html share/doc/HTML/en/konqueror/moving.html share/doc/HTML/en/konqueror/multiple.html share/doc/HTML/en/konqueror/newname.html -share/doc/HTML/en/konqueror/optionalbrowser.html share/doc/HTML/en/konqueror/parts.html share/doc/HTML/en/konqueror/parts.png share/doc/HTML/en/konqueror/plugin.html share/doc/HTML/en/konqueror/rmb-menus.html -share/doc/HTML/en/konqueror/samba.html share/doc/HTML/en/konqueror/samba.png share/doc/HTML/en/konqueror/save-print-web.html -share/doc/HTML/en/konqueror/saveset.html +share/doc/HTML/en/konqueror/save-settings.html share/doc/HTML/en/konqueror/surf.html share/doc/HTML/en/konsole/.anchors share/doc/HTML/en/konsole/command-line-options.html @@ -1447,6 +1620,7 @@ share/doc/HTML/en/kwrite/go.html share/doc/HTML/en/kwrite/help.html share/doc/HTML/en/kwrite/index.docbook share/doc/HTML/en/kwrite/index.html +share/doc/HTML/en/kwrite/installation.html share/doc/HTML/en/kwrite/introduction.html share/doc/HTML/en/kwrite/keybindings.html share/doc/HTML/en/kwrite/on-screen-fundamentals.html @@ -1465,6 +1639,66 @@ share/fonts/console8x16.pcf.gz share/fonts/console8x8.pcf.gz share/fonts/fonts.dir share/fonts/override/fonts.dir +share/icons/hicolor/16x16/apps/background.png +share/icons/hicolor/16x16/apps/bell.png +share/icons/hicolor/16x16/apps/cookie.png +share/icons/hicolor/16x16/apps/email.png +share/icons/hicolor/16x16/apps/energy.png +share/icons/hicolor/16x16/apps/enhanced_browsing.png +share/icons/hicolor/16x16/apps/go.png +share/icons/hicolor/16x16/apps/hwinfo.png +share/icons/hicolor/16x16/apps/input_devices_settings.png +share/icons/hicolor/16x16/apps/kappfinder.png +share/icons/hicolor/16x16/apps/kcmkwm.png +share/icons/hicolor/16x16/apps/kcmsystem.png +share/icons/hicolor/16x16/apps/kcontrol.png +share/icons/hicolor/16x16/apps/kdisknav.png +share/icons/hicolor/16x16/apps/keditbookmarks.png +share/icons/hicolor/16x16/apps/kfm.png +share/icons/hicolor/16x16/apps/kfm_home.png +share/icons/hicolor/16x16/apps/khelpcenter.png +share/icons/hicolor/16x16/apps/klipper.png +share/icons/hicolor/16x16/apps/konqueror.png +share/icons/hicolor/16x16/apps/konsole.png +share/icons/hicolor/16x16/apps/kscreensaver.png +share/icons/hicolor/16x16/apps/ksysguard.png +share/icons/hicolor/16x16/apps/ktip.png +share/icons/hicolor/16x16/apps/kwrite.png +share/icons/hicolor/16x16/apps/locale.png +share/icons/hicolor/16x16/apps/looknfeel.png +share/icons/hicolor/16x16/apps/multimedia.png +share/icons/hicolor/16x16/apps/netscape.png +share/icons/hicolor/16x16/apps/package_applications.png +share/icons/hicolor/16x16/apps/package_development.png +share/icons/hicolor/16x16/apps/package_editors.png +share/icons/hicolor/16x16/apps/package_graphics.png +share/icons/hicolor/16x16/apps/package_multimedia.png +share/icons/hicolor/16x16/apps/package_network.png +share/icons/hicolor/16x16/apps/package_settings.png +share/icons/hicolor/16x16/apps/package_system.png +share/icons/hicolor/16x16/apps/package_toys.png +share/icons/hicolor/16x16/apps/package_utilities.png +share/icons/hicolor/16x16/apps/package_wordprocessing.png +share/icons/hicolor/16x16/apps/realplayer.png +share/icons/hicolor/16x16/apps/remote.png +share/icons/hicolor/16x16/apps/samba.png +share/icons/hicolor/16x16/apps/style.png +share/icons/hicolor/16x16/apps/window_list.png +share/icons/hicolor/16x16/devices/3floppy_mount.png +share/icons/hicolor/16x16/devices/3floppy_unmount.png +share/icons/hicolor/16x16/devices/cdaudio_mount.png +share/icons/hicolor/16x16/devices/cdaudio_unmount.png +share/icons/hicolor/16x16/devices/cdrom_mount.png +share/icons/hicolor/16x16/devices/cdrom_unmount.png +share/icons/hicolor/16x16/devices/dvd_mount.png +share/icons/hicolor/16x16/devices/dvd_unmount.png +share/icons/hicolor/16x16/devices/hdd_mount.png +share/icons/hicolor/16x16/devices/hdd_unmount.png +share/icons/hicolor/16x16/devices/nfs_mount.png +share/icons/hicolor/16x16/devices/nfs_unmount.png +share/icons/hicolor/16x16/devices/printer1.png +share/icons/hicolor/16x16/filesystems/file_important.png +share/icons/hicolor/16x16/filesystems/folder_important.png share/icons/hicolor/22x22/actions/view_choose.png share/icons/hicolor/22x22/actions/view_detailed.png share/icons/hicolor/22x22/actions/view_icon.png @@ -1478,11 +1712,13 @@ share/icons/hicolor/32x32/actions/view_multicolumn.png share/icons/hicolor/32x32/actions/view_text.png share/icons/hicolor/32x32/actions/view_tree.png share/icons/hicolor/32x32/apps/access.png +share/icons/hicolor/32x32/apps/acroread.png share/icons/hicolor/32x32/apps/agent.png share/icons/hicolor/32x32/apps/bell.png -share/icons/hicolor/32x32/apps/buttons.png +share/icons/hicolor/32x32/apps/blender.png share/icons/hicolor/32x32/apps/clock.png share/icons/hicolor/32x32/apps/colors.png +share/icons/hicolor/32x32/apps/cookie.png share/icons/hicolor/32x32/apps/date.png share/icons/hicolor/32x32/apps/designer.png share/icons/hicolor/32x32/apps/emacs.png @@ -1512,6 +1748,7 @@ share/icons/hicolor/32x32/apps/kcmx.png share/icons/hicolor/32x32/apps/kcontrol.png share/icons/hicolor/32x32/apps/kdisknav.png share/icons/hicolor/32x32/apps/kdmconfig.png +share/icons/hicolor/32x32/apps/keditbookmarks.png share/icons/hicolor/32x32/apps/key_bindings.png share/icons/hicolor/32x32/apps/keyboard_layout.png share/icons/hicolor/32x32/apps/kfm.png @@ -1544,15 +1781,18 @@ share/icons/hicolor/32x32/apps/package_multimedia.png share/icons/hicolor/32x32/apps/package_network.png share/icons/hicolor/32x32/apps/package_settings.png share/icons/hicolor/32x32/apps/package_system.png +share/icons/hicolor/32x32/apps/package_toys.png share/icons/hicolor/32x32/apps/package_utilities.png +share/icons/hicolor/32x32/apps/package_wordprocessing.png share/icons/hicolor/32x32/apps/password.png share/icons/hicolor/32x32/apps/proxy.png +share/icons/hicolor/32x32/apps/realplayer.png share/icons/hicolor/32x32/apps/style.png share/icons/hicolor/32x32/apps/terminal.png -share/icons/hicolor/32x32/apps/titlebar.png share/icons/hicolor/32x32/apps/window_list.png share/icons/hicolor/32x32/apps/winprops.png share/icons/hicolor/32x32/apps/xapp.png +share/icons/hicolor/32x32/apps/xawtv.png share/icons/hicolor/32x32/apps/xedit.png share/icons/hicolor/32x32/apps/xemacs.png share/icons/hicolor/32x32/apps/xmag.png @@ -1574,16 +1814,20 @@ share/icons/hicolor/32x32/devices/hdd_unmount.png share/icons/hicolor/32x32/devices/memory.png share/icons/hicolor/32x32/devices/mo_mount.png share/icons/hicolor/32x32/devices/mo_unmount.png +share/icons/hicolor/32x32/devices/nfs_mount.png +share/icons/hicolor/32x32/devices/nfs_unmount.png share/icons/hicolor/32x32/devices/printer1.png share/icons/hicolor/32x32/devices/printer2.png share/icons/hicolor/32x32/devices/scanner.png share/icons/hicolor/32x32/devices/tablet.png share/icons/hicolor/32x32/devices/zip_mount.png share/icons/hicolor/32x32/devices/zip_unmount.png +share/icons/hicolor/32x32/filesystems/file_important.png +share/icons/hicolor/32x32/filesystems/folder_important.png share/icons/hicolor/48x48/apps/access.png share/icons/hicolor/48x48/apps/agent.png share/icons/hicolor/48x48/apps/bell.png -share/icons/hicolor/48x48/apps/buttons.png +share/icons/hicolor/48x48/apps/blender.png share/icons/hicolor/48x48/apps/clock.png share/icons/hicolor/48x48/apps/colors.png share/icons/hicolor/48x48/apps/cookie.png @@ -1649,12 +1893,15 @@ share/icons/hicolor/48x48/apps/package_multimedia.png share/icons/hicolor/48x48/apps/package_network.png share/icons/hicolor/48x48/apps/package_settings.png share/icons/hicolor/48x48/apps/package_system.png +share/icons/hicolor/48x48/apps/package_toys.png share/icons/hicolor/48x48/apps/package_utilities.png +share/icons/hicolor/48x48/apps/package_wordprocessing.png share/icons/hicolor/48x48/apps/password.png share/icons/hicolor/48x48/apps/proxy.png +share/icons/hicolor/48x48/apps/remote.png +share/icons/hicolor/48x48/apps/samba.png share/icons/hicolor/48x48/apps/style.png share/icons/hicolor/48x48/apps/terminal.png -share/icons/hicolor/48x48/apps/titlebar.png share/icons/hicolor/48x48/apps/window_list.png share/icons/hicolor/48x48/apps/winprops.png share/icons/hicolor/48x48/apps/xedit.png @@ -1678,12 +1925,17 @@ share/icons/hicolor/48x48/devices/hdd_unmount.png share/icons/hicolor/48x48/devices/memory.png share/icons/hicolor/48x48/devices/mo_mount.png share/icons/hicolor/48x48/devices/mo_unmount.png +share/icons/hicolor/48x48/devices/nfs_mount.png +share/icons/hicolor/48x48/devices/nfs_unmount.png share/icons/hicolor/48x48/devices/printer1.png share/icons/hicolor/48x48/devices/printer2.png share/icons/hicolor/48x48/devices/scanner.png share/icons/hicolor/48x48/devices/tablet.png share/icons/hicolor/48x48/devices/zip_mount.png share/icons/hicolor/48x48/devices/zip_unmount.png +share/icons/hicolor/48x48/filesystems/file_important.png +share/icons/hicolor/48x48/filesystems/folder_important.png +share/icons/locolor/16x16/actions/bookmark_folder.png share/icons/locolor/16x16/actions/view_choose.png share/icons/locolor/16x16/actions/view_detailed.png share/icons/locolor/16x16/actions/view_icon.png @@ -1693,12 +1945,13 @@ share/icons/locolor/16x16/actions/view_tree.png share/icons/locolor/16x16/apps/access.png share/icons/locolor/16x16/apps/acroread.png share/icons/locolor/16x16/apps/agent.png +share/icons/locolor/16x16/apps/alevt.png share/icons/locolor/16x16/apps/applixware.png share/icons/locolor/16x16/apps/arts.png share/icons/locolor/16x16/apps/background.png share/icons/locolor/16x16/apps/bell.png -share/icons/locolor/16x16/apps/borders.png -share/icons/locolor/16x16/apps/buttons.png +share/icons/locolor/16x16/apps/blender.png +share/icons/locolor/16x16/apps/clock.png share/icons/locolor/16x16/apps/colors.png share/icons/locolor/16x16/apps/cookie.png share/icons/locolor/16x16/apps/date.png @@ -1735,12 +1988,14 @@ share/icons/locolor/16x16/apps/kcmx.png share/icons/locolor/16x16/apps/kcontrol.png share/icons/locolor/16x16/apps/kdisknav.png share/icons/locolor/16x16/apps/kdmconfig.png +share/icons/locolor/16x16/apps/keditbookmarks.png share/icons/locolor/16x16/apps/key_bindings.png share/icons/locolor/16x16/apps/keyboard.png share/icons/locolor/16x16/apps/keyboard_layout.png share/icons/locolor/16x16/apps/kfm.png share/icons/locolor/16x16/apps/kfm_home.png share/icons/locolor/16x16/apps/khelpcenter.png +share/icons/locolor/16x16/apps/kicker.png share/icons/locolor/16x16/apps/klipper.png share/icons/locolor/16x16/apps/kmenuedit.png share/icons/locolor/16x16/apps/knotify.png @@ -1758,6 +2013,7 @@ share/icons/locolor/16x16/apps/looknfeel.png share/icons/locolor/16x16/apps/lyx.png share/icons/locolor/16x16/apps/mathematica.png share/icons/locolor/16x16/apps/mouse.png +share/icons/locolor/16x16/apps/mozilla.png share/icons/locolor/16x16/apps/multimedia.png share/icons/locolor/16x16/apps/nedit.png share/icons/locolor/16x16/apps/netscape.png @@ -1778,11 +2034,12 @@ share/icons/locolor/16x16/apps/password.png share/icons/locolor/16x16/apps/penguin.png share/icons/locolor/16x16/apps/plan.png share/icons/locolor/16x16/apps/proxy.png +share/icons/locolor/16x16/apps/pybliographic.png share/icons/locolor/16x16/apps/realplayer.png +share/icons/locolor/16x16/apps/remote.png share/icons/locolor/16x16/apps/samba.png share/icons/locolor/16x16/apps/style.png share/icons/locolor/16x16/apps/terminal.png -share/icons/locolor/16x16/apps/titlebar.png share/icons/locolor/16x16/apps/wabi.png share/icons/locolor/16x16/apps/window_list.png share/icons/locolor/16x16/apps/winprops.png @@ -1824,11 +2081,12 @@ share/icons/locolor/16x16/devices/zip_unmount.png share/icons/locolor/32x32/apps/access.png share/icons/locolor/32x32/apps/acroread.png share/icons/locolor/32x32/apps/agent.png +share/icons/locolor/32x32/apps/alevt.png share/icons/locolor/32x32/apps/applixware.png share/icons/locolor/32x32/apps/background.png share/icons/locolor/32x32/apps/bell.png -share/icons/locolor/32x32/apps/borders.png -share/icons/locolor/32x32/apps/buttons.png +share/icons/locolor/32x32/apps/blender.png +share/icons/locolor/32x32/apps/clanbomber.png share/icons/locolor/32x32/apps/clock.png share/icons/locolor/32x32/apps/colors.png share/icons/locolor/32x32/apps/cookie.png @@ -1908,16 +2166,18 @@ share/icons/locolor/32x32/apps/password.png share/icons/locolor/32x32/apps/penguin.png share/icons/locolor/32x32/apps/plan.png share/icons/locolor/32x32/apps/proxy.png +share/icons/locolor/32x32/apps/pybliographic.png +share/icons/locolor/32x32/apps/pysol.png share/icons/locolor/32x32/apps/realplayer.png share/icons/locolor/32x32/apps/samba.png share/icons/locolor/32x32/apps/style.png share/icons/locolor/32x32/apps/terminal.png -share/icons/locolor/32x32/apps/titlebar.png share/icons/locolor/32x32/apps/wabi.png share/icons/locolor/32x32/apps/window_list.png share/icons/locolor/32x32/apps/winprops.png share/icons/locolor/32x32/apps/wp.png share/icons/locolor/32x32/apps/xapp.png +share/icons/locolor/32x32/apps/xawtv.png share/icons/locolor/32x32/apps/xcalc.png share/icons/locolor/32x32/apps/xclipboard.png share/icons/locolor/32x32/apps/xclock.png @@ -2041,8 +2301,12 @@ share/locale/l10n/kr/entry.desktop share/locale/l10n/kr/flag.png share/locale/l10n/lc/entry.desktop share/locale/l10n/lc/flag.png +share/locale/l10n/lt/entry.desktop +share/locale/l10n/lt/flag.png share/locale/l10n/lu/entry.desktop share/locale/l10n/lu/flag.png +share/locale/l10n/lv/entry.desktop +share/locale/l10n/lv/flag.png share/locale/l10n/mk/entry.desktop share/locale/l10n/mk/flag.png share/locale/l10n/mx/entry.desktop @@ -2104,12 +2368,23 @@ share/locale/l10n/westeurope.desktop share/locale/l10n/za/entry.desktop share/locale/l10n/za/flag.png share/mimelnk/application/x-konsole.desktop +share/mimelnk/application/x-ktheme.desktop +share/services/bzip.protocol +share/services/bzip2.protocol +share/services/finger.protocol +share/services/floppy.protocol share/services/gopher.protocol share/services/gzip.protocol share/services/help.protocol +share/services/htmlthumbnail.desktop +share/services/imagethumbnail.desktop +share/services/imap4.protocol +share/services/imaps.protocol share/services/info.protocol share/services/kaccess.desktop +share/services/kfindpart.desktop share/services/khelpcenter.desktop +share/services/konq_aboutpage.desktop share/services/konq_detailedlistview.desktop share/services/konq_dirtree.desktop share/services/konq_iconview.desktop @@ -2117,6 +2392,7 @@ share/services/konq_multicolumnview.desktop share/services/konq_textview.desktop share/services/konq_treeview.desktop share/services/konqueror.desktop +share/services/konqueror_config.desktop share/services/konsolepart.desktop share/services/kshorturifilter.desktop share/services/kuriikwsfilter.desktop @@ -2124,14 +2400,58 @@ share/services/kurisearchfilter.desktop share/services/kwrite_component.desktop share/services/kxkb.desktop share/services/kxmlrpcd.desktop +share/services/ldap.protocol share/services/man.protocol share/services/nfs.protocol share/services/nntp.protocol share/services/pop3.protocol share/services/pop3s.protocol +share/services/searchproviders/acronym.desktop +share/services/searchproviders/altavista.desktop +share/services/searchproviders/austronaut.desktop +share/services/searchproviders/bugft.desktop +share/services/searchproviders/bugno.desktop +share/services/searchproviders/deja.desktop +share/services/searchproviders/dmoz.desktop +share/services/searchproviders/excite.desktop +share/services/searchproviders/foldoc.desktop +share/services/searchproviders/freshmeat.desktop +share/services/searchproviders/google.desktop +share/services/searchproviders/hotbot.desktop +share/services/searchproviders/jeeves.desktop +share/services/searchproviders/leo.desktop +share/services/searchproviders/lycos.desktop +share/services/searchproviders/mamma.desktop +share/services/searchproviders/metacrawler.desktop +share/services/searchproviders/realnames.desktop +share/services/searchproviders/rpmfind.desktop +share/services/searchproviders/seek.desktop +share/services/searchproviders/thesaurus.desktop +share/services/searchproviders/voila.desktop +share/services/searchproviders/webster.desktop share/services/smb.protocol share/services/smtp.protocol share/services/tar.protocol +share/services/textthumbnail.desktop +share/services/thumbnail.protocol +share/servicetypes/findpart.desktop +share/servicetypes/konqaboutpage.desktop +share/servicetypes/searchprovider.desktop +share/servicetypes/thumbcreator.desktop +share/sounds/KDE_Beep_Ahem.wav +share/sounds/KDE_Beep_Beep.wav +share/sounds/KDE_Beep_Bottles.wav +share/sounds/KDE_Beep_ClassicBeep.wav +share/sounds/KDE_Beep_ClockChime.wav +share/sounds/KDE_Beep_Connect.wav +share/sounds/KDE_Beep_Door.wav +share/sounds/KDE_Beep_Honk.wav +share/sounds/KDE_Beep_Lightning.wav +share/sounds/KDE_Beep_Pop.wav +share/sounds/KDE_Beep_RimShot.wav +share/sounds/KDE_Beep_RingRing.wav +share/sounds/KDE_Beep_ShortBeep.wav +share/sounds/KDE_Beep_Yo.wav share/sounds/KDE_Close_Window.wav share/sounds/KDE_Logout.wav share/sounds/KDE_Startup.wav @@ -2185,6 +2505,105 @@ share/wallpapers/northbeach.jpg share/wallpapers/simple_wallpaper.jpg share/wallpapers/sunday_brunch.jpg share/wallpapers/vegetative_fog.jpg +@dirrm share/wallpapers +@dirrm share/templates/.source +@dirrm share/templates +@dirrm share/sounds +@dirrm share/servicetypes +@dirrm share/services/searchproviders +@dirrm share/services +@dirrm share/mimelnk/application +@dirrm share/locale/l10n/za +@dirrm share/locale/l10n/ve +@dirrm share/locale/l10n/vc +@dirrm share/locale/l10n/uy +@dirrm share/locale/l10n/us +@dirrm share/locale/l10n/ua +@dirrm share/locale/l10n/tw +@dirrm share/locale/l10n/tt +@dirrm share/locale/l10n/tr +@dirrm share/locale/l10n/th +@dirrm share/locale/l10n/sv +@dirrm share/locale/l10n/sr +@dirrm share/locale/l10n/sk +@dirrm share/locale/l10n/si +@dirrm share/locale/l10n/se +@dirrm share/locale/l10n/ru +@dirrm share/locale/l10n/ro +@dirrm share/locale/l10n/py +@dirrm share/locale/l10n/pt +@dirrm share/locale/l10n/pl +@dirrm share/locale/l10n/pe +@dirrm share/locale/l10n/pa +@dirrm share/locale/l10n/nz +@dirrm share/locale/l10n/no +@dirrm share/locale/l10n/nl +@dirrm share/locale/l10n/mx +@dirrm share/locale/l10n/mk +@dirrm share/locale/l10n/lv +@dirrm share/locale/l10n/lu +@dirrm share/locale/l10n/lt +@dirrm share/locale/l10n/lc +@dirrm share/locale/l10n/kr +@dirrm share/locale/l10n/kp +@dirrm share/locale/l10n/kn +@dirrm share/locale/l10n/jp +@dirrm share/locale/l10n/jm +@dirrm share/locale/l10n/it +@dirrm share/locale/l10n/is +@dirrm share/locale/l10n/il +@dirrm share/locale/l10n/ie +@dirrm share/locale/l10n/hu +@dirrm share/locale/l10n/hr +@dirrm share/locale/l10n/hn +@dirrm share/locale/l10n/gt +@dirrm share/locale/l10n/gr +@dirrm share/locale/l10n/gd +@dirrm share/locale/l10n/gb +@dirrm share/locale/l10n/fr +@dirrm share/locale/l10n/fi +@dirrm share/locale/l10n/es +@dirrm share/locale/l10n/ee +@dirrm share/locale/l10n/ec +@dirrm share/locale/l10n/do +@dirrm share/locale/l10n/dk +@dirrm share/locale/l10n/de +@dirrm share/locale/l10n/cz +@dirrm share/locale/l10n/co +@dirrm share/locale/l10n/cn +@dirrm share/locale/l10n/cl +@dirrm share/locale/l10n/ch +@dirrm share/locale/l10n/ca +@dirrm share/locale/l10n/br +@dirrm share/locale/l10n/bo +@dirrm share/locale/l10n/bg +@dirrm share/locale/l10n/be +@dirrm share/locale/l10n/bb +@dirrm share/locale/l10n/au +@dirrm share/locale/l10n/at +@dirrm share/locale/l10n/ar +@dirrm share/locale/l10n/ag +@dirrm share/locale/l10n/C +@dirrm share/locale/l10n +@dirrm share/locale/C +@dirrm share/icons/locolor/32x32/devices +@dirrm share/icons/locolor/32x32/apps +@dirrm share/icons/locolor/16x16/devices +@dirrm share/icons/locolor/16x16/apps +@dirrm share/icons/locolor/16x16/actions +@dirrm share/icons/hicolor/48x48/filesystems +@dirrm share/icons/hicolor/48x48/devices +@dirrm share/icons/hicolor/48x48/apps +@dirrm share/icons/hicolor/32x32/filesystems +@dirrm share/icons/hicolor/32x32/devices +@dirrm share/icons/hicolor/32x32/apps +@dirrm share/icons/hicolor/32x32/actions +@dirrm share/icons/hicolor/22x22/actions +@dirrm share/icons/hicolor/16x16/filesystems +@dirrm share/icons/hicolor/16x16/devices +@dirrm share/icons/hicolor/16x16/apps +@dirrm share/fonts/override +@dirrm share/fonts @dirrm share/doc/HTML/en/kwrite @dirrm share/doc/HTML/en/ksysguard @dirrm share/doc/HTML/en/kpager @@ -2202,17 +2621,22 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/doc/HTML/en/kdesu @dirrm share/doc/HTML/en/kdebugdialog @dirrm share/doc/HTML/en/kcontrol -@dirrm share/apps/quickbrowser +@dirrm share/doc/HTML/en +@dirrm share/config +@dirrm share/autostart +@dirrm share/apps/naughtyapplet/pics @dirrm share/apps/kwrite @dirrm share/apps/kwin/pics @dirrm share/apps/kwin +@dirrm share/apps/kthememgr/Themes +@dirrm share/apps/kthememgr @dirrm share/apps/ksysguard/icons/locolor/16x16/apps @dirrm share/apps/ksysguard/icons/locolor/16x16 @dirrm share/apps/ksysguard/icons/locolor @dirrm share/apps/ksysguard/icons @dirrm share/apps/ksysguard +@dirrm share/apps/ksplash/pics/locolor @dirrm share/apps/ksplash/pics -@dirrm share/apps/ksplash @dirrm share/apps/kscreensaver @dirrm share/apps/konsole/pics @dirrm share/apps/konsole @@ -2226,14 +2650,18 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/konqueror/icons/hicolor/32x32 @dirrm share/apps/konqueror/icons/hicolor/22x22/actions @dirrm share/apps/konqueror/icons/hicolor/22x22 +@dirrm share/apps/konqueror/icons/hicolor/16x16/actions @dirrm share/apps/konqueror/icons/hicolor @dirrm share/apps/konqueror/icons @dirrm share/apps/konqueror/dirtree/remote/web @dirrm share/apps/konqueror/dirtree/remote/ftp @dirrm share/apps/konqueror/dirtree/remote @dirrm share/apps/konqueror/dirtree +@dirrm share/apps/konqueror/about @dirrm share/apps/konqueror +@dirrm share/apps/konqlistview/kpartplugins @dirrm share/apps/konqlistview +@dirrm share/apps/konqiconview/kpartplugins @dirrm share/apps/konqiconview @dirrm share/apps/kmenuedit/icons/locolor/16x16/actions @dirrm share/apps/kmenuedit/icons/locolor/16x16 @@ -2246,13 +2674,16 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kmenuedit/icons @dirrm share/apps/kmenuedit @dirrm share/apps/kio_info +@dirrm share/apps/kio_finger @dirrm share/apps/kicker/wallpapers @dirrm share/apps/kicker/tiles @dirrm share/apps/kicker/pics @dirrm share/apps/kicker/icons/locolor/16x16/actions @dirrm share/apps/kicker/icons/locolor/16x16 @dirrm share/apps/kicker/icons/locolor +@dirrm share/apps/kicker/icons/hicolor/16x16/actions @dirrm share/apps/kicker/icons +@dirrm share/apps/kicker/extensions @dirrm share/apps/kicker/applets @dirrm share/apps/kicker @dirrm share/apps/khelpcenter/plugins/Tutorials @@ -2264,6 +2695,8 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/khelpcenter/icons @dirrm share/apps/khelpcenter/en @dirrm share/apps/khelpcenter +@dirrm share/apps/kfind/icons/locolor/22x22/actions +@dirrm share/apps/keditbookmarks @dirrm share/apps/kdm/pics/users @dirrm share/apps/kdm/pics @dirrm share/apps/kdm @@ -2282,9 +2715,11 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kcontrol @dirrm share/apps/kcmlocale/pics @dirrm share/apps/kcmlocale +@dirrm share/apps/kcmkeys/standard @dirrm share/apps/kcminput @dirrm share/apps/kbookmark @dirrm share/apps/kappfinder/apps/WordProcessing +@dirrm share/apps/kappfinder/apps/Utilities/XUtilities @dirrm share/apps/kappfinder/apps/Utilities @dirrm share/apps/kappfinder/apps/Toys @dirrm share/apps/kappfinder/apps/System/ScreenSavers @@ -2293,13 +2728,45 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kappfinder/apps/Multimedia @dirrm share/apps/kappfinder/apps/Internet @dirrm share/apps/kappfinder/apps/Graphics +@dirrm share/apps/kappfinder/apps/Games @dirrm share/apps/kappfinder/apps/Editors @dirrm share/apps/kappfinder/apps/Development @dirrm share/apps/kappfinder/apps -@dirrm share/apps/kappfinder @dirrm share/apps/drkonqi/presets @dirrm share/apps/drkonqi/pics @dirrm share/apps/drkonqi/debuggers @dirrm share/apps/drkonqi @dirrm share/apps/clockapplet/pics @dirrm share/apps/clockapplet +@dirrm share/apps +@dirrm share/applnk/Utilities +@dirrm share/applnk/Toys +@dirrm share/applnk/System/ScreenSavers +@dirrm share/applnk/System +@dirrm share/applnk/Settings/WebBrowsing +@dirrm share/applnk/Settings/System +@dirrm share/applnk/Settings/Sound +@dirrm share/applnk/Settings/PowerControl +@dirrm share/applnk/Settings/Personalization +@dirrm share/applnk/Settings/Peripherals +@dirrm share/applnk/Settings/Network +@dirrm share/applnk/Settings/LookNFeel/Windows +@dirrm share/applnk/Settings/LookNFeel/Themes +@dirrm share/applnk/Settings/LookNFeel/Desktop +@dirrm share/applnk/Settings/LookNFeel +@dirrm share/applnk/Settings/Information +@dirrm share/applnk/Settings/Help +@dirrm share/applnk/Settings/FileBrowsing +@dirrm share/applnk/Settings +@dirrm share/applnk/Office +@dirrm share/applnk/Multimedia +@dirrm share/applnk/Internet +@dirrm share/applnk/Graphics +@dirrm share/applnk/Games +@dirrm share/applnk/Editors +@dirrm share/applnk/Development +@dirrm share/applnk/Applications +@dirrm share/applnk/.hidden +@dirrm share/applnk +@dirrm lib/kde2 +@dirrm include/kwin diff --git a/x11/kde4/Makefile b/x11/kde4/Makefile index fe065aaca901..f16a8b59aa38 100644 --- a/x11/kde4/Makefile +++ b/x11/kde4/Makefile @@ -6,13 +6,13 @@ # PORTNAME= kde -PORTVERSION= 2.0.1 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= # empty DISTFILES= # none EXTRACT_ONLY= # empty -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= kdecore.4:${PORTSDIR}/x11/kdelibs2 RUN_DEPENDS= konqueror:${PORTSDIR}/x11/kdebase2 \ diff --git a/x11/kdebase11/Makefile b/x11/kdebase11/Makefile deleted file mode 100644 index 56031f46e8d9..000000000000 --- a/x11/kdebase11/Makefile +++ /dev/null @@ -1,61 +0,0 @@ -# New ports collection makefile for: kdebase -# Date created: 28 October 1997 -# Whom: Stefan Eßer <se@freebsd.org> -# -# $FreeBSD$ -# - -PORTNAME= kdebase -PORTVERSION= 1.1.2 -PORTREVISION= 1 -CATEGORIES= x11 kde -MASTER_SITES= $(MASTER_SITE_KDE) -MASTER_SITE_SUBDIR= Attic/old/1.1.2/distribution/tar/generic/source/bz2 - -PATCH_SITES= ftp://ftp.kde.gr.jp/pub/kde/stable/latest/distribution/tar/generic/jp-patch/ -PATCHFILES= kdebase-ja.19990823.diff.gz -PATCH_DIST_STRIP= -p1 - -MAINTAINER= will@FreeBSD.org - -BUILD_DEPENDS= convert:${PORTSDIR}/graphics/ImageMagick -LIB_DEPENDS= kdecore.3:${PORTSDIR}/x11/kdelibs11 \ - intl.1:${PORTSDIR}/devel/gettext - -NO_LATEST_LINK= yes -USE_XLIB= yes -USE_XPM= yes -USE_BZIP2= yes -USE_QT= yes -USE_GMAKE= yes -GNU_CONFIGURE= yes -CONFIGURE_ARGS= --with-qt-includes=${QTDIR}/include/X11/qt \ - --with-extra-includes=${LOCALBASE}/include \ - --with-extra-libs=${LOCALBASE}/lib \ - --with-xdmdir=${X11BASE}/lib/X11/xdm -CONFIGURE_ENV= CXXFLAGS="$(CFLAGS) -DHAVE_GETUSERSHELL -DTIME_WITH_SYS_TIME" \ - INSTALL_SCRIPT="install -c -m 555" PATH="${PATH}:${X11BASE}/bin" \ - RUN_KAPPFINDER="no" \ - QTDIR=${QTDIR} -MAKE_ENV= RM=${RM} -CFLAGS+= "-I$(PREFIX)/include" - -.if defined(PREFIX) -QTDIR?= ${PREFIX} -.else -QTDIR?= ${X11BASE} -.endif - -pre-patch: - @${CP} ${FILESDIR}/ja.kimap ${WRKSRC}/kikbd/maps - -post-install: - ${INSTALL_DATA} ${FILESDIR}/kwmrc ${PREFIX}/share/config - @${ECHO} - @${ECHO_MSG} "Due to the potential security hole represented by the KDE" - @${ECHO_MSG} "screensavers, you will have to set them setuid yourself." - @${ECHO_MSG} "In order to do this, run:" - @${ECHO_MSG} " # chmod 4755 ${PREFIX}/bin/*.kss" - @${ECHO} - -.include <bsd.port.mk> diff --git a/x11/kdebase11/distinfo b/x11/kdebase11/distinfo deleted file mode 100644 index 8b0a9ea1dbf3..000000000000 --- a/x11/kdebase11/distinfo +++ /dev/null @@ -1,2 +0,0 @@ -MD5 (kdebase-1.1.2.tar.bz2) = 330492b058e8087fca7f1ce350363254 -MD5 (kdebase-ja.19990823.diff.gz) = 84bfd3b7f860dd3b8b8a985ee2add887 diff --git a/x11/kdebase11/files/ja.kimap b/x11/kdebase11/files/ja.kimap deleted file mode 100644 index 629d6a92428d..000000000000 --- a/x11/kdebase11/files/ja.kimap +++ /dev/null @@ -1,114 +0,0 @@ -# KDE Config File - -[International Keyboard] -Authors=Kazuhide Takahashi <kazu@dgra.ne.jp> - -Language=Japanese -Language[ja]=ÆüËܸì - -Label=Ja -Locale=ja - -[KeyboardMap] -keycode1=9,Escape,, -keycode2=10,1,exclam, - keycode3=11,2,quotedbl, -keycode4=12,3,numbersign, -keycode5=13,4,dollar, - keycode6=14,5,percent, - keycode7=15,6,ampersand, - keycode8=16,7,apostrophe, - keycode9=17,8,parenleft, - keycode10=18,9,parenright, - keycode11=19,0,, - keycode12=20,minus,equal, - keycode13=21,asciicircum,asciitilde, -keycode14=22,BackSpace,, -keycode15=23,Tab,ISO_Left_Tab, -keycode16=24,q,Q, -keycode17=25,w,W, -keycode18=26,e,E, -keycode19=27,r,R, -keycode20=28,t,T, -keycode21=29,y,Y, -keycode22=30,u,U, -keycode23=31,i,I, -keycode24=32,o,O, -keycode25=33,p,P, - keycode26=34,at,grave, - keycode27=35,bracketleft,braceleft, -keycode28=36,Return,, -keycode29=37,Control_L,, -keycode30=38,a,A, -keycode31=39,s,S, -keycode32=40,d,D, -keycode33=41,f,F, -keycode34=42,g,G, -keycode35=43,h,H, -keycode36=44,j,J, -keycode37=45,k,K, -keycode38=46,l,L, - keycode39=47,semicolon,plus - keycode40=48,colon,asterisk, -keycode41=49,grave,asciitilde, -keycode42=50,Shift_L,, - keycode43=51,bracketright,braceright, -keycode44=52,z,Z, -keycode45=53,x,X, -keycode46=54,c,C, -keycode47=55,v,V, -keycode48=56,b,B, -keycode49=57,n,N, -keycode50=58,m,M, -keycode51=59,comma,less, -keycode52=60,period,greater, -keycode53=61,slash,question, -keycode54=62,Shift_R,, -keycode55=63,KP_Multiply,, -keycode56=64,Alt_L,Meta_L, -keycode57=65,space,, -keycode58=66,Caps_Lock,, -keycode59=67,F1,, -keycode60=68,F2,, -keycode61=69,F3,, -keycode62=70,F4,, -keycode63=71,F5,, -keycode64=72,F6,, -keycode65=73,F7,, -keycode66=74,F8,, -keycode67=75,F9,, -keycode68=76,F10,, -keycode69=77,Num_Lock,Pointer_EnableKeys, -keycode70=78,Scroll_Lock,, -keycode71=79,KP_Home,KP_7, -keycode72=80,KP_Up,KP_8, -keycode73=81,KP_Prior,KP_9, -keycode74=82,KP_Subtract,, -keycode75=83,KP_Left,KP_4, -keycode76=84,KP_Begin,KP_5, -keycode77=85,KP_Right,KP_6, -keycode78=86,KP_Add,, -keycode79=87,KP_End,KP_1, -keycode80=88,KP_Down,KP_2, -keycode81=89,KP_Next,KP_3, -keycode82=90,KP_Insert,KP_0, -keycode83=91,KP_Delete,KP_Decimala1, -keycode86=94,less,greater -keycode87=95,F11,, -keycode88=96,F12,, -keycode89=97,Home,, -keycode90=98,Up,, -keycode91=99,Prior,, -keycode92=100,Left,, -keycode94=102,Right,, -keycode95=103,End,, -keycode96=104,Down,, -keycode97=105,Next,, -keycode98=106,Insert,, -keycode99=107,Delete,, -keycode100=108,KP_Enter,, -keycode101=109,Control_R,, -keycode102=110,Pause,Break, -keycode103=111,Print,Execute, -keycode104=112,KP_Divide,, -keycode105=113,Alt_R,Meta_R, diff --git a/x11/kdebase11/files/kwmrc b/x11/kdebase11/files/kwmrc deleted file mode 100644 index 567c7d957791..000000000000 --- a/x11/kdebase11/files/kwmrc +++ /dev/null @@ -1,3 +0,0 @@ -# KDE Config File -[Focus] -noFocusClasses=Kinput2, diff --git a/x11/kdebase11/files/patch-ai b/x11/kdebase11/files/patch-ai deleted file mode 100644 index dfb68afdf648..000000000000 --- a/x11/kdebase11/files/patch-ai +++ /dev/null @@ -1,15 +0,0 @@ -*** kfm/kfmsu2.in~ Wed Feb 17 09:39:57 1999 ---- kfm/kfmsu2.in Mon May 3 18:16:31 1999 -*************** -*** 7,11 **** - echo "" - echo "Logging in as super user" -! - # Test KDEDIR first, otherwise use hardcoded path (allows to move the KDE dir) - if test -f $KDEDIR/bin/kfm ; then ---- 7,11 ---- - echo "" - echo "Logging in as super user" -! su root -c "echo DISPLAY=$DISPLAY @kde_bindir@/kfm -sw | /bin/sh > /dev/null" - # Test KDEDIR first, otherwise use hardcoded path (allows to move the KDE dir) - if test -f $KDEDIR/bin/kfm ; then diff --git a/x11/kdebase11/files/patch-an b/x11/kdebase11/files/patch-an deleted file mode 100644 index 342a1d205ea7..000000000000 --- a/x11/kdebase11/files/patch-an +++ /dev/null @@ -1,15 +0,0 @@ -*** kvt/Makefile.in~ Wed Apr 21 18:22:35 1999 ---- kvt/Makefile.in Wed Apr 21 18:33:46 1999 -*************** -*** 174,178 **** - - INCLUDES = $(all_includes) -! LDADD = $(LIBCURSES) $(LIB_KDEUI) - LDFLAGS = $(all_libraries) $(KDE_RPATH) - METASOURCES = main.moc ---- 174,178 ---- - - INCLUDES = $(all_includes) -! LDADD = $(LIBUTIL) $(LIBCURSES) $(LIB_KDEUI) - LDFLAGS = $(all_libraries) $(KDE_RPATH) - METASOURCES = main.moc diff --git a/x11/kdebase11/files/patch-ao b/x11/kdebase11/files/patch-ao deleted file mode 100644 index 62d11535357e..000000000000 --- a/x11/kdebase11/files/patch-ao +++ /dev/null @@ -1,137 +0,0 @@ -*** kvt/utmp.c.orig Wed Feb 17 19:54:08 1999 ---- kvt/utmp.c Wed Apr 21 18:37:34 1999 -*************** -*** 78,81 **** ---- 78,86 ---- - #endif - -+ #define UTMP_SUPPORT 1 -+ #define HAVE_UTIL 1 -+ #define USE_LASTLOG 1 -+ #define USE_TTYENT 1 -+ - #ifdef HAVE_LASTLOG_H - #include <lastlog.h> -*************** -*** 95,98 **** ---- 100,115 ---- - #endif - -+ #if USE_LASTLOG -+ # include <paths.h> -+ #endif /* USE_LASTLOG */ -+ -+ #if USE_TTYENT -+ # include <ttyent.h> -+ #endif /* USE_TTYENT */ -+ -+ #if HAVE_UTIL -+ #include <sys/param.h> -+ #endif /* HAVE_UTIL */ -+ - void cleanutent(void); - void makeutent(char *); -*************** -*** 140,144 **** - int utmp_pos; /* position of utmp-stamp */ - -- - /* - * on Sparcs login/logouts are logged at /var/adm/wtmp ---- 157,160 ---- -*************** -*** 146,150 **** - */ - #ifndef UTMP -! #define UTMP "/etc/utmp" - #endif - ---- 162,166 ---- - */ - #ifndef UTMP -! #define UTMP _PATH_UTMP - #endif - -*************** -*** 165,168 **** ---- 181,186 ---- - #ifdef BSD - -+ char global_ut_line[UT_LINESIZE]; -+ - /************************************************************************** - * get_tslot() - grabbed from xvt-1.0 - modified by David Perry -*************** -*** 178,182 **** - int i; - -! if ((fs = fopen(TTYTAB,"r")) == NULL) - return(-1); - i = 1; ---- 196,200 ---- - int i; - -! if ((fs = fopen(_PATH_TTYS,"r")) == NULL) - return(-1); - i = 1; -*************** -*** 204,207 **** ---- 222,235 ---- - { - FILE *utmp; -+ #if USE_LASTLOG -+ FILE *llfp; -+ struct lastlog ll; -+ #endif /* USE_LASTLOG */ -+ #if HAVE_UTIL -+ extern char *display_name; -+ char *p; -+ char wthost[MAXHOSTNAMELEN]; -+ #endif /* HAVE_UTIL */ -+ - if((utmp = fopen(UTMP,"r+")) == NULL) - return -1; -*************** -*** 213,216 **** ---- 241,273 ---- - fclose(utmp); - madeutent = 1; -+ -+ #if USE_LASTLOG -+ /* make a lastlog entry */ -+ ll.ll_time = (time_t) u->ut_time; -+ (void) strncpy(ll.ll_line, u->ut_line, sizeof ll.ll_line - 1); -+ ll.ll_line[sizeof ll.ll_line - 1] = '\0'; -+ (void) strncpy(ll.ll_host, u->ut_host, sizeof ll.ll_host - 1); -+ ll.ll_host[sizeof ll.ll_host - 1] = '\0'; -+ llfp = fopen(_PATH_LASTLOG, "a+"); -+ if (llfp) { -+ (void) fseek(llfp, getuid(), 0); -+ (void) fwrite(&ll, sizeof ll, 1, llfp); -+ (void) fclose(llfp); -+ } -+ #endif /* USE_LASTLOG */ -+ -+ #if HAVE_UTIL -+ /* save ut_line for later */ -+ (void) strncpy(global_ut_line, u->ut_line, sizeof global_ut_line); -+ -+ /* finally, log the entry to wtmp */ -+ (void) strncpy(wthost, display_name, sizeof wthost - 1); -+ wthost[sizeof wthost - 1] = '\0'; -+ p = strchr(wthost, ':'); -+ if (p) -+ *p = '\0'; -+ logwtmp(global_ut_line, u->ut_name, wthost); -+ #endif /* HAVE_UTIL */ -+ - return(utmp_pos); - } -*************** -*** 277,280 **** ---- 334,338 ---- - fwrite((char *)&u,sizeof(struct utmp),1,ut); - fclose(ut); -+ logwtmp(global_ut_line, "", ""); - } - diff --git a/x11/kdebase11/files/patch-ap b/x11/kdebase11/files/patch-ap deleted file mode 100644 index 5459e9b26948..000000000000 --- a/x11/kdebase11/files/patch-ap +++ /dev/null @@ -1,10 +0,0 @@ -*** konsole/include/TEShell.h~ Wed Apr 21 19:42:11 1999 ---- konsole/include/TEShell.h Wed Apr 21 19:41:35 1999 -*************** -*** 17,20 **** ---- 17,21 ---- - #define SHELL_H - -+ #include <sys/types.h> - #include <qobject.h> - #include <termios.h> diff --git a/x11/kdebase11/files/patch-aq b/x11/kdebase11/files/patch-aq deleted file mode 100644 index 0f521a22d2b0..000000000000 --- a/x11/kdebase11/files/patch-aq +++ /dev/null @@ -1,31 +0,0 @@ -*** kdm/kdmconfig.cpp~ Sat Dec 19 22:05:02 1998 ---- kdm/kdmconfig.cpp Tue Dec 29 00:38:07 1998 -*************** -*** 65,68 **** ---- 65,79 ---- - QString nu = kc->readEntry( "NoUsers"); - QStrList no_users; -+ #ifdef HAVE_GETUSERSHELL -+ QStrList valid_shells; -+ QString shell; -+ setusershell(); -+ for( shell = getusershell(); shell.isEmpty() == 0; ) { -+ if( valid_shells.contains( shell) == 0) -+ valid_shells.append( shell); -+ shell = getusershell(); -+ } -+ endusershell(); -+ #endif - semsplit( nu, no_users); - struct passwd *ps; -*************** -*** 72,75 **** ---- 83,90 ---- - if( CHECK_STRING(ps->pw_dir) && - CHECK_STRING(ps->pw_shell) && -+ #ifdef HAVE_GETUSERSHELL -+ ( valid_shells.isEmpty() || -+ ( valid_shells.contains( ps->pw_shell) != 0)) && -+ #endif - //CHECK_STRING(ps->pw_gecos) && // many users didn't want this check (tanghus) - ( no_users.contains( ps->pw_name) == 0)){ diff --git a/x11/kdebase11/files/patch-at b/x11/kdebase11/files/patch-at deleted file mode 100644 index e8e7df71ad7e..000000000000 --- a/x11/kdebase11/files/patch-at +++ /dev/null @@ -1,15 +0,0 @@ -*** kdm/config/kdmrc.in~ Tue Feb 9 23:13:14 1999 ---- kdm/config/kdmrc.in Wed Apr 21 18:45:34 1999 -*************** -*** 9,13 **** - SortUsers=true - #Users=root;johndoe -! NoUsers=bin;daemon;games;halt;mail;man;news;nobody;reboot;shutdown;sync;uucp;xten; - GreetString=K Desktop Environment [HOSTNAME] - UserView=true ---- 9,13 ---- - SortUsers=true - #Users=root;johndoe -! NoUsers=bin;bind;daemon;games;halt;kmem;mail;man;mta;news;nobody;operator;pop;reboot;shutdown;sync;tty;uucp;xten; - GreetString=K Desktop Environment [HOSTNAME] - UserView=true diff --git a/x11/kdebase11/files/patch-au b/x11/kdebase11/files/patch-au deleted file mode 100644 index ce56901abfd4..000000000000 --- a/x11/kdebase11/files/patch-au +++ /dev/null @@ -1,10 +0,0 @@ ---- kdm/session.c.orig Sat Jul 10 12:18:04 1999 -+++ kdm/session.c Sat Jul 10 12:18:24 1999 -@@ -703,6 +703,7 @@ - * We need to do this before setusercontext() because that may - * set or reset some environment variables. - */ -+ envinit[0] = NULL; - environ = envinit; - - /* diff --git a/x11/kdebase11/files/patch-av b/x11/kdebase11/files/patch-av deleted file mode 100644 index e6f47471e5f1..000000000000 --- a/x11/kdebase11/files/patch-av +++ /dev/null @@ -1,17 +0,0 @@ -*** kdm/session.c~ Wed Sep 1 18:50:32 1999 ---- kdm/session.c Wed Sep 1 19:09:05 1999 -*************** -*** 1092,1095 **** ---- 1092,1096 ---- - -+ #ifndef __FreeBSD__ - #if defined(Lynx) || defined(SCO) && !defined(SCO_USA) || !defined(HAVE_CRYPT_H) - char *crypt(s1, s2) - char *s1, *s2; -*************** -*** 1097,1099 **** ---- 1098,1101 ---- - return(s2); - } - #endif -+ #endif /* __FreeBSD__ */ diff --git a/x11/kdebase11/files/patch-aw b/x11/kdebase11/files/patch-aw deleted file mode 100644 index b6cc8f944174..000000000000 --- a/x11/kdebase11/files/patch-aw +++ /dev/null @@ -1,29 +0,0 @@ -*** kscreensaver/space.cpp~ Sat Aug 7 03:09:28 1999 ---- kscreensaver/space.cpp Wed Sep 1 19:29:15 1999 -*************** -*** 70,73 **** ---- 70,74 ---- - - #include "GL/gl.h" -+ #include "GL/glut.h" - #include "GL/glu.h" - -*** kscreensaver/pipes.cpp~ Wed Sep 1 19:31:37 1999 ---- kscreensaver/pipes.cpp Wed Sep 1 19:33:18 1999 -*************** -*** 124,127 **** ---- 124,128 ---- - extern KLocale *glocale; - -+ #include "GL/glut.h" - #include "pipes.h" - #include <X11/Intrinsic.h> -*************** -*** 135,138 **** ---- 135,139 ---- - - #include "GL/gl.h" -+ #include "GL/glut.h" - #include "GL/glu.h" - - diff --git a/x11/kdebase11/files/patch-ax b/x11/kdebase11/files/patch-ax deleted file mode 100644 index 8ddc207b044a..000000000000 --- a/x11/kdebase11/files/patch-ax +++ /dev/null @@ -1,18 +0,0 @@ ---- configure.orig Wed Sep 8 00:21:06 1999 -+++ configure Tue Feb 15 01:34:11 2000 -@@ -5118,6 +5118,7 @@ - - - -+if false; then - echo $ac_n "checking for giflib""... $ac_c" 1>&6 - echo "configure:5123: checking for giflib" >&5 - if eval "test \"`echo '$''{'ac_cv_lib_gif'+set}'`\" = set"; then -@@ -5164,6 +5165,7 @@ - - else - { echo "configure: error: You need giflib30. Please install the kdesupport package" 1>&2; exit 1; } -+fi - fi - - echo $ac_n "checking for jpeglib""... $ac_c" 1>&6 diff --git a/x11/kdebase11/files/patch-az b/x11/kdebase11/files/patch-az deleted file mode 100644 index 8bd634bccbfa..000000000000 --- a/x11/kdebase11/files/patch-az +++ /dev/null @@ -1,26 +0,0 @@ ---- kdm/Makefile.in.orig Wed Apr 26 13:39:25 2000 -+++ kdm/Makefile.in Wed Apr 26 13:40:22 2000 -@@ -121,7 +121,7 @@ - MOC = @MOC@ - MSGFMT = @MSGFMT@ - NM = @NM@ --NOOPT_CXXFLAGS = @NOOPT_CXXFLAGS@ -+NOOPT_CXXFLAGS = @NOOPT_CXXFLAGS@ -O0 - PACKAGE = @PACKAGE@ - PAMINC = @PAMINC@ - PAMLIBPATHS = @PAMLIBPATHS@ -@@ -228,12 +228,12 @@ - kdmdesktop_OBJECTS = kdmdesktop.o - kdmdesktop_DEPENDENCIES = - kdmdesktop_LDFLAGS = --CXXFLAGS = @CXXFLAGS@ -+CXXFLAGS = @CXXFLAGS@ -O0 - CXXCOMPILE = $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) - LTCXXCOMPILE = $(LIBTOOL) --mode=compile $(CXX) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) - CXXLD = $(CXX) - CXXLINK = $(LIBTOOL) --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(LDFLAGS) -o $@ --CFLAGS = @CFLAGS@ -+CFLAGS = @CFLAGS@ -O0 - COMPILE = $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) - LTCOMPILE = $(LIBTOOL) --mode=compile $(CC) $(DEFS) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) - CCLD = $(CC) diff --git a/x11/kdebase11/files/patch-ba b/x11/kdebase11/files/patch-ba deleted file mode 100644 index 0a8b2c1169de..000000000000 --- a/x11/kdebase11/files/patch-ba +++ /dev/null @@ -1,37 +0,0 @@ ---- kcontrol/locale/pics/Makefile.in.orig Wed Sep 8 00:20:25 1999 -+++ kcontrol/locale/pics/Makefile.in Wed Sep 15 23:46:12 1999 -@@ -170,7 +170,7 @@ - x_libraries = @x_libraries@ - xdmconfigsubdir = @xdmconfigsubdir@ - --data_DATA = flag_de.gif flag_en.gif flag_fr.gif flag_C.gif flag_cs.gif flag_sv.gif flag_es.gif flag_ru.gif flag_nl.gif flag_hu.gif flag_da.gif flag_fi.gif flag_is.gif flag_it.gif flag_pt.gif flag_pl.gif flag_no.gif flag_el.gif flag_hr.gif flag_ro.gif flag_sk.gif flag_zh_TW.Big5.gif flag_zh_CN.GB2312.gif flag_en_UK.gif flag_ca.gif flag_pt_BR.gif flag_eo.gif flag_mk.gif flag_br.gif flag_he.gif flag_tr.gif flag_et.gif flag_se.gif flag_sl.gif flag_ja.gif flag_ko.gif flag_fr_CA.gif flag_us_eu.gif flag_fr_CH.gif flag_de_CH.gif -+data_DATA = flag_de.xpm flag_en.xpm flag_fr.xpm flag_C.xpm flag_cs.xpm flag_sv.xpm flag_es.xpm flag_ru.xpm flag_nl.xpm flag_hu.xpm flag_da.xpm flag_fi.xpm flag_is.xpm flag_it.xpm flag_pt.xpm flag_pl.xpm flag_no.xpm flag_el.xpm flag_hr.xpm flag_ro.xpm flag_sk.xpm flag_zh_TW.Big5.xpm flag_zh_CN.GB2312.xpm flag_en_UK.xpm flag_ca.xpm flag_pt_BR.xpm flag_eo.xpm flag_mk.xpm flag_br.xpm flag_he.xpm flag_tr.xpm flag_et.xpm flag_se.xpm flag_sl.xpm flag_ja.xpm flag_ko.xpm flag_fr_CA.xpm flag_us_eu.xpm flag_fr_CH.xpm flag_de_CH.xpm - - - datadir = $(kde_datadir)/kcmlocale/pics -@@ -190,6 +190,7 @@ - GZIP_ENV = --best - all: all-redirect - .SUFFIXES: -+.SUFFIXES: .gif .xpm - $(srcdir)/Makefile.in: Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) - cd $(top_srcdir) && $(AUTOMAKE) --foreign --include-deps kcontrol/locale/pics/Makefile - -@@ -301,3 +302,6 @@ - # Tell versions [3.59,3.63) of GNU make to not export all variables. - # Otherwise a system limit (for SysV at least) may be exceeded. - .NOEXPORT: -+ -+.gif.xpm: -+ $(LOCALBASE)/bin/convert $< $@ ---- kcontrol/locale/klangcombo.cpp.orig Sat Sep 11 03:37:58 1999 -+++ kcontrol/locale/klangcombo.cpp Sat Sep 11 03:38:08 1999 -@@ -55,7 +55,7 @@ - QPixmap pm(w, 16); - - KIconLoader iconLoader; -- QPixmap flag(iconLoader.loadIcon(QString("flag_")+tag(lang)+".gif")); -+ QPixmap flag(iconLoader.loadIcon(QString("flag_")+tag(lang)+".xpm")); - - pm.fill(colorGroup().background()); - p.begin(&pm); diff --git a/x11/kdebase11/files/patch-bb b/x11/kdebase11/files/patch-bb deleted file mode 100644 index f07bfa646348..000000000000 --- a/x11/kdebase11/files/patch-bb +++ /dev/null @@ -1,11 +0,0 @@ ---- kikbd/maps/Makefile.in.orig Wed Sep 8 00:20:32 1999 -+++ kikbd/maps/Makefile.in Wed Sep 15 23:49:42 1999 -@@ -170,7 +170,7 @@ - x_libraries = @x_libraries@ - xdmconfigsubdir = @xdmconfigsubdir@ - --data_DATA = cf.kimap csz.kimap pl.kimap rum.kimap ua.kimap uawm.kimap csp.kimap hu.kimap plnew.kimap ruw.kimap uam.kimap csy.kimap ru.kimap ruwm.kimap uaw.kimap bg.kimap fr.kimap de.kimap en.kimap el1.kimap el7.kimap lt.kimap he.kimap rua.kimap rui.kimap rumcyr.kimap skp.kimap sky.kimap skz.kimap es.kimap no.kimap sv.kimap fi.kimap se.kimap weu.kimap is.kimap fr_ch.kimap de_ch.kimap dv.kimap hr.kimap it.kimap la.kimap th.kimap ro.kimap pt.kimap pt-acc.kimap et.kimap dva.kimap trq.kimap -+data_DATA = cf.kimap csz.kimap pl.kimap rum.kimap ua.kimap uawm.kimap csp.kimap hu.kimap plnew.kimap ruw.kimap uam.kimap csy.kimap ru.kimap ruwm.kimap uaw.kimap bg.kimap fr.kimap de.kimap en.kimap el1.kimap el7.kimap lt.kimap he.kimap rua.kimap rui.kimap rumcyr.kimap skp.kimap sky.kimap skz.kimap es.kimap no.kimap sv.kimap fi.kimap se.kimap weu.kimap is.kimap fr_ch.kimap de_ch.kimap dv.kimap hr.kimap it.kimap la.kimap th.kimap ro.kimap pt.kimap pt-acc.kimap et.kimap dva.kimap trq.kimap ja.kimap - - - # pt.kimap pt-acc.kimap diff --git a/x11/kdebase11/files/patch-bc b/x11/kdebase11/files/patch-bc deleted file mode 100644 index 19139a2f36e9..000000000000 --- a/x11/kdebase11/files/patch-bc +++ /dev/null @@ -1,11 +0,0 @@ ---- po/ja/Makefile.in.orig Thu Sep 16 16:53:44 1999 -+++ po/ja/Makefile.in Thu Sep 16 16:54:09 1999 -@@ -173,7 +173,7 @@ - x_libraries = @x_libraries@ - xdmconfigsubdir = @xdmconfigsubdir@ - --GMOFILES = kfind.gmo kdehelp.gmo kcmdisplay.gmo kvt.gmo kfm.gmo kwm.gmo kfontmanager.gmo kdm.gmo kpanel.gmo klock.gmo krootwm.gmo kcmbell.gmo kcminfo.gmo kcminput.gmo kcmkwm.gmo kcmsamba.gmo kcmsample.gmo kcontrol.gmo kmenuedit.gmo kdmconfig.gmo kcmkpanel.gmo kcmlocale.gmo kcmsyssound.gmo kstart.gmo kikbd.gmo konsole.gmo kcmkfm.gmo kcmkeys.gmo kbgndwm.gmo kpager.gmo -+GMOFILES = kfind.gmo kdehelp.gmo kcmdisplay.gmo kvt.gmo kfm.gmo kwm.gmo kfontmanager.gmo kdm.gmo kpanel.gmo klock.gmo krootwm.gmo kcmbell.gmo kcminfo.gmo kcminput.gmo kcmkwm.gmo kcmsamba.gmo kcmsample.gmo kcontrol.gmo kmenuedit.gmo kdmconfig.gmo kcmkpanel.gmo kcmlocale.gmo kcmsyssound.gmo kstart.gmo kikbd.gmo konsole.gmo kcmkfm.gmo kcmkeys.gmo kbgndwm.gmo kpager.gmo kthememgr.gmo - - - POFILES = $(GMOFILES:.gmo=.po) diff --git a/x11/kdebase11/files/patch-bd b/x11/kdebase11/files/patch-bd deleted file mode 100644 index 5edadef78d3e..000000000000 --- a/x11/kdebase11/files/patch-bd +++ /dev/null @@ -1,17 +0,0 @@ ---- kpanel/sample_kdelnk_files/Makefile.in.orig Fri May 21 21:24:46 1999 -+++ kpanel/sample_kdelnk_files/Makefile.in Fri May 21 21:36:28 1999 -@@ -302,14 +302,6 @@ - - install-data-local: - $(mkinstalldirs) $(kdisknavdir) -- @for dir in /cdrom /mnt/cdrom /CDROM /CD-ROM ; do \ -- if test -d $$dir ; then \ -- echo $(INSTALL_DATA) $(srcdir)/CD-ROM.kdelnk $(kdisknavdir) ;\ -- $(INSTALL_DATA) $(srcdir)/CD-ROM.kdelnk $(kdisknavdir) ; \ -- echo "URL=$$dir" >> $(kdisknavdir)/CD-ROM.kdelnk ; \ -- break; \ -- fi ; \ -- done - - uninstall-local: - -rm -f $(kdisknavdir)/CD-ROM.kdelnk diff --git a/x11/kdebase11/files/patch-be b/x11/kdebase11/files/patch-be deleted file mode 100644 index e95ef4dc4073..000000000000 --- a/x11/kdebase11/files/patch-be +++ /dev/null @@ -1,13 +0,0 @@ -*** kvt/xsetup.c.orig Tue Mar 30 17:23:20 1999 ---- kvt/xsetup.c Tue Jun 22 21:50:56 1999 -*************** -*** 228,233 **** ---- 228,235 ---- - char *terminal = NULL; - display_name = getenv("DISPLAY"); - -+ reg_font_handles[DEFAULT_FONT] = 0; -+ - screen = DefaultScreen(display); - colormap = DefaultColormap(display, screen); - diff --git a/x11/kdebase11/pkg-comment b/x11/kdebase11/pkg-comment deleted file mode 100644 index ab700e2eeaa4..000000000000 --- a/x11/kdebase11/pkg-comment +++ /dev/null @@ -1 +0,0 @@ -Base modules for the KDE integrated X11 desktop diff --git a/x11/kdebase11/pkg-descr b/x11/kdebase11/pkg-descr deleted file mode 100644 index 90ae45773bea..000000000000 --- a/x11/kdebase11/pkg-descr +++ /dev/null @@ -1 +0,0 @@ -KDE provides an integrated X11 based environment, much like CDE. diff --git a/x11/kdebase11/pkg-plist b/x11/kdebase11/pkg-plist deleted file mode 100644 index 2d8b0efd5b34..000000000000 --- a/x11/kdebase11/pkg-plist +++ /dev/null @@ -1,2521 +0,0 @@ -bin/kappfinder -bin/kappfinder_restart -bin/kattraction.kss -bin/kaudioserver -bin/kbanner.kss -bin/kbat.kss -bin/kbgndwm -bin/kblankscrn.kss -bin/kblob.kss -bin/kbouboule.kss -bin/kbsod.kss -bin/kcheckpass -bin/kcmbell -bin/kcmdisplay -bin/kcmikbd -bin/kcminfo -bin/kcminput -bin/kcmkeys -bin/kcmkfm -bin/kcmkonsole -bin/kcmkpanel -bin/kcmkwm -bin/kcmlocale -bin/kcmsamba -bin/kcmsyssound -bin/kcontrol -bin/kde -bin/kdehelp -bin/kdm -bin/kdmconfig -bin/kdmdesktop -bin/kfind -bin/kflame.kss -bin/kfm -bin/kfmclient -bin/kfmexec -bin/kfmsu -bin/kfmsu2 -bin/kfmwarn -bin/kfontmanager -bin/kforest.kss -bin/khop.kss -bin/kikbd -bin/kioslave -bin/klaser.kss -bin/klines.kss -bin/klissie.kss -bin/klock -bin/kmatrix.kss -bin/kmenuedit -bin/konsole -bin/konsole_grantpty -bin/kpager -bin/kpanel -bin/kplayaudio -bin/kpolygon.kss -bin/kpyro.kss -bin/krdb -bin/krock.kss -bin/krootwm -bin/kscience.kss -bin/kslidescreen.kss -bin/kslip.kss -bin/kstart -bin/kswarm.kss -bin/kthememgr -bin/kvt -bin/kwm -bin/kwmcom -bin/kwmsound -bin/maudio -bin/rman -bin/startkde -bin/unpack -cgi-bin/helpindex -cgi-bin/helpsearch -share/applnk/.directory -share/applnk/Applications/.directory -share/applnk/Games/.directory -share/applnk/Graphics/.directory -share/applnk/Help.kdelnk -share/applnk/Home.kdelnk -share/applnk/Internet/.directory -share/applnk/KControl.kdelnk -share/applnk/Kfind.kdelnk -share/applnk/Krefresh.kdelnk -share/applnk/Multimedia/.directory -share/applnk/Settings/.directory -share/applnk/Settings/Applications/.directory -share/applnk/Settings/Applications/kdm.kdelnk -share/applnk/Settings/Applications/kfm.kdelnk -share/applnk/Settings/Applications/kfmbrowser.kdelnk -share/applnk/Settings/Applications/panel.kdelnk -share/applnk/Settings/Desktop/.directory -share/applnk/Settings/Desktop/background.kdelnk -share/applnk/Settings/Desktop/borders.kdelnk -share/applnk/Settings/Desktop/colors.kdelnk -share/applnk/Settings/Desktop/fonts.kdelnk -share/applnk/Settings/Desktop/icons.kdelnk -share/applnk/Settings/Desktop/kthememgr.kdelnk -share/applnk/Settings/Desktop/language.kdelnk -share/applnk/Settings/Desktop/screensaver.kdelnk -share/applnk/Settings/Desktop/style.kdelnk -share/applnk/Settings/Information/.directory -share/applnk/Settings/Information/devices.kdelnk -share/applnk/Settings/Information/dma.kdelnk -share/applnk/Settings/Information/interrupts.kdelnk -share/applnk/Settings/Information/ioports.kdelnk -share/applnk/Settings/Information/memory.kdelnk -share/applnk/Settings/Information/partitions.kdelnk -share/applnk/Settings/Information/pci.kdelnk -share/applnk/Settings/Information/processor.kdelnk -share/applnk/Settings/Information/scsi.kdelnk -share/applnk/Settings/Information/smbstatus.kdelnk -share/applnk/Settings/Information/sound.kdelnk -share/applnk/Settings/Information/xserver.kdelnk -share/applnk/Settings/Input_Devices/.directory -share/applnk/Settings/Input_Devices/kcmikbd.kdelnk -share/applnk/Settings/Input_Devices/keyboard.kdelnk -share/applnk/Settings/Input_Devices/mouse.kdelnk -share/applnk/Settings/Keys/.directory -share/applnk/Settings/Keys/global.kdelnk -share/applnk/Settings/Keys/standard.kdelnk -share/applnk/Settings/Network/.directory -share/applnk/Settings/Sound/.directory -share/applnk/Settings/Sound/bell.kdelnk -share/applnk/Settings/Sound/syssound.kdelnk -share/applnk/Settings/Windows/.directory -share/applnk/Settings/Windows/advanced.kdelnk -share/applnk/Settings/Windows/buttons.kdelnk -share/applnk/Settings/Windows/mouse.kdelnk -share/applnk/Settings/Windows/properties.kdelnk -share/applnk/Settings/Windows/titlebar.kdelnk -share/applnk/System/.directory -share/applnk/System/Arrange.kdelnk -share/applnk/System/Kfontmanager.kdelnk -share/applnk/System/kappfinder.kdelnk -share/applnk/System/kfmsu.kdelnk -share/applnk/System/kikbd.kdelnk -share/applnk/System/kpager.kdelnk -share/applnk/Trash.kdelnk -share/applnk/Utilities/.directory -share/applnk/Utilities/KMenuEdit.kdelnk -share/applnk/Utilities/konsole.kdelnk -share/applnk/Utilities/kvt.kdelnk -share/apps/kappfinder/apps/.directory -share/apps/kappfinder/apps/Development/.directory -share/apps/kappfinder/apps/Development/ddd.kdelnk -share/apps/kappfinder/apps/Development/dlgedit.kdelnk -share/apps/kappfinder/apps/Editors/.directory -share/apps/kappfinder/apps/Editors/emacs.kdelnk -share/apps/kappfinder/apps/Editors/lemacs.kdelnk -share/apps/kappfinder/apps/Editors/nedit.kdelnk -share/apps/kappfinder/apps/Editors/xedit.kdelnk -share/apps/kappfinder/apps/Editors/xemacs.kdelnk -share/apps/kappfinder/apps/Graphic/.directory -share/apps/kappfinder/apps/Graphic/acroread.kdelnk -share/apps/kappfinder/apps/Graphic/xfig.kdelnk -share/apps/kappfinder/apps/Graphic/xpaint.kdelnk -share/apps/kappfinder/apps/Graphic/xv.kdelnk -share/apps/kappfinder/apps/Internet/.directory -share/apps/kappfinder/apps/Internet/arena.kdelnk -share/apps/kappfinder/apps/Internet/coolmail.kdelnk -share/apps/kappfinder/apps/Internet/netscape.kdelnk -share/apps/kappfinder/apps/Internet/pine.kdelnk -share/apps/kappfinder/apps/Internet/xbiff.kdelnk -share/apps/kappfinder/apps/Internet/xfmail.kdelnk -share/apps/kappfinder/apps/Internet/xftp.kdelnk -share/apps/kappfinder/apps/Office/.directory -share/apps/kappfinder/apps/Office/Applix.kdelnk -share/apps/kappfinder/apps/Office/XAcc.kdelnk -share/apps/kappfinder/apps/Office/XsLite.kdelnk -share/apps/kappfinder/apps/Office/plan.kdelnk -share/apps/kappfinder/apps/System/.directory -share/apps/kappfinder/apps/System/xosview.kdelnk -share/apps/kappfinder/apps/Toys/.directory -share/apps/kappfinder/apps/Toys/xeyes.kdelnk -share/apps/kappfinder/apps/Toys/xpinguin.kdelnk -share/apps/kappfinder/apps/Utilities/.directory -share/apps/kappfinder/apps/Utilities/passwd.kdelnk -share/apps/kappfinder/apps/Utilities/xcalc.kdelnk -share/apps/kappfinder/apps/Utilities/xclipboard.kdelnk -share/apps/kappfinder/apps/Utilities/xclock.kdelnk -share/apps/kappfinder/apps/Utilities/xconsole.kdelnk -share/apps/kappfinder/apps/Utilities/xload.kdelnk -share/apps/kappfinder/apps/Utilities/xterm.kdelnk -share/apps/kappfinder/apps/WordProcessing/.directory -share/apps/kappfinder/apps/WordProcessing/WordPerfect.kdelnk -share/apps/kappfinder/apps/WordProcessing/acroread.kdelnk -share/apps/kappfinder/apps/WordProcessing/ghostview.kdelnk -share/apps/kappfinder/apps/WordProcessing/gv.kdelnk -share/apps/kappfinder/apps/WordProcessing/lyx.kdelnk -share/apps/kappfinder/apps/WordProcessing/xdvi.kdelnk -share/apps/kappfinder/apps/WordProcessing/xpdf.kdelnk -share/apps/kappfinder/pics/acroread.xpm -share/apps/kappfinder/pics/applix.xpm -share/apps/kappfinder/pics/applixware.xpm -share/apps/kappfinder/pics/civctp.xpm -share/apps/kappfinder/pics/dlgedit.xpm -share/apps/kappfinder/pics/edit.xpm -share/apps/kappfinder/pics/emacs.xpm -share/apps/kappfinder/pics/email.xpm -share/apps/kappfinder/pics/gimp.xpm -share/apps/kappfinder/pics/gnu.xpm -share/apps/kappfinder/pics/gs.xpm -share/apps/kappfinder/pics/gv.xpm -share/apps/kappfinder/pics/large/acroread.xpm -share/apps/kappfinder/pics/large/applixware.xpm -share/apps/kappfinder/pics/large/civctp.xpm -share/apps/kappfinder/pics/large/dlgedit.xpm -share/apps/kappfinder/pics/large/edit.xpm -share/apps/kappfinder/pics/large/gimp.xpm -share/apps/kappfinder/pics/large/gnu.xpm -share/apps/kappfinder/pics/large/gs.xpm -share/apps/kappfinder/pics/large/gv.xpm -share/apps/kappfinder/pics/large/lyx.xpm -share/apps/kappfinder/pics/large/mathematica.xpm -share/apps/kappfinder/pics/large/mozilla.xpm -share/apps/kappfinder/pics/large/nedit.xpm -share/apps/kappfinder/pics/large/penguin.xpm -share/apps/kappfinder/pics/large/plan.xpm -share/apps/kappfinder/pics/large/quake2.xpm -share/apps/kappfinder/pics/large/quake3.xpm -share/apps/kappfinder/pics/large/wabi.xpm -share/apps/kappfinder/pics/large/wordperfect.xpm -share/apps/kappfinder/pics/large/x.xpm -share/apps/kappfinder/pics/large/xcalc.xpm -share/apps/kappfinder/pics/large/xclipboard.xpm -share/apps/kappfinder/pics/large/xclock.xpm -share/apps/kappfinder/pics/large/xconsole.xpm -share/apps/kappfinder/pics/large/xedit.xpm -share/apps/kappfinder/pics/large/xephem.xpm -share/apps/kappfinder/pics/large/xeyes.xpm -share/apps/kappfinder/pics/large/xfig.xpm -share/apps/kappfinder/pics/large/xfmail.xpm -share/apps/kappfinder/pics/large/xload.xpm -share/apps/kappfinder/pics/large/xosview.xpm -share/apps/kappfinder/pics/large/xpaint.xpm -share/apps/kappfinder/pics/large/xpdf.xpm -share/apps/kappfinder/pics/large/xv.xpm -share/apps/kappfinder/pics/lyx.xpm -share/apps/kappfinder/pics/mathematica.xpm -share/apps/kappfinder/pics/mini/acroread.xpm -share/apps/kappfinder/pics/mini/applixware.xpm -share/apps/kappfinder/pics/mini/civctp.xpm -share/apps/kappfinder/pics/mini/dlgedit.xpm -share/apps/kappfinder/pics/mini/edit.xpm -share/apps/kappfinder/pics/mini/emacs.xpm -share/apps/kappfinder/pics/mini/email.xpm -share/apps/kappfinder/pics/mini/gimp.xpm -share/apps/kappfinder/pics/mini/gnu.xpm -share/apps/kappfinder/pics/mini/gv.xpm -share/apps/kappfinder/pics/mini/lyx.xpm -share/apps/kappfinder/pics/mini/mathematica.xpm -share/apps/kappfinder/pics/mini/mini-plan.xpm -share/apps/kappfinder/pics/mini/mini-xslight.xpm -share/apps/kappfinder/pics/mini/mozilla.xpm -share/apps/kappfinder/pics/mini/nedit.xpm -share/apps/kappfinder/pics/mini/netscape.xpm -share/apps/kappfinder/pics/mini/penguin.xpm -share/apps/kappfinder/pics/mini/pinguin.xpm -share/apps/kappfinder/pics/mini/plan.xpm -share/apps/kappfinder/pics/mini/quake2.xpm -share/apps/kappfinder/pics/mini/quake3.xpm -share/apps/kappfinder/pics/mini/vmware.xpm -share/apps/kappfinder/pics/mini/wabi.xpm -share/apps/kappfinder/pics/mini/wordperfect.xpm -share/apps/kappfinder/pics/mini/wp.xpm -share/apps/kappfinder/pics/mini/x.xpm -share/apps/kappfinder/pics/mini/xcalc.xpm -share/apps/kappfinder/pics/mini/xclipboard.xpm -share/apps/kappfinder/pics/mini/xclock.xpm -share/apps/kappfinder/pics/mini/xconsole.xpm -share/apps/kappfinder/pics/mini/xedit.xpm -share/apps/kappfinder/pics/mini/xemacs.xpm -share/apps/kappfinder/pics/mini/xephem.xpm -share/apps/kappfinder/pics/mini/xeyes.xpm -share/apps/kappfinder/pics/mini/xfig.xpm -share/apps/kappfinder/pics/mini/xfmail.xpm -share/apps/kappfinder/pics/mini/xload.xpm -share/apps/kappfinder/pics/mini/xosview.xpm -share/apps/kappfinder/pics/mini/xpaint.xpm -share/apps/kappfinder/pics/mini/xpdf.xpm -share/apps/kappfinder/pics/mini/xv.xpm -share/apps/kappfinder/pics/mozilla.xpm -share/apps/kappfinder/pics/nedit.xpm -share/apps/kappfinder/pics/netscape.xpm -share/apps/kappfinder/pics/nogo.xpm -share/apps/kappfinder/pics/penguin.xpm -share/apps/kappfinder/pics/pinguin.xpm -share/apps/kappfinder/pics/plan.xpm -share/apps/kappfinder/pics/quake2.xpm -share/apps/kappfinder/pics/quake3.xpm -share/apps/kappfinder/pics/wabi.xpm -share/apps/kappfinder/pics/wordperfect.xpm -share/apps/kappfinder/pics/wp.xpm -share/apps/kappfinder/pics/x.xpm -share/apps/kappfinder/pics/xcalc.xpm -share/apps/kappfinder/pics/xclipboard.xpm -share/apps/kappfinder/pics/xclock.xpm -share/apps/kappfinder/pics/xconsole.xpm -share/apps/kappfinder/pics/xedit.xpm -share/apps/kappfinder/pics/xemacs.xpm -share/apps/kappfinder/pics/xephem.xpm -share/apps/kappfinder/pics/xeyes.xpm -share/apps/kappfinder/pics/xfig.xpm -share/apps/kappfinder/pics/xfmail.xpm -share/apps/kappfinder/pics/xftp.xpm -share/apps/kappfinder/pics/xload.xpm -share/apps/kappfinder/pics/xosview.xpm -share/apps/kappfinder/pics/xpaint.xpm -share/apps/kappfinder/pics/xpdf.xpm -share/apps/kappfinder/pics/xv.xpm -share/apps/kcmlocale/pics/flag_C.xpm -share/apps/kcmlocale/pics/flag_br.xpm -share/apps/kcmlocale/pics/flag_ca.xpm -share/apps/kcmlocale/pics/flag_cs.xpm -share/apps/kcmlocale/pics/flag_da.xpm -share/apps/kcmlocale/pics/flag_de.xpm -share/apps/kcmlocale/pics/flag_de_CH.xpm -share/apps/kcmlocale/pics/flag_el.xpm -share/apps/kcmlocale/pics/flag_en.xpm -share/apps/kcmlocale/pics/flag_en_UK.xpm -share/apps/kcmlocale/pics/flag_eo.xpm -share/apps/kcmlocale/pics/flag_es.xpm -share/apps/kcmlocale/pics/flag_et.xpm -share/apps/kcmlocale/pics/flag_fi.xpm -share/apps/kcmlocale/pics/flag_fr.xpm -share/apps/kcmlocale/pics/flag_fr_CA.xpm -share/apps/kcmlocale/pics/flag_fr_CH.xpm -share/apps/kcmlocale/pics/flag_he.xpm -share/apps/kcmlocale/pics/flag_hr.xpm -share/apps/kcmlocale/pics/flag_hu.xpm -share/apps/kcmlocale/pics/flag_is.xpm -share/apps/kcmlocale/pics/flag_it.xpm -share/apps/kcmlocale/pics/flag_ja.xpm -share/apps/kcmlocale/pics/flag_ko.xpm -share/apps/kcmlocale/pics/flag_mk.xpm -share/apps/kcmlocale/pics/flag_nl.xpm -share/apps/kcmlocale/pics/flag_no.xpm -share/apps/kcmlocale/pics/flag_pl.xpm -share/apps/kcmlocale/pics/flag_pt.xpm -share/apps/kcmlocale/pics/flag_pt_BR.xpm -share/apps/kcmlocale/pics/flag_ro.xpm -share/apps/kcmlocale/pics/flag_ru.xpm -share/apps/kcmlocale/pics/flag_se.xpm -share/apps/kcmlocale/pics/flag_sk.xpm -share/apps/kcmlocale/pics/flag_sl.xpm -share/apps/kcmlocale/pics/flag_sv.xpm -share/apps/kcmlocale/pics/flag_tr.xpm -share/apps/kcmlocale/pics/flag_us_eu.xpm -share/apps/kcmlocale/pics/flag_zh_CN.GB2312.xpm -share/apps/kcmlocale/pics/flag_zh_TW.Big5.xpm -share/apps/kcontrol/pics/kdekcc.xpm -share/apps/kdisknav/KDE.kdelnk -share/apps/kdisknav/Root.kdelnk -share/apps/kdisplay/app-defaults/AAAAAAGeneral.ad -share/apps/kdisplay/app-defaults/AAAMotif.ad -share/apps/kdisplay/app-defaults/AAATk.ad -share/apps/kdisplay/app-defaults/AAAXaw.ad -share/apps/kdisplay/app-defaults/Editres.ad -share/apps/kdisplay/app-defaults/Emacs.ad -share/apps/kdisplay/app-defaults/ML.ad -share/apps/kdisplay/app-defaults/Nedit.ad -share/apps/kdisplay/app-defaults/Netscape.ad -share/apps/kdisplay/app-defaults/RVPlayer.ad -share/apps/kdisplay/app-defaults/XCalc.ad -share/apps/kdisplay/app-defaults/XTerm.ad -share/apps/kdisplay/app-defaults/XV.ad -share/apps/kdisplay/app-defaults/XWp.ad -share/apps/kdisplay/color-schemes/AtlasGreen.kcsrc -share/apps/kdisplay/color-schemes/BeOS.kcsrc -share/apps/kdisplay/color-schemes/BlueSlate.kcsrc -share/apps/kdisplay/color-schemes/CDE.kcsrc -share/apps/kdisplay/color-schemes/DesertRed.kcsrc -share/apps/kdisplay/color-schemes/DigitalCDE.kcsrc -share/apps/kdisplay/color-schemes/PaleGray.kcsrc -share/apps/kdisplay/color-schemes/Pumpkin.kcsrc -share/apps/kdisplay/color-schemes/SolarisCDE.kcsrc -share/apps/kdisplay/color-schemes/Storm.kcsrc -share/apps/kdisplay/color-schemes/Windows95.kcsrc -share/apps/kdm/pics/kdeflower.xpm -share/apps/kdm/pics/kdelogo.xpm -share/apps/kdm/pics/session_kde.xpm -share/apps/kdm/pics/users/default.xpm -share/apps/kdm/pics/users/default2.xpm -share/apps/kdm/pics/users/root.xpm -share/apps/kdm/pics/users/root2.xpm -share/apps/kdmconfig/pics/monitor.xpm -share/apps/kfind/toolbar/archive.xpm -share/apps/kfind/toolbar/delete.xpm -share/apps/kfind/toolbar/idea.xpm -share/apps/kfind/toolbar/info.xpm -share/apps/kfind/toolbar/openfile.xpm -share/apps/kfind/toolbar/save.xpm -share/apps/kfind/toolbar/search.xpm -share/apps/kfm/Desktop/Templates/Device.kdelnk -share/apps/kfm/Desktop/Templates/Ftpurl.kdelnk -share/apps/kfm/Desktop/Templates/MimeType.kdelnk -share/apps/kfm/Desktop/Templates/Program.kdelnk -share/apps/kfm/Desktop/Templates/URL.kdelnk -share/apps/kfm/Desktop/Templates/WWWUrl.kdelnk -share/apps/kfm/directory.autostart -share/apps/kfm/directory.desktop -share/apps/kfm/directory.templates -share/apps/kfm/directory.trash -share/apps/kfm/pics/close.xpm -share/apps/kfm/pics/exclamation.xpm -share/apps/kfm/pics/info.xpm -share/apps/kfm/pics/kde1.xpm -share/apps/kfm/pics/kde2.xpm -share/apps/kfm/pics/kde3.xpm -share/apps/kfm/pics/kde4.xpm -share/apps/kfm/pics/kde5.xpm -share/apps/kfm/pics/kde6.xpm -share/apps/kfm/pics/kde7.xpm -share/apps/kfm/pics/kde8.xpm -share/apps/kfm/pics/kde9.xpm -share/apps/kfm/pics/kmultiple.xpm -share/apps/kfm/pics/large-kmultiple.xpm -share/apps/kfm/pics/open.xpm -share/apps/kfm/pics/question.xpm -share/apps/kfm/pics/stopsign.xpm -share/apps/kikbd/bg.kimap -share/apps/kikbd/cf.kimap -share/apps/kikbd/codes/hp9000hil-107.kimap -share/apps/kikbd/codes/pc-win.kimap -share/apps/kikbd/codes/pc101.kimap -share/apps/kikbd/codes/pc102.kimap -share/apps/kikbd/csp.kimap -share/apps/kikbd/csy.kimap -share/apps/kikbd/csz.kimap -share/apps/kikbd/de.kimap -share/apps/kikbd/de_ch.kimap -share/apps/kikbd/dv.kimap -share/apps/kikbd/dva.kimap -share/apps/kikbd/el1.kimap -share/apps/kikbd/el7.kimap -share/apps/kikbd/en.kimap -share/apps/kikbd/es.kimap -share/apps/kikbd/et.kimap -share/apps/kikbd/fi.kimap -share/apps/kikbd/fr.kimap -share/apps/kikbd/fr_ch.kimap -share/apps/kikbd/he.kimap -share/apps/kikbd/hr.kimap -share/apps/kikbd/hu.kimap -share/apps/kikbd/is.kimap -share/apps/kikbd/it.kimap -share/apps/kikbd/ja.kimap -share/apps/kikbd/la.kimap -share/apps/kikbd/lt.kimap -share/apps/kikbd/no.kimap -share/apps/kikbd/pl.kimap -share/apps/kikbd/plnew.kimap -share/apps/kikbd/pt-acc.kimap -share/apps/kikbd/pt.kimap -share/apps/kikbd/ro.kimap -share/apps/kikbd/ru.kimap -share/apps/kikbd/rua.kimap -share/apps/kikbd/rui.kimap -share/apps/kikbd/rum.kimap -share/apps/kikbd/rumcyr.kimap -share/apps/kikbd/ruw.kimap -share/apps/kikbd/ruwm.kimap -share/apps/kikbd/se.kimap -share/apps/kikbd/skp.kimap -share/apps/kikbd/sky.kimap -share/apps/kikbd/skz.kimap -share/apps/kikbd/sv.kimap -share/apps/kikbd/th.kimap -share/apps/kikbd/trq.kimap -share/apps/kikbd/ua.kimap -share/apps/kikbd/uam.kimap -share/apps/kikbd/uaw.kimap -share/apps/kikbd/uawm.kimap -share/apps/kikbd/weu.kimap -share/apps/konsole/BlackOnLightYellow.schema -share/apps/konsole/BlackOnWhite.schema -share/apps/konsole/DarkPicture.schema -share/apps/konsole/Example.Schema -share/apps/konsole/GreenOnBlack.schema -share/apps/konsole/LightPicture.schema -share/apps/konsole/Linux.schema -share/apps/konsole/WhiteOnBlack.schema -share/apps/konsole/XTerm.schema -share/apps/konsole/default.Schema -share/apps/konsole/linux.kdelnk -share/apps/konsole/mc.kdelnk -share/apps/konsole/shell.kdelnk -share/apps/konsole/su.kdelnk -share/apps/konsole/syscolor.schema -share/apps/konsole/vim.schema -share/apps/kpanel/default/Desktop.kdelnk -share/apps/kpanel/default/Home.kdelnk -share/apps/kpanel/default/personal_directory -share/apps/kpanel/pics/exit.xpm -share/apps/kpanel/pics/go.xpm -share/apps/kpanel/pics/kdisknav.xpm -share/apps/kpanel/pics/key.xpm -share/apps/kpanel/pics/kfm_home.xpm -share/apps/kpanel/pics/large/go.xpm -share/apps/kpanel/pics/large/kdisknav.xpm -share/apps/kpanel/pics/large/kfm_home.xpm -share/apps/kpanel/pics/large/pers_applnk.xpm -share/apps/kpanel/pics/large/window_list.xpm -share/apps/kpanel/pics/mini/go.xpm -share/apps/kpanel/pics/mini/kdisknav.xpm -share/apps/kpanel/pics/mini/mini-exit.xpm -share/apps/kpanel/pics/mini/mini-key.xpm -share/apps/kpanel/pics/mini/mini-panel.xpm -share/apps/kpanel/pics/mini/pers_applnk.xpm -share/apps/kpanel/pics/mini/personal.xpm -share/apps/kpanel/pics/mini/window_list.xpm -share/apps/kpanel/pics/pers_applnk.xpm -share/apps/kpanel/pics/personal.xpm -share/apps/kpanel/pics/shared.xpm -share/apps/kpanel/pics/window_list.xpm -share/apps/kscreensaver/kscience-small.gif -share/apps/kscreensaver/kscience.gif -share/apps/kthememgr/Themes/Astronique.tar.gz -share/apps/kthememgr/Themes/Bryce.tar.gz -share/apps/kthememgr/Themes/Default.tar.gz -share/apps/kthememgr/Themes/Glax.tar.gz -share/apps/kthememgr/Themes/MGBreizh.tar.gz -share/apps/kthememgr/Themes/Nostalgy.tar.gz -share/apps/kthememgr/Themes/Template.themerc -share/apps/kthememgr/Themes/Wood.tar.gz -share/apps/kthememgr/theme.mappings -share/apps/kwm/pics/bluesun.gif -share/apps/kwm/pics/close.xpm -share/apps/kwm/pics/fog-grey.gif -share/apps/kwm/pics/fog.gif -share/apps/kwm/pics/greenie.dim.xpm -share/apps/kwm/pics/greenie.light.xpm -share/apps/kwm/pics/iconify.xpm -share/apps/kwm/pics/maximize.xpm -share/apps/kwm/pics/maximizedown.xpm -share/apps/kwm/pics/menu.xpm -share/apps/kwm/pics/pindown.xpm -share/apps/kwm/pics/pinup.xpm -share/apps/kwm/pics/unknown.xpm -share/config/desktop -share/config/desktop0rc -share/config/desktop1rc -share/config/desktop2rc -share/config/desktop3rc -share/config/kcmlocalerc -share/config/kdmrc -share/config/kfmrc -share/config/kikbdrc -share/config/kpanelrc -share/config/kwmrc -share/doc/HTML/en/kcontrol/index-1.html -share/doc/HTML/en/kcontrol/index-2.html -share/doc/HTML/en/kcontrol/index.html -share/doc/HTML/en/kcontrol/kcmbell/bell-1.html -share/doc/HTML/en/kcontrol/kcmbell/bell.html -share/doc/HTML/en/kcontrol/kcmbell/logotp3.gif -share/doc/HTML/en/kcontrol/kcmdisplay/kdisplay-1.html -share/doc/HTML/en/kcontrol/kcmdisplay/kdisplay-2.html -share/doc/HTML/en/kcontrol/kcmdisplay/kdisplay-3.html -share/doc/HTML/en/kcontrol/kcmdisplay/kdisplay-4.html -share/doc/HTML/en/kcontrol/kcmdisplay/kdisplay-5.html -share/doc/HTML/en/kcontrol/kcmdisplay/kdisplay-6.html -share/doc/HTML/en/kcontrol/kcmdisplay/kdisplay-7.html -share/doc/HTML/en/kcontrol/kcmdisplay/kdisplay-8.html -share/doc/HTML/en/kcontrol/kcmdisplay/kdisplay.html -share/doc/HTML/en/kcontrol/kcmdisplay/logotp3.gif -share/doc/HTML/en/kcontrol/kcminfo/info-1.html -share/doc/HTML/en/kcontrol/kcminfo/info-10.html -share/doc/HTML/en/kcontrol/kcminfo/info-11.html -share/doc/HTML/en/kcontrol/kcminfo/info-2.html -share/doc/HTML/en/kcontrol/kcminfo/info-3.html -share/doc/HTML/en/kcontrol/kcminfo/info-4.html -share/doc/HTML/en/kcontrol/kcminfo/info-5.html -share/doc/HTML/en/kcontrol/kcminfo/info-6.html -share/doc/HTML/en/kcontrol/kcminfo/info-7.html -share/doc/HTML/en/kcontrol/kcminfo/info-8.html -share/doc/HTML/en/kcontrol/kcminfo/info-9.html -share/doc/HTML/en/kcontrol/kcminfo/info.html -share/doc/HTML/en/kcontrol/kcminfo/logotp3.gif -share/doc/HTML/en/kcontrol/kcminput/input-1.html -share/doc/HTML/en/kcontrol/kcminput/input-2.html -share/doc/HTML/en/kcontrol/kcminput/input.html -share/doc/HTML/en/kcontrol/kcminput/logotp3.gif -share/doc/HTML/en/kcontrol/kcmkeys/keys-1.html -share/doc/HTML/en/kcontrol/kcmkeys/keys.html -share/doc/HTML/en/kcontrol/kcmkeys/logotp3.gif -share/doc/HTML/en/kcontrol/kcmkfm/kfm-1.html -share/doc/HTML/en/kcontrol/kcmkfm/kfm-2.html -share/doc/HTML/en/kcontrol/kcmkfm/kfm-3.html -share/doc/HTML/en/kcontrol/kcmkfm/kfm-4.html -share/doc/HTML/en/kcontrol/kcmkfm/kfm-5.html -share/doc/HTML/en/kcontrol/kcmkfm/kfm-6.html -share/doc/HTML/en/kcontrol/kcmkfm/kfm-7.html -share/doc/HTML/en/kcontrol/kcmkfm/kfm-8.html -share/doc/HTML/en/kcontrol/kcmkfm/kfm.html -share/doc/HTML/en/kcontrol/kcmkfm/logotp3.gif -share/doc/HTML/en/kcontrol/kcmkpanel/kpanel-1.html -share/doc/HTML/en/kcontrol/kcmkpanel/kpanel-2.html -share/doc/HTML/en/kcontrol/kcmkpanel/kpanel-3.html -share/doc/HTML/en/kcontrol/kcmkpanel/kpanel.html -share/doc/HTML/en/kcontrol/kcmkpanel/logotp3.gif -share/doc/HTML/en/kcontrol/kcmkwm/kwm-1.html -share/doc/HTML/en/kcontrol/kcmkwm/kwm-2.html -share/doc/HTML/en/kcontrol/kcmkwm/kwm-3.html -share/doc/HTML/en/kcontrol/kcmkwm/kwm-4.html -share/doc/HTML/en/kcontrol/kcmkwm/kwm-5.html -share/doc/HTML/en/kcontrol/kcmkwm/kwm-6.html -share/doc/HTML/en/kcontrol/kcmkwm/kwm.html -share/doc/HTML/en/kcontrol/kcmkwm/logotp3.gif -share/doc/HTML/en/kcontrol/kcmlocale/locale-1.html -share/doc/HTML/en/kcontrol/kcmlocale/locale.html -share/doc/HTML/en/kcontrol/kcmlocale/logotp3.gif -share/doc/HTML/en/kcontrol/kcmsamba/logotp3.gif -share/doc/HTML/en/kcontrol/kcmsamba/smbstatus-1.html -share/doc/HTML/en/kcontrol/kcmsamba/smbstatus-2.html -share/doc/HTML/en/kcontrol/kcmsamba/smbstatus.html -share/doc/HTML/en/kcontrol/kcmsyssound/logotp3.gif -share/doc/HTML/en/kcontrol/kcmsyssound/syssound-1.html -share/doc/HTML/en/kcontrol/kcmsyssound/syssound.html -share/doc/HTML/en/kcontrol/kdmconfig/index.html -share/doc/HTML/en/kcontrol/kdmconfig/kdm-appear.html -share/doc/HTML/en/kcontrol/kdmconfig/kdm-backgnd.html -share/doc/HTML/en/kcontrol/kdmconfig/kdm-font.html -share/doc/HTML/en/kcontrol/kdmconfig/kdm-sess.html -share/doc/HTML/en/kcontrol/kdmconfig/kdm-users.html -share/doc/HTML/en/kcontrol/kthememgr/kthememgr-1.html -share/doc/HTML/en/kcontrol/kthememgr/kthememgr-2.html -share/doc/HTML/en/kcontrol/kthememgr/kthememgr-3.html -share/doc/HTML/en/kcontrol/kthememgr/kthememgr-4.html -share/doc/HTML/en/kcontrol/kthememgr/kthememgr.html -share/doc/HTML/en/kcontrol/kthememgr/logotp3.gif -share/doc/HTML/en/kcontrol/logotp3.gif -share/doc/HTML/en/kdehelp/contact.html -share/doc/HTML/en/kdehelp/devel.html -share/doc/HTML/en/kdehelp/exec.xpm -share/doc/HTML/en/kdehelp/index.html -share/doc/HTML/en/kdehelp/intro.html -share/doc/HTML/en/kdehelp/kde.html -share/doc/HTML/en/kdehelp/kdeside.gif -share/doc/HTML/en/kdehelp/kogo3.gif -share/doc/HTML/en/kdehelp/kpanel/index-1.html -share/doc/HTML/en/kdehelp/kpanel/index-2.html -share/doc/HTML/en/kdehelp/kpanel/index-3.html -share/doc/HTML/en/kdehelp/kpanel/index-4.html -share/doc/HTML/en/kdehelp/kpanel/index-5.html -share/doc/HTML/en/kdehelp/kpanel/index.html -share/doc/HTML/en/kdehelp/kpanel/logotp3.gif -share/doc/HTML/en/kdehelp/ksearch.html -share/doc/HTML/en/kdehelp/kule.gif -share/doc/HTML/en/kdehelp/kwm/index-1.html -share/doc/HTML/en/kdehelp/kwm/index-2.html -share/doc/HTML/en/kdehelp/kwm/index-3.html -share/doc/HTML/en/kdehelp/kwm/index-4.html -share/doc/HTML/en/kdehelp/kwm/index-5.html -share/doc/HTML/en/kdehelp/kwm/index-6.html -share/doc/HTML/en/kdehelp/kwm/index.html -share/doc/HTML/en/kdehelp/kwm/logotp3.gif -share/doc/HTML/en/kdehelp/logotp3.gif -share/doc/HTML/en/kdehelp/main.html -share/doc/HTML/en/kdehelp/nav_bar.gif -share/doc/HTML/en/kdehelp/quickstart/index-1.html -share/doc/HTML/en/kdehelp/quickstart/index-10.html -share/doc/HTML/en/kdehelp/quickstart/index-2.html -share/doc/HTML/en/kdehelp/quickstart/index-3.html -share/doc/HTML/en/kdehelp/quickstart/index-4.html -share/doc/HTML/en/kdehelp/quickstart/index-5.html -share/doc/HTML/en/kdehelp/quickstart/index-6.html -share/doc/HTML/en/kdehelp/quickstart/index-7.html -share/doc/HTML/en/kdehelp/quickstart/index-8.html -share/doc/HTML/en/kdehelp/quickstart/index-9.html -share/doc/HTML/en/kdehelp/quickstart/index.html -share/doc/HTML/en/kdehelp/quickstart/logotp3.gif -share/doc/HTML/en/kdehelp/single_pixel.gif -share/doc/HTML/en/kdehelp/support.html -share/doc/HTML/en/kdehelp/tealbar.gif -share/doc/HTML/en/kdehelp/whatis.html -share/doc/HTML/en/kdehelp/whatiskde.html -share/doc/HTML/en/kdisknav/kdisknav-1.html -share/doc/HTML/en/kdisknav/kdisknav-2.html -share/doc/HTML/en/kdisknav/kdisknav-3.html -share/doc/HTML/en/kdisknav/kdisknav-4.html -share/doc/HTML/en/kdisknav/kdisknav-5.html -share/doc/HTML/en/kdisknav/kdisknav-6.html -share/doc/HTML/en/kdisknav/kdisknav-7.html -share/doc/HTML/en/kdisknav/kdisknav.html -share/doc/HTML/en/kdisknav/kdisknav.sgml -share/doc/HTML/en/kdisknav/logotp3.gif -share/doc/HTML/en/kdm/index-1.html -share/doc/HTML/en/kdm/index-2.html -share/doc/HTML/en/kdm/index-3.html -share/doc/HTML/en/kdm/index-4.html -share/doc/HTML/en/kdm/index.html -share/doc/HTML/en/kdm/logotp3.gif -share/doc/HTML/en/kfind/index-1.html -share/doc/HTML/en/kfind/index-2.html -share/doc/HTML/en/kfind/index-3.html -share/doc/HTML/en/kfind/index-4.html -share/doc/HTML/en/kfind/index.html -share/doc/HTML/en/kfind/index.sgml -share/doc/HTML/en/kfind/logotp3.gif -share/doc/HTML/en/kfm/app.html -share/doc/HTML/en/kfm/app1.gif -share/doc/HTML/en/kfm/app2.gif -share/doc/HTML/en/kfm/app2.html -share/doc/HTML/en/kfm/app3.gif -share/doc/HTML/en/kfm/app4.gif -share/doc/HTML/en/kfm/bookmarks.html -share/doc/HTML/en/kfm/dontpanic.jpeg -share/doc/HTML/en/kfm/index-1.html -share/doc/HTML/en/kfm/index-2.html -share/doc/HTML/en/kfm/index-3.html -share/doc/HTML/en/kfm/index-4.html -share/doc/HTML/en/kfm/index-5.html -share/doc/HTML/en/kfm/index-6.html -share/doc/HTML/en/kfm/index-7.html -share/doc/HTML/en/kfm/index.html -share/doc/HTML/en/kfm/keyboard.html -share/doc/HTML/en/kfm/kfm.jpeg -share/doc/HTML/en/kfm/kfm_how.html -share/doc/HTML/en/kfm/kfm_phil.html -share/doc/HTML/en/kfm/lesson1.jpeg -share/doc/HTML/en/kfm/lesson2.jpeg -share/doc/HTML/en/kfm/lesson3.jpeg -share/doc/HTML/en/kfm/lesson4.jpeg -share/doc/HTML/en/kfm/logotp3.gif -share/doc/HTML/en/kfm/manual.html -share/doc/HTML/en/kfm/manual.jpeg -share/doc/HTML/en/kfm/mime.html -share/doc/HTML/en/kfm/mime1.gif -share/doc/HTML/en/kfm/mime2.gif -share/doc/HTML/en/kfm/mime2.html -share/doc/HTML/en/kfm/mime3.gif -share/doc/HTML/en/kfm/next.jpeg -share/doc/HTML/en/kfm/next2.jpeg -share/doc/HTML/en/kfm/previous.jpeg -share/doc/HTML/en/kfm/previous2.jpeg -share/doc/HTML/en/kfm/templates.gif -share/doc/HTML/en/kfontmanager/index-1.html -share/doc/HTML/en/kfontmanager/index-2.html -share/doc/HTML/en/kfontmanager/index-3.html -share/doc/HTML/en/kfontmanager/index-4.html -share/doc/HTML/en/kfontmanager/index.html -share/doc/HTML/en/kfontmanager/logotp3.gif -share/doc/HTML/en/kikbd/advanced.gif -share/doc/HTML/en/kikbd/general.gif -share/doc/HTML/en/kikbd/kikbd-1.html -share/doc/HTML/en/kikbd/kikbd-10.html -share/doc/HTML/en/kikbd/kikbd-11.html -share/doc/HTML/en/kikbd/kikbd-2.html -share/doc/HTML/en/kikbd/kikbd-3.html -share/doc/HTML/en/kikbd/kikbd-4.html -share/doc/HTML/en/kikbd/kikbd-5.html -share/doc/HTML/en/kikbd/kikbd-6.html -share/doc/HTML/en/kikbd/kikbd-7.html -share/doc/HTML/en/kikbd/kikbd-8.html -share/doc/HTML/en/kikbd/kikbd-9.html -share/doc/HTML/en/kikbd/kikbd.html -share/doc/HTML/en/kikbd/logotp3.gif -share/doc/HTML/en/kikbd/startup.gif -share/doc/HTML/en/kikbd/style.gif -share/doc/HTML/en/kmedia/maudio.html -share/doc/HTML/en/kmenuedit/index-1.html -share/doc/HTML/en/kmenuedit/index-2.html -share/doc/HTML/en/kmenuedit/index-3.html -share/doc/HTML/en/kmenuedit/index-4.html -share/doc/HTML/en/kmenuedit/index-5.html -share/doc/HTML/en/kmenuedit/index.html -share/doc/HTML/en/kmenuedit/kmenuedit1.gif -share/doc/HTML/en/kmenuedit/kmenuedit2.gif -share/doc/HTML/en/kmenuedit/logotp3.gif -share/doc/HTML/en/konsole/konsole-1.html -share/doc/HTML/en/konsole/konsole-2.html -share/doc/HTML/en/konsole/konsole-3.html -share/doc/HTML/en/konsole/konsole-4.html -share/doc/HTML/en/konsole/konsole-5.html -share/doc/HTML/en/konsole/konsole.html -share/doc/HTML/en/konsole/logotp3.gif -share/doc/HTML/en/konsole/techref.html -share/doc/HTML/en/konsole/vt100.gif -share/doc/HTML/en/kpager/index-1.html -share/doc/HTML/en/kpager/index-2.html -share/doc/HTML/en/kpager/index-3.html -share/doc/HTML/en/kpager/index-4.html -share/doc/HTML/en/kpager/index-5.html -share/doc/HTML/en/kpager/index.html -share/doc/HTML/en/kpager/logotp3.gif -share/doc/HTML/en/kpanel/index-1.html -share/doc/HTML/en/kpanel/index-2.html -share/doc/HTML/en/kpanel/index-3.html -share/doc/HTML/en/kpanel/index-4.html -share/doc/HTML/en/kpanel/index-5.html -share/doc/HTML/en/kpanel/index.html -share/doc/HTML/en/kpanel/logotp3.gif -share/doc/HTML/en/kthememgr/index-1.html -share/doc/HTML/en/kthememgr/index-2.html -share/doc/HTML/en/kthememgr/index-3.html -share/doc/HTML/en/kthememgr/index.html -share/doc/HTML/en/kthememgr/logotp3.gif -share/doc/HTML/en/kvt/index.html -share/doc/HTML/en/kwm/index-1.html -share/doc/HTML/en/kwm/index-2.html -share/doc/HTML/en/kwm/index-3.html -share/doc/HTML/en/kwm/index-4.html -share/doc/HTML/en/kwm/index-5.html -share/doc/HTML/en/kwm/index-6.html -share/doc/HTML/en/kwm/index.html -share/doc/HTML/en/kwm/logotp3.gif -share/doc/HTML/ru/kikbd/advanced.gif -share/doc/HTML/ru/kikbd/general.gif -share/doc/HTML/ru/kikbd/kikbd-1.html -share/doc/HTML/ru/kikbd/kikbd-2.html -share/doc/HTML/ru/kikbd/kikbd-3.html -share/doc/HTML/ru/kikbd/kikbd-4.html -share/doc/HTML/ru/kikbd/kikbd-5.html -share/doc/HTML/ru/kikbd/kikbd-6.html -share/doc/HTML/ru/kikbd/kikbd-7.html -share/doc/HTML/ru/kikbd/kikbd-8.html -share/doc/HTML/ru/kikbd/kikbd.html -share/doc/HTML/ru/kikbd/logotp3.gif -share/doc/HTML/ru/kikbd/startup.gif -share/doc/HTML/ru/kikbd/style.gif -share/icons/3floppy_mount.xpm -share/icons/3floppy_unmount.xpm -share/icons/5floppy_mount.xpm -share/icons/5floppy_unmount.xpm -share/icons/application_settings.xpm -share/icons/applications_package.xpm -share/icons/background.xpm -share/icons/bell.xpm -share/icons/binary.xpm -share/icons/binary2.xpm -share/icons/blockdevice.xpm -share/icons/brightness.xpm -share/icons/buttons.xpm -share/icons/c_src.xpm -share/icons/cdrom_mount.xpm -share/icons/cdrom_unmount.xpm -share/icons/cdwriter_mount.xpm -share/icons/cdwriter_unmount.xpm -share/icons/chardevice.xpm -share/icons/colors.xpm -share/icons/colourness.xpm -share/icons/contrast.xpm -share/icons/core.xpm -share/icons/desktop.xpm -share/icons/desktop_settings.xpm -share/icons/document.xpm -share/icons/dvi.xpm -share/icons/editors_package.xpm -share/icons/exec.xpm -share/icons/f_src.xpm -share/icons/folder.xpm -share/icons/folder_blue.xpm -share/icons/folder_cyan.xpm -share/icons/folder_green.xpm -share/icons/folder_open.xpm -share/icons/folder_red.xpm -share/icons/folder_yellow.xpm -share/icons/font.xpm -share/icons/fonts.xpm -share/icons/ftp.xpm -share/icons/games_package.xpm -share/icons/general_settings.xpm -share/icons/gf.xpm -share/icons/graphics_package.xpm -share/icons/h_src.xpm -share/icons/harddrive_mount.xpm -share/icons/harddrive_unmount.xpm -share/icons/html.xpm -share/icons/image.xpm -share/icons/info.xpm -share/icons/information.xpm -share/icons/information_settings.xpm -share/icons/input_devices_settings.xpm -share/icons/java_src.xpm -share/icons/kcmdevices.xpm -share/icons/kcmkpanel.xpm -share/icons/kcmkwm.xpm -share/icons/kcmmemory.xpm -share/icons/kcmpartitions.xpm -share/icons/kcmpci.xpm -share/icons/kcmprocessor.xpm -share/icons/kcmscsi.xpm -share/icons/kcmsound.xpm -share/icons/kcmsyssound.xpm -share/icons/kcmx.xpm -share/icons/kcontrol.xpm -share/icons/kdehelp.xpm -share/icons/kdisknav.xpm -share/icons/kdmconfig.xpm -share/icons/keyboard.xpm -share/icons/kfind.xpm -share/icons/kfm.xpm -share/icons/kfm_fulltrash.xpm -share/icons/kfm_home.xpm -share/icons/kfm_refresh.xpm -share/icons/kfm_trash.xpm -share/icons/kfontmanager.xpm -share/icons/kikbd.xpm -share/icons/kmenuedit.xpm -share/icons/kmultiple.xpm -share/icons/konsole.xpm -share/icons/kscreensaver.xpm -share/icons/kthememgr.xpm -share/icons/kvt.xpm -share/icons/kwm.xpm -share/icons/l_src.xpm -share/icons/large/3floppy_mount.xpm -share/icons/large/3floppy_unmount.xpm -share/icons/large/5floppy_mount.xpm -share/icons/large/5floppy_unmount.xpm -share/icons/large/applications_package.xpm -share/icons/large/bell.xpm -share/icons/large/binary.xpm -share/icons/large/binary2.xpm -share/icons/large/blockdevice.xpm -share/icons/large/buttons.xpm -share/icons/large/c_src.xpm -share/icons/large/cdrom_mount.xpm -share/icons/large/cdrom_unmount.xpm -share/icons/large/cdwriter_mount.xpm -share/icons/large/cdwriter_unmount.xpm -share/icons/large/chardevice.xpm -share/icons/large/colors.xpm -share/icons/large/core.xpm -share/icons/large/desktop.xpm -share/icons/large/desktop_settings.xpm -share/icons/large/document.xpm -share/icons/large/dvi.xpm -share/icons/large/editors_package.xpm -share/icons/large/exec.xpm -share/icons/large/f_src.xpm -share/icons/large/folder.xpm -share/icons/large/folder_blue.xpm -share/icons/large/folder_cyan.xpm -share/icons/large/folder_green.xpm -share/icons/large/folder_open.xpm -share/icons/large/folder_red.xpm -share/icons/large/folder_yellow.xpm -share/icons/large/font.xpm -share/icons/large/fonts.xpm -share/icons/large/ftp.xpm -share/icons/large/games_package.xpm -share/icons/large/gf.xpm -share/icons/large/go.xpm -share/icons/large/graphics_package.xpm -share/icons/large/h_src.xpm -share/icons/large/hd_mount.xpm -share/icons/large/hd_unmount.xpm -share/icons/large/html.xpm -share/icons/large/image.xpm -share/icons/large/info.xpm -share/icons/large/java_src.xpm -share/icons/large/kcmdevices.xpm -share/icons/large/kcmmemory.xpm -share/icons/large/kcmpartitions.xpm -share/icons/large/kcmpci.xpm -share/icons/large/kcmprocessor.xpm -share/icons/large/kcmscsi.xpm -share/icons/large/kcmsyssound.xpm -share/icons/large/kcontrol.xpm -share/icons/large/kdehelp.xpm -share/icons/large/kdisknav.xpm -share/icons/large/kdmconfig.xpm -share/icons/large/kfind.xpm -share/icons/large/kfm.xpm -share/icons/large/kfm_fulltrash.xpm -share/icons/large/kfm_home.xpm -share/icons/large/kfm_trash.xpm -share/icons/large/kfontmanager.xpm -share/icons/large/kikbd.xpm -share/icons/large/kmenuedit.xpm -share/icons/large/kmultiple.xpm -share/icons/large/konsole.xpm -share/icons/large/kscreensaver.xpm -share/icons/large/kvt.xpm -share/icons/large/kwm.xpm -share/icons/large/l_src.xpm -share/icons/large/library.xpm -share/icons/large/link.xpm -share/icons/large/locale.xpm -share/icons/large/locked_file.xpm -share/icons/large/lockedfolder.xpm -share/icons/large/log.xpm -share/icons/large/magneto-optical_mount.xpm -share/icons/large/magneto-optical_unmount.xpm -share/icons/large/make.xpm -share/icons/large/man.xpm -share/icons/large/metafont.xpm -share/icons/large/midi.xpm -share/icons/large/misc.xpm -share/icons/large/moc_src.xpm -share/icons/large/multimedia_package.xpm -share/icons/large/network_package.xpm -share/icons/large/o_src.xpm -share/icons/large/p_src.xpm -share/icons/large/package.xpm -share/icons/large/pdf.xpm -share/icons/large/perl.xpm -share/icons/large/perl_doc.xpm -share/icons/large/pk.xpm -share/icons/large/postscript.xpm -share/icons/large/properties.xpm -share/icons/large/readme.xpm -share/icons/large/readonly.xpm -share/icons/large/resource.xpm -share/icons/large/screensaver.xpm -share/icons/large/script.xpm -share/icons/large/settings_package.xpm -share/icons/large/shredder.xpm -share/icons/large/single_doc.xpm -share/icons/large/socket.xpm -share/icons/large/sound.xpm -share/icons/large/style.xpm -share/icons/large/system_package.xpm -share/icons/large/tablet.xpm -share/icons/large/tape_archive.xpm -share/icons/large/terminal.xpm -share/icons/large/tex.xpm -share/icons/large/tgz.xpm -share/icons/large/titlebar.xpm -share/icons/large/trash.xpm -share/icons/large/trash_full.xpm -share/icons/large/txt.xpm -share/icons/large/unknown.xpm -share/icons/large/utilities_package.xpm -share/icons/large/video.xpm -share/icons/large/www.xpm -share/icons/large/x.xpm -share/icons/large/y_src.xpm -share/icons/large/zip_mount.xpm -share/icons/large/zip_unmount.xpm -share/icons/library.xpm -share/icons/link.xpm -share/icons/locale.xpm -share/icons/locked.xpm -share/icons/locked_file.xpm -share/icons/lockedfolder.xpm -share/icons/log.xpm -share/icons/logo.xpm -share/icons/magneto-optical_mount.xpm -share/icons/magneto-optical_unmount.xpm -share/icons/make.xpm -share/icons/man.xpm -share/icons/metafont.xpm -share/icons/midi.xpm -share/icons/mini/3floppy_mount.xpm -share/icons/mini/3floppy_unmount.xpm -share/icons/mini/5floppy_mount.xpm -share/icons/mini/5floppy_unmount.xpm -share/icons/mini/application_settings.xpm -share/icons/mini/applications_package.xpm -share/icons/mini/audiovol.xpm -share/icons/mini/background.xpm -share/icons/mini/bell.xpm -share/icons/mini/binary.xpm -share/icons/mini/blockdevice.xpm -share/icons/mini/buttons.xpm -share/icons/mini/c_src.xpm -share/icons/mini/cdrom_mount.xpm -share/icons/mini/cdrom_unmount.xpm -share/icons/mini/chardevice.xpm -share/icons/mini/colors.xpm -share/icons/mini/core.xpm -share/icons/mini/desktop.xpm -share/icons/mini/desktop_settings.xpm -share/icons/mini/document.xpm -share/icons/mini/dvi.xpm -share/icons/mini/editors_package.xpm -share/icons/mini/exec.xpm -share/icons/mini/f_src.xpm -share/icons/mini/folder.xpm -share/icons/mini/folder_blue.xpm -share/icons/mini/folder_cyan.xpm -share/icons/mini/folder_green.xpm -share/icons/mini/folder_open.xpm -share/icons/mini/folder_red.xpm -share/icons/mini/folder_yellow.xpm -share/icons/mini/font.xpm -share/icons/mini/fonts.xpm -share/icons/mini/ftp.xpm -share/icons/mini/games_package.xpm -share/icons/mini/general_settings.xpm -share/icons/mini/gf.xpm -share/icons/mini/graphics_package.xpm -share/icons/mini/h_src.xpm -share/icons/mini/harddrive_mount.xpm -share/icons/mini/harddrive_unmount.xpm -share/icons/mini/html.xpm -share/icons/mini/image.xpm -share/icons/mini/info.xpm -share/icons/mini/information_settings.xpm -share/icons/mini/input_devices_settings.xpm -share/icons/mini/java_src.xpm -share/icons/mini/kcmdevices.xpm -share/icons/mini/kcmkpanel.xpm -share/icons/mini/kcmkwm.xpm -share/icons/mini/kcmmemory.xpm -share/icons/mini/kcmpartitions.xpm -share/icons/mini/kcmpci.xpm -share/icons/mini/kcmprocessor.xpm -share/icons/mini/kcmscsi.xpm -share/icons/mini/kcmsound.xpm -share/icons/mini/kcmsyssound.xpm -share/icons/mini/kcmx.xpm -share/icons/mini/kcontrol.xpm -share/icons/mini/kdehelp.xpm -share/icons/mini/kdmconfig.xpm -share/icons/mini/keyboard.xpm -share/icons/mini/kfind.xpm -share/icons/mini/kfm.xpm -share/icons/mini/kfm_fulltrash.xpm -share/icons/mini/kfm_home.xpm -share/icons/mini/kfm_refresh.xpm -share/icons/mini/kfm_trash.xpm -share/icons/mini/kfontmanager.xpm -share/icons/mini/kikbd.xpm -share/icons/mini/kmenuedit.xpm -share/icons/mini/konsole.xpm -share/icons/mini/kscreensaver.xpm -share/icons/mini/kthememgr.xpm -share/icons/mini/kvt.xpm -share/icons/mini/kwm.xpm -share/icons/mini/l_src.xpm -share/icons/mini/library.xpm -share/icons/mini/locale.xpm -share/icons/mini/locked.xpm -share/icons/mini/lockedfolder.xpm -share/icons/mini/log.xpm -share/icons/mini/make.xpm -share/icons/mini/man.xpm -share/icons/mini/maximize2.xpm -share/icons/mini/metafont.xpm -share/icons/mini/midi.xpm -share/icons/mini/mini-ball.xpm -share/icons/mini/mini-bball.xpm -share/icons/mini/mini-bomb.xpm -share/icons/mini/mini-book1.xpm -share/icons/mini/mini-book2.xpm -share/icons/mini/mini-bug1.xpm -share/icons/mini/mini-bug2.xpm -share/icons/mini/mini-bx2.xpm -share/icons/mini/mini-calc.xpm -share/icons/mini/mini-camera.xpm -share/icons/mini/mini-cdlabel.xpm -share/icons/mini/mini-clock.xpm -share/icons/mini/mini-colors.xpm -share/icons/mini/mini-connect.xpm -share/icons/mini/mini-connected.xpm -share/icons/mini/mini-cross.xpm -share/icons/mini/mini-default.xpm -share/icons/mini/mini-display.xpm -share/icons/mini/mini-doc.xpm -share/icons/mini/mini-edit.xpm -share/icons/mini/mini-exclam.xpm -share/icons/mini/mini-exp.xpm -share/icons/mini/mini-eyes.xpm -share/icons/mini/mini-filemgr.xpm -share/icons/mini/mini-fractal.xpm -share/icons/mini/mini-gball.xpm -share/icons/mini/mini-gv.xpm -share/icons/mini/mini-hammer.xpm -share/icons/mini/mini-happy.xpm -share/icons/mini/mini-hextris.xpm -share/icons/mini/mini-k.xpm -share/icons/mini/mini-lock.xpm -share/icons/mini/mini-lower.xpm -share/icons/mini/mini-mail.xpm -share/icons/mini/mini-manual.xpm -share/icons/mini/mini-max1.xpm -share/icons/mini/mini-maze.xpm -share/icons/mini/mini-modules.xpm -share/icons/mini/mini-move.xpm -share/icons/mini/mini-move1.xpm -share/icons/mini/mini-nscape.xpm -share/icons/mini/mini-ofolder.xpm -share/icons/mini/mini-olwm.xpm -share/icons/mini/mini-paint.xpm -share/icons/mini/mini-pencil.xpm -share/icons/mini/mini-question.xpm -share/icons/mini/mini-raise.xpm -share/icons/mini/mini-ray.xpm -share/icons/mini/mini-rball.xpm -share/icons/mini/mini-resize.xpm -share/icons/mini/mini-roach.xpm -share/icons/mini/mini-run.xpm -share/icons/mini/mini-sh.xpm -share/icons/mini/mini-sh1.xpm -share/icons/mini/mini-slon.xpm -share/icons/mini/mini-stop.xpm -share/icons/mini/mini-term.xpm -share/icons/mini/mini-tetris.xpm -share/icons/mini/mini-turn.xpm -share/icons/mini/mini-up.xpm -share/icons/mini/mini-windows.xpm -share/icons/mini/mini-x.xpm -share/icons/mini/mini-x2.xpm -share/icons/mini/mini-xmahjongg.xpm -share/icons/mini/mini-xv.xpm -share/icons/mini/mini-zoom.xpm -share/icons/mini/mini.audiovol.xpm -share/icons/mini/mini.checkmark.xpm -share/icons/mini/mini.cut.xpm -share/icons/mini/mini.destroy.xpm -share/icons/mini/mini.excl.xpm -share/icons/mini/mini.exit.xpm -share/icons/mini/mini.fvwm.xpm -share/icons/mini/mini.letter.xpm -share/icons/mini/mini.lower.xpm -share/icons/mini/mini.move.xpm -share/icons/mini/mini.netscape.xpm -share/icons/mini/mini.raise.xpm -share/icons/mini/mini.resize.xpm -share/icons/mini/mini.xarchie.xpm -share/icons/mini/mini.xboing.xpm -share/icons/mini/mini.xlock.xpm -share/icons/mini/mini.xpm -share/icons/mini/mini.xterm.xpm -share/icons/mini/mini.zircon.xpm -share/icons/mini/moc_src.xpm -share/icons/mini/mouse.xpm -share/icons/mini/multimedia_package.xpm -share/icons/mini/network_package.xpm -share/icons/mini/network_settings.xpm -share/icons/mini/o_src.xpm -share/icons/mini/p_src.xpm -share/icons/mini/package.xpm -share/icons/mini/panel_settings.xpm -share/icons/mini/pci.xpm -share/icons/mini/pdf.xpm -share/icons/mini/pipe.xpm -share/icons/mini/pk.xpm -share/icons/mini/postscript.xpm -share/icons/mini/printer.xpm -share/icons/mini/readme.xpm -share/icons/mini/resource.xpm -share/icons/mini/s_src.xpm -share/icons/mini/sample.xpm -share/icons/mini/screensaver.xpm -share/icons/mini/script.xpm -share/icons/mini/settings_package.xpm -share/icons/mini/smbstatus.xpm -share/icons/mini/socket.xpm -share/icons/mini/sound.xpm -share/icons/mini/sound_settings.xpm -share/icons/mini/style.xpm -share/icons/mini/system_package.xpm -share/icons/mini/tablet.xpm -share/icons/mini/terminal.xpm -share/icons/mini/tex.xpm -share/icons/mini/tgz.xpm -share/icons/mini/titlebar.xpm -share/icons/mini/trash.xpm -share/icons/mini/txt.xpm -share/icons/mini/unknown.xpm -share/icons/mini/utilities_package.xpm -share/icons/mini/video.xpm -share/icons/mini/windows.xpm -share/icons/mini/winprops.xpm -share/icons/mini/www.xpm -share/icons/mini/x.xpm -share/icons/mini/y_src.xpm -share/icons/mini/zip_mount.xpm -share/icons/mini/zip_unmount.xpm -share/icons/misc.xpm -share/icons/moc_src.xpm -share/icons/monitor.xpm -share/icons/mouse.xpm -share/icons/multimedia_package.xpm -share/icons/network.xpm -share/icons/network_package.xpm -share/icons/network_settings.xpm -share/icons/o_src.xpm -share/icons/p_src.xpm -share/icons/package.xpm -share/icons/panel_settings.xpm -share/icons/pdf.xpm -share/icons/perl.xpm -share/icons/pipe.xpm -share/icons/pk.xpm -share/icons/postscript.xpm -share/icons/printer.xpm -share/icons/properties.xpm -share/icons/readme.xpm -share/icons/readonly.xpm -share/icons/resource.xpm -share/icons/s_src.xpm -share/icons/screensaver.xpm -share/icons/script.xpm -share/icons/settings_package.xpm -share/icons/shredder.xpm -share/icons/single_doc.xpm -share/icons/smbstatus.xpm -share/icons/socket.xpm -share/icons/sound.xpm -share/icons/sound_settings.xpm -share/icons/style.xpm -share/icons/system_package.xpm -share/icons/tablet.xpm -share/icons/terminal.xpm -share/icons/tex.xpm -share/icons/tgz.xpm -share/icons/titlebar.xpm -share/icons/trash.xpm -share/icons/txt.xpm -share/icons/unknown.xpm -share/icons/utilities_package.xpm -share/icons/video.xpm -share/icons/www.xpm -share/icons/x.xpm -share/icons/y_src.xpm -share/icons/zip_mount.xpm -share/icons/zip_unmount.xpm -share/locale/br/LC_MESSAGES/kbgndwm.mo -share/locale/br/LC_MESSAGES/kcmbell.mo -share/locale/br/LC_MESSAGES/kcmdisplay.mo -share/locale/br/LC_MESSAGES/kcminfo.mo -share/locale/br/LC_MESSAGES/kcminput.mo -share/locale/br/LC_MESSAGES/kcmkeys.mo -share/locale/br/LC_MESSAGES/kcmkfm.mo -share/locale/br/LC_MESSAGES/kcmkpanel.mo -share/locale/br/LC_MESSAGES/kcmkwm.mo -share/locale/br/LC_MESSAGES/kcmlocale.mo -share/locale/br/LC_MESSAGES/kcmsamba.mo -share/locale/br/LC_MESSAGES/kcmsample.mo -share/locale/br/LC_MESSAGES/kcmsyssound.mo -share/locale/br/LC_MESSAGES/kcontrol.mo -share/locale/br/LC_MESSAGES/kdehelp.mo -share/locale/br/LC_MESSAGES/kdm.mo -share/locale/br/LC_MESSAGES/kdmconfig.mo -share/locale/br/LC_MESSAGES/kfind.mo -share/locale/br/LC_MESSAGES/kfm.mo -share/locale/br/LC_MESSAGES/kfontmanager.mo -share/locale/br/LC_MESSAGES/kikbd.mo -share/locale/br/LC_MESSAGES/klock.mo -share/locale/br/LC_MESSAGES/kmenuedit.mo -share/locale/br/LC_MESSAGES/konsole.mo -share/locale/br/LC_MESSAGES/kpager.mo -share/locale/br/LC_MESSAGES/kpanel.mo -share/locale/br/LC_MESSAGES/krootwm.mo -share/locale/br/LC_MESSAGES/kstart.mo -share/locale/br/LC_MESSAGES/kvt.mo -share/locale/br/LC_MESSAGES/kwm.mo -share/locale/ca/LC_MESSAGES/kbgndwm.mo -share/locale/ca/LC_MESSAGES/kcmbell.mo -share/locale/ca/LC_MESSAGES/kcmdisplay.mo -share/locale/ca/LC_MESSAGES/kcminfo.mo -share/locale/ca/LC_MESSAGES/kcminput.mo -share/locale/ca/LC_MESSAGES/kcmkeys.mo -share/locale/ca/LC_MESSAGES/kcmkfm.mo -share/locale/ca/LC_MESSAGES/kcmkpanel.mo -share/locale/ca/LC_MESSAGES/kcmkwm.mo -share/locale/ca/LC_MESSAGES/kcmlocale.mo -share/locale/ca/LC_MESSAGES/kcmsamba.mo -share/locale/ca/LC_MESSAGES/kcmsample.mo -share/locale/ca/LC_MESSAGES/kcmsyssound.mo -share/locale/ca/LC_MESSAGES/kcontrol.mo -share/locale/ca/LC_MESSAGES/kdehelp.mo -share/locale/ca/LC_MESSAGES/kdm.mo -share/locale/ca/LC_MESSAGES/kdmconfig.mo -share/locale/ca/LC_MESSAGES/kfind.mo -share/locale/ca/LC_MESSAGES/kfm.mo -share/locale/ca/LC_MESSAGES/kfontmanager.mo -share/locale/ca/LC_MESSAGES/kikbd.mo -share/locale/ca/LC_MESSAGES/klock.mo -share/locale/ca/LC_MESSAGES/kmenuedit.mo -share/locale/ca/LC_MESSAGES/konsole.mo -share/locale/ca/LC_MESSAGES/kpager.mo -share/locale/ca/LC_MESSAGES/kpanel.mo -share/locale/ca/LC_MESSAGES/krootwm.mo -share/locale/ca/LC_MESSAGES/kstart.mo -share/locale/ca/LC_MESSAGES/kvt.mo -share/locale/ca/LC_MESSAGES/kwm.mo -share/locale/cs/LC_MESSAGES/kcmbell.mo -share/locale/cs/LC_MESSAGES/kcmdisplay.mo -share/locale/cs/LC_MESSAGES/kcminfo.mo -share/locale/cs/LC_MESSAGES/kcminput.mo -share/locale/cs/LC_MESSAGES/kcmkeys.mo -share/locale/cs/LC_MESSAGES/kcmkfm.mo -share/locale/cs/LC_MESSAGES/kcmkpanel.mo -share/locale/cs/LC_MESSAGES/kcmkwm.mo -share/locale/cs/LC_MESSAGES/kcmlocale.mo -share/locale/cs/LC_MESSAGES/kcmsamba.mo -share/locale/cs/LC_MESSAGES/kcmsample.mo -share/locale/cs/LC_MESSAGES/kcmsyssound.mo -share/locale/cs/LC_MESSAGES/kcontrol.mo -share/locale/cs/LC_MESSAGES/kdehelp.mo -share/locale/cs/LC_MESSAGES/kdm.mo -share/locale/cs/LC_MESSAGES/kdmconfig.mo -share/locale/cs/LC_MESSAGES/kfind.mo -share/locale/cs/LC_MESSAGES/kfm.mo -share/locale/cs/LC_MESSAGES/kfontmanager.mo -share/locale/cs/LC_MESSAGES/kikbd.mo -share/locale/cs/LC_MESSAGES/klock.mo -share/locale/cs/LC_MESSAGES/kmenuedit.mo -share/locale/cs/LC_MESSAGES/konsole.mo -share/locale/cs/LC_MESSAGES/kpager.mo -share/locale/cs/LC_MESSAGES/kpanel.mo -share/locale/cs/LC_MESSAGES/krootwm.mo -share/locale/cs/LC_MESSAGES/kstart.mo -share/locale/cs/LC_MESSAGES/kvt.mo -share/locale/cs/LC_MESSAGES/kwm.mo -share/locale/da/LC_MESSAGES/kbgndwm.mo -share/locale/da/LC_MESSAGES/kcmbell.mo -share/locale/da/LC_MESSAGES/kcmdisplay.mo -share/locale/da/LC_MESSAGES/kcminfo.mo -share/locale/da/LC_MESSAGES/kcminput.mo -share/locale/da/LC_MESSAGES/kcmkeys.mo -share/locale/da/LC_MESSAGES/kcmkfm.mo -share/locale/da/LC_MESSAGES/kcmkpanel.mo -share/locale/da/LC_MESSAGES/kcmkwm.mo -share/locale/da/LC_MESSAGES/kcmlocale.mo -share/locale/da/LC_MESSAGES/kcmsamba.mo -share/locale/da/LC_MESSAGES/kcmsample.mo -share/locale/da/LC_MESSAGES/kcmsyssound.mo -share/locale/da/LC_MESSAGES/kcontrol.mo -share/locale/da/LC_MESSAGES/kdehelp.mo -share/locale/da/LC_MESSAGES/kdm.mo -share/locale/da/LC_MESSAGES/kdmconfig.mo -share/locale/da/LC_MESSAGES/kfind.mo -share/locale/da/LC_MESSAGES/kfm.mo -share/locale/da/LC_MESSAGES/kfontmanager.mo -share/locale/da/LC_MESSAGES/kikbd.mo -share/locale/da/LC_MESSAGES/klock.mo -share/locale/da/LC_MESSAGES/kmenuedit.mo -share/locale/da/LC_MESSAGES/konsole.mo -share/locale/da/LC_MESSAGES/kpager.mo -share/locale/da/LC_MESSAGES/kpanel.mo -share/locale/da/LC_MESSAGES/krootwm.mo -share/locale/da/LC_MESSAGES/kstart.mo -share/locale/da/LC_MESSAGES/kvt.mo -share/locale/da/LC_MESSAGES/kwm.mo -share/locale/de/LC_MESSAGES/kbgndwm.mo -share/locale/de/LC_MESSAGES/kcmbell.mo -share/locale/de/LC_MESSAGES/kcmdisplay.mo -share/locale/de/LC_MESSAGES/kcminfo.mo -share/locale/de/LC_MESSAGES/kcminput.mo -share/locale/de/LC_MESSAGES/kcmkeys.mo -share/locale/de/LC_MESSAGES/kcmkfm.mo -share/locale/de/LC_MESSAGES/kcmkpanel.mo -share/locale/de/LC_MESSAGES/kcmkwm.mo -share/locale/de/LC_MESSAGES/kcmlocale.mo -share/locale/de/LC_MESSAGES/kcmsamba.mo -share/locale/de/LC_MESSAGES/kcmsample.mo -share/locale/de/LC_MESSAGES/kcmsyssound.mo -share/locale/de/LC_MESSAGES/kcontrol.mo -share/locale/de/LC_MESSAGES/kdehelp.mo -share/locale/de/LC_MESSAGES/kdm.mo -share/locale/de/LC_MESSAGES/kdmconfig.mo -share/locale/de/LC_MESSAGES/kfind.mo -share/locale/de/LC_MESSAGES/kfm.mo -share/locale/de/LC_MESSAGES/kfontmanager.mo -share/locale/de/LC_MESSAGES/kikbd.mo -share/locale/de/LC_MESSAGES/klock.mo -share/locale/de/LC_MESSAGES/kmenuedit.mo -share/locale/de/LC_MESSAGES/konsole.mo -share/locale/de/LC_MESSAGES/kpager.mo -share/locale/de/LC_MESSAGES/kpanel.mo -share/locale/de/LC_MESSAGES/krootwm.mo -share/locale/de/LC_MESSAGES/kstart.mo -share/locale/de/LC_MESSAGES/kthememgr.mo -share/locale/de/LC_MESSAGES/kvt.mo -share/locale/de/LC_MESSAGES/kwm.mo -share/locale/el/LC_MESSAGES/kcmbell.mo -share/locale/el/LC_MESSAGES/kcmdisplay.mo -share/locale/el/LC_MESSAGES/kcminfo.mo -share/locale/el/LC_MESSAGES/kcminput.mo -share/locale/el/LC_MESSAGES/kcmkpanel.mo -share/locale/el/LC_MESSAGES/kcmkwm.mo -share/locale/el/LC_MESSAGES/kcmlocale.mo -share/locale/el/LC_MESSAGES/kcmsamba.mo -share/locale/el/LC_MESSAGES/kcmsample.mo -share/locale/el/LC_MESSAGES/kcmsyssound.mo -share/locale/el/LC_MESSAGES/kcontrol.mo -share/locale/el/LC_MESSAGES/kdehelp.mo -share/locale/el/LC_MESSAGES/kdm.mo -share/locale/el/LC_MESSAGES/kdmconfig.mo -share/locale/el/LC_MESSAGES/kfind.mo -share/locale/el/LC_MESSAGES/kfm.mo -share/locale/el/LC_MESSAGES/kfontmanager.mo -share/locale/el/LC_MESSAGES/klock.mo -share/locale/el/LC_MESSAGES/kmenuedit.mo -share/locale/el/LC_MESSAGES/kpanel.mo -share/locale/el/LC_MESSAGES/krootwm.mo -share/locale/el/LC_MESSAGES/kvt.mo -share/locale/el/LC_MESSAGES/kwm.mo -share/locale/en_UK/LC_MESSAGES/kcmdisplay.mo -share/locale/en_UK/LC_MESSAGES/kcmkwm.mo -share/locale/en_UK/LC_MESSAGES/kcmsyssound.mo -share/locale/en_UK/LC_MESSAGES/kdehelp.mo -share/locale/en_UK/LC_MESSAGES/kdmconfig.mo -share/locale/en_UK/LC_MESSAGES/klock.mo -share/locale/en_UK/LC_MESSAGES/kvt.mo -share/locale/en_UK/LC_MESSAGES/kwm.mo -share/locale/eo/LC_MESSAGES/kbgndwm.mo -share/locale/eo/LC_MESSAGES/kcmbell.mo -share/locale/eo/LC_MESSAGES/kcmdisplay.mo -share/locale/eo/LC_MESSAGES/kcminfo.mo -share/locale/eo/LC_MESSAGES/kcminput.mo -share/locale/eo/LC_MESSAGES/kcmkeys.mo -share/locale/eo/LC_MESSAGES/kcmkfm.mo -share/locale/eo/LC_MESSAGES/kcmkpanel.mo -share/locale/eo/LC_MESSAGES/kcmkwm.mo -share/locale/eo/LC_MESSAGES/kcmlocale.mo -share/locale/eo/LC_MESSAGES/kcmsamba.mo -share/locale/eo/LC_MESSAGES/kcmsample.mo -share/locale/eo/LC_MESSAGES/kcmsyssound.mo -share/locale/eo/LC_MESSAGES/kcontrol.mo -share/locale/eo/LC_MESSAGES/kdehelp.mo -share/locale/eo/LC_MESSAGES/kdm.mo -share/locale/eo/LC_MESSAGES/kdmconfig.mo -share/locale/eo/LC_MESSAGES/kfind.mo -share/locale/eo/LC_MESSAGES/kfm.mo -share/locale/eo/LC_MESSAGES/kfontmanager.mo -share/locale/eo/LC_MESSAGES/kikbd.mo -share/locale/eo/LC_MESSAGES/klock.mo -share/locale/eo/LC_MESSAGES/kmenuedit.mo -share/locale/eo/LC_MESSAGES/konsole.mo -share/locale/eo/LC_MESSAGES/kpager.mo -share/locale/eo/LC_MESSAGES/kpanel.mo -share/locale/eo/LC_MESSAGES/krootwm.mo -share/locale/eo/LC_MESSAGES/kstart.mo -share/locale/eo/LC_MESSAGES/kvt.mo -share/locale/eo/LC_MESSAGES/kwm.mo -share/locale/es/LC_MESSAGES/kbgndwm.mo -share/locale/es/LC_MESSAGES/kcmbell.mo -share/locale/es/LC_MESSAGES/kcmdisplay.mo -share/locale/es/LC_MESSAGES/kcminfo.mo -share/locale/es/LC_MESSAGES/kcminput.mo -share/locale/es/LC_MESSAGES/kcmkeys.mo -share/locale/es/LC_MESSAGES/kcmkfm.mo -share/locale/es/LC_MESSAGES/kcmkpanel.mo -share/locale/es/LC_MESSAGES/kcmkwm.mo -share/locale/es/LC_MESSAGES/kcmlocale.mo -share/locale/es/LC_MESSAGES/kcmsamba.mo -share/locale/es/LC_MESSAGES/kcmsample.mo -share/locale/es/LC_MESSAGES/kcmsyssound.mo -share/locale/es/LC_MESSAGES/kcontrol.mo -share/locale/es/LC_MESSAGES/kdehelp.mo -share/locale/es/LC_MESSAGES/kdm.mo -share/locale/es/LC_MESSAGES/kdmconfig.mo -share/locale/es/LC_MESSAGES/kfind.mo -share/locale/es/LC_MESSAGES/kfm.mo -share/locale/es/LC_MESSAGES/kfontmanager.mo -share/locale/es/LC_MESSAGES/kikbd.mo -share/locale/es/LC_MESSAGES/klock.mo -share/locale/es/LC_MESSAGES/kmenuedit.mo -share/locale/es/LC_MESSAGES/konsole.mo -share/locale/es/LC_MESSAGES/kpager.mo -share/locale/es/LC_MESSAGES/kpanel.mo -share/locale/es/LC_MESSAGES/krootwm.mo -share/locale/es/LC_MESSAGES/kstart.mo -share/locale/es/LC_MESSAGES/kvt.mo -share/locale/es/LC_MESSAGES/kwm.mo -share/locale/et/LC_MESSAGES/kbgndwm.mo -share/locale/et/LC_MESSAGES/kcmbell.mo -share/locale/et/LC_MESSAGES/kcmdisplay.mo -share/locale/et/LC_MESSAGES/kcminfo.mo -share/locale/et/LC_MESSAGES/kcminput.mo -share/locale/et/LC_MESSAGES/kcmkeys.mo -share/locale/et/LC_MESSAGES/kcmkfm.mo -share/locale/et/LC_MESSAGES/kcmkpanel.mo -share/locale/et/LC_MESSAGES/kcmkwm.mo -share/locale/et/LC_MESSAGES/kcmlocale.mo -share/locale/et/LC_MESSAGES/kcmsamba.mo -share/locale/et/LC_MESSAGES/kcmsample.mo -share/locale/et/LC_MESSAGES/kcmsyssound.mo -share/locale/et/LC_MESSAGES/kcontrol.mo -share/locale/et/LC_MESSAGES/kdehelp.mo -share/locale/et/LC_MESSAGES/kdm.mo -share/locale/et/LC_MESSAGES/kdmconfig.mo -share/locale/et/LC_MESSAGES/kfind.mo -share/locale/et/LC_MESSAGES/kfm.mo -share/locale/et/LC_MESSAGES/kfontmanager.mo -share/locale/et/LC_MESSAGES/kikbd.mo -share/locale/et/LC_MESSAGES/klock.mo -share/locale/et/LC_MESSAGES/kmenuedit.mo -share/locale/et/LC_MESSAGES/konsole.mo -share/locale/et/LC_MESSAGES/kpager.mo -share/locale/et/LC_MESSAGES/kpanel.mo -share/locale/et/LC_MESSAGES/krootwm.mo -share/locale/et/LC_MESSAGES/kstart.mo -share/locale/et/LC_MESSAGES/kvt.mo -share/locale/et/LC_MESSAGES/kwm.mo -share/locale/fi/LC_MESSAGES/kbgndwm.mo -share/locale/fi/LC_MESSAGES/kcmbell.mo -share/locale/fi/LC_MESSAGES/kcmdisplay.mo -share/locale/fi/LC_MESSAGES/kcminfo.mo -share/locale/fi/LC_MESSAGES/kcminput.mo -share/locale/fi/LC_MESSAGES/kcmkeys.mo -share/locale/fi/LC_MESSAGES/kcmkfm.mo -share/locale/fi/LC_MESSAGES/kcmkpanel.mo -share/locale/fi/LC_MESSAGES/kcmkwm.mo -share/locale/fi/LC_MESSAGES/kcmlocale.mo -share/locale/fi/LC_MESSAGES/kcmsamba.mo -share/locale/fi/LC_MESSAGES/kcmsample.mo -share/locale/fi/LC_MESSAGES/kcmsyssound.mo -share/locale/fi/LC_MESSAGES/kcontrol.mo -share/locale/fi/LC_MESSAGES/kdehelp.mo -share/locale/fi/LC_MESSAGES/kdm.mo -share/locale/fi/LC_MESSAGES/kdmconfig.mo -share/locale/fi/LC_MESSAGES/kfind.mo -share/locale/fi/LC_MESSAGES/kfm.mo -share/locale/fi/LC_MESSAGES/kfontmanager.mo -share/locale/fi/LC_MESSAGES/kikbd.mo -share/locale/fi/LC_MESSAGES/klock.mo -share/locale/fi/LC_MESSAGES/kmenuedit.mo -share/locale/fi/LC_MESSAGES/konsole.mo -share/locale/fi/LC_MESSAGES/kpager.mo -share/locale/fi/LC_MESSAGES/kpanel.mo -share/locale/fi/LC_MESSAGES/krootwm.mo -share/locale/fi/LC_MESSAGES/kstart.mo -share/locale/fi/LC_MESSAGES/kthememgr.mo -share/locale/fi/LC_MESSAGES/kvt.mo -share/locale/fi/LC_MESSAGES/kwm.mo -share/locale/fr/LC_MESSAGES/kbgndwm.mo -share/locale/fr/LC_MESSAGES/kcmbell.mo -share/locale/fr/LC_MESSAGES/kcmdisplay.mo -share/locale/fr/LC_MESSAGES/kcminfo.mo -share/locale/fr/LC_MESSAGES/kcminput.mo -share/locale/fr/LC_MESSAGES/kcmkeys.mo -share/locale/fr/LC_MESSAGES/kcmkfm.mo -share/locale/fr/LC_MESSAGES/kcmkpanel.mo -share/locale/fr/LC_MESSAGES/kcmkwm.mo -share/locale/fr/LC_MESSAGES/kcmlocale.mo -share/locale/fr/LC_MESSAGES/kcmsamba.mo -share/locale/fr/LC_MESSAGES/kcmsample.mo -share/locale/fr/LC_MESSAGES/kcmsyssound.mo -share/locale/fr/LC_MESSAGES/kcontrol.mo -share/locale/fr/LC_MESSAGES/kdehelp.mo -share/locale/fr/LC_MESSAGES/kdm.mo -share/locale/fr/LC_MESSAGES/kdmconfig.mo -share/locale/fr/LC_MESSAGES/kfind.mo -share/locale/fr/LC_MESSAGES/kfm.mo -share/locale/fr/LC_MESSAGES/kfontmanager.mo -share/locale/fr/LC_MESSAGES/kikbd.mo -share/locale/fr/LC_MESSAGES/klock.mo -share/locale/fr/LC_MESSAGES/kmenuedit.mo -share/locale/fr/LC_MESSAGES/konsole.mo -share/locale/fr/LC_MESSAGES/kpager.mo -share/locale/fr/LC_MESSAGES/kpanel.mo -share/locale/fr/LC_MESSAGES/krootwm.mo -share/locale/fr/LC_MESSAGES/kstart.mo -share/locale/fr/LC_MESSAGES/kthememgr.mo -share/locale/fr/LC_MESSAGES/kvt.mo -share/locale/fr/LC_MESSAGES/kwm.mo -share/locale/he/LC_MESSAGES/kcmbell.mo -share/locale/he/LC_MESSAGES/kcmdisplay.mo -share/locale/he/LC_MESSAGES/kcminfo.mo -share/locale/he/LC_MESSAGES/kcmkfm.mo -share/locale/he/LC_MESSAGES/kcmkpanel.mo -share/locale/he/LC_MESSAGES/kcmlocale.mo -share/locale/he/LC_MESSAGES/kcontrol.mo -share/locale/he/LC_MESSAGES/kdehelp.mo -share/locale/he/LC_MESSAGES/kdm.mo -share/locale/he/LC_MESSAGES/kfind.mo -share/locale/he/LC_MESSAGES/kfm.mo -share/locale/he/LC_MESSAGES/kpanel.mo -share/locale/he/LC_MESSAGES/krootwm.mo -share/locale/he/LC_MESSAGES/ksysv.mo -share/locale/he/LC_MESSAGES/kuser.mo -share/locale/he/LC_MESSAGES/kvt.mo -share/locale/he/LC_MESSAGES/kwm.mo -share/locale/hr/LC_MESSAGES/kbgndwm.mo -share/locale/hr/LC_MESSAGES/kcmbell.mo -share/locale/hr/LC_MESSAGES/kcmdisplay.mo -share/locale/hr/LC_MESSAGES/kcminfo.mo -share/locale/hr/LC_MESSAGES/kcminput.mo -share/locale/hr/LC_MESSAGES/kcmkeys.mo -share/locale/hr/LC_MESSAGES/kcmkfm.mo -share/locale/hr/LC_MESSAGES/kcmkpanel.mo -share/locale/hr/LC_MESSAGES/kcmkwm.mo -share/locale/hr/LC_MESSAGES/kcmlocale.mo -share/locale/hr/LC_MESSAGES/kcmsamba.mo -share/locale/hr/LC_MESSAGES/kcmsample.mo -share/locale/hr/LC_MESSAGES/kcmsyssound.mo -share/locale/hr/LC_MESSAGES/kcontrol.mo -share/locale/hr/LC_MESSAGES/kdehelp.mo -share/locale/hr/LC_MESSAGES/kdm.mo -share/locale/hr/LC_MESSAGES/kdmconfig.mo -share/locale/hr/LC_MESSAGES/kfind.mo -share/locale/hr/LC_MESSAGES/kfm.mo -share/locale/hr/LC_MESSAGES/kfontmanager.mo -share/locale/hr/LC_MESSAGES/kikbd.mo -share/locale/hr/LC_MESSAGES/klock.mo -share/locale/hr/LC_MESSAGES/kmenuedit.mo -share/locale/hr/LC_MESSAGES/konsole.mo -share/locale/hr/LC_MESSAGES/kpager.mo -share/locale/hr/LC_MESSAGES/kpanel.mo -share/locale/hr/LC_MESSAGES/krootwm.mo -share/locale/hr/LC_MESSAGES/kstart.mo -share/locale/hr/LC_MESSAGES/kvt.mo -share/locale/hr/LC_MESSAGES/kwm.mo -share/locale/hs/LC_MESSAGES/kcmkwm.mo -share/locale/hs/LC_MESSAGES/kcmlocale.mo -share/locale/hs/LC_MESSAGES/kcmpanel.mo -share/locale/hs/LC_MESSAGES/kcontrol.mo -share/locale/hs/LC_MESSAGES/kde.mo -share/locale/hs/LC_MESSAGES/kdehelp.mo -share/locale/hs/LC_MESSAGES/kdm.mo -share/locale/hs/LC_MESSAGES/kdmconfig.mo -share/locale/hs/LC_MESSAGES/kfm.mo -share/locale/hs/LC_MESSAGES/konsole.mo -share/locale/hs/LC_MESSAGES/kpanel.mo -share/locale/hs/LC_MESSAGES/krootwm.mo -share/locale/hs/LC_MESSAGES/kstart.mo -share/locale/hs/LC_MESSAGES/kvt.mo -share/locale/hs/LC_MESSAGES/kwm.mo -share/locale/hu/LC_MESSAGES/kbgndwm.mo -share/locale/hu/LC_MESSAGES/kcmbell.mo -share/locale/hu/LC_MESSAGES/kcmdisplay.mo -share/locale/hu/LC_MESSAGES/kcminfo.mo -share/locale/hu/LC_MESSAGES/kcminput.mo -share/locale/hu/LC_MESSAGES/kcmkeys.mo -share/locale/hu/LC_MESSAGES/kcmkfm.mo -share/locale/hu/LC_MESSAGES/kcmkpanel.mo -share/locale/hu/LC_MESSAGES/kcmkwm.mo -share/locale/hu/LC_MESSAGES/kcmlocale.mo -share/locale/hu/LC_MESSAGES/kcmsamba.mo -share/locale/hu/LC_MESSAGES/kcmsample.mo -share/locale/hu/LC_MESSAGES/kcmsyssound.mo -share/locale/hu/LC_MESSAGES/kcontrol.mo -share/locale/hu/LC_MESSAGES/kdehelp.mo -share/locale/hu/LC_MESSAGES/kdm.mo -share/locale/hu/LC_MESSAGES/kdmconfig.mo -share/locale/hu/LC_MESSAGES/kfind.mo -share/locale/hu/LC_MESSAGES/kfm.mo -share/locale/hu/LC_MESSAGES/kfontmanager.mo -share/locale/hu/LC_MESSAGES/kikbd.mo -share/locale/hu/LC_MESSAGES/klock.mo -share/locale/hu/LC_MESSAGES/kmenuedit.mo -share/locale/hu/LC_MESSAGES/konsole.mo -share/locale/hu/LC_MESSAGES/kpager.mo -share/locale/hu/LC_MESSAGES/kpanel.mo -share/locale/hu/LC_MESSAGES/krootwm.mo -share/locale/hu/LC_MESSAGES/kstart.mo -share/locale/hu/LC_MESSAGES/kvt.mo -share/locale/hu/LC_MESSAGES/kwm.mo -share/locale/is/LC_MESSAGES/kbgndwm.mo -share/locale/is/LC_MESSAGES/kcmbell.mo -share/locale/is/LC_MESSAGES/kcmdisplay.mo -share/locale/is/LC_MESSAGES/kcminfo.mo -share/locale/is/LC_MESSAGES/kcminput.mo -share/locale/is/LC_MESSAGES/kcmkeys.mo -share/locale/is/LC_MESSAGES/kcmkfm.mo -share/locale/is/LC_MESSAGES/kcmkpanel.mo -share/locale/is/LC_MESSAGES/kcmkwm.mo -share/locale/is/LC_MESSAGES/kcmlocale.mo -share/locale/is/LC_MESSAGES/kcmsamba.mo -share/locale/is/LC_MESSAGES/kcmsample.mo -share/locale/is/LC_MESSAGES/kcmsyssound.mo -share/locale/is/LC_MESSAGES/kcontrol.mo -share/locale/is/LC_MESSAGES/kdehelp.mo -share/locale/is/LC_MESSAGES/kdm.mo -share/locale/is/LC_MESSAGES/kdmconfig.mo -share/locale/is/LC_MESSAGES/kfind.mo -share/locale/is/LC_MESSAGES/kfm.mo -share/locale/is/LC_MESSAGES/kfontmanager.mo -share/locale/is/LC_MESSAGES/kikbd.mo -share/locale/is/LC_MESSAGES/klock.mo -share/locale/is/LC_MESSAGES/kmenuedit.mo -share/locale/is/LC_MESSAGES/konsole.mo -share/locale/is/LC_MESSAGES/kpager.mo -share/locale/is/LC_MESSAGES/kpanel.mo -share/locale/is/LC_MESSAGES/krootwm.mo -share/locale/is/LC_MESSAGES/kstart.mo -share/locale/is/LC_MESSAGES/kthememgr.mo -share/locale/is/LC_MESSAGES/kvt.mo -share/locale/is/LC_MESSAGES/kwm.mo -share/locale/it/LC_MESSAGES/kbgndwm.mo -share/locale/it/LC_MESSAGES/kcmbell.mo -share/locale/it/LC_MESSAGES/kcmdisplay.mo -share/locale/it/LC_MESSAGES/kcminfo.mo -share/locale/it/LC_MESSAGES/kcminput.mo -share/locale/it/LC_MESSAGES/kcmkeys.mo -share/locale/it/LC_MESSAGES/kcmkfm.mo -share/locale/it/LC_MESSAGES/kcmkpanel.mo -share/locale/it/LC_MESSAGES/kcmkwm.mo -share/locale/it/LC_MESSAGES/kcmlocale.mo -share/locale/it/LC_MESSAGES/kcmsamba.mo -share/locale/it/LC_MESSAGES/kcmsample.mo -share/locale/it/LC_MESSAGES/kcmsyssound.mo -share/locale/it/LC_MESSAGES/kcontrol.mo -share/locale/it/LC_MESSAGES/kdehelp.mo -share/locale/it/LC_MESSAGES/kdm.mo -share/locale/it/LC_MESSAGES/kdmconfig.mo -share/locale/it/LC_MESSAGES/kfind.mo -share/locale/it/LC_MESSAGES/kfm.mo -share/locale/it/LC_MESSAGES/kfontmanager.mo -share/locale/it/LC_MESSAGES/kikbd.mo -share/locale/it/LC_MESSAGES/klock.mo -share/locale/it/LC_MESSAGES/kmenuedit.mo -share/locale/it/LC_MESSAGES/konsole.mo -share/locale/it/LC_MESSAGES/kpager.mo -share/locale/it/LC_MESSAGES/kpanel.mo -share/locale/it/LC_MESSAGES/krootwm.mo -share/locale/it/LC_MESSAGES/kstart.mo -share/locale/it/LC_MESSAGES/kvt.mo -share/locale/it/LC_MESSAGES/kwm.mo -share/locale/ja/LC_MESSAGES/kbgndwm.mo -share/locale/ja/LC_MESSAGES/kcmbell.mo -share/locale/ja/LC_MESSAGES/kcmdisplay.mo -share/locale/ja/LC_MESSAGES/kcminfo.mo -share/locale/ja/LC_MESSAGES/kcminput.mo -share/locale/ja/LC_MESSAGES/kcmkeys.mo -share/locale/ja/LC_MESSAGES/kcmkfm.mo -share/locale/ja/LC_MESSAGES/kcmkpanel.mo -share/locale/ja/LC_MESSAGES/kcmkwm.mo -share/locale/ja/LC_MESSAGES/kcmlocale.mo -share/locale/ja/LC_MESSAGES/kcmsamba.mo -share/locale/ja/LC_MESSAGES/kcmsample.mo -share/locale/ja/LC_MESSAGES/kcmsyssound.mo -share/locale/ja/LC_MESSAGES/kcontrol.mo -share/locale/ja/LC_MESSAGES/kdehelp.mo -share/locale/ja/LC_MESSAGES/kdm.mo -share/locale/ja/LC_MESSAGES/kdmconfig.mo -share/locale/ja/LC_MESSAGES/kfind.mo -share/locale/ja/LC_MESSAGES/kfm.mo -share/locale/ja/LC_MESSAGES/kfontmanager.mo -share/locale/ja/LC_MESSAGES/kikbd.mo -share/locale/ja/LC_MESSAGES/klock.mo -share/locale/ja/LC_MESSAGES/kmenuedit.mo -share/locale/ja/LC_MESSAGES/konsole.mo -share/locale/ja/LC_MESSAGES/kpager.mo -share/locale/ja/LC_MESSAGES/kpanel.mo -share/locale/ja/LC_MESSAGES/krootwm.mo -share/locale/ja/LC_MESSAGES/kthememgr.mo -share/locale/ja/LC_MESSAGES/kvt.mo -share/locale/ja/LC_MESSAGES/kwm.mo -share/locale/ko/LC_MESSAGES/kcmbell.mo -share/locale/ko/LC_MESSAGES/kcmdisplay.mo -share/locale/ko/LC_MESSAGES/kcminfo.mo -share/locale/ko/LC_MESSAGES/kcminput.mo -share/locale/ko/LC_MESSAGES/kcmkpanel.mo -share/locale/ko/LC_MESSAGES/kcmkwm.mo -share/locale/ko/LC_MESSAGES/kcmlocale.mo -share/locale/ko/LC_MESSAGES/kcmsamba.mo -share/locale/ko/LC_MESSAGES/kcmsample.mo -share/locale/ko/LC_MESSAGES/kcmsyssound.mo -share/locale/ko/LC_MESSAGES/kcontrol.mo -share/locale/ko/LC_MESSAGES/kdehelp.mo -share/locale/ko/LC_MESSAGES/kdm.mo -share/locale/ko/LC_MESSAGES/kdmconfig.mo -share/locale/ko/LC_MESSAGES/kfind.mo -share/locale/ko/LC_MESSAGES/kfm.mo -share/locale/ko/LC_MESSAGES/kfontmanager.mo -share/locale/ko/LC_MESSAGES/klock.mo -share/locale/ko/LC_MESSAGES/kmenuedit.mo -share/locale/ko/LC_MESSAGES/kpanel.mo -share/locale/ko/LC_MESSAGES/krootwm.mo -share/locale/ko/LC_MESSAGES/kvt.mo -share/locale/ko/LC_MESSAGES/kwm.mo -share/locale/mk/LC_MESSAGES/kcmdisplay.mo -share/locale/mk/LC_MESSAGES/kdehelp.mo -share/locale/mk/LC_MESSAGES/kdm.mo -share/locale/mk/LC_MESSAGES/kfind.mo -share/locale/mk/LC_MESSAGES/kfm.mo -share/locale/nl/LC_MESSAGES/kcmbell.mo -share/locale/nl/LC_MESSAGES/kcmdisplay.mo -share/locale/nl/LC_MESSAGES/kcminfo.mo -share/locale/nl/LC_MESSAGES/kcminput.mo -share/locale/nl/LC_MESSAGES/kcmkpanel.mo -share/locale/nl/LC_MESSAGES/kcmkwm.mo -share/locale/nl/LC_MESSAGES/kcmlocale.mo -share/locale/nl/LC_MESSAGES/kcmsamba.mo -share/locale/nl/LC_MESSAGES/kcmsample.mo -share/locale/nl/LC_MESSAGES/kcmsyssound.mo -share/locale/nl/LC_MESSAGES/kcontrol.mo -share/locale/nl/LC_MESSAGES/kdehelp.mo -share/locale/nl/LC_MESSAGES/kdm.mo -share/locale/nl/LC_MESSAGES/kdmconfig.mo -share/locale/nl/LC_MESSAGES/kfind.mo -share/locale/nl/LC_MESSAGES/kfm.mo -share/locale/nl/LC_MESSAGES/kfontmanager.mo -share/locale/nl/LC_MESSAGES/kikbd.mo -share/locale/nl/LC_MESSAGES/klock.mo -share/locale/nl/LC_MESSAGES/kmenuedit.mo -share/locale/nl/LC_MESSAGES/kpanel.mo -share/locale/nl/LC_MESSAGES/krootwm.mo -share/locale/nl/LC_MESSAGES/kvt.mo -share/locale/nl/LC_MESSAGES/kwm.mo -share/locale/no/LC_MESSAGES/kbgndwm.mo -share/locale/no/LC_MESSAGES/kcmbell.mo -share/locale/no/LC_MESSAGES/kcmdisplay.mo -share/locale/no/LC_MESSAGES/kcminfo.mo -share/locale/no/LC_MESSAGES/kcminput.mo -share/locale/no/LC_MESSAGES/kcmkeys.mo -share/locale/no/LC_MESSAGES/kcmkfm.mo -share/locale/no/LC_MESSAGES/kcmkpanel.mo -share/locale/no/LC_MESSAGES/kcmkwm.mo -share/locale/no/LC_MESSAGES/kcmlocale.mo -share/locale/no/LC_MESSAGES/kcmsamba.mo -share/locale/no/LC_MESSAGES/kcmsample.mo -share/locale/no/LC_MESSAGES/kcmsyssound.mo -share/locale/no/LC_MESSAGES/kcontrol.mo -share/locale/no/LC_MESSAGES/kdehelp.mo -share/locale/no/LC_MESSAGES/kdm.mo -share/locale/no/LC_MESSAGES/kdmconfig.mo -share/locale/no/LC_MESSAGES/kfind.mo -share/locale/no/LC_MESSAGES/kfm.mo -share/locale/no/LC_MESSAGES/kfontmanager.mo -share/locale/no/LC_MESSAGES/kikbd.mo -share/locale/no/LC_MESSAGES/klock.mo -share/locale/no/LC_MESSAGES/kmenuedit.mo -share/locale/no/LC_MESSAGES/konsole.mo -share/locale/no/LC_MESSAGES/kpager.mo -share/locale/no/LC_MESSAGES/kpanel.mo -share/locale/no/LC_MESSAGES/krootwm.mo -share/locale/no/LC_MESSAGES/kstart.mo -share/locale/no/LC_MESSAGES/kvt.mo -share/locale/no/LC_MESSAGES/kwm.mo -share/locale/pl/LC_MESSAGES/kbgndwm.mo -share/locale/pl/LC_MESSAGES/kcmbell.mo -share/locale/pl/LC_MESSAGES/kcmdisplay.mo -share/locale/pl/LC_MESSAGES/kcminfo.mo -share/locale/pl/LC_MESSAGES/kcminput.mo -share/locale/pl/LC_MESSAGES/kcmkeys.mo -share/locale/pl/LC_MESSAGES/kcmkfm.mo -share/locale/pl/LC_MESSAGES/kcmkpanel.mo -share/locale/pl/LC_MESSAGES/kcmkwm.mo -share/locale/pl/LC_MESSAGES/kcmlocale.mo -share/locale/pl/LC_MESSAGES/kcmsamba.mo -share/locale/pl/LC_MESSAGES/kcmsample.mo -share/locale/pl/LC_MESSAGES/kcmsyssound.mo -share/locale/pl/LC_MESSAGES/kcontrol.mo -share/locale/pl/LC_MESSAGES/kdehelp.mo -share/locale/pl/LC_MESSAGES/kdm.mo -share/locale/pl/LC_MESSAGES/kdmconfig.mo -share/locale/pl/LC_MESSAGES/kfind.mo -share/locale/pl/LC_MESSAGES/kfm.mo -share/locale/pl/LC_MESSAGES/kfontmanager.mo -share/locale/pl/LC_MESSAGES/kikbd.mo -share/locale/pl/LC_MESSAGES/klock.mo -share/locale/pl/LC_MESSAGES/kmenuedit.mo -share/locale/pl/LC_MESSAGES/konsole.mo -share/locale/pl/LC_MESSAGES/kpager.mo -share/locale/pl/LC_MESSAGES/kpanel.mo -share/locale/pl/LC_MESSAGES/krootwm.mo -share/locale/pl/LC_MESSAGES/kstart.mo -share/locale/pl/LC_MESSAGES/kthememgr.mo -share/locale/pl/LC_MESSAGES/kvt.mo -share/locale/pl/LC_MESSAGES/kwm.mo -share/locale/pt/LC_MESSAGES/kcmbell.mo -share/locale/pt/LC_MESSAGES/kcmdisplay.mo -share/locale/pt/LC_MESSAGES/kcminfo.mo -share/locale/pt/LC_MESSAGES/kcminput.mo -share/locale/pt/LC_MESSAGES/kcmkeys.mo -share/locale/pt/LC_MESSAGES/kcmkfm.mo -share/locale/pt/LC_MESSAGES/kcmkpanel.mo -share/locale/pt/LC_MESSAGES/kcmkwm.mo -share/locale/pt/LC_MESSAGES/kcmlocale.mo -share/locale/pt/LC_MESSAGES/kcmsamba.mo -share/locale/pt/LC_MESSAGES/kcmsample.mo -share/locale/pt/LC_MESSAGES/kcmsyssound.mo -share/locale/pt/LC_MESSAGES/kcontrol.mo -share/locale/pt/LC_MESSAGES/kdehelp.mo -share/locale/pt/LC_MESSAGES/kdm.mo -share/locale/pt/LC_MESSAGES/kdmconfig.mo -share/locale/pt/LC_MESSAGES/kfind.mo -share/locale/pt/LC_MESSAGES/kfm.mo -share/locale/pt/LC_MESSAGES/kfontmanager.mo -share/locale/pt/LC_MESSAGES/kikbd.mo -share/locale/pt/LC_MESSAGES/klock.mo -share/locale/pt/LC_MESSAGES/kmenuedit.mo -share/locale/pt/LC_MESSAGES/kpanel.mo -share/locale/pt/LC_MESSAGES/krootwm.mo -share/locale/pt/LC_MESSAGES/kstart.mo -share/locale/pt/LC_MESSAGES/kvt.mo -share/locale/pt/LC_MESSAGES/kwm.mo -share/locale/pt_BR/LC_MESSAGES/kbgndwm.mo -share/locale/pt_BR/LC_MESSAGES/kcmbell.mo -share/locale/pt_BR/LC_MESSAGES/kcmdisplay.mo -share/locale/pt_BR/LC_MESSAGES/kcminfo.mo -share/locale/pt_BR/LC_MESSAGES/kcminput.mo -share/locale/pt_BR/LC_MESSAGES/kcmkeys.mo -share/locale/pt_BR/LC_MESSAGES/kcmkfm.mo -share/locale/pt_BR/LC_MESSAGES/kcmkpanel.mo -share/locale/pt_BR/LC_MESSAGES/kcmkwm.mo -share/locale/pt_BR/LC_MESSAGES/kcmlocale.mo -share/locale/pt_BR/LC_MESSAGES/kcmsamba.mo -share/locale/pt_BR/LC_MESSAGES/kcmsample.mo -share/locale/pt_BR/LC_MESSAGES/kcmsyssound.mo -share/locale/pt_BR/LC_MESSAGES/kcontrol.mo -share/locale/pt_BR/LC_MESSAGES/kdehelp.mo -share/locale/pt_BR/LC_MESSAGES/kdm.mo -share/locale/pt_BR/LC_MESSAGES/kdmconfig.mo -share/locale/pt_BR/LC_MESSAGES/kfind.mo -share/locale/pt_BR/LC_MESSAGES/kfm.mo -share/locale/pt_BR/LC_MESSAGES/kfontmanager.mo -share/locale/pt_BR/LC_MESSAGES/kikbd.mo -share/locale/pt_BR/LC_MESSAGES/klock.mo -share/locale/pt_BR/LC_MESSAGES/kmenuedit.mo -share/locale/pt_BR/LC_MESSAGES/konsole.mo -share/locale/pt_BR/LC_MESSAGES/kpager.mo -share/locale/pt_BR/LC_MESSAGES/kpanel.mo -share/locale/pt_BR/LC_MESSAGES/krootwm.mo -share/locale/pt_BR/LC_MESSAGES/kstart.mo -share/locale/pt_BR/LC_MESSAGES/kvt.mo -share/locale/pt_BR/LC_MESSAGES/kwm.mo -share/locale/ro/LC_MESSAGES/kbgndwm.mo -share/locale/ro/LC_MESSAGES/kcmbell.mo -share/locale/ro/LC_MESSAGES/kcmdisplay.mo -share/locale/ro/LC_MESSAGES/kcminfo.mo -share/locale/ro/LC_MESSAGES/kcminput.mo -share/locale/ro/LC_MESSAGES/kcmkpanel.mo -share/locale/ro/LC_MESSAGES/kcmkwm.mo -share/locale/ro/LC_MESSAGES/kcmlocale.mo -share/locale/ro/LC_MESSAGES/kcmsamba.mo -share/locale/ro/LC_MESSAGES/kcmsample.mo -share/locale/ro/LC_MESSAGES/kcmsyssound.mo -share/locale/ro/LC_MESSAGES/kcontrol.mo -share/locale/ro/LC_MESSAGES/kdehelp.mo -share/locale/ro/LC_MESSAGES/kdm.mo -share/locale/ro/LC_MESSAGES/kdmconfig.mo -share/locale/ro/LC_MESSAGES/kfind.mo -share/locale/ro/LC_MESSAGES/kfm.mo -share/locale/ro/LC_MESSAGES/kfontmanager.mo -share/locale/ro/LC_MESSAGES/klock.mo -share/locale/ro/LC_MESSAGES/kmenuedit.mo -share/locale/ro/LC_MESSAGES/kpanel.mo -share/locale/ro/LC_MESSAGES/krootwm.mo -share/locale/ro/LC_MESSAGES/kvt.mo -share/locale/ro/LC_MESSAGES/kwm.mo -share/locale/ru/LC_MESSAGES/kbgndwm.mo -share/locale/ru/LC_MESSAGES/kcmbell.mo -share/locale/ru/LC_MESSAGES/kcmdisplay.mo -share/locale/ru/LC_MESSAGES/kcminfo.mo -share/locale/ru/LC_MESSAGES/kcminput.mo -share/locale/ru/LC_MESSAGES/kcmkeys.mo -share/locale/ru/LC_MESSAGES/kcmkfm.mo -share/locale/ru/LC_MESSAGES/kcmkpanel.mo -share/locale/ru/LC_MESSAGES/kcmkwm.mo -share/locale/ru/LC_MESSAGES/kcmlocale.mo -share/locale/ru/LC_MESSAGES/kcmsamba.mo -share/locale/ru/LC_MESSAGES/kcmsample.mo -share/locale/ru/LC_MESSAGES/kcmsyssound.mo -share/locale/ru/LC_MESSAGES/kcontrol.mo -share/locale/ru/LC_MESSAGES/kdehelp.mo -share/locale/ru/LC_MESSAGES/kdm.mo -share/locale/ru/LC_MESSAGES/kdmconfig.mo -share/locale/ru/LC_MESSAGES/kfind.mo -share/locale/ru/LC_MESSAGES/kfm.mo -share/locale/ru/LC_MESSAGES/kfontmanager.mo -share/locale/ru/LC_MESSAGES/kikbd.mo -share/locale/ru/LC_MESSAGES/klock.mo -share/locale/ru/LC_MESSAGES/kmenuedit.mo -share/locale/ru/LC_MESSAGES/konsole.mo -share/locale/ru/LC_MESSAGES/kpager.mo -share/locale/ru/LC_MESSAGES/kpanel.mo -share/locale/ru/LC_MESSAGES/krootwm.mo -share/locale/ru/LC_MESSAGES/kstart.mo -share/locale/ru/LC_MESSAGES/kvt.mo -share/locale/ru/LC_MESSAGES/kwm.mo -share/locale/sk/LC_MESSAGES/kbgndwm.mo -share/locale/sk/LC_MESSAGES/kcmbell.mo -share/locale/sk/LC_MESSAGES/kcmdisplay.mo -share/locale/sk/LC_MESSAGES/kcminfo.mo -share/locale/sk/LC_MESSAGES/kcminput.mo -share/locale/sk/LC_MESSAGES/kcmkeys.mo -share/locale/sk/LC_MESSAGES/kcmkfm.mo -share/locale/sk/LC_MESSAGES/kcmkpanel.mo -share/locale/sk/LC_MESSAGES/kcmkwm.mo -share/locale/sk/LC_MESSAGES/kcmlocale.mo -share/locale/sk/LC_MESSAGES/kcmsamba.mo -share/locale/sk/LC_MESSAGES/kcmsample.mo -share/locale/sk/LC_MESSAGES/kcmsyssound.mo -share/locale/sk/LC_MESSAGES/kcontrol.mo -share/locale/sk/LC_MESSAGES/kdehelp.mo -share/locale/sk/LC_MESSAGES/kdm.mo -share/locale/sk/LC_MESSAGES/kdmconfig.mo -share/locale/sk/LC_MESSAGES/kfind.mo -share/locale/sk/LC_MESSAGES/kfm.mo -share/locale/sk/LC_MESSAGES/kfontmanager.mo -share/locale/sk/LC_MESSAGES/kikbd.mo -share/locale/sk/LC_MESSAGES/klock.mo -share/locale/sk/LC_MESSAGES/kmenuedit.mo -share/locale/sk/LC_MESSAGES/konsole.mo -share/locale/sk/LC_MESSAGES/kpager.mo -share/locale/sk/LC_MESSAGES/kpanel.mo -share/locale/sk/LC_MESSAGES/krootwm.mo -share/locale/sk/LC_MESSAGES/kstart.mo -share/locale/sk/LC_MESSAGES/kvt.mo -share/locale/sk/LC_MESSAGES/kwm.mo -share/locale/sl/LC_MESSAGES/kbgndwm.mo -share/locale/sl/LC_MESSAGES/kcmbell.mo -share/locale/sl/LC_MESSAGES/kcmdisplay.mo -share/locale/sl/LC_MESSAGES/kcminfo.mo -share/locale/sl/LC_MESSAGES/kcminput.mo -share/locale/sl/LC_MESSAGES/kcmkeys.mo -share/locale/sl/LC_MESSAGES/kcmkfm.mo -share/locale/sl/LC_MESSAGES/kcmkpanel.mo -share/locale/sl/LC_MESSAGES/kcmkwm.mo -share/locale/sl/LC_MESSAGES/kcmlocale.mo -share/locale/sl/LC_MESSAGES/kcmsamba.mo -share/locale/sl/LC_MESSAGES/kcmsample.mo -share/locale/sl/LC_MESSAGES/kcmsyssound.mo -share/locale/sl/LC_MESSAGES/kcontrol.mo -share/locale/sl/LC_MESSAGES/kdehelp.mo -share/locale/sl/LC_MESSAGES/kdm.mo -share/locale/sl/LC_MESSAGES/kdmconfig.mo -share/locale/sl/LC_MESSAGES/kfind.mo -share/locale/sl/LC_MESSAGES/kfm.mo -share/locale/sl/LC_MESSAGES/kfontmanager.mo -share/locale/sl/LC_MESSAGES/kikbd.mo -share/locale/sl/LC_MESSAGES/klock.mo -share/locale/sl/LC_MESSAGES/kmenuedit.mo -share/locale/sl/LC_MESSAGES/konsole.mo -share/locale/sl/LC_MESSAGES/kpager.mo -share/locale/sl/LC_MESSAGES/kpanel.mo -share/locale/sl/LC_MESSAGES/krootwm.mo -share/locale/sl/LC_MESSAGES/kstart.mo -share/locale/sl/LC_MESSAGES/kthememgr.mo -share/locale/sl/LC_MESSAGES/kvt.mo -share/locale/sl/LC_MESSAGES/kwm.mo -share/locale/sv/LC_MESSAGES/kbgndwm.mo -share/locale/sv/LC_MESSAGES/kcmbell.mo -share/locale/sv/LC_MESSAGES/kcmdisplay.mo -share/locale/sv/LC_MESSAGES/kcminfo.mo -share/locale/sv/LC_MESSAGES/kcminput.mo -share/locale/sv/LC_MESSAGES/kcmkeys.mo -share/locale/sv/LC_MESSAGES/kcmkfm.mo -share/locale/sv/LC_MESSAGES/kcmkpanel.mo -share/locale/sv/LC_MESSAGES/kcmkwm.mo -share/locale/sv/LC_MESSAGES/kcmlocale.mo -share/locale/sv/LC_MESSAGES/kcmsamba.mo -share/locale/sv/LC_MESSAGES/kcmsample.mo -share/locale/sv/LC_MESSAGES/kcmsyssound.mo -share/locale/sv/LC_MESSAGES/kcontrol.mo -share/locale/sv/LC_MESSAGES/kdehelp.mo -share/locale/sv/LC_MESSAGES/kdm.mo -share/locale/sv/LC_MESSAGES/kdmconfig.mo -share/locale/sv/LC_MESSAGES/kfind.mo -share/locale/sv/LC_MESSAGES/kfm.mo -share/locale/sv/LC_MESSAGES/kfontmanager.mo -share/locale/sv/LC_MESSAGES/kikbd.mo -share/locale/sv/LC_MESSAGES/klock.mo -share/locale/sv/LC_MESSAGES/kmenuedit.mo -share/locale/sv/LC_MESSAGES/konsole.mo -share/locale/sv/LC_MESSAGES/kpager.mo -share/locale/sv/LC_MESSAGES/kpanel.mo -share/locale/sv/LC_MESSAGES/krootwm.mo -share/locale/sv/LC_MESSAGES/kstart.mo -share/locale/sv/LC_MESSAGES/kvt.mo -share/locale/sv/LC_MESSAGES/kwm.mo -share/locale/tr/LC_MESSAGES/kcmbell.mo -share/locale/tr/LC_MESSAGES/kcmdisplay.mo -share/locale/tr/LC_MESSAGES/kcminfo.mo -share/locale/tr/LC_MESSAGES/kcminput.mo -share/locale/tr/LC_MESSAGES/kcmkpanel.mo -share/locale/tr/LC_MESSAGES/kcmkwm.mo -share/locale/tr/LC_MESSAGES/kcmlocale.mo -share/locale/tr/LC_MESSAGES/kcmsamba.mo -share/locale/tr/LC_MESSAGES/kcmsample.mo -share/locale/tr/LC_MESSAGES/kcmsyssound.mo -share/locale/tr/LC_MESSAGES/kcontrol.mo -share/locale/tr/LC_MESSAGES/kdehelp.mo -share/locale/tr/LC_MESSAGES/kdm.mo -share/locale/tr/LC_MESSAGES/kdmconfig.mo -share/locale/tr/LC_MESSAGES/kfind.mo -share/locale/tr/LC_MESSAGES/kfm.mo -share/locale/tr/LC_MESSAGES/kfontmanager.mo -share/locale/tr/LC_MESSAGES/klock.mo -share/locale/tr/LC_MESSAGES/kmenuedit.mo -share/locale/tr/LC_MESSAGES/kpanel.mo -share/locale/tr/LC_MESSAGES/krootwm.mo -share/locale/tr/LC_MESSAGES/kstart.mo -share/locale/tr/LC_MESSAGES/kvt.mo -share/locale/tr/LC_MESSAGES/kwm.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kbgndwm.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmbell.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmdisplay.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcminfo.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcminput.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkeys.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkfm.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkpanel.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmkwm.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmlocale.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmsamba.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmsample.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcmsyssound.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kcontrol.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdehelp.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdm.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kdmconfig.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kfind.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kfm.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kfontmanager.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kikbd.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/klock.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kmenuedit.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/konsole.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kpager.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kpanel.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/krootwm.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kstart.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kvt.mo -share/locale/zh_CN.GB2312/LC_MESSAGES/kwm.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmbell.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmdisplay.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcminfo.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcminput.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkpanel.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmkwm.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmlocale.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmsamba.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmsample.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcmsyssound.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kcontrol.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdehelp.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdm.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kdmconfig.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfind.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfm.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kfontmanager.mo -share/locale/zh_TW.Big5/LC_MESSAGES/klock.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kmenuedit.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kpanel.mo -share/locale/zh_TW.Big5/LC_MESSAGES/krootwm.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kvt.mo -share/locale/zh_TW.Big5/LC_MESSAGES/kwm.mo -share/mimelnk/application/gzip.kdelnk -share/mimelnk/application/octet-stream.kdelnk -share/mimelnk/application/pdf.kdelnk -share/mimelnk/application/postscript.kdelnk -share/mimelnk/application/x-ar.kdelnk -share/mimelnk/application/x-core.kdelnk -share/mimelnk/application/x-dvi.kdelnk -share/mimelnk/application/x-executable.kdelnk -share/mimelnk/application/x-font.kdelnk -share/mimelnk/application/x-java.kdelnk -share/mimelnk/application/x-kdelnk.kdelnk -share/mimelnk/application/x-lha.kdelnk -share/mimelnk/application/x-object.kdelnk -share/mimelnk/application/x-shellscript.kdelnk -share/mimelnk/application/x-tar.kdelnk -share/mimelnk/application/x-tbz.kdelnk -share/mimelnk/application/x-tex-gf.kdelnk -share/mimelnk/application/x-tex-pk.kdelnk -share/mimelnk/application/x-trash.kdelnk -share/mimelnk/application/x-zip.kdelnk -share/mimelnk/audio/x-midi.kdelnk -share/mimelnk/audio/x-mod.kdelnk -share/mimelnk/audio/x-mp3.kdelnk -share/mimelnk/audio/x-wav.kdelnk -share/mimelnk/image/cgm.kdelnk -share/mimelnk/image/fax-g3.kdelnk -share/mimelnk/image/gif.kdelnk -share/mimelnk/image/jpeg.kdelnk -share/mimelnk/image/png.kdelnk -share/mimelnk/image/tiff.kdelnk -share/mimelnk/image/x-xbm.kdelnk -share/mimelnk/image/x-xpm.kdelnk -share/mimelnk/inode/block.kdelnk -share/mimelnk/inode/chardevice.kdelnk -share/mimelnk/inode/directory-locked.kdelnk -share/mimelnk/inode/directory.kdelnk -share/mimelnk/inode/fifo.kdelnk -share/mimelnk/inode/socket.kdelnk -share/mimelnk/magic -share/mimelnk/text/english.kdelnk -share/mimelnk/text/html.kdelnk -share/mimelnk/text/plain.kdelnk -share/mimelnk/text/rtf.kdelnk -share/mimelnk/text/sgml.kdelnk -share/mimelnk/text/x-c++.kdelnk -share/mimelnk/text/x-c++hdr.kdelnk -share/mimelnk/text/x-c++src.kdelnk -share/mimelnk/text/x-c.kdelnk -share/mimelnk/text/x-chdr.kdelnk -share/mimelnk/text/x-csrc.kdelnk -share/mimelnk/text/x-java.kdelnk -share/mimelnk/text/x-makefile.kdelnk -share/mimelnk/text/x-moc.kdelnk -share/mimelnk/text/x-pascal.kdelnk -share/mimelnk/text/x-tcl.kdelnk -share/mimelnk/text/x-tex.kdelnk -share/mimelnk/video/mpeg.kdelnk -share/mimelnk/video/quicktime.kdelnk -share/mimelnk/video/x-flic.kdelnk -share/mimelnk/video/x-msvideo.kdelnk -share/sounds/KDE_Close_Window.wav -share/sounds/KDE_Logout.wav -share/sounds/KDE_Startup.wav -share/sounds/KDE_Window_DeIconify.wav -share/sounds/KDE_Window_Iconify.wav -share/sounds/KDE_Window_Maximize.wav -share/sounds/KDE_Window_Shade_Down.wav -share/sounds/KDE_Window_Shade_Up.wav -share/sounds/KDE_Window_Sticky.wav -share/sounds/KDE_Window_UnMaximize.wav -share/sounds/KDE_Window_UnSticky.wav -share/wallpapers/abnormal_fluid.jpg -share/wallpapers/absolute_zero.jpg -share/wallpapers/abstract_clay.jpg -share/wallpapers/alien_riverbed.jpg -share/wallpapers/ancient_glyphs.jpg -share/wallpapers/aqua_ravines.jpg -share/wallpapers/banana_squishie.jpg -share/wallpapers/berries.jpg -share/wallpapers/blkmarble.jpg -share/wallpapers/bluegrnt.jpg -share/wallpapers/boiling_centrifuge.jpg -share/wallpapers/bowtie.jpg -share/wallpapers/brass_trails.jpg -share/wallpapers/brass_wiring.jpg -share/wallpapers/bronze_tornado.jpg -share/wallpapers/bubble_vortex.jpg -share/wallpapers/burning_fire.jpg -share/wallpapers/cellular_tetsuo.jpg -share/wallpapers/chalk_marks.jpg -share/wallpapers/chess.jpg -share/wallpapers/chunky_spinach.jpg -share/wallpapers/circuit.jpg -share/wallpapers/clay_caverns.jpg -share/wallpapers/cloth_bubbles.jpg -share/wallpapers/cocoon_skin.jpg -share/wallpapers/coloured_hearts.jpg -share/wallpapers/copper_blur.jpg -share/wallpapers/copper_liquid.jpg -share/wallpapers/corroded_rock.jpg -share/wallpapers/cosmic_gears.jpg -share/wallpapers/cosmic_lillypads.jpg -share/wallpapers/cracking_blueberry.jpg -share/wallpapers/crayon_canyon.jpg -share/wallpapers/cruising_color.jpg -share/wallpapers/cubic1.jpg -share/wallpapers/cubic2.jpg -share/wallpapers/dancy_pants.jpg -share/wallpapers/digital_waves.jpg -share/wallpapers/distorted_anomaly.jpg -share/wallpapers/engraved_gold.jpg -share/wallpapers/eroding_sandstone.jpg -share/wallpapers/expired_cornflakes.jpg -share/wallpapers/face.jpg -share/wallpapers/fisheye_lens.jpg -share/wallpapers/foam_strands.jpg -share/wallpapers/foggy1.jpg -share/wallpapers/foggy2.jpg -share/wallpapers/folded_space.jpg -share/wallpapers/fractal_nebula.jpg -share/wallpapers/freon_mist.jpg -share/wallpapers/fudge_chunks.jpg -share/wallpapers/fusion_fire.jpg -share/wallpapers/future_farms.jpg -share/wallpapers/gator_hide.jpg -share/wallpapers/gelatin_chemical.jpg -share/wallpapers/goldring_globe.jpg -share/wallpapers/grablkwt.jpg -share/wallpapers/gray2.jpg -share/wallpapers/greek.jpg -share/wallpapers/gremlin_buds.jpg -share/wallpapers/ground_zero.jpg -share/wallpapers/heat_ripple.jpg -share/wallpapers/iceberg_tips.jpg -share/wallpapers/indigo_paint.jpg -share/wallpapers/infared_fossil.jpg -share/wallpapers/infinity_cube.jpg -share/wallpapers/inner_quasar.jpg -share/wallpapers/isotope_threads.jpg -share/wallpapers/jello_elbows.jpg -share/wallpapers/kdm_bg.jpg -share/wallpapers/liquid_helium.jpg -share/wallpapers/lizard_scales.jpg -share/wallpapers/lunar_jelly.jpg -share/wallpapers/magnetic_field.jpg -share/wallpapers/magneto_bomb.jpg -share/wallpapers/marble01.jpg -share/wallpapers/martian_silk.jpg -share/wallpapers/melting_glass.jpg -share/wallpapers/melting_honeycomb.jpg -share/wallpapers/metal_beads.jpg -share/wallpapers/million_minnows.jpg -share/wallpapers/mustard_ketchup.jpg -share/wallpapers/mutant_berries.jpg -share/wallpapers/mystical_hourglass.jpg -share/wallpapers/neon_flux.jpg -share/wallpapers/nuclear_coral.jpg -share/wallpapers/ocean01.jpg -share/wallpapers/odd_atmosphere.jpg -share/wallpapers/olive_wisps.jpg -share/wallpapers/owl_elder.jpg -share/wallpapers/paper01.jpg -share/wallpapers/paper_umbrella.jpg -share/wallpapers/parrots.jpg -share/wallpapers/pebble_town.jpg -share/wallpapers/pinkflam.jpg -share/wallpapers/plant_formation.jpg -share/wallpapers/plasmatic_globules.jpg -share/wallpapers/plasmatic_points.jpg -share/wallpapers/produce.jpg -share/wallpapers/prpbumps.jpg -share/wallpapers/quantum_threads.jpg -share/wallpapers/rainbow_alleys.jpg -share/wallpapers/red_big_bang.jpg -share/wallpapers/redblue_filaments.jpg -share/wallpapers/ringworm_circus.jpg -share/wallpapers/rose_petals.jpg -share/wallpapers/rotten_vegetables.jpg -share/wallpapers/rubber_cds.jpg -share/wallpapers/ruby_dunes.jpg -share/wallpapers/ruins.jpg -share/wallpapers/sandman.jpg -share/wallpapers/sapphire_surface.jpg -share/wallpapers/scattered_islands.jpg -share/wallpapers/scraped_metal.jpg -share/wallpapers/silver_vibration.jpg -share/wallpapers/spinning_stones.jpg -share/wallpapers/spoiled_sprouts.jpg -share/wallpapers/stellar_shadows.jpg -share/wallpapers/striped_fragments.jpg -share/wallpapers/sulfur_lakes.jpg -share/wallpapers/sunburnt_crust.jpg -share/wallpapers/tarnished_rings.jpg -share/wallpapers/techno_sharks.jpg -share/wallpapers/terrain_relief.jpg -share/wallpapers/theoretical_life.jpg -share/wallpapers/thick_syrup.jpg -share/wallpapers/thin_tentacles.jpg -share/wallpapers/toe_paint.jpg -share/wallpapers/tree_knobs.jpg -share/wallpapers/tropical_leaves.jpg -share/wallpapers/ufo_frenzy.jpg -share/wallpapers/unstable_element.jpg -share/wallpapers/vessel_swirl.jpg -share/wallpapers/water01.jpg -share/wallpapers/wavy_ribbons.jpg -share/wallpapers/whiplash_vines.jpg -share/wallpapers/whirling_spirit.jpg -share/wallpapers/wind_chill.jpg -share/wallpapers/wood1.jpg -@dirrm share/doc/HTML/ru/kikbd -@dirrm share/doc/HTML/en/kwm -@dirrm share/doc/HTML/en/kvt -@dirrm share/doc/HTML/en/kthememgr -@dirrm share/doc/HTML/en/kpanel -@dirrm share/doc/HTML/en/kpager -@dirrm share/doc/HTML/en/konsole -@dirrm share/doc/HTML/en/kmenuedit -@dirrm share/doc/HTML/en/kmedia -@dirrm share/doc/HTML/en/kikbd -@dirrm share/doc/HTML/en/kfontmanager -@dirrm share/doc/HTML/en/kfm -@dirrm share/doc/HTML/en/kfind -@dirrm share/doc/HTML/en/kdm -@dirrm share/doc/HTML/en/kdisknav -@dirrm share/doc/HTML/en/kdehelp/quickstart -@dirrm share/doc/HTML/en/kdehelp/kwm -@dirrm share/doc/HTML/en/kdehelp/kpanel -@dirrm share/doc/HTML/en/kdehelp -@dirrm share/doc/HTML/en/kcontrol/kthememgr -@dirrm share/doc/HTML/en/kcontrol/kdmconfig -@dirrm share/doc/HTML/en/kcontrol/kcmsyssound -@dirrm share/doc/HTML/en/kcontrol/kcmsamba -@dirrm share/doc/HTML/en/kcontrol/kcmlocale -@dirrm share/doc/HTML/en/kcontrol/kcmkwm -@dirrm share/doc/HTML/en/kcontrol/kcmkpanel -@dirrm share/doc/HTML/en/kcontrol/kcmkfm -@dirrm share/doc/HTML/en/kcontrol/kcmkeys -@dirrm share/doc/HTML/en/kcontrol/kcminput -@dirrm share/doc/HTML/en/kcontrol/kcminfo -@dirrm share/doc/HTML/en/kcontrol/kcmdisplay -@dirrm share/doc/HTML/en/kcontrol/kcmbell -@dirrm share/doc/HTML/en/kcontrol -@dirrm share/apps/kwm/pics -@dirrm share/apps/kwm -@dirrm share/apps/kthememgr/Themes -@dirrm share/apps/kthememgr -@dirrm share/apps/kscreensaver -@dirrm share/apps/kpanel/pics/mini -@dirrm share/apps/kpanel/pics/large -@dirrm share/apps/kpanel/pics -@dirrm share/apps/kpanel/default -@dirrm share/apps/kpanel -@dirrm share/apps/konsole -@dirrm share/apps/kikbd/codes -@dirrm share/apps/kikbd -@dirrm share/apps/kfm/pics -@dirrm share/apps/kfm/Desktop/Templates -@dirrm share/apps/kfm/Desktop -@dirrm share/apps/kfm -@dirrm share/apps/kfind/toolbar -@dirrm share/apps/kfind -@dirrm share/apps/kdmconfig/pics -@dirrm share/apps/kdmconfig -@dirrm share/apps/kdm/pics/users -@dirrm share/apps/kdm/pics -@dirrm share/apps/kdm -@dirrm share/apps/kdisplay/color-schemes -@dirrm share/apps/kdisplay/app-defaults -@dirrm share/apps/kdisplay -@dirrm share/apps/kdisknav -@dirrm share/apps/kcontrol/pics -@dirrm share/apps/kcontrol -@dirrm share/apps/kcmlocale/pics -@dirrm share/apps/kcmlocale -@dirrm share/apps/kappfinder/pics/mini -@dirrm share/apps/kappfinder/pics/large -@dirrm share/apps/kappfinder/pics -@dirrm share/apps/kappfinder/apps/WordProcessing -@dirrm share/apps/kappfinder/apps/Utilities -@dirrm share/apps/kappfinder/apps/Toys -@dirrm share/apps/kappfinder/apps/System -@dirrm share/apps/kappfinder/apps/Office -@dirrm share/apps/kappfinder/apps/Internet -@dirrm share/apps/kappfinder/apps/Graphic -@dirrm share/apps/kappfinder/apps/Editors -@dirrm share/apps/kappfinder/apps/Development -@dirrm share/apps/kappfinder/apps -@dirrm share/apps/kappfinder -@dirrm share/applnk/Settings/Windows -@dirrm share/applnk/Settings/Sound -@dirrm share/applnk/Settings/Keys -@dirrm share/applnk/Settings/Input_Devices -@dirrm share/applnk/Settings/Information -@dirrm share/applnk/Settings/Desktop -@dirrm share/applnk/Settings/Applications -@dirrm cgi-bin diff --git a/x11/kdebase2/Makefile b/x11/kdebase2/Makefile index e44f3da88bf8..a346796a21ee 100644 --- a/x11/kdebase2/Makefile +++ b/x11/kdebase2/Makefile @@ -6,12 +6,12 @@ # PORTNAME= kdebase -PORTVERSION= 2.0.1 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION}/distribution/tar/generic/src -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= kdeui.4:${PORTSDIR}/x11/kdelibs2 \ intl.1:${PORTSDIR}/devel/gettext diff --git a/x11/kdebase2/distinfo b/x11/kdebase2/distinfo index 80f0c4ce35f6..243923f1a5d7 100644 --- a/x11/kdebase2/distinfo +++ b/x11/kdebase2/distinfo @@ -1 +1 @@ -MD5 (kdebase-2.0.1.tar.bz2) = b138a67ae22fbda05def8e932820ac66 +MD5 (kdebase-2.1.tar.bz2) = 54264460bca895cc3e315bb49c297f8f diff --git a/x11/kdebase2/files/patch-Processlist.c b/x11/kdebase2/files/patch-Processlist.c deleted file mode 100644 index 863d56e7ec72..000000000000 --- a/x11/kdebase2/files/patch-Processlist.c +++ /dev/null @@ -1,80 +0,0 @@ ---- ksysguard/ksysguardd/FreeBSD/ProcessList.c.old Tue Jan 23 19:44:29 2001 -+++ ksysguard/ksysguardd/FreeBSD/ProcessList.c Tue Jan 23 20:19:24 2001 -@@ -186,7 +186,20 @@ - if (sysctl(mib, 4, &p, &len, NULL, 0) == -1 || !len) - return -1; - -- /* ?? */ -+#if __FreeBSD_version >= 500015 -+ /* Getting runtime process info */ -+ ps->pid = p.ki_pid; -+ ps->ppid = p.ki_ppid; -+ strcpy(ps->name, p.ki_comm); -+ ps->uid = p.ki_uid; -+ ps->gid = p.ki_pgid; -+ -+ pwent = getpwuid(ps->uid); -+ strcpy(ps->userName, pwent ? pwent->pw_name : "????"); -+ ps->priority = p.ki_priority; -+ ps->niceLevel = p.ki_nice; -+ -+#else - ps->pid = p.kp_proc.p_pid; - ps->ppid = p.kp_eproc.e_ppid; - strcpy(ps->name, p.kp_proc.p_comm); -@@ -198,16 +211,30 @@ - strcpy(ps->userName, pwent ? pwent->pw_name : "????"); - ps->priority = p.kp_proc.p_priority; - ps->niceLevel = p.kp_proc.p_nice; -+#endif - - /* this isn't usertime -- it's total time (??) */ --#if __FreeBSD_version >= 300000 -+#if __FreeBSD_version >= 500015 -+ ps->userTime = p.ki_runtime / 10000; -+#elif __FreeBSD_version >= 300000 - ps->userTime = p.kp_proc.p_runtime / 10000; - #else - ps->userTime = p.kp_proc.p_rtime.tv_sec*100+p.kp_proc.p_rtime.tv_usec/100 - #endif -+ - ps->sysTime = 0; -- ps->userLoad = p.kp_proc.p_pctcpu / 100; - ps->sysLoad = 0; -+#if __FreeBSD_version >= 500015 -+ ps->userLoad = p.ki_pctcpu / 100; -+ -+ /* memory */ -+ ps->vmSize = p.ki_size * getpagesize(); -+ -+ ps->vmRss = p.ki_rssize * getpagesize(); -+ -+ ps->status = p.ki_stat; -+#else -+ ps->userLoad = p.kp_proc.p_pctcpu / 100; - - /* memory */ - ps->vmSize = (p.kp_eproc.e_vm.vm_tsize + -@@ -216,7 +243,7 @@ - ps->vmRss = p.kp_eproc.e_vm.vm_rssize * getpagesize(); - - ps->status = p.kp_proc.p_stat; -- -+#endif - return (0); - } - -@@ -284,8 +311,13 @@ - p = malloc(len); - sysctl(mib, 3, p, &len, NULL, 0); - -+#if __FreeBSD_version >= 500015 -+ for (num = 0; num < len / sizeof(struct kinfo_proc); num++) -+ updateProcess(p[num].ki_pid); -+#else - for (num = 0; num < len / sizeof(struct kinfo_proc); num++) - updateProcess(p[num].kp_proc.p_pid); -+#endif - - cleanupProcessList(); - diff --git a/x11/kdebase2/files/patch-TEPty.C b/x11/kdebase2/files/patch-TEPty.C index 9bfd5db25ccd..796ec243efbf 100644 --- a/x11/kdebase2/files/patch-TEPty.C +++ b/x11/kdebase2/files/patch-TEPty.C @@ -1,83 +1,6 @@ ---- konsole/src/TEPty.C.orig Fri Dec 8 11:51:24 2000 -+++ konsole/src/TEPty.C Fri Dec 8 11:52:51 2000 -@@ -180,27 +180,57 @@ - // param grant: 1 to grant, 0 to revoke - // returns 1 on success 0 on fail - { -- pid_t pid = fork(); -- if (pid < 0) -- { -- return 0; -- } -- if (pid == 0) -- { -- /* We pass the master pseudo terminal as file descriptor PTY_FILENO. */ -- if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) exit(1); -- QString path = locate("exe", BASE_CHOWN); -+ pid_t pid; -+ int pstat; -+ struct sigaction ign; -+ struct sigaction intact; // interupt action -+ struct sigaction quitact; // quit action -+ sigset_t newsigblock, oldsigblock; -+ QString path; -+ -+ ign.sa_handler = SIG_IGN; -+ sigemptyset(&ign.sa_mask); -+ ign.sa_flags = 0; -+ sigaction(SIGINT, &ign, &intact); -+ sigaction(SIGQUIT, &ign, &quitact); -+ sigemptyset(&newsigblock); -+ sigaddset(&newsigblock, SIGCHLD); -+ sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock); -+ -+ switch (pid = fork()) { -+ case -1: -+ return(0); -+ break; -+ case 0: // child -+ if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) -+ exit(1); -+ path = locate("exe", BASE_CHOWN); -+ -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); - execle(path.ascii(), BASE_CHOWN, grant?"--grant":"--revoke", NULL, NULL); -- exit(1); // should not be reached -- } -- if (pid > 0) -- { int w; -- retry: -- int rc = waitpid (pid, &w, 0); -- if ((rc == -1) && (errno == EINTR)) -- goto retry; -- return (rc != -1 && WIFEXITED(w) && WEXITSTATUS(w) == 0); -+ exit(1); -+ break; -+ default: -+ do { -+ pid = waitpid(pid, &pstat, 0); -+ } while (pid == -1 && errno == EINTR); -+ break; - } -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); -+ -+ if (pid == -1) { -+ return 0; -+ } -+ else if (WIFEXITED(pstat) && (WEXITSTATUS(pstat) == 0)) { -+ return 1; -+ } -+ else { -+ return 0; -+ } - return 0; //dummy. - } - -@@ -225,7 +255,7 @@ +--- konsole/src/TEPty.C Sun Feb 18 10:28:28 2001 ++++ konsole/src/TEPty.C.new Fri Feb 23 02:55:58 2001 +@@ -238,7 +238,7 @@ #ifdef HAVE_UTEMPTER removeLineFromUtmp(ttynam, fd); #elif defined(USE_LOGIN) diff --git a/x11/kdebase2/files/patch-kdeeject b/x11/kdebase2/files/patch-kdeeject index 38c12b5eafbf..8a5870ad25ff 100644 --- a/x11/kdebase2/files/patch-kdeeject +++ b/x11/kdebase2/files/patch-kdeeject @@ -1,9 +1,9 @@ ---- kdesktop/kdeeject.orig Fri Dec 1 15:25:26 2000 -+++ kdesktop/kdeeject Fri Dec 1 15:25:33 2000 -@@ -8,7 +8,8 @@ - # kmessage, to show a message box in case of error. - # - if [ $# = 1 -a "$1" != "--help" ]; then +--- kdesktop/kdeeject Wed Dec 13 13:25:02 2000 ++++ kdesktop/kdeeject.new Fri Feb 23 02:59:54 2001 +@@ -11,7 +11,8 @@ + # TODO: On bsd, it should be 'cdcontrol -f $1 eject' + # Checking for stuff in the PATH is ugly with sh though. + # I guess this is the reason for making this a kde app... - if eject $1; then + dev=`echo $1 | sed -E -e 's#/dev/##' -e 's/([0-9])./\1/'` + if cdcontrol -f $dev eject; then diff --git a/x11/kdebase2/files/patch-konsole_grantpty.c b/x11/kdebase2/files/patch-konsole_grantpty.c deleted file mode 100644 index 889d15bdb592..000000000000 --- a/x11/kdebase2/files/patch-konsole_grantpty.c +++ /dev/null @@ -1,79 +0,0 @@ ---- konsole/src/konsole_grantpty.c.orig Sat Jun 12 07:13:31 1999 -+++ konsole/src/konsole_grantpty.c Fri Dec 8 11:54:43 2000 -@@ -31,13 +31,15 @@ - #include <string.h> - #include <sys/stat.h> - #include <unistd.h> -+#include <dirent.h> -+#include <paths.h> - - #define PTY_FILENO 3 /* keep in sync with grantpty */ - #define TTY_GROUP "tty" - - int main (int argc, char *argv[]) - { -- char* pty; -+ char* pty = NULL; - struct stat st; - struct group* p; - gid_t gid; -@@ -81,6 +83,7 @@ - - /* get slave pty name from master pty file handle in PTY_FILENO *********/ - -+#if 0 - /* Check that PTY_FILENO is a valid master pseudo terminal. */ - pty = ttyname(PTY_FILENO); /* posix */ - if (pty == NULL) -@@ -89,6 +92,42 @@ - return 1; /* FAIL */ - } - close(PTY_FILENO); -+#else -+ /* The trouble with the ifdef'd-out portion above is that ttyname() -+ ** does not work correctly when not passed a valid tty, but a pseudotty -+ ** instead. All we're doing here is finding out what the name of -+ ** the associated pty is without having to pass it in on the command line. -+ ** Nothing complex. -+ */ -+ { -+ struct stat sb; -+ struct stat dsb; -+ struct dirent *dirp; -+ static char buf[sizeof(_PATH_DEV) + MAXNAMLEN] = _PATH_DEV; -+ DIR *dp; -+ -+ pty = NULL; -+ -+ if (fstat(PTY_FILENO, &sb)) -+ return 1; /* FAIL */ -+ if ((dp = opendir(_PATH_DEV)) == NULL) -+ return 1; /* FAIL */ -+ -+ while ((dirp = readdir(dp))) { -+ if (dirp->d_fileno != sb.st_ino) -+ continue; -+ bcopy(dirp->d_name, buf + sizeof(_PATH_DEV) - 1, dirp->d_namlen+1); -+ /*fprintf(stderr, "looking at %s\n", buf);*/ -+ if (stat(buf, &dsb) || sb.st_dev != dsb.st_dev || sb.st_ino != dsb.st_ino) -+ continue; -+ pty = buf; -+ } -+ closedir(dp); -+ if (pty == NULL) -+ return 1; /* FAIL */ -+ } -+ /*fprintf(stderr, "successful at finding %s\n", pty);*/ -+#endif - - /* matches /dev/pty?? */ - if (strlen(pty) < 8 || strncmp(pty,"/dev/pty",8)) -@@ -120,6 +159,8 @@ - fprintf(stderr,"%s: cannot chmod %s.\n",argv[0],tty); perror("Reason"); - return 1; /* FAIL */ - } -+ -+ /*fprintf(stderr, "made it here\n");*/ - - return 0; /* OK */ - } diff --git a/x11/kdebase2/pkg-plist b/x11/kdebase2/pkg-plist index 7a8ef62507e2..5424c20a9cca 100644 --- a/x11/kdebase2/pkg-plist +++ b/x11/kdebase2/pkg-plist @@ -2,6 +2,7 @@ bin/appletproxy bin/chooser bin/conttest bin/drkonqi +bin/extensionproxy bin/kaccess bin/kappfinder bin/kbanner.kss @@ -21,6 +22,7 @@ bin/kdesu bin/kdesud bin/kdm bin/kdmdesktop +bin/keditbookmarks bin/keditfiletype bin/kfmclient bin/kfmexec @@ -33,25 +35,22 @@ bin/klegacyimport bin/klines.kss bin/klipper bin/klorenz.kss -bin/kman2html bin/kmatrix.kss bin/kmenuedit -bin/kmorph3d.kss bin/konqueror bin/konsole bin/konsole_grantpty bin/kpager -bin/kpipes.kss bin/kpolygon.kss bin/kpyro.kss bin/krandom.kss bin/krdb +bin/kreadconfig bin/krock.kss bin/kscience.kss bin/kslidescreen.kss bin/kslideshow.kss bin/ksmserver -bin/kspace.kss bin/ksplash bin/kstart bin/kswarm.kss @@ -59,7 +58,9 @@ bin/ksysguard bin/ksysguardd bin/ktip bin/kvm.kss +bin/kwebdesktop bin/kwin +bin/kwmtheme bin/kwrite bin/kwrited bin/kxkb @@ -75,6 +76,10 @@ include/KonquerorIface.h include/ccont.h include/kbookmark.h include/kbookmarkbar.h +include/kbookmarkdrag.h +include/kbookmarkexporter.h +include/kbookmarkimporter.h +include/kbookmarkmanager.h include/kbookmarkmenu.h include/kfileivi.h include/knewmenu.h @@ -84,61 +89,189 @@ include/konq_dirlister.h include/konq_dirpart.h include/konq_drag.h include/konq_events.h +include/konq_faviconmgr.h include/konq_fileitem.h +include/konq_historycomm.h +include/konq_historymgr.h include/konq_iconviewwidget.h include/konq_imagepreviewjob.h +include/konq_mimetyperesolver.h include/konq_operations.h +include/konq_pixmapprovider.h include/konq_popupmenu.h include/konq_propsview.h include/konq_settings.h include/konq_undo.h +include/kwin/client.h +include/kwin/options.h +include/kwin/workspace.h +include/thumbcreator.h lib/appletproxy.la lib/appletproxy.so -lib/kaccess.la -lib/kaccess.so +lib/extensionproxy.la +lib/extensionproxy.so lib/kcminit.la lib/kcminit.so lib/kcmshell.la lib/kcmshell.so lib/kcontrol.la lib/kcontrol.so +lib/kde2/htmlthumbnail.la +lib/kde2/htmlthumbnail.so +lib/kde2/imagethumbnail.la +lib/kde2/imagethumbnail.so +lib/kde2/kaccess.la +lib/kde2/kaccess.so +lib/kde2/kio_filter.la +lib/kde2/kio_filter.so +lib/kde2/kio_finger.la +lib/kde2/kio_finger.so +lib/kde2/kio_floppy.la +lib/kde2/kio_floppy.so +lib/kde2/kio_gopher.la +lib/kde2/kio_gopher.so +lib/kde2/kio_help.la +lib/kde2/kio_help.so +lib/kde2/kio_imap4.la +lib/kde2/kio_imap4.so +lib/kde2/kio_info.la +lib/kde2/kio_info.so +lib/kde2/kio_ldap.la +lib/kde2/kio_ldap.so +lib/kde2/kio_man.la +lib/kde2/kio_man.so +lib/kde2/kio_nfs.la +lib/kde2/kio_nfs.so +lib/kde2/kio_nntp.la +lib/kde2/kio_nntp.so +lib/kde2/kio_pop3.la +lib/kde2/kio_pop3.so +lib/kde2/kio_smb.la +lib/kde2/kio_smb.so +lib/kde2/kio_smtp.la +lib/kde2/kio_smtp.so +lib/kde2/kio_tar.la +lib/kde2/kio_tar.so +lib/kde2/kio_thumbnail.la +lib/kde2/kio_thumbnail.so +lib/kde2/libkcm_access.la +lib/kde2/libkcm_access.so +lib/kde2/libkcm_arts.la +lib/kde2/libkcm_arts.so +lib/kde2/libkcm_background.la +lib/kde2/libkcm_background.so +lib/kde2/libkcm_bell.la +lib/kde2/libkcm_bell.so +lib/kde2/libkcm_clock.la +lib/kde2/libkcm_clock.so +lib/kde2/libkcm_colors.la +lib/kde2/libkcm_colors.so +lib/kde2/libkcm_crypto.la +lib/kde2/libkcm_crypto.so +lib/kde2/libkcm_email.la +lib/kde2/libkcm_email.so +lib/kde2/libkcm_energy.la +lib/kde2/libkcm_energy.so +lib/kde2/libkcm_filetypes.la +lib/kde2/libkcm_filetypes.so +lib/kde2/libkcm_fonts.la +lib/kde2/libkcm_fonts.so +lib/kde2/libkcm_icons.la +lib/kde2/libkcm_icons.so +lib/kde2/libkcm_info.la +lib/kde2/libkcm_info.so +lib/kde2/libkcm_input.la +lib/kde2/libkcm_input.so +lib/kde2/libkcm_kdm.la +lib/kde2/libkcm_kdm.so +lib/kde2/libkcm_keys.la +lib/kde2/libkcm_keys.so +lib/kde2/libkcm_khotkeys.la +lib/kde2/libkcm_khotkeys.so +lib/kde2/libkcm_kicker.la +lib/kde2/libkcm_kicker.so +lib/kde2/libkcm_kio.la +lib/kde2/libkcm_kio.so +lib/kde2/libkcm_knotify.la +lib/kde2/libkcm_knotify.so +lib/kde2/libkcm_konq.la +lib/kde2/libkcm_konq.so +lib/kde2/libkcm_konqhtml.la +lib/kde2/libkcm_konqhtml.so +lib/kde2/libkcm_kurifilt.la +lib/kde2/libkcm_kurifilt.so +lib/kde2/libkcm_kwinoptions.la +lib/kde2/libkcm_kwinoptions.so +lib/kde2/libkcm_locale.la +lib/kde2/libkcm_locale.so +lib/kde2/libkcm_midi.la +lib/kde2/libkcm_midi.so +lib/kde2/libkcm_passwords.la +lib/kde2/libkcm_passwords.so +lib/kde2/libkcm_samba.la +lib/kde2/libkcm_samba.so +lib/kde2/libkcm_screensaver.la +lib/kde2/libkcm_screensaver.so +lib/kde2/libkcm_smserver.la +lib/kde2/libkcm_smserver.so +lib/kde2/libkcm_style.la +lib/kde2/libkcm_style.so +lib/kde2/libkcm_taskbar.la +lib/kde2/libkcm_taskbar.so +lib/kde2/libkcm_themes.la +lib/kde2/libkcm_themes.so +lib/kde2/libkfindpart.la +lib/kde2/libkfindpart.so +lib/kde2/libkonqiconview.la +lib/kde2/libkonqiconview.so +lib/kde2/libkonqlistview.la +lib/kde2/libkonqlistview.so +lib/kde2/libkonqtree.la +lib/kde2/libkonqtree.so +lib/kde2/libkshellcmdplugin.la +lib/kde2/libkshellcmdplugin.so +lib/kde2/libkshorturifilter.la +lib/kde2/libkshorturifilter.so +lib/kde2/libkuriikwsfilter.la +lib/kde2/libkuriikwsfilter.so +lib/kde2/libkurisearchfilter.la +lib/kde2/libkurisearchfilter.so +lib/kde2/libkwin2k.la +lib/kde2/libkwin2k.so +lib/kde2/libkwinb2.la +lib/kde2/libkwinb2.so +lib/kde2/libkwinkde1.la +lib/kde2/libkwinkde1.so +lib/kde2/libkwinkstep.la +lib/kde2/libkwinkstep.so +lib/kde2/libkwinkwmtheme.la +lib/kde2/libkwinkwmtheme.so +lib/kde2/libkwinlaptop.la +lib/kde2/libkwinlaptop.so +lib/kde2/libkwinmodernsys.la +lib/kde2/libkwinmodernsys.so +lib/kde2/libkwinriscos.la +lib/kde2/libkwinriscos.so +lib/kde2/libkwinsystem.la +lib/kde2/libkwinsystem.so +lib/kde2/textthumbnail.la +lib/kde2/textthumbnail.so lib/kdesktop.la lib/kdesktop.so +lib/keditbookmarks.la +lib/keditbookmarks.so lib/kfmclient.la lib/kfmclient.so lib/khotkeys.la lib/khotkeys.so lib/kicker.la lib/kicker.so -lib/kio_gopher.la -lib/kio_gopher.so -lib/kio_gzip.la -lib/kio_gzip.so -lib/kio_help.la -lib/kio_help.so -lib/kio_info.la -lib/kio_info.so -lib/kio_man.la -lib/kio_man.so -lib/kio_nfs.la -lib/kio_nfs.so -lib/kio_nntp.la -lib/kio_nntp.so -lib/kio_pop3.la -lib/kio_pop3.so -lib/kio_smb.la -lib/kio_smb.so -lib/kio_smtp.la -lib/kio_smtp.so -lib/kio_tar.la -lib/kio_tar.so lib/klegacyimport.la lib/klegacyimport.so lib/klipper.la lib/klipper.so lib/kmenuedit.la lib/kmenuedit.so -lib/kmenuedit.so.0 lib/konqueror.la lib/konqueror.so lib/konsole.la @@ -153,86 +286,29 @@ lib/kxkb.la lib/kxkb.so lib/kxmlrpcd.la lib/kxmlrpcd.so +lib/libKdmGreet.la +lib/libKdmGreet.so lib/libccont.a +lib/libchildpanelextension.la +lib/libchildpanelextension.so +lib/libchildpanelextension.so.1 lib/libclockapplet.la lib/libclockapplet.so lib/libclockapplet.so.1 +lib/libdockbarextension.la +lib/libdockbarextension.so +lib/libdockbarextension.so.1 lib/libhtmlsearch.la lib/libhtmlsearch.so -lib/libkcm_access.la -lib/libkcm_access.so -lib/libkcm_arts.la -lib/libkcm_arts.so -lib/libkcm_background.la -lib/libkcm_background.so -lib/libkcm_bell.la -lib/libkcm_bell.so -lib/libkcm_clock.la -lib/libkcm_clock.so -lib/libkcm_colors.la -lib/libkcm_colors.so -lib/libkcm_crypto.la -lib/libkcm_crypto.so -lib/libkcm_email.la -lib/libkcm_email.so -lib/libkcm_energy.la -lib/libkcm_energy.so -lib/libkcm_filetypes.la -lib/libkcm_filetypes.so -lib/libkcm_fonts.la -lib/libkcm_fonts.so +lib/libkasbarextension.la +lib/libkasbarextension.so +lib/libkasbarextension.so.1 lib/libkcm_htmlsearch.la lib/libkcm_htmlsearch.so -lib/libkcm_icons.la -lib/libkcm_icons.so -lib/libkcm_iconthemes.la -lib/libkcm_iconthemes.so -lib/libkcm_info.la -lib/libkcm_info.so -lib/libkcm_input.la -lib/libkcm_input.so -lib/libkcm_kdm.la -lib/libkcm_kdm.so -lib/libkcm_keys.la -lib/libkcm_keys.so -lib/libkcm_khotkeys.la -lib/libkcm_khotkeys.so -lib/libkcm_kicker.la -lib/libkcm_kicker.so -lib/libkcm_kio.la -lib/libkcm_kio.so -lib/libkcm_knotify.la -lib/libkcm_knotify.so -lib/libkcm_konq.la -lib/libkcm_konq.so -lib/libkcm_konqhtml.la -lib/libkcm_konqhtml.so -lib/libkcm_kurifilt.la -lib/libkcm_kurifilt.so -lib/libkcm_kwindesktop.la -lib/libkcm_kwindesktop.so -lib/libkcm_kwinmouse.la -lib/libkcm_kwinmouse.so -lib/libkcm_kwinoptions.la -lib/libkcm_kwinoptions.so +lib/libkcm_ioslaveinfo.la +lib/libkcm_ioslaveinfo.so lib/libkcm_layout.la lib/libkcm_layout.so -lib/libkcm_locale.la -lib/libkcm_locale.so -lib/libkcm_midi.la -lib/libkcm_midi.so -lib/libkcm_passwords.la -lib/libkcm_passwords.so -lib/libkcm_samba.la -lib/libkcm_samba.so -lib/libkcm_screensaver.la -lib/libkcm_screensaver.so -lib/libkcm_style.la -lib/libkcm_style.so -lib/libkcm_taskbar.la -lib/libkcm_taskbar.so -lib/libkcm_virtualdesktops.la -lib/libkcm_virtualdesktops.so lib/libkcm_xmlrpcd.la lib/libkcm_xmlrpcd.so lib/libkhelpcenter.la @@ -244,71 +320,60 @@ lib/libkminipagerapplet.so.1 lib/libkonq.la lib/libkonq.so lib/libkonq.so.4 -lib/libkonqdirtree.la -lib/libkonqdirtree.so -lib/libkonqiconview.la -lib/libkonqiconview.so -lib/libkonqlistview.la -lib/libkonqlistview.so +lib/libkonqaboutpage.la +lib/libkonqaboutpage.so lib/libkonsolepart.la lib/libkonsolepart.so lib/libkrunapplet.la lib/libkrunapplet.so lib/libkrunapplet.so.1 -lib/libkshorturifilter.la -lib/libkshorturifilter.so -lib/libkshorturifilter.so.1 +lib/libksysguardapplet.la +lib/libksysguardapplet.so +lib/libksysguardapplet.so.1 lib/libksystemtrayapplet.la lib/libksystemtrayapplet.so lib/libksystemtrayapplet.so.1 lib/libktaskbarapplet.la lib/libktaskbarapplet.so lib/libktaskbarapplet.so.1 -lib/libkuriikwsfilter.la -lib/libkuriikwsfilter.so -lib/libkuriikwsfilter.so.1 -lib/libkurisearchfilter.la -lib/libkurisearchfilter.so -lib/libkurisearchfilter.so.1 -lib/libkwinb2.la -lib/libkwinb2.so lib/libkwindefault.la lib/libkwindefault.so lib/libkwindefault.so.0 -lib/libkwinkde1.la -lib/libkwinkde1.so -lib/libkwinkstep.la -lib/libkwinkstep.so -lib/libkwinlaptop.la -lib/libkwinlaptop.so -lib/libkwinmodernsys.la -lib/libkwinmodernsys.so -lib/libkwinriscos.la -lib/libkwinriscos.so -lib/libkwinsystem.la -lib/libkwinsystem.so lib/libkwritepart.la lib/libkwritepart.so +lib/libnaughtyapplet.la +lib/libnaughtyapplet.so +lib/libnaughtyapplet.so.1 lib/libquicklauncher.la lib/libquicklauncher.so lib/libquicklauncher.so.1 -lib/libsmb++.la -lib/libsmb++.so -lib/libsmb++.so.0 +lib/libtaskbarextension.la +lib/libtaskbarextension.so +lib/libtaskbarextension.so.1 +lib/libtaskmanager.la +lib/libtaskmanager.so +lib/libtaskmanager.so.1 share/applnk/.directory share/applnk/.hidden/konqfilemgr.desktop share/applnk/Applications/.directory -share/applnk/Development/designer.desktop +share/applnk/Development/.directory share/applnk/Editors/.directory +share/applnk/Editors/gvim.desktop share/applnk/Editors/kwrite.desktop +share/applnk/Editors/xedit.desktop share/applnk/Games/.directory share/applnk/Graphics/.directory +share/applnk/Graphics/gimp.desktop share/applnk/Help.desktop share/applnk/Home.desktop share/applnk/Internet/.directory +share/applnk/Internet/keditbookmarks.desktop share/applnk/Internet/konqbrowser.desktop +share/applnk/Internet/netscape.desktop share/applnk/KControl.desktop share/applnk/Multimedia/.directory +share/applnk/Multimedia/aviplay.desktop +share/applnk/Multimedia/xawtv.desktop share/applnk/Office/.directory share/applnk/Settings/.directory share/applnk/Settings/FileBrowsing/.directory @@ -321,6 +386,7 @@ share/applnk/Settings/Information/devices.desktop share/applnk/Settings/Information/dma.desktop share/applnk/Settings/Information/interrupts.desktop share/applnk/Settings/Information/ioports.desktop +share/applnk/Settings/Information/ioslaveinfo.desktop share/applnk/Settings/Information/memory.desktop share/applnk/Settings/Information/partitions.desktop share/applnk/Settings/Information/pci.desktop @@ -330,28 +396,29 @@ share/applnk/Settings/Information/smbstatus.desktop share/applnk/Settings/Information/sound.desktop share/applnk/Settings/Information/xserver.desktop share/applnk/Settings/LookNFeel/.directory -share/applnk/Settings/LookNFeel/Desktop/.directory share/applnk/Settings/LookNFeel/Desktop/background.desktop share/applnk/Settings/LookNFeel/Desktop/borders.desktop share/applnk/Settings/LookNFeel/Desktop/desktop.desktop share/applnk/Settings/LookNFeel/Desktop/virtualdesktops.desktop -share/applnk/Settings/LookNFeel/Panel/.directory -share/applnk/Settings/LookNFeel/Themes/.directory share/applnk/Settings/LookNFeel/Themes/iconthemes.desktop share/applnk/Settings/LookNFeel/Themes/style.desktop -share/applnk/Settings/LookNFeel/Windows/.directory share/applnk/Settings/LookNFeel/Windows/actions.desktop -share/applnk/Settings/LookNFeel/Windows/mouse.desktop +share/applnk/Settings/LookNFeel/Windows/kwinmouse.desktop +share/applnk/Settings/LookNFeel/background.desktop share/applnk/Settings/LookNFeel/colors.desktop +share/applnk/Settings/LookNFeel/desktop.desktop share/applnk/Settings/LookNFeel/fonts.desktop share/applnk/Settings/LookNFeel/icons.desktop share/applnk/Settings/LookNFeel/kcmnotify.desktop share/applnk/Settings/LookNFeel/kcmtaskbar.desktop share/applnk/Settings/LookNFeel/keys.desktop +share/applnk/Settings/LookNFeel/kthememgr.desktop +share/applnk/Settings/LookNFeel/kwinoptions.desktop share/applnk/Settings/LookNFeel/panel.desktop share/applnk/Settings/LookNFeel/screensaver.desktop +share/applnk/Settings/LookNFeel/style.desktop +share/applnk/Settings/LookNFeel/virtualdesktops.desktop share/applnk/Settings/Network/.directory -share/applnk/Settings/Network/smb.desktop share/applnk/Settings/Peripherals/.directory share/applnk/Settings/Peripherals/keyboard.desktop share/applnk/Settings/Peripherals/mouse.desktop @@ -370,28 +437,24 @@ share/applnk/Settings/Sound/bell.desktop share/applnk/Settings/Sound/midi.desktop share/applnk/Settings/System/.directory share/applnk/Settings/System/clock.desktop +share/applnk/Settings/System/kcmsmserver.desktop share/applnk/Settings/System/kdm.desktop share/applnk/Settings/WebBrowsing/.directory share/applnk/Settings/WebBrowsing/cookies.desktop share/applnk/Settings/WebBrowsing/ebrowsing.desktop share/applnk/Settings/WebBrowsing/konqhtml.desktop share/applnk/Settings/WebBrowsing/proxy.desktop +share/applnk/Settings/WebBrowsing/smb.desktop share/applnk/Settings/WebBrowsing/useragent.desktop share/applnk/System/.directory -share/applnk/System/Arrange.desktop share/applnk/System/ScreenSavers/.directory -share/applnk/System/ScreenSavers/KAttration.desktop share/applnk/System/ScreenSavers/KBanner.desktop share/applnk/System/ScreenSavers/KBlankscreen.desktop share/applnk/System/ScreenSavers/KBlob.desktop share/applnk/System/ScreenSavers/KBouboule.desktop share/applnk/System/ScreenSavers/KBsod.desktop -share/applnk/System/ScreenSavers/KFlame.desktop -share/applnk/System/ScreenSavers/KForest.desktop share/applnk/System/ScreenSavers/KHop.desktop -share/applnk/System/ScreenSavers/KLaser.desktop share/applnk/System/ScreenSavers/KLines.desktop -share/applnk/System/ScreenSavers/KLissie.desktop share/applnk/System/ScreenSavers/KLorenz.desktop share/applnk/System/ScreenSavers/KMatrix.desktop share/applnk/System/ScreenSavers/KMorph3D.desktop @@ -403,12 +466,14 @@ share/applnk/System/ScreenSavers/KRock.desktop share/applnk/System/ScreenSavers/KScience.desktop share/applnk/System/ScreenSavers/KSlidescreen.desktop share/applnk/System/ScreenSavers/KSlideshow.desktop -share/applnk/System/ScreenSavers/KSlip.desktop share/applnk/System/ScreenSavers/KSpace.desktop share/applnk/System/ScreenSavers/KSwarm.desktop share/applnk/System/ScreenSavers/KVm.desktop +share/applnk/System/ScreenSavers/Worm.desktop share/applnk/System/kappfinder.desktop share/applnk/System/kfmclient.desktop +share/applnk/System/kfmclient_dir.desktop +share/applnk/System/kfmclient_html.desktop share/applnk/System/klegacyimport.desktop share/applnk/System/kmenuedit.desktop share/applnk/System/konquerorsu.desktop @@ -417,15 +482,19 @@ share/applnk/System/konsolesu.desktop share/applnk/System/ksysguard.desktop share/applnk/Toys/.directory share/applnk/Toys/ktip.desktop +share/applnk/Toys/xeyes.desktop share/applnk/Utilities/.directory +share/applnk/Utilities/XUtilities/xcalc.desktop +share/applnk/Utilities/XUtilities/xclipboard.desktop +share/applnk/Utilities/XUtilities/xclock.desktop +share/applnk/Utilities/XUtilities/xconsole.desktop +share/applnk/Utilities/XUtilities/xload.desktop +share/applnk/Utilities/XUtilities/xmag.desktop +share/applnk/Utilities/XUtilities/xterm.desktop share/applnk/Utilities/klipper.desktop share/applnk/Utilities/kpager.desktop -share/applnk/Utilities/passwd.desktop -share/applnk/Utilities/xclipboard.desktop -share/applnk/Utilities/xclock.desktop -share/applnk/Utilities/xconsole.desktop -share/applnk/Utilities/xmag.desktop -share/applnk/Utilities/xterm.desktop +share/applnk/WordProcessing/gv.desktop +share/applnk/WordProcessing/xpdf.desktop share/apps/clockapplet/pics/lcd.png share/apps/drkonqi/debuggers/gdbrc share/apps/drkonqi/pics/konqi.png @@ -443,6 +512,13 @@ share/apps/kappfinder/apps/Editors/lemacs.desktop share/apps/kappfinder/apps/Editors/nedit.desktop share/apps/kappfinder/apps/Editors/xedit.desktop share/apps/kappfinder/apps/Editors/xemacs.desktop +share/apps/kappfinder/apps/Games/.directory +share/apps/kappfinder/apps/Games/Clanbomber.desktop +share/apps/kappfinder/apps/Games/Qmamecat.desktop +share/apps/kappfinder/apps/Games/defendguin.desktop +share/apps/kappfinder/apps/Games/freeciv.desktop +share/apps/kappfinder/apps/Games/penguin-command.desktop +share/apps/kappfinder/apps/Games/xshipwars.desktop share/apps/kappfinder/apps/Graphics/.directory share/apps/kappfinder/apps/Graphics/gimp.desktop share/apps/kappfinder/apps/Graphics/xfig.desktop @@ -451,6 +527,8 @@ share/apps/kappfinder/apps/Graphics/xv.desktop share/apps/kappfinder/apps/Internet/.directory share/apps/kappfinder/apps/Internet/arena.desktop share/apps/kappfinder/apps/Internet/coolmail.desktop +share/apps/kappfinder/apps/Internet/ethereal.desktop +share/apps/kappfinder/apps/Internet/ncftp.desktop share/apps/kappfinder/apps/Internet/netscape.desktop share/apps/kappfinder/apps/Internet/pine.desktop share/apps/kappfinder/apps/Internet/xbiff.desktop @@ -458,7 +536,11 @@ share/apps/kappfinder/apps/Internet/xchat.desktop share/apps/kappfinder/apps/Internet/xfmail.desktop share/apps/kappfinder/apps/Internet/xftp.desktop share/apps/kappfinder/apps/Multimedia/.directory +share/apps/kappfinder/apps/Multimedia/alevt.desktop +share/apps/kappfinder/apps/Multimedia/aviplay.desktop +share/apps/kappfinder/apps/Multimedia/gtv.desktop share/apps/kappfinder/apps/Multimedia/realplayer.desktop +share/apps/kappfinder/apps/Multimedia/xawtv.desktop share/apps/kappfinder/apps/Multimedia/xmms.desktop share/apps/kappfinder/apps/Office/.directory share/apps/kappfinder/apps/Office/Applix.desktop @@ -531,15 +613,14 @@ share/apps/kappfinder/apps/Toys/.directory share/apps/kappfinder/apps/Toys/xeyes.desktop share/apps/kappfinder/apps/Toys/xpinguin.desktop share/apps/kappfinder/apps/Utilities/.directory -share/apps/kappfinder/apps/Utilities/jar.desktop -share/apps/kappfinder/apps/Utilities/passwd.desktop -share/apps/kappfinder/apps/Utilities/xcalc.desktop -share/apps/kappfinder/apps/Utilities/xclipboard.desktop -share/apps/kappfinder/apps/Utilities/xclock.desktop -share/apps/kappfinder/apps/Utilities/xconsole.desktop -share/apps/kappfinder/apps/Utilities/xload.desktop -share/apps/kappfinder/apps/Utilities/xmag.desktop -share/apps/kappfinder/apps/Utilities/xterm.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/.directory +share/apps/kappfinder/apps/Utilities/XUtilities/xcalc.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclipboard.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclock.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xconsole.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xload.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xmag.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xterm.desktop share/apps/kappfinder/apps/WordProcessing/.directory share/apps/kappfinder/apps/WordProcessing/WordPerfect.desktop share/apps/kappfinder/apps/WordProcessing/WordPerfect2000.desktop @@ -547,10 +628,12 @@ share/apps/kappfinder/apps/WordProcessing/acroread.desktop share/apps/kappfinder/apps/WordProcessing/ghostview.desktop share/apps/kappfinder/apps/WordProcessing/gv.desktop share/apps/kappfinder/apps/WordProcessing/lyx.desktop +share/apps/kappfinder/apps/WordProcessing/pybliographic.desktop share/apps/kappfinder/apps/WordProcessing/xdvi.desktop share/apps/kappfinder/apps/WordProcessing/xpdf.desktop share/apps/kbookmark/directory_bookmarkbar.desktop share/apps/kcminput/cursor_large.pcf.gz +share/apps/kcmkeys/standard/Unix.kksrc share/apps/kcmlocale/pics/background.png share/apps/kcontrol/kcontrolui.rc share/apps/kcontrol/pics/energybig.png @@ -560,8 +643,10 @@ share/apps/kcontrol/pics/mini-world.png share/apps/kcontrol/pics/monitor.png share/apps/kcontrol/pics/onlyone.png share/apps/kcontrol/pics/overlapping.png +share/apps/kcontrol/pics/part1.png +share/apps/kcontrol/pics/part2.png +share/apps/kcontrol/pics/part3.png share/apps/kcontrol/pics/play.png -share/apps/kcontrol/pics/wizard.png share/apps/kdcop/kdcopui.rc share/apps/kdesktop/DesktopLinks/Home.desktop share/apps/kdesktop/directory.autostart @@ -586,8 +671,10 @@ share/apps/kdesktop/pics/kde2.xbm share/apps/kdesktop/pics/ksslogo.png share/apps/kdesktop/pics/splash.png share/apps/kdesktop/pics/splash2.png +share/apps/kdesktop/programs/kwebdesktop.desktop share/apps/kdesktop/programs/xearth.desktop share/apps/kdesktop/programs/xglobe.desktop +share/apps/kdesktop/programs/xplanet.desktop share/apps/kdewizard/pics/wizard_small.png share/apps/kdewizard/tips share/apps/kdisplay/app-defaults/AAAAAAGeneral.ad @@ -605,6 +692,8 @@ share/apps/kdisplay/app-defaults/XCalc.ad share/apps/kdisplay/app-defaults/XOsview.ad share/apps/kdisplay/app-defaults/XTerm.ad share/apps/kdisplay/app-defaults/XV.ad +share/apps/kdisplay/app-defaults/Xawtv.ad +share/apps/kdisplay/app-defaults/Xpdf.ad share/apps/kdisplay/color-schemes/AtlasGreen.kcsrc share/apps/kdisplay/color-schemes/BeOS.kcsrc share/apps/kdisplay/color-schemes/BlueSlate.kcsrc @@ -627,15 +716,21 @@ share/apps/kdm/pics/users/default.png share/apps/kdm/pics/users/default2.png share/apps/kdm/pics/users/root.png share/apps/kdm/pics/users/root2.png +share/apps/keditbookmarks/keditbookmarksui.rc +share/apps/kfind/icons/locolor/22x22/actions/archive.png +share/apps/kfind/icons/locolor/22x22/actions/delete.png +share/apps/kfind/icons/locolor/22x22/actions/idea.png +share/apps/kfind/icons/locolor/22x22/actions/info.png +share/apps/kfind/icons/locolor/22x22/actions/openfile.png +share/apps/kfind/icons/locolor/22x22/actions/save.png +share/apps/kfind/icons/locolor/22x22/actions/search.png share/apps/khelpcenter/en/bad_words share/apps/khelpcenter/en/long.html share/apps/khelpcenter/en/nomatch.html share/apps/khelpcenter/en/short.html share/apps/khelpcenter/en/syntax.html share/apps/khelpcenter/en/wrapper.html -share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook.png share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook_open.png -share/apps/khelpcenter/icons/locolor/16x16/apps/helpdoc.png share/apps/khelpcenter/pics/checked.xpm share/apps/khelpcenter/pics/star.png share/apps/khelpcenter/pics/star_blank.png @@ -646,9 +741,16 @@ share/apps/khelpcenter/plugins/Tutorials/visualdict.desktop share/apps/kicker/applets/clockapplet.desktop share/apps/kicker/applets/kminipagerapplet.desktop share/apps/kicker/applets/krunapplet.desktop +share/apps/kicker/applets/ksysguardapplet.desktop share/apps/kicker/applets/ksystemtrayapplet.desktop share/apps/kicker/applets/ktaskbarapplet.desktop +share/apps/kicker/applets/naughtyapplet.desktop share/apps/kicker/applets/quicklauncher.desktop +share/apps/kicker/extensions/childpanelextension.desktop +share/apps/kicker/extensions/dockbarextension.desktop +share/apps/kicker/extensions/kasbarextension.desktop +share/apps/kicker/extensions/taskbarextension.desktop +share/apps/kicker/icons/hicolor/16x16/actions/modified.png share/apps/kicker/icons/locolor/16x16/actions/modified.png share/apps/kicker/pics/disk1.png share/apps/kicker/pics/disk2.png @@ -761,6 +863,8 @@ share/apps/kicker/tiles/solid_tgri_tiny_up.png share/apps/kicker/wallpapers/deck_plate.png share/apps/kicker/wallpapers/green_line.png share/apps/kicker/wallpapers/rail.png +share/apps/kio_finger/kio_finger.css +share/apps/kio_finger/kio_finger.pl share/apps/kio_info/kde-info2html share/apps/kio_info/kde-info2html.conf share/apps/kmenuedit/icons/hicolor/22x22/actions/menu_new.png @@ -769,17 +873,46 @@ share/apps/kmenuedit/icons/locolor/16x16/actions/menu_new.png share/apps/kmenuedit/kmenueditui.rc share/apps/konqiconview/konq_iconview.rc share/apps/konqiconview/konq_multicolumnview.rc +share/apps/konqiconview/kpartplugins/kshellcmdplugin.rc share/apps/konqlistview/konq_detailedlistview.rc share/apps/konqlistview/konq_textview.rc share/apps/konqlistview/konq_treeview.rc +share/apps/konqlistview/kpartplugins/kshellcmdplugin.rc +share/apps/konqueror/about/back.png +share/apps/konqueror/about/background.png +share/apps/konqueror/about/bgtable.png +share/apps/konqueror/about/gohome.png +share/apps/konqueror/about/history.png +share/apps/konqueror/about/intro.html +share/apps/konqueror/about/kdelogo2.png +share/apps/konqueror/about/konq.css +share/apps/konqueror/about/konqueror.png +share/apps/konqueror/about/lines.png +share/apps/konqueror/about/lines2.png +share/apps/konqueror/about/locationbar_erase.png +share/apps/konqueror/about/more.png +share/apps/konqueror/about/openterm.png +share/apps/konqueror/about/pointers.gif +share/apps/konqueror/about/shadow1.png +share/apps/konqueror/about/specs.html +share/apps/konqueror/about/tips.html +share/apps/konqueror/about/view_left_right.png +share/apps/konqueror/about/viewmag.png +share/apps/konqueror/about/window_fullscreen.png +share/apps/konqueror/dirtree/bookmarks.desktop +share/apps/konqueror/dirtree/history.desktop share/apps/konqueror/dirtree/home.desktop share/apps/konqueror/dirtree/remote/.directory share/apps/konqueror/dirtree/remote/ftp/.directory share/apps/konqueror/dirtree/remote/ftp/kde_ftp.desktop share/apps/konqueror/dirtree/remote/web/.directory share/apps/konqueror/dirtree/remote/web/kde_web.desktop -share/apps/konqueror/dirtree/remote/windows.desktop share/apps/konqueror/dirtree/root.desktop +share/apps/konqueror/icons/hicolor/16x16/actions/remove_view.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_bottom.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_left_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_top_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/remove_view.png share/apps/konqueror/icons/hicolor/22x22/actions/view_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/view_left_right.png @@ -796,7 +929,6 @@ share/apps/konqueror/icons/locolor/16x16/actions/kde3.png share/apps/konqueror/icons/locolor/16x16/actions/kde4.png share/apps/konqueror/icons/locolor/16x16/actions/kde5.png share/apps/konqueror/icons/locolor/16x16/actions/kde6.png -share/apps/konqueror/icons/locolor/16x16/actions/locationbar_erase.png share/apps/konqueror/icons/locolor/16x16/actions/remove_view.png share/apps/konqueror/icons/locolor/16x16/actions/view_bottom.png share/apps/konqueror/icons/locolor/16x16/actions/view_left_right.png @@ -808,13 +940,17 @@ share/apps/konqueror/pics/indicator_connect.png share/apps/konqueror/pics/indicator_empty.png share/apps/konqueror/pics/indicator_noconnect.png share/apps/konqueror/pics/indicator_viewactive.png +share/apps/konqueror/pics/thumbnailfont_7x4.png share/apps/konqueror/profiles/filemanagement +share/apps/konqueror/profiles/filepreview +share/apps/konqueror/profiles/midnightcommander share/apps/konqueror/profiles/webbrowsing share/apps/konqueror/tiles/bluemorning.png share/apps/konqueror/tiles/canvas.png share/apps/konqueror/tiles/checker.png share/apps/konqueror/tiles/cubic.png share/apps/konqueror/tiles/kde4ever.png +share/apps/konqueror/tiles/kenwimer.png share/apps/konqueror/tiles/noise.png share/apps/konqueror/tiles/paper_flieder.png share/apps/konqueror/tiles/punika_attack.png @@ -850,12 +986,18 @@ share/apps/konsole/syscolor.schema share/apps/konsole/vim.schema share/apps/konsole/vt100.keytab share/apps/konsole/vt420pc.keytab +share/apps/konsole/x11r5.keytab share/apps/kscreensaver/kscience-small.gif share/apps/kscreensaver/kscience.gif +share/apps/ksplash/pics/locolor/splash_active_bar.png +share/apps/ksplash/pics/locolor/splash_bottom.png +share/apps/ksplash/pics/locolor/splash_inactive_bar.png +share/apps/ksplash/pics/locolor/splash_top.png share/apps/ksplash/pics/splash_active_bar.png share/apps/ksplash/pics/splash_bottom.png share/apps/ksplash/pics/splash_inactive_bar.png share/apps/ksplash/pics/splash_top.png +share/apps/ksysguard/KSysGuardApplet.xml share/apps/ksysguard/ProcessTable.sgrd share/apps/ksysguard/SystemLoad.sgrd share/apps/ksysguard/icons/locolor/16x16/apps/X.png @@ -906,6 +1048,13 @@ share/apps/ksysguard/icons/locolor/16x16/apps/xntpd.png share/apps/ksysguard/icons/locolor/16x16/apps/xterm.png share/apps/ksysguard/icons/locolor/16x16/apps/ypbind.png share/apps/ksysguard/ksysguardui.rc +share/apps/kthememgr/Themes/Default.ktheme +share/apps/kthememgr/Themes/Eclipse.ktheme +share/apps/kthememgr/Themes/MGBreizh.ktheme +share/apps/kthememgr/Themes/Nostalgy.ktheme +share/apps/kthememgr/Themes/Template.themerc +share/apps/kthememgr/Themes/Wood.ktheme +share/apps/kthememgr/theme.mappings share/apps/kwin/b2.desktop share/apps/kwin/eventsrc share/apps/kwin/kde.desktop @@ -928,12 +1077,19 @@ share/apps/kwin/pics/pinup.png share/apps/kwin/pics/unknown.png share/apps/kwin/riscos.desktop share/apps/kwin/system.desktop +share/apps/kwin/win2k.desktop share/apps/kwrite/kwrite_browser.rc share/apps/kwrite/kwrite_shell.rc share/apps/kwrite/kwriteui.rc -share/apps/quickbrowser/Home.desktop -share/apps/quickbrowser/KDE.desktop -share/apps/quickbrowser/Root.desktop +share/apps/kwrite/syntax.xml +share/apps/naughtyapplet/pics/naughty-happy.png +share/apps/naughtyapplet/pics/naughty-sad.png +share/autostart/kdesktop.desktop +share/autostart/khotkeys.desktop +share/autostart/klipper.desktop +share/autostart/ktip.desktop +share/autostart/kwrited.desktop +share/autostart/panel.desktop share/config/antrc share/config/attractionrc share/config/bouboulerc @@ -955,6 +1111,8 @@ share/config/gravrc share/config/halorc share/config/imsmaprc share/config/interferencerc +share/config/kdesktop_custom_menu1 +share/config/kdesktop_custom_menu2 share/config/kdmrc share/config/klipperrc share/config/konsolerc @@ -991,12 +1149,9 @@ share/doc/HTML/en/kcontrol/email.html share/doc/HTML/en/kcontrol/energy.html share/doc/HTML/en/kcontrol/file-assoc.html share/doc/HTML/en/kcontrol/file-manager.html -share/doc/HTML/en/kcontrol/kfileman1.png -share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/fonts.html share/doc/HTML/en/kcontrol/help-index.html share/doc/HTML/en/kcontrol/icons.html -share/doc/HTML/en/kcontrol/iconstyle.html share/doc/HTML/en/kcontrol/index.docbook share/doc/HTML/en/kcontrol/index.html share/doc/HTML/en/kcontrol/interrupts.html @@ -1034,7 +1189,6 @@ share/doc/HTML/en/kcontrol/kcmkbd.docbook share/doc/HTML/en/kcontrol/kcmkblayout.docbook share/doc/HTML/en/kcontrol/kcmkbrowse.docbook share/doc/HTML/en/kcontrol/kcmkeybind.docbook -share/doc/HTML/en/kcontrol/kcmkeys.docbook share/doc/HTML/en/kcontrol/kcmlocate.docbook share/doc/HTML/en/kcontrol/kcmloginmanage.docbook share/doc/HTML/en/kcontrol/kcmlowbatcrit.docbook @@ -1044,6 +1198,7 @@ share/doc/HTML/en/kcontrol/kcmmidi.docbook share/doc/HTML/en/kcontrol/kcmmixer.docbook share/doc/HTML/en/kcontrol/kcmmouse.docbook share/doc/HTML/en/kcontrol/kcmmousebeh.docbook +share/doc/HTML/en/kcontrol/kcmnetscapeplugins.docbook share/doc/HTML/en/kcontrol/kcmnumbername.docbook share/doc/HTML/en/kcontrol/kcmpanel.docbook share/doc/HTML/en/kcontrol/kcmpartitioninfo.docbook @@ -1055,6 +1210,7 @@ share/doc/HTML/en/kcontrol/kcmprocinfo.docbook share/doc/HTML/en/kcontrol/kcmproxie.docbook share/doc/HTML/en/kcontrol/kcmscnsave.docbook share/doc/HTML/en/kcontrol/kcmscsiinfo.docbook +share/doc/HTML/en/kcontrol/kcmsessionman.docbook share/doc/HTML/en/kcontrol/kcmsmbstat.docbook share/doc/HTML/en/kcontrol/kcmsndinfo.docbook share/doc/HTML/en/kcontrol/kcmsndsrv.docbook @@ -1066,6 +1222,8 @@ share/doc/HTML/en/kcontrol/kcmuseragent.docbook share/doc/HTML/en/kcontrol/kcmwinshare.docbook share/doc/HTML/en/kcontrol/kcmxservinfo.docbook share/doc/HTML/en/kcontrol/key-bindings.html +share/doc/HTML/en/kcontrol/kfileman1.png +share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/konq-browsing.html share/doc/HTML/en/kcontrol/laptop.html share/doc/HTML/en/kcontrol/locale.html @@ -1079,7 +1237,7 @@ share/doc/HTML/en/kcontrol/module.html share/doc/HTML/en/kcontrol/modules.html share/doc/HTML/en/kcontrol/mouse-behav.html share/doc/HTML/en/kcontrol/mouse.html -share/doc/HTML/en/kcontrol/numbername.html +share/doc/HTML/en/kcontrol/nsplugins.html share/doc/HTML/en/kcontrol/panel.html share/doc/HTML/en/kcontrol/partitions.html share/doc/HTML/en/kcontrol/passwords.html @@ -1092,11 +1250,11 @@ share/doc/HTML/en/kcontrol/sambastatus.html share/doc/HTML/en/kcontrol/screensaver.html share/doc/HTML/en/kcontrol/screenshot.png share/doc/HTML/en/kcontrol/scsi.html +share/doc/HTML/en/kcontrol/sessions.html share/doc/HTML/en/kcontrol/sndserver.html share/doc/HTML/en/kcontrol/soundinfo.html share/doc/HTML/en/kcontrol/style.html share/doc/HTML/en/kcontrol/sys-notify.html -share/doc/HTML/en/kcontrol/talk.html share/doc/HTML/en/kcontrol/taskbar.html share/doc/HTML/en/kcontrol/user-agent.html share/doc/HTML/en/kcontrol/windows-shares.html @@ -1135,6 +1293,8 @@ share/doc/HTML/en/kdm/lilo.html share/doc/HTML/en/kdm/locale.html share/doc/HTML/en/kdm/other-information.html share/doc/HTML/en/khelpcenter/.anchors +share/doc/HTML/en/khelpcenter/background.png +share/doc/HTML/en/khelpcenter/bgtable.png share/doc/HTML/en/khelpcenter/common share/doc/HTML/en/khelpcenter/contact-developers.html share/doc/HTML/en/khelpcenter/contact-more-information.html @@ -1144,16 +1304,6 @@ share/doc/HTML/en/khelpcenter/contact.docbook share/doc/HTML/en/khelpcenter/credits.html share/doc/HTML/en/khelpcenter/faq/.anchors share/doc/HTML/en/khelpcenter/faq/TODO -share/doc/HTML/en/khelpcenter/faq/index.docbook -share/doc/HTML/en/khelpcenter/faq/index.html -share/doc/HTML/en/khelpcenter/help-system-user-manual.html -share/doc/HTML/en/khelpcenter/help.docbook -share/doc/HTML/en/khelpcenter/index.docbook -share/doc/HTML/en/khelpcenter/index.html -share/doc/HTML/en/khelpcenter/interface-basics.html -share/doc/HTML/en/khelpcenter/invoking-help.html -share/doc/HTML/en/khelpcenter/links.docbook -share/doc/HTML/en/khelpcenter/no-html.html share/doc/HTML/en/khelpcenter/faq/about.html share/doc/HTML/en/khelpcenter/faq/applications.html share/doc/HTML/en/khelpcenter/faq/common @@ -1163,6 +1313,8 @@ share/doc/HTML/en/khelpcenter/faq/credits.html share/doc/HTML/en/khelpcenter/faq/desktop.html share/doc/HTML/en/khelpcenter/faq/filemanager.html share/doc/HTML/en/khelpcenter/faq/getting-kde.html +share/doc/HTML/en/khelpcenter/faq/index.docbook +share/doc/HTML/en/khelpcenter/faq/index.html share/doc/HTML/en/khelpcenter/faq/install.html share/doc/HTML/en/khelpcenter/faq/introduction.html share/doc/HTML/en/khelpcenter/faq/misc.html @@ -1172,6 +1324,21 @@ share/doc/HTML/en/khelpcenter/faq/not-kde.html share/doc/HTML/en/khelpcenter/faq/panel.html share/doc/HTML/en/khelpcenter/faq/tips.html share/doc/HTML/en/khelpcenter/faq/windowmanager.html +share/doc/HTML/en/khelpcenter/help-system-user-manual.html +share/doc/HTML/en/khelpcenter/help.docbook +share/doc/HTML/en/khelpcenter/index.docbook +share/doc/HTML/en/khelpcenter/index.html +share/doc/HTML/en/khelpcenter/interface-basics.html +share/doc/HTML/en/khelpcenter/invoking-help.html +share/doc/HTML/en/khelpcenter/kdelogo2.png +share/doc/HTML/en/khelpcenter/khelpcenter.png +share/doc/HTML/en/khelpcenter/konq.css +share/doc/HTML/en/khelpcenter/lines.png +share/doc/HTML/en/khelpcenter/lines2.png +share/doc/HTML/en/khelpcenter/links.docbook +share/doc/HTML/en/khelpcenter/main.html +share/doc/HTML/en/khelpcenter/no-html.html +share/doc/HTML/en/khelpcenter/pointers.png share/doc/HTML/en/khelpcenter/quickstart/.anchors share/doc/HTML/en/khelpcenter/quickstart/advanced-topics.html share/doc/HTML/en/khelpcenter/quickstart/an-overview-of-kde.html @@ -1193,6 +1360,7 @@ share/doc/HTML/en/khelpcenter/quickstart/using-templates.html share/doc/HTML/en/khelpcenter/quickstart/using-v-desktops.html share/doc/HTML/en/khelpcenter/quickstart/want-command-line-back.html share/doc/HTML/en/khelpcenter/quickstart/working-with-windows.html +share/doc/HTML/en/khelpcenter/shadow1.png share/doc/HTML/en/khelpcenter/support.docbook share/doc/HTML/en/khelpcenter/supporting-kde-financial-support.html share/doc/HTML/en/khelpcenter/supporting-kde-get-started.html @@ -1276,44 +1444,48 @@ share/doc/HTML/en/khelpcenter/what-is-kde-the-office-suite.html share/doc/HTML/en/khelpcenter/what-is-kde.html share/doc/HTML/en/khelpcenter/whatiskde.docbook share/doc/HTML/en/kicker/.anchors -share/doc/HTML/en/kicker/access_config.png -share/doc/HTML/en/kicker/basic_icons.png -share/doc/HTML/en/kicker/button-preferences.html +share/doc/HTML/en/kicker/applets.html +share/doc/HTML/en/kicker/application-group.html +share/doc/HTML/en/kicker/basics.html +share/doc/HTML/en/kicker/browsers.html +share/doc/HTML/en/kicker/child-panel-extension.html +share/doc/HTML/en/kicker/clock-applet.html +share/doc/HTML/en/kicker/commands.html share/doc/HTML/en/kicker/common -share/doc/HTML/en/kicker/config_window.png -share/doc/HTML/en/kicker/configuration-adding-icons.html -share/doc/HTML/en/kicker/configuration-config-window.html +share/doc/HTML/en/kicker/compilation.html share/doc/HTML/en/kicker/configuration.html +share/doc/HTML/en/kicker/configuring-apps.html +share/doc/HTML/en/kicker/configuring.html share/doc/HTML/en/kicker/credits.html -share/doc/HTML/en/kicker/drag-and-drop.html -share/doc/HTML/en/kicker/drag_applet.png -share/doc/HTML/en/kicker/five-minute-course.html -share/doc/HTML/en/kicker/glossary.html -share/doc/HTML/en/kicker/handles.png -share/doc/HTML/en/kicker/hide_buttons.png -share/doc/HTML/en/kicker/i_adv_editor.png -share/doc/HTML/en/kicker/i_control_center.png -share/doc/HTML/en/kicker/i_desktop.png -share/doc/HTML/en/kicker/i_help.png -share/doc/HTML/en/kicker/i_home_dir.png -share/doc/HTML/en/kicker/i_k_button.png -share/doc/HTML/en/kicker/i_kandalfs_tips.png -share/doc/HTML/en/kicker/i_shell.png -share/doc/HTML/en/kicker/i_window_list.png +share/doc/HTML/en/kicker/dock-application-bar-extension.html +share/doc/HTML/en/kicker/extensions.html +share/doc/HTML/en/kicker/faq.html share/doc/HTML/en/kicker/index.docbook share/doc/HTML/en/kicker/index.html share/doc/HTML/en/kicker/installation.html share/doc/HTML/en/kicker/introduction.html -share/doc/HTML/en/kicker/kicker-for-admins-symbolic-links.html -share/doc/HTML/en/kicker/kicker-for-admins.html -share/doc/HTML/en/kicker/kicker-panel-elements.html -share/doc/HTML/en/kicker/kicker_access_size.png -share/doc/HTML/en/kicker/kicker_add_basic.png -share/doc/HTML/en/kicker/kicker_basic_icons.png -share/doc/HTML/en/kicker/kicker_basic_icons_2.png -share/doc/HTML/en/kicker/other-features.html -share/doc/HTML/en/kicker/qb_root.png +share/doc/HTML/en/kicker/k-menu.html +share/doc/HTML/en/kicker/k_menu_icon.png +share/doc/HTML/en/kicker/kasbar-extension.html +share/doc/HTML/en/kicker/kfind-advanced.html +share/doc/HTML/en/kicker/kfind-date-range.html +share/doc/HTML/en/kicker/kfind.html +share/doc/HTML/en/kicker/launcher-applet.html +share/doc/HTML/en/kicker/most-recently-group.html +share/doc/HTML/en/kicker/naughty-applet.html +share/doc/HTML/en/kicker/pager-applet.html +share/doc/HTML/en/kicker/panel-applets.html +share/doc/HTML/en/kicker/panel-buttons.html +share/doc/HTML/en/kicker/panel-looknfeel.html +share/doc/HTML/en/kicker/panel-menus.html +share/doc/HTML/en/kicker/requirements.html +share/doc/HTML/en/kicker/run-applet.html +share/doc/HTML/en/kicker/run-command.html +share/doc/HTML/en/kicker/screenshot_left.png +share/doc/HTML/en/kicker/screenshot_right.png +share/doc/HTML/en/kicker/systemtray-applet.html share/doc/HTML/en/kicker/using-kicker.html +share/doc/HTML/en/kicker/windowlist_icon.png share/doc/HTML/en/klipper/.anchors share/doc/HTML/en/klipper/actions.html share/doc/HTML/en/klipper/common @@ -1329,6 +1501,7 @@ share/doc/HTML/en/klipper/screenshot.png share/doc/HTML/en/klipper/using-klipper.html share/doc/HTML/en/kmenuedit/.anchors share/doc/HTML/en/kmenuedit/common +share/doc/HTML/en/kmenuedit/compilation.html share/doc/HTML/en/kmenuedit/credits.html share/doc/HTML/en/kmenuedit/details-advanced.html share/doc/HTML/en/kmenuedit/glossary.html @@ -1343,30 +1516,33 @@ share/doc/HTML/en/kmenuedit/icon_sets.png share/doc/HTML/en/kmenuedit/icons.png share/doc/HTML/en/kmenuedit/index.docbook share/doc/HTML/en/kmenuedit/index.html +share/doc/HTML/en/kmenuedit/installation.html share/doc/HTML/en/kmenuedit/introduction.html share/doc/HTML/en/kmenuedit/menu-reference.html share/doc/HTML/en/kmenuedit/using-kmenuedit.html share/doc/HTML/en/konqueror/.anchors -share/doc/HTML/en/konqueror/autocomplete.html share/doc/HTML/en/konqueror/basics.html share/doc/HTML/en/konqueror/bookmarks.html share/doc/HTML/en/konqueror/browser.html share/doc/HTML/en/konqueror/bubble.html -share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/cmndline.png share/doc/HTML/en/konqueror/commandline.html share/doc/HTML/en/konqueror/commands.html -share/doc/HTML/en/konqueror/config-prox.html +share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/config.html -share/doc/HTML/en/konqueror/configure-bars.html -share/doc/HTML/en/konqueror/cook.html +share/doc/HTML/en/konqueror/configfm.html +share/doc/HTML/en/konqueror/configure-browser.html +share/doc/HTML/en/konqueror/configure-enhanced-browsing.html +share/doc/HTML/en/konqueror/configure-proxy.html +share/doc/HTML/en/konqueror/configure-user-agent.html +share/doc/HTML/en/konqueror/cookies.html share/doc/HTML/en/konqueror/credits.html share/doc/HTML/en/konqueror/crypto.html share/doc/HTML/en/konqueror/deleting.html share/doc/HTML/en/konqueror/dirtree.png share/doc/HTML/en/konqueror/dragdrop.png share/doc/HTML/en/konqueror/faq.html -share/doc/HTML/en/konqueror/fileassoc.html +share/doc/HTML/en/konqueror/file-associations.html share/doc/HTML/en/konqueror/filemanager.html share/doc/HTML/en/konqueror/filetype1.png share/doc/HTML/en/konqueror/filetype3.png @@ -1375,23 +1551,20 @@ share/doc/HTML/en/konqueror/ftp.html share/doc/HTML/en/konqueror/index.docbook share/doc/HTML/en/konqueror/index.html share/doc/HTML/en/konqueror/installation.html -share/doc/HTML/en/konqueror/introduction.html share/doc/HTML/en/konqueror/konqorg.png -share/doc/HTML/en/konqueror/lmbmmb.html +share/doc/HTML/en/konqueror/lmb-mmb.html share/doc/HTML/en/konqueror/making.html -share/doc/HTML/en/konqueror/miscbrowser.html +share/doc/HTML/en/konqueror/man-info.html share/doc/HTML/en/konqueror/moving.html share/doc/HTML/en/konqueror/multiple.html share/doc/HTML/en/konqueror/newname.html -share/doc/HTML/en/konqueror/optionalbrowser.html share/doc/HTML/en/konqueror/parts.html share/doc/HTML/en/konqueror/parts.png share/doc/HTML/en/konqueror/plugin.html share/doc/HTML/en/konqueror/rmb-menus.html -share/doc/HTML/en/konqueror/samba.html share/doc/HTML/en/konqueror/samba.png share/doc/HTML/en/konqueror/save-print-web.html -share/doc/HTML/en/konqueror/saveset.html +share/doc/HTML/en/konqueror/save-settings.html share/doc/HTML/en/konqueror/surf.html share/doc/HTML/en/konsole/.anchors share/doc/HTML/en/konsole/command-line-options.html @@ -1447,6 +1620,7 @@ share/doc/HTML/en/kwrite/go.html share/doc/HTML/en/kwrite/help.html share/doc/HTML/en/kwrite/index.docbook share/doc/HTML/en/kwrite/index.html +share/doc/HTML/en/kwrite/installation.html share/doc/HTML/en/kwrite/introduction.html share/doc/HTML/en/kwrite/keybindings.html share/doc/HTML/en/kwrite/on-screen-fundamentals.html @@ -1465,6 +1639,66 @@ share/fonts/console8x16.pcf.gz share/fonts/console8x8.pcf.gz share/fonts/fonts.dir share/fonts/override/fonts.dir +share/icons/hicolor/16x16/apps/background.png +share/icons/hicolor/16x16/apps/bell.png +share/icons/hicolor/16x16/apps/cookie.png +share/icons/hicolor/16x16/apps/email.png +share/icons/hicolor/16x16/apps/energy.png +share/icons/hicolor/16x16/apps/enhanced_browsing.png +share/icons/hicolor/16x16/apps/go.png +share/icons/hicolor/16x16/apps/hwinfo.png +share/icons/hicolor/16x16/apps/input_devices_settings.png +share/icons/hicolor/16x16/apps/kappfinder.png +share/icons/hicolor/16x16/apps/kcmkwm.png +share/icons/hicolor/16x16/apps/kcmsystem.png +share/icons/hicolor/16x16/apps/kcontrol.png +share/icons/hicolor/16x16/apps/kdisknav.png +share/icons/hicolor/16x16/apps/keditbookmarks.png +share/icons/hicolor/16x16/apps/kfm.png +share/icons/hicolor/16x16/apps/kfm_home.png +share/icons/hicolor/16x16/apps/khelpcenter.png +share/icons/hicolor/16x16/apps/klipper.png +share/icons/hicolor/16x16/apps/konqueror.png +share/icons/hicolor/16x16/apps/konsole.png +share/icons/hicolor/16x16/apps/kscreensaver.png +share/icons/hicolor/16x16/apps/ksysguard.png +share/icons/hicolor/16x16/apps/ktip.png +share/icons/hicolor/16x16/apps/kwrite.png +share/icons/hicolor/16x16/apps/locale.png +share/icons/hicolor/16x16/apps/looknfeel.png +share/icons/hicolor/16x16/apps/multimedia.png +share/icons/hicolor/16x16/apps/netscape.png +share/icons/hicolor/16x16/apps/package_applications.png +share/icons/hicolor/16x16/apps/package_development.png +share/icons/hicolor/16x16/apps/package_editors.png +share/icons/hicolor/16x16/apps/package_graphics.png +share/icons/hicolor/16x16/apps/package_multimedia.png +share/icons/hicolor/16x16/apps/package_network.png +share/icons/hicolor/16x16/apps/package_settings.png +share/icons/hicolor/16x16/apps/package_system.png +share/icons/hicolor/16x16/apps/package_toys.png +share/icons/hicolor/16x16/apps/package_utilities.png +share/icons/hicolor/16x16/apps/package_wordprocessing.png +share/icons/hicolor/16x16/apps/realplayer.png +share/icons/hicolor/16x16/apps/remote.png +share/icons/hicolor/16x16/apps/samba.png +share/icons/hicolor/16x16/apps/style.png +share/icons/hicolor/16x16/apps/window_list.png +share/icons/hicolor/16x16/devices/3floppy_mount.png +share/icons/hicolor/16x16/devices/3floppy_unmount.png +share/icons/hicolor/16x16/devices/cdaudio_mount.png +share/icons/hicolor/16x16/devices/cdaudio_unmount.png +share/icons/hicolor/16x16/devices/cdrom_mount.png +share/icons/hicolor/16x16/devices/cdrom_unmount.png +share/icons/hicolor/16x16/devices/dvd_mount.png +share/icons/hicolor/16x16/devices/dvd_unmount.png +share/icons/hicolor/16x16/devices/hdd_mount.png +share/icons/hicolor/16x16/devices/hdd_unmount.png +share/icons/hicolor/16x16/devices/nfs_mount.png +share/icons/hicolor/16x16/devices/nfs_unmount.png +share/icons/hicolor/16x16/devices/printer1.png +share/icons/hicolor/16x16/filesystems/file_important.png +share/icons/hicolor/16x16/filesystems/folder_important.png share/icons/hicolor/22x22/actions/view_choose.png share/icons/hicolor/22x22/actions/view_detailed.png share/icons/hicolor/22x22/actions/view_icon.png @@ -1478,11 +1712,13 @@ share/icons/hicolor/32x32/actions/view_multicolumn.png share/icons/hicolor/32x32/actions/view_text.png share/icons/hicolor/32x32/actions/view_tree.png share/icons/hicolor/32x32/apps/access.png +share/icons/hicolor/32x32/apps/acroread.png share/icons/hicolor/32x32/apps/agent.png share/icons/hicolor/32x32/apps/bell.png -share/icons/hicolor/32x32/apps/buttons.png +share/icons/hicolor/32x32/apps/blender.png share/icons/hicolor/32x32/apps/clock.png share/icons/hicolor/32x32/apps/colors.png +share/icons/hicolor/32x32/apps/cookie.png share/icons/hicolor/32x32/apps/date.png share/icons/hicolor/32x32/apps/designer.png share/icons/hicolor/32x32/apps/emacs.png @@ -1512,6 +1748,7 @@ share/icons/hicolor/32x32/apps/kcmx.png share/icons/hicolor/32x32/apps/kcontrol.png share/icons/hicolor/32x32/apps/kdisknav.png share/icons/hicolor/32x32/apps/kdmconfig.png +share/icons/hicolor/32x32/apps/keditbookmarks.png share/icons/hicolor/32x32/apps/key_bindings.png share/icons/hicolor/32x32/apps/keyboard_layout.png share/icons/hicolor/32x32/apps/kfm.png @@ -1544,15 +1781,18 @@ share/icons/hicolor/32x32/apps/package_multimedia.png share/icons/hicolor/32x32/apps/package_network.png share/icons/hicolor/32x32/apps/package_settings.png share/icons/hicolor/32x32/apps/package_system.png +share/icons/hicolor/32x32/apps/package_toys.png share/icons/hicolor/32x32/apps/package_utilities.png +share/icons/hicolor/32x32/apps/package_wordprocessing.png share/icons/hicolor/32x32/apps/password.png share/icons/hicolor/32x32/apps/proxy.png +share/icons/hicolor/32x32/apps/realplayer.png share/icons/hicolor/32x32/apps/style.png share/icons/hicolor/32x32/apps/terminal.png -share/icons/hicolor/32x32/apps/titlebar.png share/icons/hicolor/32x32/apps/window_list.png share/icons/hicolor/32x32/apps/winprops.png share/icons/hicolor/32x32/apps/xapp.png +share/icons/hicolor/32x32/apps/xawtv.png share/icons/hicolor/32x32/apps/xedit.png share/icons/hicolor/32x32/apps/xemacs.png share/icons/hicolor/32x32/apps/xmag.png @@ -1574,16 +1814,20 @@ share/icons/hicolor/32x32/devices/hdd_unmount.png share/icons/hicolor/32x32/devices/memory.png share/icons/hicolor/32x32/devices/mo_mount.png share/icons/hicolor/32x32/devices/mo_unmount.png +share/icons/hicolor/32x32/devices/nfs_mount.png +share/icons/hicolor/32x32/devices/nfs_unmount.png share/icons/hicolor/32x32/devices/printer1.png share/icons/hicolor/32x32/devices/printer2.png share/icons/hicolor/32x32/devices/scanner.png share/icons/hicolor/32x32/devices/tablet.png share/icons/hicolor/32x32/devices/zip_mount.png share/icons/hicolor/32x32/devices/zip_unmount.png +share/icons/hicolor/32x32/filesystems/file_important.png +share/icons/hicolor/32x32/filesystems/folder_important.png share/icons/hicolor/48x48/apps/access.png share/icons/hicolor/48x48/apps/agent.png share/icons/hicolor/48x48/apps/bell.png -share/icons/hicolor/48x48/apps/buttons.png +share/icons/hicolor/48x48/apps/blender.png share/icons/hicolor/48x48/apps/clock.png share/icons/hicolor/48x48/apps/colors.png share/icons/hicolor/48x48/apps/cookie.png @@ -1649,12 +1893,15 @@ share/icons/hicolor/48x48/apps/package_multimedia.png share/icons/hicolor/48x48/apps/package_network.png share/icons/hicolor/48x48/apps/package_settings.png share/icons/hicolor/48x48/apps/package_system.png +share/icons/hicolor/48x48/apps/package_toys.png share/icons/hicolor/48x48/apps/package_utilities.png +share/icons/hicolor/48x48/apps/package_wordprocessing.png share/icons/hicolor/48x48/apps/password.png share/icons/hicolor/48x48/apps/proxy.png +share/icons/hicolor/48x48/apps/remote.png +share/icons/hicolor/48x48/apps/samba.png share/icons/hicolor/48x48/apps/style.png share/icons/hicolor/48x48/apps/terminal.png -share/icons/hicolor/48x48/apps/titlebar.png share/icons/hicolor/48x48/apps/window_list.png share/icons/hicolor/48x48/apps/winprops.png share/icons/hicolor/48x48/apps/xedit.png @@ -1678,12 +1925,17 @@ share/icons/hicolor/48x48/devices/hdd_unmount.png share/icons/hicolor/48x48/devices/memory.png share/icons/hicolor/48x48/devices/mo_mount.png share/icons/hicolor/48x48/devices/mo_unmount.png +share/icons/hicolor/48x48/devices/nfs_mount.png +share/icons/hicolor/48x48/devices/nfs_unmount.png share/icons/hicolor/48x48/devices/printer1.png share/icons/hicolor/48x48/devices/printer2.png share/icons/hicolor/48x48/devices/scanner.png share/icons/hicolor/48x48/devices/tablet.png share/icons/hicolor/48x48/devices/zip_mount.png share/icons/hicolor/48x48/devices/zip_unmount.png +share/icons/hicolor/48x48/filesystems/file_important.png +share/icons/hicolor/48x48/filesystems/folder_important.png +share/icons/locolor/16x16/actions/bookmark_folder.png share/icons/locolor/16x16/actions/view_choose.png share/icons/locolor/16x16/actions/view_detailed.png share/icons/locolor/16x16/actions/view_icon.png @@ -1693,12 +1945,13 @@ share/icons/locolor/16x16/actions/view_tree.png share/icons/locolor/16x16/apps/access.png share/icons/locolor/16x16/apps/acroread.png share/icons/locolor/16x16/apps/agent.png +share/icons/locolor/16x16/apps/alevt.png share/icons/locolor/16x16/apps/applixware.png share/icons/locolor/16x16/apps/arts.png share/icons/locolor/16x16/apps/background.png share/icons/locolor/16x16/apps/bell.png -share/icons/locolor/16x16/apps/borders.png -share/icons/locolor/16x16/apps/buttons.png +share/icons/locolor/16x16/apps/blender.png +share/icons/locolor/16x16/apps/clock.png share/icons/locolor/16x16/apps/colors.png share/icons/locolor/16x16/apps/cookie.png share/icons/locolor/16x16/apps/date.png @@ -1735,12 +1988,14 @@ share/icons/locolor/16x16/apps/kcmx.png share/icons/locolor/16x16/apps/kcontrol.png share/icons/locolor/16x16/apps/kdisknav.png share/icons/locolor/16x16/apps/kdmconfig.png +share/icons/locolor/16x16/apps/keditbookmarks.png share/icons/locolor/16x16/apps/key_bindings.png share/icons/locolor/16x16/apps/keyboard.png share/icons/locolor/16x16/apps/keyboard_layout.png share/icons/locolor/16x16/apps/kfm.png share/icons/locolor/16x16/apps/kfm_home.png share/icons/locolor/16x16/apps/khelpcenter.png +share/icons/locolor/16x16/apps/kicker.png share/icons/locolor/16x16/apps/klipper.png share/icons/locolor/16x16/apps/kmenuedit.png share/icons/locolor/16x16/apps/knotify.png @@ -1758,6 +2013,7 @@ share/icons/locolor/16x16/apps/looknfeel.png share/icons/locolor/16x16/apps/lyx.png share/icons/locolor/16x16/apps/mathematica.png share/icons/locolor/16x16/apps/mouse.png +share/icons/locolor/16x16/apps/mozilla.png share/icons/locolor/16x16/apps/multimedia.png share/icons/locolor/16x16/apps/nedit.png share/icons/locolor/16x16/apps/netscape.png @@ -1778,11 +2034,12 @@ share/icons/locolor/16x16/apps/password.png share/icons/locolor/16x16/apps/penguin.png share/icons/locolor/16x16/apps/plan.png share/icons/locolor/16x16/apps/proxy.png +share/icons/locolor/16x16/apps/pybliographic.png share/icons/locolor/16x16/apps/realplayer.png +share/icons/locolor/16x16/apps/remote.png share/icons/locolor/16x16/apps/samba.png share/icons/locolor/16x16/apps/style.png share/icons/locolor/16x16/apps/terminal.png -share/icons/locolor/16x16/apps/titlebar.png share/icons/locolor/16x16/apps/wabi.png share/icons/locolor/16x16/apps/window_list.png share/icons/locolor/16x16/apps/winprops.png @@ -1824,11 +2081,12 @@ share/icons/locolor/16x16/devices/zip_unmount.png share/icons/locolor/32x32/apps/access.png share/icons/locolor/32x32/apps/acroread.png share/icons/locolor/32x32/apps/agent.png +share/icons/locolor/32x32/apps/alevt.png share/icons/locolor/32x32/apps/applixware.png share/icons/locolor/32x32/apps/background.png share/icons/locolor/32x32/apps/bell.png -share/icons/locolor/32x32/apps/borders.png -share/icons/locolor/32x32/apps/buttons.png +share/icons/locolor/32x32/apps/blender.png +share/icons/locolor/32x32/apps/clanbomber.png share/icons/locolor/32x32/apps/clock.png share/icons/locolor/32x32/apps/colors.png share/icons/locolor/32x32/apps/cookie.png @@ -1908,16 +2166,18 @@ share/icons/locolor/32x32/apps/password.png share/icons/locolor/32x32/apps/penguin.png share/icons/locolor/32x32/apps/plan.png share/icons/locolor/32x32/apps/proxy.png +share/icons/locolor/32x32/apps/pybliographic.png +share/icons/locolor/32x32/apps/pysol.png share/icons/locolor/32x32/apps/realplayer.png share/icons/locolor/32x32/apps/samba.png share/icons/locolor/32x32/apps/style.png share/icons/locolor/32x32/apps/terminal.png -share/icons/locolor/32x32/apps/titlebar.png share/icons/locolor/32x32/apps/wabi.png share/icons/locolor/32x32/apps/window_list.png share/icons/locolor/32x32/apps/winprops.png share/icons/locolor/32x32/apps/wp.png share/icons/locolor/32x32/apps/xapp.png +share/icons/locolor/32x32/apps/xawtv.png share/icons/locolor/32x32/apps/xcalc.png share/icons/locolor/32x32/apps/xclipboard.png share/icons/locolor/32x32/apps/xclock.png @@ -2041,8 +2301,12 @@ share/locale/l10n/kr/entry.desktop share/locale/l10n/kr/flag.png share/locale/l10n/lc/entry.desktop share/locale/l10n/lc/flag.png +share/locale/l10n/lt/entry.desktop +share/locale/l10n/lt/flag.png share/locale/l10n/lu/entry.desktop share/locale/l10n/lu/flag.png +share/locale/l10n/lv/entry.desktop +share/locale/l10n/lv/flag.png share/locale/l10n/mk/entry.desktop share/locale/l10n/mk/flag.png share/locale/l10n/mx/entry.desktop @@ -2104,12 +2368,23 @@ share/locale/l10n/westeurope.desktop share/locale/l10n/za/entry.desktop share/locale/l10n/za/flag.png share/mimelnk/application/x-konsole.desktop +share/mimelnk/application/x-ktheme.desktop +share/services/bzip.protocol +share/services/bzip2.protocol +share/services/finger.protocol +share/services/floppy.protocol share/services/gopher.protocol share/services/gzip.protocol share/services/help.protocol +share/services/htmlthumbnail.desktop +share/services/imagethumbnail.desktop +share/services/imap4.protocol +share/services/imaps.protocol share/services/info.protocol share/services/kaccess.desktop +share/services/kfindpart.desktop share/services/khelpcenter.desktop +share/services/konq_aboutpage.desktop share/services/konq_detailedlistview.desktop share/services/konq_dirtree.desktop share/services/konq_iconview.desktop @@ -2117,6 +2392,7 @@ share/services/konq_multicolumnview.desktop share/services/konq_textview.desktop share/services/konq_treeview.desktop share/services/konqueror.desktop +share/services/konqueror_config.desktop share/services/konsolepart.desktop share/services/kshorturifilter.desktop share/services/kuriikwsfilter.desktop @@ -2124,14 +2400,58 @@ share/services/kurisearchfilter.desktop share/services/kwrite_component.desktop share/services/kxkb.desktop share/services/kxmlrpcd.desktop +share/services/ldap.protocol share/services/man.protocol share/services/nfs.protocol share/services/nntp.protocol share/services/pop3.protocol share/services/pop3s.protocol +share/services/searchproviders/acronym.desktop +share/services/searchproviders/altavista.desktop +share/services/searchproviders/austronaut.desktop +share/services/searchproviders/bugft.desktop +share/services/searchproviders/bugno.desktop +share/services/searchproviders/deja.desktop +share/services/searchproviders/dmoz.desktop +share/services/searchproviders/excite.desktop +share/services/searchproviders/foldoc.desktop +share/services/searchproviders/freshmeat.desktop +share/services/searchproviders/google.desktop +share/services/searchproviders/hotbot.desktop +share/services/searchproviders/jeeves.desktop +share/services/searchproviders/leo.desktop +share/services/searchproviders/lycos.desktop +share/services/searchproviders/mamma.desktop +share/services/searchproviders/metacrawler.desktop +share/services/searchproviders/realnames.desktop +share/services/searchproviders/rpmfind.desktop +share/services/searchproviders/seek.desktop +share/services/searchproviders/thesaurus.desktop +share/services/searchproviders/voila.desktop +share/services/searchproviders/webster.desktop share/services/smb.protocol share/services/smtp.protocol share/services/tar.protocol +share/services/textthumbnail.desktop +share/services/thumbnail.protocol +share/servicetypes/findpart.desktop +share/servicetypes/konqaboutpage.desktop +share/servicetypes/searchprovider.desktop +share/servicetypes/thumbcreator.desktop +share/sounds/KDE_Beep_Ahem.wav +share/sounds/KDE_Beep_Beep.wav +share/sounds/KDE_Beep_Bottles.wav +share/sounds/KDE_Beep_ClassicBeep.wav +share/sounds/KDE_Beep_ClockChime.wav +share/sounds/KDE_Beep_Connect.wav +share/sounds/KDE_Beep_Door.wav +share/sounds/KDE_Beep_Honk.wav +share/sounds/KDE_Beep_Lightning.wav +share/sounds/KDE_Beep_Pop.wav +share/sounds/KDE_Beep_RimShot.wav +share/sounds/KDE_Beep_RingRing.wav +share/sounds/KDE_Beep_ShortBeep.wav +share/sounds/KDE_Beep_Yo.wav share/sounds/KDE_Close_Window.wav share/sounds/KDE_Logout.wav share/sounds/KDE_Startup.wav @@ -2185,6 +2505,105 @@ share/wallpapers/northbeach.jpg share/wallpapers/simple_wallpaper.jpg share/wallpapers/sunday_brunch.jpg share/wallpapers/vegetative_fog.jpg +@dirrm share/wallpapers +@dirrm share/templates/.source +@dirrm share/templates +@dirrm share/sounds +@dirrm share/servicetypes +@dirrm share/services/searchproviders +@dirrm share/services +@dirrm share/mimelnk/application +@dirrm share/locale/l10n/za +@dirrm share/locale/l10n/ve +@dirrm share/locale/l10n/vc +@dirrm share/locale/l10n/uy +@dirrm share/locale/l10n/us +@dirrm share/locale/l10n/ua +@dirrm share/locale/l10n/tw +@dirrm share/locale/l10n/tt +@dirrm share/locale/l10n/tr +@dirrm share/locale/l10n/th +@dirrm share/locale/l10n/sv +@dirrm share/locale/l10n/sr +@dirrm share/locale/l10n/sk +@dirrm share/locale/l10n/si +@dirrm share/locale/l10n/se +@dirrm share/locale/l10n/ru +@dirrm share/locale/l10n/ro +@dirrm share/locale/l10n/py +@dirrm share/locale/l10n/pt +@dirrm share/locale/l10n/pl +@dirrm share/locale/l10n/pe +@dirrm share/locale/l10n/pa +@dirrm share/locale/l10n/nz +@dirrm share/locale/l10n/no +@dirrm share/locale/l10n/nl +@dirrm share/locale/l10n/mx +@dirrm share/locale/l10n/mk +@dirrm share/locale/l10n/lv +@dirrm share/locale/l10n/lu +@dirrm share/locale/l10n/lt +@dirrm share/locale/l10n/lc +@dirrm share/locale/l10n/kr +@dirrm share/locale/l10n/kp +@dirrm share/locale/l10n/kn +@dirrm share/locale/l10n/jp +@dirrm share/locale/l10n/jm +@dirrm share/locale/l10n/it +@dirrm share/locale/l10n/is +@dirrm share/locale/l10n/il +@dirrm share/locale/l10n/ie +@dirrm share/locale/l10n/hu +@dirrm share/locale/l10n/hr +@dirrm share/locale/l10n/hn +@dirrm share/locale/l10n/gt +@dirrm share/locale/l10n/gr +@dirrm share/locale/l10n/gd +@dirrm share/locale/l10n/gb +@dirrm share/locale/l10n/fr +@dirrm share/locale/l10n/fi +@dirrm share/locale/l10n/es +@dirrm share/locale/l10n/ee +@dirrm share/locale/l10n/ec +@dirrm share/locale/l10n/do +@dirrm share/locale/l10n/dk +@dirrm share/locale/l10n/de +@dirrm share/locale/l10n/cz +@dirrm share/locale/l10n/co +@dirrm share/locale/l10n/cn +@dirrm share/locale/l10n/cl +@dirrm share/locale/l10n/ch +@dirrm share/locale/l10n/ca +@dirrm share/locale/l10n/br +@dirrm share/locale/l10n/bo +@dirrm share/locale/l10n/bg +@dirrm share/locale/l10n/be +@dirrm share/locale/l10n/bb +@dirrm share/locale/l10n/au +@dirrm share/locale/l10n/at +@dirrm share/locale/l10n/ar +@dirrm share/locale/l10n/ag +@dirrm share/locale/l10n/C +@dirrm share/locale/l10n +@dirrm share/locale/C +@dirrm share/icons/locolor/32x32/devices +@dirrm share/icons/locolor/32x32/apps +@dirrm share/icons/locolor/16x16/devices +@dirrm share/icons/locolor/16x16/apps +@dirrm share/icons/locolor/16x16/actions +@dirrm share/icons/hicolor/48x48/filesystems +@dirrm share/icons/hicolor/48x48/devices +@dirrm share/icons/hicolor/48x48/apps +@dirrm share/icons/hicolor/32x32/filesystems +@dirrm share/icons/hicolor/32x32/devices +@dirrm share/icons/hicolor/32x32/apps +@dirrm share/icons/hicolor/32x32/actions +@dirrm share/icons/hicolor/22x22/actions +@dirrm share/icons/hicolor/16x16/filesystems +@dirrm share/icons/hicolor/16x16/devices +@dirrm share/icons/hicolor/16x16/apps +@dirrm share/fonts/override +@dirrm share/fonts @dirrm share/doc/HTML/en/kwrite @dirrm share/doc/HTML/en/ksysguard @dirrm share/doc/HTML/en/kpager @@ -2202,17 +2621,22 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/doc/HTML/en/kdesu @dirrm share/doc/HTML/en/kdebugdialog @dirrm share/doc/HTML/en/kcontrol -@dirrm share/apps/quickbrowser +@dirrm share/doc/HTML/en +@dirrm share/config +@dirrm share/autostart +@dirrm share/apps/naughtyapplet/pics @dirrm share/apps/kwrite @dirrm share/apps/kwin/pics @dirrm share/apps/kwin +@dirrm share/apps/kthememgr/Themes +@dirrm share/apps/kthememgr @dirrm share/apps/ksysguard/icons/locolor/16x16/apps @dirrm share/apps/ksysguard/icons/locolor/16x16 @dirrm share/apps/ksysguard/icons/locolor @dirrm share/apps/ksysguard/icons @dirrm share/apps/ksysguard +@dirrm share/apps/ksplash/pics/locolor @dirrm share/apps/ksplash/pics -@dirrm share/apps/ksplash @dirrm share/apps/kscreensaver @dirrm share/apps/konsole/pics @dirrm share/apps/konsole @@ -2226,14 +2650,18 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/konqueror/icons/hicolor/32x32 @dirrm share/apps/konqueror/icons/hicolor/22x22/actions @dirrm share/apps/konqueror/icons/hicolor/22x22 +@dirrm share/apps/konqueror/icons/hicolor/16x16/actions @dirrm share/apps/konqueror/icons/hicolor @dirrm share/apps/konqueror/icons @dirrm share/apps/konqueror/dirtree/remote/web @dirrm share/apps/konqueror/dirtree/remote/ftp @dirrm share/apps/konqueror/dirtree/remote @dirrm share/apps/konqueror/dirtree +@dirrm share/apps/konqueror/about @dirrm share/apps/konqueror +@dirrm share/apps/konqlistview/kpartplugins @dirrm share/apps/konqlistview +@dirrm share/apps/konqiconview/kpartplugins @dirrm share/apps/konqiconview @dirrm share/apps/kmenuedit/icons/locolor/16x16/actions @dirrm share/apps/kmenuedit/icons/locolor/16x16 @@ -2246,13 +2674,16 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kmenuedit/icons @dirrm share/apps/kmenuedit @dirrm share/apps/kio_info +@dirrm share/apps/kio_finger @dirrm share/apps/kicker/wallpapers @dirrm share/apps/kicker/tiles @dirrm share/apps/kicker/pics @dirrm share/apps/kicker/icons/locolor/16x16/actions @dirrm share/apps/kicker/icons/locolor/16x16 @dirrm share/apps/kicker/icons/locolor +@dirrm share/apps/kicker/icons/hicolor/16x16/actions @dirrm share/apps/kicker/icons +@dirrm share/apps/kicker/extensions @dirrm share/apps/kicker/applets @dirrm share/apps/kicker @dirrm share/apps/khelpcenter/plugins/Tutorials @@ -2264,6 +2695,8 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/khelpcenter/icons @dirrm share/apps/khelpcenter/en @dirrm share/apps/khelpcenter +@dirrm share/apps/kfind/icons/locolor/22x22/actions +@dirrm share/apps/keditbookmarks @dirrm share/apps/kdm/pics/users @dirrm share/apps/kdm/pics @dirrm share/apps/kdm @@ -2282,9 +2715,11 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kcontrol @dirrm share/apps/kcmlocale/pics @dirrm share/apps/kcmlocale +@dirrm share/apps/kcmkeys/standard @dirrm share/apps/kcminput @dirrm share/apps/kbookmark @dirrm share/apps/kappfinder/apps/WordProcessing +@dirrm share/apps/kappfinder/apps/Utilities/XUtilities @dirrm share/apps/kappfinder/apps/Utilities @dirrm share/apps/kappfinder/apps/Toys @dirrm share/apps/kappfinder/apps/System/ScreenSavers @@ -2293,13 +2728,45 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kappfinder/apps/Multimedia @dirrm share/apps/kappfinder/apps/Internet @dirrm share/apps/kappfinder/apps/Graphics +@dirrm share/apps/kappfinder/apps/Games @dirrm share/apps/kappfinder/apps/Editors @dirrm share/apps/kappfinder/apps/Development @dirrm share/apps/kappfinder/apps -@dirrm share/apps/kappfinder @dirrm share/apps/drkonqi/presets @dirrm share/apps/drkonqi/pics @dirrm share/apps/drkonqi/debuggers @dirrm share/apps/drkonqi @dirrm share/apps/clockapplet/pics @dirrm share/apps/clockapplet +@dirrm share/apps +@dirrm share/applnk/Utilities +@dirrm share/applnk/Toys +@dirrm share/applnk/System/ScreenSavers +@dirrm share/applnk/System +@dirrm share/applnk/Settings/WebBrowsing +@dirrm share/applnk/Settings/System +@dirrm share/applnk/Settings/Sound +@dirrm share/applnk/Settings/PowerControl +@dirrm share/applnk/Settings/Personalization +@dirrm share/applnk/Settings/Peripherals +@dirrm share/applnk/Settings/Network +@dirrm share/applnk/Settings/LookNFeel/Windows +@dirrm share/applnk/Settings/LookNFeel/Themes +@dirrm share/applnk/Settings/LookNFeel/Desktop +@dirrm share/applnk/Settings/LookNFeel +@dirrm share/applnk/Settings/Information +@dirrm share/applnk/Settings/Help +@dirrm share/applnk/Settings/FileBrowsing +@dirrm share/applnk/Settings +@dirrm share/applnk/Office +@dirrm share/applnk/Multimedia +@dirrm share/applnk/Internet +@dirrm share/applnk/Graphics +@dirrm share/applnk/Games +@dirrm share/applnk/Editors +@dirrm share/applnk/Development +@dirrm share/applnk/Applications +@dirrm share/applnk/.hidden +@dirrm share/applnk +@dirrm lib/kde2 +@dirrm include/kwin diff --git a/x11/kdebase3/Makefile b/x11/kdebase3/Makefile index e44f3da88bf8..a346796a21ee 100644 --- a/x11/kdebase3/Makefile +++ b/x11/kdebase3/Makefile @@ -6,12 +6,12 @@ # PORTNAME= kdebase -PORTVERSION= 2.0.1 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION}/distribution/tar/generic/src -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= kdeui.4:${PORTSDIR}/x11/kdelibs2 \ intl.1:${PORTSDIR}/devel/gettext diff --git a/x11/kdebase3/distinfo b/x11/kdebase3/distinfo index 80f0c4ce35f6..243923f1a5d7 100644 --- a/x11/kdebase3/distinfo +++ b/x11/kdebase3/distinfo @@ -1 +1 @@ -MD5 (kdebase-2.0.1.tar.bz2) = b138a67ae22fbda05def8e932820ac66 +MD5 (kdebase-2.1.tar.bz2) = 54264460bca895cc3e315bb49c297f8f diff --git a/x11/kdebase3/files/patch-Processlist.c b/x11/kdebase3/files/patch-Processlist.c deleted file mode 100644 index 863d56e7ec72..000000000000 --- a/x11/kdebase3/files/patch-Processlist.c +++ /dev/null @@ -1,80 +0,0 @@ ---- ksysguard/ksysguardd/FreeBSD/ProcessList.c.old Tue Jan 23 19:44:29 2001 -+++ ksysguard/ksysguardd/FreeBSD/ProcessList.c Tue Jan 23 20:19:24 2001 -@@ -186,7 +186,20 @@ - if (sysctl(mib, 4, &p, &len, NULL, 0) == -1 || !len) - return -1; - -- /* ?? */ -+#if __FreeBSD_version >= 500015 -+ /* Getting runtime process info */ -+ ps->pid = p.ki_pid; -+ ps->ppid = p.ki_ppid; -+ strcpy(ps->name, p.ki_comm); -+ ps->uid = p.ki_uid; -+ ps->gid = p.ki_pgid; -+ -+ pwent = getpwuid(ps->uid); -+ strcpy(ps->userName, pwent ? pwent->pw_name : "????"); -+ ps->priority = p.ki_priority; -+ ps->niceLevel = p.ki_nice; -+ -+#else - ps->pid = p.kp_proc.p_pid; - ps->ppid = p.kp_eproc.e_ppid; - strcpy(ps->name, p.kp_proc.p_comm); -@@ -198,16 +211,30 @@ - strcpy(ps->userName, pwent ? pwent->pw_name : "????"); - ps->priority = p.kp_proc.p_priority; - ps->niceLevel = p.kp_proc.p_nice; -+#endif - - /* this isn't usertime -- it's total time (??) */ --#if __FreeBSD_version >= 300000 -+#if __FreeBSD_version >= 500015 -+ ps->userTime = p.ki_runtime / 10000; -+#elif __FreeBSD_version >= 300000 - ps->userTime = p.kp_proc.p_runtime / 10000; - #else - ps->userTime = p.kp_proc.p_rtime.tv_sec*100+p.kp_proc.p_rtime.tv_usec/100 - #endif -+ - ps->sysTime = 0; -- ps->userLoad = p.kp_proc.p_pctcpu / 100; - ps->sysLoad = 0; -+#if __FreeBSD_version >= 500015 -+ ps->userLoad = p.ki_pctcpu / 100; -+ -+ /* memory */ -+ ps->vmSize = p.ki_size * getpagesize(); -+ -+ ps->vmRss = p.ki_rssize * getpagesize(); -+ -+ ps->status = p.ki_stat; -+#else -+ ps->userLoad = p.kp_proc.p_pctcpu / 100; - - /* memory */ - ps->vmSize = (p.kp_eproc.e_vm.vm_tsize + -@@ -216,7 +243,7 @@ - ps->vmRss = p.kp_eproc.e_vm.vm_rssize * getpagesize(); - - ps->status = p.kp_proc.p_stat; -- -+#endif - return (0); - } - -@@ -284,8 +311,13 @@ - p = malloc(len); - sysctl(mib, 3, p, &len, NULL, 0); - -+#if __FreeBSD_version >= 500015 -+ for (num = 0; num < len / sizeof(struct kinfo_proc); num++) -+ updateProcess(p[num].ki_pid); -+#else - for (num = 0; num < len / sizeof(struct kinfo_proc); num++) - updateProcess(p[num].kp_proc.p_pid); -+#endif - - cleanupProcessList(); - diff --git a/x11/kdebase3/files/patch-TEPty.C b/x11/kdebase3/files/patch-TEPty.C index 9bfd5db25ccd..796ec243efbf 100644 --- a/x11/kdebase3/files/patch-TEPty.C +++ b/x11/kdebase3/files/patch-TEPty.C @@ -1,83 +1,6 @@ ---- konsole/src/TEPty.C.orig Fri Dec 8 11:51:24 2000 -+++ konsole/src/TEPty.C Fri Dec 8 11:52:51 2000 -@@ -180,27 +180,57 @@ - // param grant: 1 to grant, 0 to revoke - // returns 1 on success 0 on fail - { -- pid_t pid = fork(); -- if (pid < 0) -- { -- return 0; -- } -- if (pid == 0) -- { -- /* We pass the master pseudo terminal as file descriptor PTY_FILENO. */ -- if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) exit(1); -- QString path = locate("exe", BASE_CHOWN); -+ pid_t pid; -+ int pstat; -+ struct sigaction ign; -+ struct sigaction intact; // interupt action -+ struct sigaction quitact; // quit action -+ sigset_t newsigblock, oldsigblock; -+ QString path; -+ -+ ign.sa_handler = SIG_IGN; -+ sigemptyset(&ign.sa_mask); -+ ign.sa_flags = 0; -+ sigaction(SIGINT, &ign, &intact); -+ sigaction(SIGQUIT, &ign, &quitact); -+ sigemptyset(&newsigblock); -+ sigaddset(&newsigblock, SIGCHLD); -+ sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock); -+ -+ switch (pid = fork()) { -+ case -1: -+ return(0); -+ break; -+ case 0: // child -+ if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) -+ exit(1); -+ path = locate("exe", BASE_CHOWN); -+ -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); - execle(path.ascii(), BASE_CHOWN, grant?"--grant":"--revoke", NULL, NULL); -- exit(1); // should not be reached -- } -- if (pid > 0) -- { int w; -- retry: -- int rc = waitpid (pid, &w, 0); -- if ((rc == -1) && (errno == EINTR)) -- goto retry; -- return (rc != -1 && WIFEXITED(w) && WEXITSTATUS(w) == 0); -+ exit(1); -+ break; -+ default: -+ do { -+ pid = waitpid(pid, &pstat, 0); -+ } while (pid == -1 && errno == EINTR); -+ break; - } -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); -+ -+ if (pid == -1) { -+ return 0; -+ } -+ else if (WIFEXITED(pstat) && (WEXITSTATUS(pstat) == 0)) { -+ return 1; -+ } -+ else { -+ return 0; -+ } - return 0; //dummy. - } - -@@ -225,7 +255,7 @@ +--- konsole/src/TEPty.C Sun Feb 18 10:28:28 2001 ++++ konsole/src/TEPty.C.new Fri Feb 23 02:55:58 2001 +@@ -238,7 +238,7 @@ #ifdef HAVE_UTEMPTER removeLineFromUtmp(ttynam, fd); #elif defined(USE_LOGIN) diff --git a/x11/kdebase3/files/patch-kdeeject b/x11/kdebase3/files/patch-kdeeject index 38c12b5eafbf..8a5870ad25ff 100644 --- a/x11/kdebase3/files/patch-kdeeject +++ b/x11/kdebase3/files/patch-kdeeject @@ -1,9 +1,9 @@ ---- kdesktop/kdeeject.orig Fri Dec 1 15:25:26 2000 -+++ kdesktop/kdeeject Fri Dec 1 15:25:33 2000 -@@ -8,7 +8,8 @@ - # kmessage, to show a message box in case of error. - # - if [ $# = 1 -a "$1" != "--help" ]; then +--- kdesktop/kdeeject Wed Dec 13 13:25:02 2000 ++++ kdesktop/kdeeject.new Fri Feb 23 02:59:54 2001 +@@ -11,7 +11,8 @@ + # TODO: On bsd, it should be 'cdcontrol -f $1 eject' + # Checking for stuff in the PATH is ugly with sh though. + # I guess this is the reason for making this a kde app... - if eject $1; then + dev=`echo $1 | sed -E -e 's#/dev/##' -e 's/([0-9])./\1/'` + if cdcontrol -f $dev eject; then diff --git a/x11/kdebase3/files/patch-konsole_grantpty.c b/x11/kdebase3/files/patch-konsole_grantpty.c deleted file mode 100644 index 889d15bdb592..000000000000 --- a/x11/kdebase3/files/patch-konsole_grantpty.c +++ /dev/null @@ -1,79 +0,0 @@ ---- konsole/src/konsole_grantpty.c.orig Sat Jun 12 07:13:31 1999 -+++ konsole/src/konsole_grantpty.c Fri Dec 8 11:54:43 2000 -@@ -31,13 +31,15 @@ - #include <string.h> - #include <sys/stat.h> - #include <unistd.h> -+#include <dirent.h> -+#include <paths.h> - - #define PTY_FILENO 3 /* keep in sync with grantpty */ - #define TTY_GROUP "tty" - - int main (int argc, char *argv[]) - { -- char* pty; -+ char* pty = NULL; - struct stat st; - struct group* p; - gid_t gid; -@@ -81,6 +83,7 @@ - - /* get slave pty name from master pty file handle in PTY_FILENO *********/ - -+#if 0 - /* Check that PTY_FILENO is a valid master pseudo terminal. */ - pty = ttyname(PTY_FILENO); /* posix */ - if (pty == NULL) -@@ -89,6 +92,42 @@ - return 1; /* FAIL */ - } - close(PTY_FILENO); -+#else -+ /* The trouble with the ifdef'd-out portion above is that ttyname() -+ ** does not work correctly when not passed a valid tty, but a pseudotty -+ ** instead. All we're doing here is finding out what the name of -+ ** the associated pty is without having to pass it in on the command line. -+ ** Nothing complex. -+ */ -+ { -+ struct stat sb; -+ struct stat dsb; -+ struct dirent *dirp; -+ static char buf[sizeof(_PATH_DEV) + MAXNAMLEN] = _PATH_DEV; -+ DIR *dp; -+ -+ pty = NULL; -+ -+ if (fstat(PTY_FILENO, &sb)) -+ return 1; /* FAIL */ -+ if ((dp = opendir(_PATH_DEV)) == NULL) -+ return 1; /* FAIL */ -+ -+ while ((dirp = readdir(dp))) { -+ if (dirp->d_fileno != sb.st_ino) -+ continue; -+ bcopy(dirp->d_name, buf + sizeof(_PATH_DEV) - 1, dirp->d_namlen+1); -+ /*fprintf(stderr, "looking at %s\n", buf);*/ -+ if (stat(buf, &dsb) || sb.st_dev != dsb.st_dev || sb.st_ino != dsb.st_ino) -+ continue; -+ pty = buf; -+ } -+ closedir(dp); -+ if (pty == NULL) -+ return 1; /* FAIL */ -+ } -+ /*fprintf(stderr, "successful at finding %s\n", pty);*/ -+#endif - - /* matches /dev/pty?? */ - if (strlen(pty) < 8 || strncmp(pty,"/dev/pty",8)) -@@ -120,6 +159,8 @@ - fprintf(stderr,"%s: cannot chmod %s.\n",argv[0],tty); perror("Reason"); - return 1; /* FAIL */ - } -+ -+ /*fprintf(stderr, "made it here\n");*/ - - return 0; /* OK */ - } diff --git a/x11/kdebase3/pkg-plist b/x11/kdebase3/pkg-plist index 7a8ef62507e2..5424c20a9cca 100644 --- a/x11/kdebase3/pkg-plist +++ b/x11/kdebase3/pkg-plist @@ -2,6 +2,7 @@ bin/appletproxy bin/chooser bin/conttest bin/drkonqi +bin/extensionproxy bin/kaccess bin/kappfinder bin/kbanner.kss @@ -21,6 +22,7 @@ bin/kdesu bin/kdesud bin/kdm bin/kdmdesktop +bin/keditbookmarks bin/keditfiletype bin/kfmclient bin/kfmexec @@ -33,25 +35,22 @@ bin/klegacyimport bin/klines.kss bin/klipper bin/klorenz.kss -bin/kman2html bin/kmatrix.kss bin/kmenuedit -bin/kmorph3d.kss bin/konqueror bin/konsole bin/konsole_grantpty bin/kpager -bin/kpipes.kss bin/kpolygon.kss bin/kpyro.kss bin/krandom.kss bin/krdb +bin/kreadconfig bin/krock.kss bin/kscience.kss bin/kslidescreen.kss bin/kslideshow.kss bin/ksmserver -bin/kspace.kss bin/ksplash bin/kstart bin/kswarm.kss @@ -59,7 +58,9 @@ bin/ksysguard bin/ksysguardd bin/ktip bin/kvm.kss +bin/kwebdesktop bin/kwin +bin/kwmtheme bin/kwrite bin/kwrited bin/kxkb @@ -75,6 +76,10 @@ include/KonquerorIface.h include/ccont.h include/kbookmark.h include/kbookmarkbar.h +include/kbookmarkdrag.h +include/kbookmarkexporter.h +include/kbookmarkimporter.h +include/kbookmarkmanager.h include/kbookmarkmenu.h include/kfileivi.h include/knewmenu.h @@ -84,61 +89,189 @@ include/konq_dirlister.h include/konq_dirpart.h include/konq_drag.h include/konq_events.h +include/konq_faviconmgr.h include/konq_fileitem.h +include/konq_historycomm.h +include/konq_historymgr.h include/konq_iconviewwidget.h include/konq_imagepreviewjob.h +include/konq_mimetyperesolver.h include/konq_operations.h +include/konq_pixmapprovider.h include/konq_popupmenu.h include/konq_propsview.h include/konq_settings.h include/konq_undo.h +include/kwin/client.h +include/kwin/options.h +include/kwin/workspace.h +include/thumbcreator.h lib/appletproxy.la lib/appletproxy.so -lib/kaccess.la -lib/kaccess.so +lib/extensionproxy.la +lib/extensionproxy.so lib/kcminit.la lib/kcminit.so lib/kcmshell.la lib/kcmshell.so lib/kcontrol.la lib/kcontrol.so +lib/kde2/htmlthumbnail.la +lib/kde2/htmlthumbnail.so +lib/kde2/imagethumbnail.la +lib/kde2/imagethumbnail.so +lib/kde2/kaccess.la +lib/kde2/kaccess.so +lib/kde2/kio_filter.la +lib/kde2/kio_filter.so +lib/kde2/kio_finger.la +lib/kde2/kio_finger.so +lib/kde2/kio_floppy.la +lib/kde2/kio_floppy.so +lib/kde2/kio_gopher.la +lib/kde2/kio_gopher.so +lib/kde2/kio_help.la +lib/kde2/kio_help.so +lib/kde2/kio_imap4.la +lib/kde2/kio_imap4.so +lib/kde2/kio_info.la +lib/kde2/kio_info.so +lib/kde2/kio_ldap.la +lib/kde2/kio_ldap.so +lib/kde2/kio_man.la +lib/kde2/kio_man.so +lib/kde2/kio_nfs.la +lib/kde2/kio_nfs.so +lib/kde2/kio_nntp.la +lib/kde2/kio_nntp.so +lib/kde2/kio_pop3.la +lib/kde2/kio_pop3.so +lib/kde2/kio_smb.la +lib/kde2/kio_smb.so +lib/kde2/kio_smtp.la +lib/kde2/kio_smtp.so +lib/kde2/kio_tar.la +lib/kde2/kio_tar.so +lib/kde2/kio_thumbnail.la +lib/kde2/kio_thumbnail.so +lib/kde2/libkcm_access.la +lib/kde2/libkcm_access.so +lib/kde2/libkcm_arts.la +lib/kde2/libkcm_arts.so +lib/kde2/libkcm_background.la +lib/kde2/libkcm_background.so +lib/kde2/libkcm_bell.la +lib/kde2/libkcm_bell.so +lib/kde2/libkcm_clock.la +lib/kde2/libkcm_clock.so +lib/kde2/libkcm_colors.la +lib/kde2/libkcm_colors.so +lib/kde2/libkcm_crypto.la +lib/kde2/libkcm_crypto.so +lib/kde2/libkcm_email.la +lib/kde2/libkcm_email.so +lib/kde2/libkcm_energy.la +lib/kde2/libkcm_energy.so +lib/kde2/libkcm_filetypes.la +lib/kde2/libkcm_filetypes.so +lib/kde2/libkcm_fonts.la +lib/kde2/libkcm_fonts.so +lib/kde2/libkcm_icons.la +lib/kde2/libkcm_icons.so +lib/kde2/libkcm_info.la +lib/kde2/libkcm_info.so +lib/kde2/libkcm_input.la +lib/kde2/libkcm_input.so +lib/kde2/libkcm_kdm.la +lib/kde2/libkcm_kdm.so +lib/kde2/libkcm_keys.la +lib/kde2/libkcm_keys.so +lib/kde2/libkcm_khotkeys.la +lib/kde2/libkcm_khotkeys.so +lib/kde2/libkcm_kicker.la +lib/kde2/libkcm_kicker.so +lib/kde2/libkcm_kio.la +lib/kde2/libkcm_kio.so +lib/kde2/libkcm_knotify.la +lib/kde2/libkcm_knotify.so +lib/kde2/libkcm_konq.la +lib/kde2/libkcm_konq.so +lib/kde2/libkcm_konqhtml.la +lib/kde2/libkcm_konqhtml.so +lib/kde2/libkcm_kurifilt.la +lib/kde2/libkcm_kurifilt.so +lib/kde2/libkcm_kwinoptions.la +lib/kde2/libkcm_kwinoptions.so +lib/kde2/libkcm_locale.la +lib/kde2/libkcm_locale.so +lib/kde2/libkcm_midi.la +lib/kde2/libkcm_midi.so +lib/kde2/libkcm_passwords.la +lib/kde2/libkcm_passwords.so +lib/kde2/libkcm_samba.la +lib/kde2/libkcm_samba.so +lib/kde2/libkcm_screensaver.la +lib/kde2/libkcm_screensaver.so +lib/kde2/libkcm_smserver.la +lib/kde2/libkcm_smserver.so +lib/kde2/libkcm_style.la +lib/kde2/libkcm_style.so +lib/kde2/libkcm_taskbar.la +lib/kde2/libkcm_taskbar.so +lib/kde2/libkcm_themes.la +lib/kde2/libkcm_themes.so +lib/kde2/libkfindpart.la +lib/kde2/libkfindpart.so +lib/kde2/libkonqiconview.la +lib/kde2/libkonqiconview.so +lib/kde2/libkonqlistview.la +lib/kde2/libkonqlistview.so +lib/kde2/libkonqtree.la +lib/kde2/libkonqtree.so +lib/kde2/libkshellcmdplugin.la +lib/kde2/libkshellcmdplugin.so +lib/kde2/libkshorturifilter.la +lib/kde2/libkshorturifilter.so +lib/kde2/libkuriikwsfilter.la +lib/kde2/libkuriikwsfilter.so +lib/kde2/libkurisearchfilter.la +lib/kde2/libkurisearchfilter.so +lib/kde2/libkwin2k.la +lib/kde2/libkwin2k.so +lib/kde2/libkwinb2.la +lib/kde2/libkwinb2.so +lib/kde2/libkwinkde1.la +lib/kde2/libkwinkde1.so +lib/kde2/libkwinkstep.la +lib/kde2/libkwinkstep.so +lib/kde2/libkwinkwmtheme.la +lib/kde2/libkwinkwmtheme.so +lib/kde2/libkwinlaptop.la +lib/kde2/libkwinlaptop.so +lib/kde2/libkwinmodernsys.la +lib/kde2/libkwinmodernsys.so +lib/kde2/libkwinriscos.la +lib/kde2/libkwinriscos.so +lib/kde2/libkwinsystem.la +lib/kde2/libkwinsystem.so +lib/kde2/textthumbnail.la +lib/kde2/textthumbnail.so lib/kdesktop.la lib/kdesktop.so +lib/keditbookmarks.la +lib/keditbookmarks.so lib/kfmclient.la lib/kfmclient.so lib/khotkeys.la lib/khotkeys.so lib/kicker.la lib/kicker.so -lib/kio_gopher.la -lib/kio_gopher.so -lib/kio_gzip.la -lib/kio_gzip.so -lib/kio_help.la -lib/kio_help.so -lib/kio_info.la -lib/kio_info.so -lib/kio_man.la -lib/kio_man.so -lib/kio_nfs.la -lib/kio_nfs.so -lib/kio_nntp.la -lib/kio_nntp.so -lib/kio_pop3.la -lib/kio_pop3.so -lib/kio_smb.la -lib/kio_smb.so -lib/kio_smtp.la -lib/kio_smtp.so -lib/kio_tar.la -lib/kio_tar.so lib/klegacyimport.la lib/klegacyimport.so lib/klipper.la lib/klipper.so lib/kmenuedit.la lib/kmenuedit.so -lib/kmenuedit.so.0 lib/konqueror.la lib/konqueror.so lib/konsole.la @@ -153,86 +286,29 @@ lib/kxkb.la lib/kxkb.so lib/kxmlrpcd.la lib/kxmlrpcd.so +lib/libKdmGreet.la +lib/libKdmGreet.so lib/libccont.a +lib/libchildpanelextension.la +lib/libchildpanelextension.so +lib/libchildpanelextension.so.1 lib/libclockapplet.la lib/libclockapplet.so lib/libclockapplet.so.1 +lib/libdockbarextension.la +lib/libdockbarextension.so +lib/libdockbarextension.so.1 lib/libhtmlsearch.la lib/libhtmlsearch.so -lib/libkcm_access.la -lib/libkcm_access.so -lib/libkcm_arts.la -lib/libkcm_arts.so -lib/libkcm_background.la -lib/libkcm_background.so -lib/libkcm_bell.la -lib/libkcm_bell.so -lib/libkcm_clock.la -lib/libkcm_clock.so -lib/libkcm_colors.la -lib/libkcm_colors.so -lib/libkcm_crypto.la -lib/libkcm_crypto.so -lib/libkcm_email.la -lib/libkcm_email.so -lib/libkcm_energy.la -lib/libkcm_energy.so -lib/libkcm_filetypes.la -lib/libkcm_filetypes.so -lib/libkcm_fonts.la -lib/libkcm_fonts.so +lib/libkasbarextension.la +lib/libkasbarextension.so +lib/libkasbarextension.so.1 lib/libkcm_htmlsearch.la lib/libkcm_htmlsearch.so -lib/libkcm_icons.la -lib/libkcm_icons.so -lib/libkcm_iconthemes.la -lib/libkcm_iconthemes.so -lib/libkcm_info.la -lib/libkcm_info.so -lib/libkcm_input.la -lib/libkcm_input.so -lib/libkcm_kdm.la -lib/libkcm_kdm.so -lib/libkcm_keys.la -lib/libkcm_keys.so -lib/libkcm_khotkeys.la -lib/libkcm_khotkeys.so -lib/libkcm_kicker.la -lib/libkcm_kicker.so -lib/libkcm_kio.la -lib/libkcm_kio.so -lib/libkcm_knotify.la -lib/libkcm_knotify.so -lib/libkcm_konq.la -lib/libkcm_konq.so -lib/libkcm_konqhtml.la -lib/libkcm_konqhtml.so -lib/libkcm_kurifilt.la -lib/libkcm_kurifilt.so -lib/libkcm_kwindesktop.la -lib/libkcm_kwindesktop.so -lib/libkcm_kwinmouse.la -lib/libkcm_kwinmouse.so -lib/libkcm_kwinoptions.la -lib/libkcm_kwinoptions.so +lib/libkcm_ioslaveinfo.la +lib/libkcm_ioslaveinfo.so lib/libkcm_layout.la lib/libkcm_layout.so -lib/libkcm_locale.la -lib/libkcm_locale.so -lib/libkcm_midi.la -lib/libkcm_midi.so -lib/libkcm_passwords.la -lib/libkcm_passwords.so -lib/libkcm_samba.la -lib/libkcm_samba.so -lib/libkcm_screensaver.la -lib/libkcm_screensaver.so -lib/libkcm_style.la -lib/libkcm_style.so -lib/libkcm_taskbar.la -lib/libkcm_taskbar.so -lib/libkcm_virtualdesktops.la -lib/libkcm_virtualdesktops.so lib/libkcm_xmlrpcd.la lib/libkcm_xmlrpcd.so lib/libkhelpcenter.la @@ -244,71 +320,60 @@ lib/libkminipagerapplet.so.1 lib/libkonq.la lib/libkonq.so lib/libkonq.so.4 -lib/libkonqdirtree.la -lib/libkonqdirtree.so -lib/libkonqiconview.la -lib/libkonqiconview.so -lib/libkonqlistview.la -lib/libkonqlistview.so +lib/libkonqaboutpage.la +lib/libkonqaboutpage.so lib/libkonsolepart.la lib/libkonsolepart.so lib/libkrunapplet.la lib/libkrunapplet.so lib/libkrunapplet.so.1 -lib/libkshorturifilter.la -lib/libkshorturifilter.so -lib/libkshorturifilter.so.1 +lib/libksysguardapplet.la +lib/libksysguardapplet.so +lib/libksysguardapplet.so.1 lib/libksystemtrayapplet.la lib/libksystemtrayapplet.so lib/libksystemtrayapplet.so.1 lib/libktaskbarapplet.la lib/libktaskbarapplet.so lib/libktaskbarapplet.so.1 -lib/libkuriikwsfilter.la -lib/libkuriikwsfilter.so -lib/libkuriikwsfilter.so.1 -lib/libkurisearchfilter.la -lib/libkurisearchfilter.so -lib/libkurisearchfilter.so.1 -lib/libkwinb2.la -lib/libkwinb2.so lib/libkwindefault.la lib/libkwindefault.so lib/libkwindefault.so.0 -lib/libkwinkde1.la -lib/libkwinkde1.so -lib/libkwinkstep.la -lib/libkwinkstep.so -lib/libkwinlaptop.la -lib/libkwinlaptop.so -lib/libkwinmodernsys.la -lib/libkwinmodernsys.so -lib/libkwinriscos.la -lib/libkwinriscos.so -lib/libkwinsystem.la -lib/libkwinsystem.so lib/libkwritepart.la lib/libkwritepart.so +lib/libnaughtyapplet.la +lib/libnaughtyapplet.so +lib/libnaughtyapplet.so.1 lib/libquicklauncher.la lib/libquicklauncher.so lib/libquicklauncher.so.1 -lib/libsmb++.la -lib/libsmb++.so -lib/libsmb++.so.0 +lib/libtaskbarextension.la +lib/libtaskbarextension.so +lib/libtaskbarextension.so.1 +lib/libtaskmanager.la +lib/libtaskmanager.so +lib/libtaskmanager.so.1 share/applnk/.directory share/applnk/.hidden/konqfilemgr.desktop share/applnk/Applications/.directory -share/applnk/Development/designer.desktop +share/applnk/Development/.directory share/applnk/Editors/.directory +share/applnk/Editors/gvim.desktop share/applnk/Editors/kwrite.desktop +share/applnk/Editors/xedit.desktop share/applnk/Games/.directory share/applnk/Graphics/.directory +share/applnk/Graphics/gimp.desktop share/applnk/Help.desktop share/applnk/Home.desktop share/applnk/Internet/.directory +share/applnk/Internet/keditbookmarks.desktop share/applnk/Internet/konqbrowser.desktop +share/applnk/Internet/netscape.desktop share/applnk/KControl.desktop share/applnk/Multimedia/.directory +share/applnk/Multimedia/aviplay.desktop +share/applnk/Multimedia/xawtv.desktop share/applnk/Office/.directory share/applnk/Settings/.directory share/applnk/Settings/FileBrowsing/.directory @@ -321,6 +386,7 @@ share/applnk/Settings/Information/devices.desktop share/applnk/Settings/Information/dma.desktop share/applnk/Settings/Information/interrupts.desktop share/applnk/Settings/Information/ioports.desktop +share/applnk/Settings/Information/ioslaveinfo.desktop share/applnk/Settings/Information/memory.desktop share/applnk/Settings/Information/partitions.desktop share/applnk/Settings/Information/pci.desktop @@ -330,28 +396,29 @@ share/applnk/Settings/Information/smbstatus.desktop share/applnk/Settings/Information/sound.desktop share/applnk/Settings/Information/xserver.desktop share/applnk/Settings/LookNFeel/.directory -share/applnk/Settings/LookNFeel/Desktop/.directory share/applnk/Settings/LookNFeel/Desktop/background.desktop share/applnk/Settings/LookNFeel/Desktop/borders.desktop share/applnk/Settings/LookNFeel/Desktop/desktop.desktop share/applnk/Settings/LookNFeel/Desktop/virtualdesktops.desktop -share/applnk/Settings/LookNFeel/Panel/.directory -share/applnk/Settings/LookNFeel/Themes/.directory share/applnk/Settings/LookNFeel/Themes/iconthemes.desktop share/applnk/Settings/LookNFeel/Themes/style.desktop -share/applnk/Settings/LookNFeel/Windows/.directory share/applnk/Settings/LookNFeel/Windows/actions.desktop -share/applnk/Settings/LookNFeel/Windows/mouse.desktop +share/applnk/Settings/LookNFeel/Windows/kwinmouse.desktop +share/applnk/Settings/LookNFeel/background.desktop share/applnk/Settings/LookNFeel/colors.desktop +share/applnk/Settings/LookNFeel/desktop.desktop share/applnk/Settings/LookNFeel/fonts.desktop share/applnk/Settings/LookNFeel/icons.desktop share/applnk/Settings/LookNFeel/kcmnotify.desktop share/applnk/Settings/LookNFeel/kcmtaskbar.desktop share/applnk/Settings/LookNFeel/keys.desktop +share/applnk/Settings/LookNFeel/kthememgr.desktop +share/applnk/Settings/LookNFeel/kwinoptions.desktop share/applnk/Settings/LookNFeel/panel.desktop share/applnk/Settings/LookNFeel/screensaver.desktop +share/applnk/Settings/LookNFeel/style.desktop +share/applnk/Settings/LookNFeel/virtualdesktops.desktop share/applnk/Settings/Network/.directory -share/applnk/Settings/Network/smb.desktop share/applnk/Settings/Peripherals/.directory share/applnk/Settings/Peripherals/keyboard.desktop share/applnk/Settings/Peripherals/mouse.desktop @@ -370,28 +437,24 @@ share/applnk/Settings/Sound/bell.desktop share/applnk/Settings/Sound/midi.desktop share/applnk/Settings/System/.directory share/applnk/Settings/System/clock.desktop +share/applnk/Settings/System/kcmsmserver.desktop share/applnk/Settings/System/kdm.desktop share/applnk/Settings/WebBrowsing/.directory share/applnk/Settings/WebBrowsing/cookies.desktop share/applnk/Settings/WebBrowsing/ebrowsing.desktop share/applnk/Settings/WebBrowsing/konqhtml.desktop share/applnk/Settings/WebBrowsing/proxy.desktop +share/applnk/Settings/WebBrowsing/smb.desktop share/applnk/Settings/WebBrowsing/useragent.desktop share/applnk/System/.directory -share/applnk/System/Arrange.desktop share/applnk/System/ScreenSavers/.directory -share/applnk/System/ScreenSavers/KAttration.desktop share/applnk/System/ScreenSavers/KBanner.desktop share/applnk/System/ScreenSavers/KBlankscreen.desktop share/applnk/System/ScreenSavers/KBlob.desktop share/applnk/System/ScreenSavers/KBouboule.desktop share/applnk/System/ScreenSavers/KBsod.desktop -share/applnk/System/ScreenSavers/KFlame.desktop -share/applnk/System/ScreenSavers/KForest.desktop share/applnk/System/ScreenSavers/KHop.desktop -share/applnk/System/ScreenSavers/KLaser.desktop share/applnk/System/ScreenSavers/KLines.desktop -share/applnk/System/ScreenSavers/KLissie.desktop share/applnk/System/ScreenSavers/KLorenz.desktop share/applnk/System/ScreenSavers/KMatrix.desktop share/applnk/System/ScreenSavers/KMorph3D.desktop @@ -403,12 +466,14 @@ share/applnk/System/ScreenSavers/KRock.desktop share/applnk/System/ScreenSavers/KScience.desktop share/applnk/System/ScreenSavers/KSlidescreen.desktop share/applnk/System/ScreenSavers/KSlideshow.desktop -share/applnk/System/ScreenSavers/KSlip.desktop share/applnk/System/ScreenSavers/KSpace.desktop share/applnk/System/ScreenSavers/KSwarm.desktop share/applnk/System/ScreenSavers/KVm.desktop +share/applnk/System/ScreenSavers/Worm.desktop share/applnk/System/kappfinder.desktop share/applnk/System/kfmclient.desktop +share/applnk/System/kfmclient_dir.desktop +share/applnk/System/kfmclient_html.desktop share/applnk/System/klegacyimport.desktop share/applnk/System/kmenuedit.desktop share/applnk/System/konquerorsu.desktop @@ -417,15 +482,19 @@ share/applnk/System/konsolesu.desktop share/applnk/System/ksysguard.desktop share/applnk/Toys/.directory share/applnk/Toys/ktip.desktop +share/applnk/Toys/xeyes.desktop share/applnk/Utilities/.directory +share/applnk/Utilities/XUtilities/xcalc.desktop +share/applnk/Utilities/XUtilities/xclipboard.desktop +share/applnk/Utilities/XUtilities/xclock.desktop +share/applnk/Utilities/XUtilities/xconsole.desktop +share/applnk/Utilities/XUtilities/xload.desktop +share/applnk/Utilities/XUtilities/xmag.desktop +share/applnk/Utilities/XUtilities/xterm.desktop share/applnk/Utilities/klipper.desktop share/applnk/Utilities/kpager.desktop -share/applnk/Utilities/passwd.desktop -share/applnk/Utilities/xclipboard.desktop -share/applnk/Utilities/xclock.desktop -share/applnk/Utilities/xconsole.desktop -share/applnk/Utilities/xmag.desktop -share/applnk/Utilities/xterm.desktop +share/applnk/WordProcessing/gv.desktop +share/applnk/WordProcessing/xpdf.desktop share/apps/clockapplet/pics/lcd.png share/apps/drkonqi/debuggers/gdbrc share/apps/drkonqi/pics/konqi.png @@ -443,6 +512,13 @@ share/apps/kappfinder/apps/Editors/lemacs.desktop share/apps/kappfinder/apps/Editors/nedit.desktop share/apps/kappfinder/apps/Editors/xedit.desktop share/apps/kappfinder/apps/Editors/xemacs.desktop +share/apps/kappfinder/apps/Games/.directory +share/apps/kappfinder/apps/Games/Clanbomber.desktop +share/apps/kappfinder/apps/Games/Qmamecat.desktop +share/apps/kappfinder/apps/Games/defendguin.desktop +share/apps/kappfinder/apps/Games/freeciv.desktop +share/apps/kappfinder/apps/Games/penguin-command.desktop +share/apps/kappfinder/apps/Games/xshipwars.desktop share/apps/kappfinder/apps/Graphics/.directory share/apps/kappfinder/apps/Graphics/gimp.desktop share/apps/kappfinder/apps/Graphics/xfig.desktop @@ -451,6 +527,8 @@ share/apps/kappfinder/apps/Graphics/xv.desktop share/apps/kappfinder/apps/Internet/.directory share/apps/kappfinder/apps/Internet/arena.desktop share/apps/kappfinder/apps/Internet/coolmail.desktop +share/apps/kappfinder/apps/Internet/ethereal.desktop +share/apps/kappfinder/apps/Internet/ncftp.desktop share/apps/kappfinder/apps/Internet/netscape.desktop share/apps/kappfinder/apps/Internet/pine.desktop share/apps/kappfinder/apps/Internet/xbiff.desktop @@ -458,7 +536,11 @@ share/apps/kappfinder/apps/Internet/xchat.desktop share/apps/kappfinder/apps/Internet/xfmail.desktop share/apps/kappfinder/apps/Internet/xftp.desktop share/apps/kappfinder/apps/Multimedia/.directory +share/apps/kappfinder/apps/Multimedia/alevt.desktop +share/apps/kappfinder/apps/Multimedia/aviplay.desktop +share/apps/kappfinder/apps/Multimedia/gtv.desktop share/apps/kappfinder/apps/Multimedia/realplayer.desktop +share/apps/kappfinder/apps/Multimedia/xawtv.desktop share/apps/kappfinder/apps/Multimedia/xmms.desktop share/apps/kappfinder/apps/Office/.directory share/apps/kappfinder/apps/Office/Applix.desktop @@ -531,15 +613,14 @@ share/apps/kappfinder/apps/Toys/.directory share/apps/kappfinder/apps/Toys/xeyes.desktop share/apps/kappfinder/apps/Toys/xpinguin.desktop share/apps/kappfinder/apps/Utilities/.directory -share/apps/kappfinder/apps/Utilities/jar.desktop -share/apps/kappfinder/apps/Utilities/passwd.desktop -share/apps/kappfinder/apps/Utilities/xcalc.desktop -share/apps/kappfinder/apps/Utilities/xclipboard.desktop -share/apps/kappfinder/apps/Utilities/xclock.desktop -share/apps/kappfinder/apps/Utilities/xconsole.desktop -share/apps/kappfinder/apps/Utilities/xload.desktop -share/apps/kappfinder/apps/Utilities/xmag.desktop -share/apps/kappfinder/apps/Utilities/xterm.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/.directory +share/apps/kappfinder/apps/Utilities/XUtilities/xcalc.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclipboard.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclock.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xconsole.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xload.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xmag.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xterm.desktop share/apps/kappfinder/apps/WordProcessing/.directory share/apps/kappfinder/apps/WordProcessing/WordPerfect.desktop share/apps/kappfinder/apps/WordProcessing/WordPerfect2000.desktop @@ -547,10 +628,12 @@ share/apps/kappfinder/apps/WordProcessing/acroread.desktop share/apps/kappfinder/apps/WordProcessing/ghostview.desktop share/apps/kappfinder/apps/WordProcessing/gv.desktop share/apps/kappfinder/apps/WordProcessing/lyx.desktop +share/apps/kappfinder/apps/WordProcessing/pybliographic.desktop share/apps/kappfinder/apps/WordProcessing/xdvi.desktop share/apps/kappfinder/apps/WordProcessing/xpdf.desktop share/apps/kbookmark/directory_bookmarkbar.desktop share/apps/kcminput/cursor_large.pcf.gz +share/apps/kcmkeys/standard/Unix.kksrc share/apps/kcmlocale/pics/background.png share/apps/kcontrol/kcontrolui.rc share/apps/kcontrol/pics/energybig.png @@ -560,8 +643,10 @@ share/apps/kcontrol/pics/mini-world.png share/apps/kcontrol/pics/monitor.png share/apps/kcontrol/pics/onlyone.png share/apps/kcontrol/pics/overlapping.png +share/apps/kcontrol/pics/part1.png +share/apps/kcontrol/pics/part2.png +share/apps/kcontrol/pics/part3.png share/apps/kcontrol/pics/play.png -share/apps/kcontrol/pics/wizard.png share/apps/kdcop/kdcopui.rc share/apps/kdesktop/DesktopLinks/Home.desktop share/apps/kdesktop/directory.autostart @@ -586,8 +671,10 @@ share/apps/kdesktop/pics/kde2.xbm share/apps/kdesktop/pics/ksslogo.png share/apps/kdesktop/pics/splash.png share/apps/kdesktop/pics/splash2.png +share/apps/kdesktop/programs/kwebdesktop.desktop share/apps/kdesktop/programs/xearth.desktop share/apps/kdesktop/programs/xglobe.desktop +share/apps/kdesktop/programs/xplanet.desktop share/apps/kdewizard/pics/wizard_small.png share/apps/kdewizard/tips share/apps/kdisplay/app-defaults/AAAAAAGeneral.ad @@ -605,6 +692,8 @@ share/apps/kdisplay/app-defaults/XCalc.ad share/apps/kdisplay/app-defaults/XOsview.ad share/apps/kdisplay/app-defaults/XTerm.ad share/apps/kdisplay/app-defaults/XV.ad +share/apps/kdisplay/app-defaults/Xawtv.ad +share/apps/kdisplay/app-defaults/Xpdf.ad share/apps/kdisplay/color-schemes/AtlasGreen.kcsrc share/apps/kdisplay/color-schemes/BeOS.kcsrc share/apps/kdisplay/color-schemes/BlueSlate.kcsrc @@ -627,15 +716,21 @@ share/apps/kdm/pics/users/default.png share/apps/kdm/pics/users/default2.png share/apps/kdm/pics/users/root.png share/apps/kdm/pics/users/root2.png +share/apps/keditbookmarks/keditbookmarksui.rc +share/apps/kfind/icons/locolor/22x22/actions/archive.png +share/apps/kfind/icons/locolor/22x22/actions/delete.png +share/apps/kfind/icons/locolor/22x22/actions/idea.png +share/apps/kfind/icons/locolor/22x22/actions/info.png +share/apps/kfind/icons/locolor/22x22/actions/openfile.png +share/apps/kfind/icons/locolor/22x22/actions/save.png +share/apps/kfind/icons/locolor/22x22/actions/search.png share/apps/khelpcenter/en/bad_words share/apps/khelpcenter/en/long.html share/apps/khelpcenter/en/nomatch.html share/apps/khelpcenter/en/short.html share/apps/khelpcenter/en/syntax.html share/apps/khelpcenter/en/wrapper.html -share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook.png share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook_open.png -share/apps/khelpcenter/icons/locolor/16x16/apps/helpdoc.png share/apps/khelpcenter/pics/checked.xpm share/apps/khelpcenter/pics/star.png share/apps/khelpcenter/pics/star_blank.png @@ -646,9 +741,16 @@ share/apps/khelpcenter/plugins/Tutorials/visualdict.desktop share/apps/kicker/applets/clockapplet.desktop share/apps/kicker/applets/kminipagerapplet.desktop share/apps/kicker/applets/krunapplet.desktop +share/apps/kicker/applets/ksysguardapplet.desktop share/apps/kicker/applets/ksystemtrayapplet.desktop share/apps/kicker/applets/ktaskbarapplet.desktop +share/apps/kicker/applets/naughtyapplet.desktop share/apps/kicker/applets/quicklauncher.desktop +share/apps/kicker/extensions/childpanelextension.desktop +share/apps/kicker/extensions/dockbarextension.desktop +share/apps/kicker/extensions/kasbarextension.desktop +share/apps/kicker/extensions/taskbarextension.desktop +share/apps/kicker/icons/hicolor/16x16/actions/modified.png share/apps/kicker/icons/locolor/16x16/actions/modified.png share/apps/kicker/pics/disk1.png share/apps/kicker/pics/disk2.png @@ -761,6 +863,8 @@ share/apps/kicker/tiles/solid_tgri_tiny_up.png share/apps/kicker/wallpapers/deck_plate.png share/apps/kicker/wallpapers/green_line.png share/apps/kicker/wallpapers/rail.png +share/apps/kio_finger/kio_finger.css +share/apps/kio_finger/kio_finger.pl share/apps/kio_info/kde-info2html share/apps/kio_info/kde-info2html.conf share/apps/kmenuedit/icons/hicolor/22x22/actions/menu_new.png @@ -769,17 +873,46 @@ share/apps/kmenuedit/icons/locolor/16x16/actions/menu_new.png share/apps/kmenuedit/kmenueditui.rc share/apps/konqiconview/konq_iconview.rc share/apps/konqiconview/konq_multicolumnview.rc +share/apps/konqiconview/kpartplugins/kshellcmdplugin.rc share/apps/konqlistview/konq_detailedlistview.rc share/apps/konqlistview/konq_textview.rc share/apps/konqlistview/konq_treeview.rc +share/apps/konqlistview/kpartplugins/kshellcmdplugin.rc +share/apps/konqueror/about/back.png +share/apps/konqueror/about/background.png +share/apps/konqueror/about/bgtable.png +share/apps/konqueror/about/gohome.png +share/apps/konqueror/about/history.png +share/apps/konqueror/about/intro.html +share/apps/konqueror/about/kdelogo2.png +share/apps/konqueror/about/konq.css +share/apps/konqueror/about/konqueror.png +share/apps/konqueror/about/lines.png +share/apps/konqueror/about/lines2.png +share/apps/konqueror/about/locationbar_erase.png +share/apps/konqueror/about/more.png +share/apps/konqueror/about/openterm.png +share/apps/konqueror/about/pointers.gif +share/apps/konqueror/about/shadow1.png +share/apps/konqueror/about/specs.html +share/apps/konqueror/about/tips.html +share/apps/konqueror/about/view_left_right.png +share/apps/konqueror/about/viewmag.png +share/apps/konqueror/about/window_fullscreen.png +share/apps/konqueror/dirtree/bookmarks.desktop +share/apps/konqueror/dirtree/history.desktop share/apps/konqueror/dirtree/home.desktop share/apps/konqueror/dirtree/remote/.directory share/apps/konqueror/dirtree/remote/ftp/.directory share/apps/konqueror/dirtree/remote/ftp/kde_ftp.desktop share/apps/konqueror/dirtree/remote/web/.directory share/apps/konqueror/dirtree/remote/web/kde_web.desktop -share/apps/konqueror/dirtree/remote/windows.desktop share/apps/konqueror/dirtree/root.desktop +share/apps/konqueror/icons/hicolor/16x16/actions/remove_view.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_bottom.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_left_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_top_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/remove_view.png share/apps/konqueror/icons/hicolor/22x22/actions/view_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/view_left_right.png @@ -796,7 +929,6 @@ share/apps/konqueror/icons/locolor/16x16/actions/kde3.png share/apps/konqueror/icons/locolor/16x16/actions/kde4.png share/apps/konqueror/icons/locolor/16x16/actions/kde5.png share/apps/konqueror/icons/locolor/16x16/actions/kde6.png -share/apps/konqueror/icons/locolor/16x16/actions/locationbar_erase.png share/apps/konqueror/icons/locolor/16x16/actions/remove_view.png share/apps/konqueror/icons/locolor/16x16/actions/view_bottom.png share/apps/konqueror/icons/locolor/16x16/actions/view_left_right.png @@ -808,13 +940,17 @@ share/apps/konqueror/pics/indicator_connect.png share/apps/konqueror/pics/indicator_empty.png share/apps/konqueror/pics/indicator_noconnect.png share/apps/konqueror/pics/indicator_viewactive.png +share/apps/konqueror/pics/thumbnailfont_7x4.png share/apps/konqueror/profiles/filemanagement +share/apps/konqueror/profiles/filepreview +share/apps/konqueror/profiles/midnightcommander share/apps/konqueror/profiles/webbrowsing share/apps/konqueror/tiles/bluemorning.png share/apps/konqueror/tiles/canvas.png share/apps/konqueror/tiles/checker.png share/apps/konqueror/tiles/cubic.png share/apps/konqueror/tiles/kde4ever.png +share/apps/konqueror/tiles/kenwimer.png share/apps/konqueror/tiles/noise.png share/apps/konqueror/tiles/paper_flieder.png share/apps/konqueror/tiles/punika_attack.png @@ -850,12 +986,18 @@ share/apps/konsole/syscolor.schema share/apps/konsole/vim.schema share/apps/konsole/vt100.keytab share/apps/konsole/vt420pc.keytab +share/apps/konsole/x11r5.keytab share/apps/kscreensaver/kscience-small.gif share/apps/kscreensaver/kscience.gif +share/apps/ksplash/pics/locolor/splash_active_bar.png +share/apps/ksplash/pics/locolor/splash_bottom.png +share/apps/ksplash/pics/locolor/splash_inactive_bar.png +share/apps/ksplash/pics/locolor/splash_top.png share/apps/ksplash/pics/splash_active_bar.png share/apps/ksplash/pics/splash_bottom.png share/apps/ksplash/pics/splash_inactive_bar.png share/apps/ksplash/pics/splash_top.png +share/apps/ksysguard/KSysGuardApplet.xml share/apps/ksysguard/ProcessTable.sgrd share/apps/ksysguard/SystemLoad.sgrd share/apps/ksysguard/icons/locolor/16x16/apps/X.png @@ -906,6 +1048,13 @@ share/apps/ksysguard/icons/locolor/16x16/apps/xntpd.png share/apps/ksysguard/icons/locolor/16x16/apps/xterm.png share/apps/ksysguard/icons/locolor/16x16/apps/ypbind.png share/apps/ksysguard/ksysguardui.rc +share/apps/kthememgr/Themes/Default.ktheme +share/apps/kthememgr/Themes/Eclipse.ktheme +share/apps/kthememgr/Themes/MGBreizh.ktheme +share/apps/kthememgr/Themes/Nostalgy.ktheme +share/apps/kthememgr/Themes/Template.themerc +share/apps/kthememgr/Themes/Wood.ktheme +share/apps/kthememgr/theme.mappings share/apps/kwin/b2.desktop share/apps/kwin/eventsrc share/apps/kwin/kde.desktop @@ -928,12 +1077,19 @@ share/apps/kwin/pics/pinup.png share/apps/kwin/pics/unknown.png share/apps/kwin/riscos.desktop share/apps/kwin/system.desktop +share/apps/kwin/win2k.desktop share/apps/kwrite/kwrite_browser.rc share/apps/kwrite/kwrite_shell.rc share/apps/kwrite/kwriteui.rc -share/apps/quickbrowser/Home.desktop -share/apps/quickbrowser/KDE.desktop -share/apps/quickbrowser/Root.desktop +share/apps/kwrite/syntax.xml +share/apps/naughtyapplet/pics/naughty-happy.png +share/apps/naughtyapplet/pics/naughty-sad.png +share/autostart/kdesktop.desktop +share/autostart/khotkeys.desktop +share/autostart/klipper.desktop +share/autostart/ktip.desktop +share/autostart/kwrited.desktop +share/autostart/panel.desktop share/config/antrc share/config/attractionrc share/config/bouboulerc @@ -955,6 +1111,8 @@ share/config/gravrc share/config/halorc share/config/imsmaprc share/config/interferencerc +share/config/kdesktop_custom_menu1 +share/config/kdesktop_custom_menu2 share/config/kdmrc share/config/klipperrc share/config/konsolerc @@ -991,12 +1149,9 @@ share/doc/HTML/en/kcontrol/email.html share/doc/HTML/en/kcontrol/energy.html share/doc/HTML/en/kcontrol/file-assoc.html share/doc/HTML/en/kcontrol/file-manager.html -share/doc/HTML/en/kcontrol/kfileman1.png -share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/fonts.html share/doc/HTML/en/kcontrol/help-index.html share/doc/HTML/en/kcontrol/icons.html -share/doc/HTML/en/kcontrol/iconstyle.html share/doc/HTML/en/kcontrol/index.docbook share/doc/HTML/en/kcontrol/index.html share/doc/HTML/en/kcontrol/interrupts.html @@ -1034,7 +1189,6 @@ share/doc/HTML/en/kcontrol/kcmkbd.docbook share/doc/HTML/en/kcontrol/kcmkblayout.docbook share/doc/HTML/en/kcontrol/kcmkbrowse.docbook share/doc/HTML/en/kcontrol/kcmkeybind.docbook -share/doc/HTML/en/kcontrol/kcmkeys.docbook share/doc/HTML/en/kcontrol/kcmlocate.docbook share/doc/HTML/en/kcontrol/kcmloginmanage.docbook share/doc/HTML/en/kcontrol/kcmlowbatcrit.docbook @@ -1044,6 +1198,7 @@ share/doc/HTML/en/kcontrol/kcmmidi.docbook share/doc/HTML/en/kcontrol/kcmmixer.docbook share/doc/HTML/en/kcontrol/kcmmouse.docbook share/doc/HTML/en/kcontrol/kcmmousebeh.docbook +share/doc/HTML/en/kcontrol/kcmnetscapeplugins.docbook share/doc/HTML/en/kcontrol/kcmnumbername.docbook share/doc/HTML/en/kcontrol/kcmpanel.docbook share/doc/HTML/en/kcontrol/kcmpartitioninfo.docbook @@ -1055,6 +1210,7 @@ share/doc/HTML/en/kcontrol/kcmprocinfo.docbook share/doc/HTML/en/kcontrol/kcmproxie.docbook share/doc/HTML/en/kcontrol/kcmscnsave.docbook share/doc/HTML/en/kcontrol/kcmscsiinfo.docbook +share/doc/HTML/en/kcontrol/kcmsessionman.docbook share/doc/HTML/en/kcontrol/kcmsmbstat.docbook share/doc/HTML/en/kcontrol/kcmsndinfo.docbook share/doc/HTML/en/kcontrol/kcmsndsrv.docbook @@ -1066,6 +1222,8 @@ share/doc/HTML/en/kcontrol/kcmuseragent.docbook share/doc/HTML/en/kcontrol/kcmwinshare.docbook share/doc/HTML/en/kcontrol/kcmxservinfo.docbook share/doc/HTML/en/kcontrol/key-bindings.html +share/doc/HTML/en/kcontrol/kfileman1.png +share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/konq-browsing.html share/doc/HTML/en/kcontrol/laptop.html share/doc/HTML/en/kcontrol/locale.html @@ -1079,7 +1237,7 @@ share/doc/HTML/en/kcontrol/module.html share/doc/HTML/en/kcontrol/modules.html share/doc/HTML/en/kcontrol/mouse-behav.html share/doc/HTML/en/kcontrol/mouse.html -share/doc/HTML/en/kcontrol/numbername.html +share/doc/HTML/en/kcontrol/nsplugins.html share/doc/HTML/en/kcontrol/panel.html share/doc/HTML/en/kcontrol/partitions.html share/doc/HTML/en/kcontrol/passwords.html @@ -1092,11 +1250,11 @@ share/doc/HTML/en/kcontrol/sambastatus.html share/doc/HTML/en/kcontrol/screensaver.html share/doc/HTML/en/kcontrol/screenshot.png share/doc/HTML/en/kcontrol/scsi.html +share/doc/HTML/en/kcontrol/sessions.html share/doc/HTML/en/kcontrol/sndserver.html share/doc/HTML/en/kcontrol/soundinfo.html share/doc/HTML/en/kcontrol/style.html share/doc/HTML/en/kcontrol/sys-notify.html -share/doc/HTML/en/kcontrol/talk.html share/doc/HTML/en/kcontrol/taskbar.html share/doc/HTML/en/kcontrol/user-agent.html share/doc/HTML/en/kcontrol/windows-shares.html @@ -1135,6 +1293,8 @@ share/doc/HTML/en/kdm/lilo.html share/doc/HTML/en/kdm/locale.html share/doc/HTML/en/kdm/other-information.html share/doc/HTML/en/khelpcenter/.anchors +share/doc/HTML/en/khelpcenter/background.png +share/doc/HTML/en/khelpcenter/bgtable.png share/doc/HTML/en/khelpcenter/common share/doc/HTML/en/khelpcenter/contact-developers.html share/doc/HTML/en/khelpcenter/contact-more-information.html @@ -1144,16 +1304,6 @@ share/doc/HTML/en/khelpcenter/contact.docbook share/doc/HTML/en/khelpcenter/credits.html share/doc/HTML/en/khelpcenter/faq/.anchors share/doc/HTML/en/khelpcenter/faq/TODO -share/doc/HTML/en/khelpcenter/faq/index.docbook -share/doc/HTML/en/khelpcenter/faq/index.html -share/doc/HTML/en/khelpcenter/help-system-user-manual.html -share/doc/HTML/en/khelpcenter/help.docbook -share/doc/HTML/en/khelpcenter/index.docbook -share/doc/HTML/en/khelpcenter/index.html -share/doc/HTML/en/khelpcenter/interface-basics.html -share/doc/HTML/en/khelpcenter/invoking-help.html -share/doc/HTML/en/khelpcenter/links.docbook -share/doc/HTML/en/khelpcenter/no-html.html share/doc/HTML/en/khelpcenter/faq/about.html share/doc/HTML/en/khelpcenter/faq/applications.html share/doc/HTML/en/khelpcenter/faq/common @@ -1163,6 +1313,8 @@ share/doc/HTML/en/khelpcenter/faq/credits.html share/doc/HTML/en/khelpcenter/faq/desktop.html share/doc/HTML/en/khelpcenter/faq/filemanager.html share/doc/HTML/en/khelpcenter/faq/getting-kde.html +share/doc/HTML/en/khelpcenter/faq/index.docbook +share/doc/HTML/en/khelpcenter/faq/index.html share/doc/HTML/en/khelpcenter/faq/install.html share/doc/HTML/en/khelpcenter/faq/introduction.html share/doc/HTML/en/khelpcenter/faq/misc.html @@ -1172,6 +1324,21 @@ share/doc/HTML/en/khelpcenter/faq/not-kde.html share/doc/HTML/en/khelpcenter/faq/panel.html share/doc/HTML/en/khelpcenter/faq/tips.html share/doc/HTML/en/khelpcenter/faq/windowmanager.html +share/doc/HTML/en/khelpcenter/help-system-user-manual.html +share/doc/HTML/en/khelpcenter/help.docbook +share/doc/HTML/en/khelpcenter/index.docbook +share/doc/HTML/en/khelpcenter/index.html +share/doc/HTML/en/khelpcenter/interface-basics.html +share/doc/HTML/en/khelpcenter/invoking-help.html +share/doc/HTML/en/khelpcenter/kdelogo2.png +share/doc/HTML/en/khelpcenter/khelpcenter.png +share/doc/HTML/en/khelpcenter/konq.css +share/doc/HTML/en/khelpcenter/lines.png +share/doc/HTML/en/khelpcenter/lines2.png +share/doc/HTML/en/khelpcenter/links.docbook +share/doc/HTML/en/khelpcenter/main.html +share/doc/HTML/en/khelpcenter/no-html.html +share/doc/HTML/en/khelpcenter/pointers.png share/doc/HTML/en/khelpcenter/quickstart/.anchors share/doc/HTML/en/khelpcenter/quickstart/advanced-topics.html share/doc/HTML/en/khelpcenter/quickstart/an-overview-of-kde.html @@ -1193,6 +1360,7 @@ share/doc/HTML/en/khelpcenter/quickstart/using-templates.html share/doc/HTML/en/khelpcenter/quickstart/using-v-desktops.html share/doc/HTML/en/khelpcenter/quickstart/want-command-line-back.html share/doc/HTML/en/khelpcenter/quickstart/working-with-windows.html +share/doc/HTML/en/khelpcenter/shadow1.png share/doc/HTML/en/khelpcenter/support.docbook share/doc/HTML/en/khelpcenter/supporting-kde-financial-support.html share/doc/HTML/en/khelpcenter/supporting-kde-get-started.html @@ -1276,44 +1444,48 @@ share/doc/HTML/en/khelpcenter/what-is-kde-the-office-suite.html share/doc/HTML/en/khelpcenter/what-is-kde.html share/doc/HTML/en/khelpcenter/whatiskde.docbook share/doc/HTML/en/kicker/.anchors -share/doc/HTML/en/kicker/access_config.png -share/doc/HTML/en/kicker/basic_icons.png -share/doc/HTML/en/kicker/button-preferences.html +share/doc/HTML/en/kicker/applets.html +share/doc/HTML/en/kicker/application-group.html +share/doc/HTML/en/kicker/basics.html +share/doc/HTML/en/kicker/browsers.html +share/doc/HTML/en/kicker/child-panel-extension.html +share/doc/HTML/en/kicker/clock-applet.html +share/doc/HTML/en/kicker/commands.html share/doc/HTML/en/kicker/common -share/doc/HTML/en/kicker/config_window.png -share/doc/HTML/en/kicker/configuration-adding-icons.html -share/doc/HTML/en/kicker/configuration-config-window.html +share/doc/HTML/en/kicker/compilation.html share/doc/HTML/en/kicker/configuration.html +share/doc/HTML/en/kicker/configuring-apps.html +share/doc/HTML/en/kicker/configuring.html share/doc/HTML/en/kicker/credits.html -share/doc/HTML/en/kicker/drag-and-drop.html -share/doc/HTML/en/kicker/drag_applet.png -share/doc/HTML/en/kicker/five-minute-course.html -share/doc/HTML/en/kicker/glossary.html -share/doc/HTML/en/kicker/handles.png -share/doc/HTML/en/kicker/hide_buttons.png -share/doc/HTML/en/kicker/i_adv_editor.png -share/doc/HTML/en/kicker/i_control_center.png -share/doc/HTML/en/kicker/i_desktop.png -share/doc/HTML/en/kicker/i_help.png -share/doc/HTML/en/kicker/i_home_dir.png -share/doc/HTML/en/kicker/i_k_button.png -share/doc/HTML/en/kicker/i_kandalfs_tips.png -share/doc/HTML/en/kicker/i_shell.png -share/doc/HTML/en/kicker/i_window_list.png +share/doc/HTML/en/kicker/dock-application-bar-extension.html +share/doc/HTML/en/kicker/extensions.html +share/doc/HTML/en/kicker/faq.html share/doc/HTML/en/kicker/index.docbook share/doc/HTML/en/kicker/index.html share/doc/HTML/en/kicker/installation.html share/doc/HTML/en/kicker/introduction.html -share/doc/HTML/en/kicker/kicker-for-admins-symbolic-links.html -share/doc/HTML/en/kicker/kicker-for-admins.html -share/doc/HTML/en/kicker/kicker-panel-elements.html -share/doc/HTML/en/kicker/kicker_access_size.png -share/doc/HTML/en/kicker/kicker_add_basic.png -share/doc/HTML/en/kicker/kicker_basic_icons.png -share/doc/HTML/en/kicker/kicker_basic_icons_2.png -share/doc/HTML/en/kicker/other-features.html -share/doc/HTML/en/kicker/qb_root.png +share/doc/HTML/en/kicker/k-menu.html +share/doc/HTML/en/kicker/k_menu_icon.png +share/doc/HTML/en/kicker/kasbar-extension.html +share/doc/HTML/en/kicker/kfind-advanced.html +share/doc/HTML/en/kicker/kfind-date-range.html +share/doc/HTML/en/kicker/kfind.html +share/doc/HTML/en/kicker/launcher-applet.html +share/doc/HTML/en/kicker/most-recently-group.html +share/doc/HTML/en/kicker/naughty-applet.html +share/doc/HTML/en/kicker/pager-applet.html +share/doc/HTML/en/kicker/panel-applets.html +share/doc/HTML/en/kicker/panel-buttons.html +share/doc/HTML/en/kicker/panel-looknfeel.html +share/doc/HTML/en/kicker/panel-menus.html +share/doc/HTML/en/kicker/requirements.html +share/doc/HTML/en/kicker/run-applet.html +share/doc/HTML/en/kicker/run-command.html +share/doc/HTML/en/kicker/screenshot_left.png +share/doc/HTML/en/kicker/screenshot_right.png +share/doc/HTML/en/kicker/systemtray-applet.html share/doc/HTML/en/kicker/using-kicker.html +share/doc/HTML/en/kicker/windowlist_icon.png share/doc/HTML/en/klipper/.anchors share/doc/HTML/en/klipper/actions.html share/doc/HTML/en/klipper/common @@ -1329,6 +1501,7 @@ share/doc/HTML/en/klipper/screenshot.png share/doc/HTML/en/klipper/using-klipper.html share/doc/HTML/en/kmenuedit/.anchors share/doc/HTML/en/kmenuedit/common +share/doc/HTML/en/kmenuedit/compilation.html share/doc/HTML/en/kmenuedit/credits.html share/doc/HTML/en/kmenuedit/details-advanced.html share/doc/HTML/en/kmenuedit/glossary.html @@ -1343,30 +1516,33 @@ share/doc/HTML/en/kmenuedit/icon_sets.png share/doc/HTML/en/kmenuedit/icons.png share/doc/HTML/en/kmenuedit/index.docbook share/doc/HTML/en/kmenuedit/index.html +share/doc/HTML/en/kmenuedit/installation.html share/doc/HTML/en/kmenuedit/introduction.html share/doc/HTML/en/kmenuedit/menu-reference.html share/doc/HTML/en/kmenuedit/using-kmenuedit.html share/doc/HTML/en/konqueror/.anchors -share/doc/HTML/en/konqueror/autocomplete.html share/doc/HTML/en/konqueror/basics.html share/doc/HTML/en/konqueror/bookmarks.html share/doc/HTML/en/konqueror/browser.html share/doc/HTML/en/konqueror/bubble.html -share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/cmndline.png share/doc/HTML/en/konqueror/commandline.html share/doc/HTML/en/konqueror/commands.html -share/doc/HTML/en/konqueror/config-prox.html +share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/config.html -share/doc/HTML/en/konqueror/configure-bars.html -share/doc/HTML/en/konqueror/cook.html +share/doc/HTML/en/konqueror/configfm.html +share/doc/HTML/en/konqueror/configure-browser.html +share/doc/HTML/en/konqueror/configure-enhanced-browsing.html +share/doc/HTML/en/konqueror/configure-proxy.html +share/doc/HTML/en/konqueror/configure-user-agent.html +share/doc/HTML/en/konqueror/cookies.html share/doc/HTML/en/konqueror/credits.html share/doc/HTML/en/konqueror/crypto.html share/doc/HTML/en/konqueror/deleting.html share/doc/HTML/en/konqueror/dirtree.png share/doc/HTML/en/konqueror/dragdrop.png share/doc/HTML/en/konqueror/faq.html -share/doc/HTML/en/konqueror/fileassoc.html +share/doc/HTML/en/konqueror/file-associations.html share/doc/HTML/en/konqueror/filemanager.html share/doc/HTML/en/konqueror/filetype1.png share/doc/HTML/en/konqueror/filetype3.png @@ -1375,23 +1551,20 @@ share/doc/HTML/en/konqueror/ftp.html share/doc/HTML/en/konqueror/index.docbook share/doc/HTML/en/konqueror/index.html share/doc/HTML/en/konqueror/installation.html -share/doc/HTML/en/konqueror/introduction.html share/doc/HTML/en/konqueror/konqorg.png -share/doc/HTML/en/konqueror/lmbmmb.html +share/doc/HTML/en/konqueror/lmb-mmb.html share/doc/HTML/en/konqueror/making.html -share/doc/HTML/en/konqueror/miscbrowser.html +share/doc/HTML/en/konqueror/man-info.html share/doc/HTML/en/konqueror/moving.html share/doc/HTML/en/konqueror/multiple.html share/doc/HTML/en/konqueror/newname.html -share/doc/HTML/en/konqueror/optionalbrowser.html share/doc/HTML/en/konqueror/parts.html share/doc/HTML/en/konqueror/parts.png share/doc/HTML/en/konqueror/plugin.html share/doc/HTML/en/konqueror/rmb-menus.html -share/doc/HTML/en/konqueror/samba.html share/doc/HTML/en/konqueror/samba.png share/doc/HTML/en/konqueror/save-print-web.html -share/doc/HTML/en/konqueror/saveset.html +share/doc/HTML/en/konqueror/save-settings.html share/doc/HTML/en/konqueror/surf.html share/doc/HTML/en/konsole/.anchors share/doc/HTML/en/konsole/command-line-options.html @@ -1447,6 +1620,7 @@ share/doc/HTML/en/kwrite/go.html share/doc/HTML/en/kwrite/help.html share/doc/HTML/en/kwrite/index.docbook share/doc/HTML/en/kwrite/index.html +share/doc/HTML/en/kwrite/installation.html share/doc/HTML/en/kwrite/introduction.html share/doc/HTML/en/kwrite/keybindings.html share/doc/HTML/en/kwrite/on-screen-fundamentals.html @@ -1465,6 +1639,66 @@ share/fonts/console8x16.pcf.gz share/fonts/console8x8.pcf.gz share/fonts/fonts.dir share/fonts/override/fonts.dir +share/icons/hicolor/16x16/apps/background.png +share/icons/hicolor/16x16/apps/bell.png +share/icons/hicolor/16x16/apps/cookie.png +share/icons/hicolor/16x16/apps/email.png +share/icons/hicolor/16x16/apps/energy.png +share/icons/hicolor/16x16/apps/enhanced_browsing.png +share/icons/hicolor/16x16/apps/go.png +share/icons/hicolor/16x16/apps/hwinfo.png +share/icons/hicolor/16x16/apps/input_devices_settings.png +share/icons/hicolor/16x16/apps/kappfinder.png +share/icons/hicolor/16x16/apps/kcmkwm.png +share/icons/hicolor/16x16/apps/kcmsystem.png +share/icons/hicolor/16x16/apps/kcontrol.png +share/icons/hicolor/16x16/apps/kdisknav.png +share/icons/hicolor/16x16/apps/keditbookmarks.png +share/icons/hicolor/16x16/apps/kfm.png +share/icons/hicolor/16x16/apps/kfm_home.png +share/icons/hicolor/16x16/apps/khelpcenter.png +share/icons/hicolor/16x16/apps/klipper.png +share/icons/hicolor/16x16/apps/konqueror.png +share/icons/hicolor/16x16/apps/konsole.png +share/icons/hicolor/16x16/apps/kscreensaver.png +share/icons/hicolor/16x16/apps/ksysguard.png +share/icons/hicolor/16x16/apps/ktip.png +share/icons/hicolor/16x16/apps/kwrite.png +share/icons/hicolor/16x16/apps/locale.png +share/icons/hicolor/16x16/apps/looknfeel.png +share/icons/hicolor/16x16/apps/multimedia.png +share/icons/hicolor/16x16/apps/netscape.png +share/icons/hicolor/16x16/apps/package_applications.png +share/icons/hicolor/16x16/apps/package_development.png +share/icons/hicolor/16x16/apps/package_editors.png +share/icons/hicolor/16x16/apps/package_graphics.png +share/icons/hicolor/16x16/apps/package_multimedia.png +share/icons/hicolor/16x16/apps/package_network.png +share/icons/hicolor/16x16/apps/package_settings.png +share/icons/hicolor/16x16/apps/package_system.png +share/icons/hicolor/16x16/apps/package_toys.png +share/icons/hicolor/16x16/apps/package_utilities.png +share/icons/hicolor/16x16/apps/package_wordprocessing.png +share/icons/hicolor/16x16/apps/realplayer.png +share/icons/hicolor/16x16/apps/remote.png +share/icons/hicolor/16x16/apps/samba.png +share/icons/hicolor/16x16/apps/style.png +share/icons/hicolor/16x16/apps/window_list.png +share/icons/hicolor/16x16/devices/3floppy_mount.png +share/icons/hicolor/16x16/devices/3floppy_unmount.png +share/icons/hicolor/16x16/devices/cdaudio_mount.png +share/icons/hicolor/16x16/devices/cdaudio_unmount.png +share/icons/hicolor/16x16/devices/cdrom_mount.png +share/icons/hicolor/16x16/devices/cdrom_unmount.png +share/icons/hicolor/16x16/devices/dvd_mount.png +share/icons/hicolor/16x16/devices/dvd_unmount.png +share/icons/hicolor/16x16/devices/hdd_mount.png +share/icons/hicolor/16x16/devices/hdd_unmount.png +share/icons/hicolor/16x16/devices/nfs_mount.png +share/icons/hicolor/16x16/devices/nfs_unmount.png +share/icons/hicolor/16x16/devices/printer1.png +share/icons/hicolor/16x16/filesystems/file_important.png +share/icons/hicolor/16x16/filesystems/folder_important.png share/icons/hicolor/22x22/actions/view_choose.png share/icons/hicolor/22x22/actions/view_detailed.png share/icons/hicolor/22x22/actions/view_icon.png @@ -1478,11 +1712,13 @@ share/icons/hicolor/32x32/actions/view_multicolumn.png share/icons/hicolor/32x32/actions/view_text.png share/icons/hicolor/32x32/actions/view_tree.png share/icons/hicolor/32x32/apps/access.png +share/icons/hicolor/32x32/apps/acroread.png share/icons/hicolor/32x32/apps/agent.png share/icons/hicolor/32x32/apps/bell.png -share/icons/hicolor/32x32/apps/buttons.png +share/icons/hicolor/32x32/apps/blender.png share/icons/hicolor/32x32/apps/clock.png share/icons/hicolor/32x32/apps/colors.png +share/icons/hicolor/32x32/apps/cookie.png share/icons/hicolor/32x32/apps/date.png share/icons/hicolor/32x32/apps/designer.png share/icons/hicolor/32x32/apps/emacs.png @@ -1512,6 +1748,7 @@ share/icons/hicolor/32x32/apps/kcmx.png share/icons/hicolor/32x32/apps/kcontrol.png share/icons/hicolor/32x32/apps/kdisknav.png share/icons/hicolor/32x32/apps/kdmconfig.png +share/icons/hicolor/32x32/apps/keditbookmarks.png share/icons/hicolor/32x32/apps/key_bindings.png share/icons/hicolor/32x32/apps/keyboard_layout.png share/icons/hicolor/32x32/apps/kfm.png @@ -1544,15 +1781,18 @@ share/icons/hicolor/32x32/apps/package_multimedia.png share/icons/hicolor/32x32/apps/package_network.png share/icons/hicolor/32x32/apps/package_settings.png share/icons/hicolor/32x32/apps/package_system.png +share/icons/hicolor/32x32/apps/package_toys.png share/icons/hicolor/32x32/apps/package_utilities.png +share/icons/hicolor/32x32/apps/package_wordprocessing.png share/icons/hicolor/32x32/apps/password.png share/icons/hicolor/32x32/apps/proxy.png +share/icons/hicolor/32x32/apps/realplayer.png share/icons/hicolor/32x32/apps/style.png share/icons/hicolor/32x32/apps/terminal.png -share/icons/hicolor/32x32/apps/titlebar.png share/icons/hicolor/32x32/apps/window_list.png share/icons/hicolor/32x32/apps/winprops.png share/icons/hicolor/32x32/apps/xapp.png +share/icons/hicolor/32x32/apps/xawtv.png share/icons/hicolor/32x32/apps/xedit.png share/icons/hicolor/32x32/apps/xemacs.png share/icons/hicolor/32x32/apps/xmag.png @@ -1574,16 +1814,20 @@ share/icons/hicolor/32x32/devices/hdd_unmount.png share/icons/hicolor/32x32/devices/memory.png share/icons/hicolor/32x32/devices/mo_mount.png share/icons/hicolor/32x32/devices/mo_unmount.png +share/icons/hicolor/32x32/devices/nfs_mount.png +share/icons/hicolor/32x32/devices/nfs_unmount.png share/icons/hicolor/32x32/devices/printer1.png share/icons/hicolor/32x32/devices/printer2.png share/icons/hicolor/32x32/devices/scanner.png share/icons/hicolor/32x32/devices/tablet.png share/icons/hicolor/32x32/devices/zip_mount.png share/icons/hicolor/32x32/devices/zip_unmount.png +share/icons/hicolor/32x32/filesystems/file_important.png +share/icons/hicolor/32x32/filesystems/folder_important.png share/icons/hicolor/48x48/apps/access.png share/icons/hicolor/48x48/apps/agent.png share/icons/hicolor/48x48/apps/bell.png -share/icons/hicolor/48x48/apps/buttons.png +share/icons/hicolor/48x48/apps/blender.png share/icons/hicolor/48x48/apps/clock.png share/icons/hicolor/48x48/apps/colors.png share/icons/hicolor/48x48/apps/cookie.png @@ -1649,12 +1893,15 @@ share/icons/hicolor/48x48/apps/package_multimedia.png share/icons/hicolor/48x48/apps/package_network.png share/icons/hicolor/48x48/apps/package_settings.png share/icons/hicolor/48x48/apps/package_system.png +share/icons/hicolor/48x48/apps/package_toys.png share/icons/hicolor/48x48/apps/package_utilities.png +share/icons/hicolor/48x48/apps/package_wordprocessing.png share/icons/hicolor/48x48/apps/password.png share/icons/hicolor/48x48/apps/proxy.png +share/icons/hicolor/48x48/apps/remote.png +share/icons/hicolor/48x48/apps/samba.png share/icons/hicolor/48x48/apps/style.png share/icons/hicolor/48x48/apps/terminal.png -share/icons/hicolor/48x48/apps/titlebar.png share/icons/hicolor/48x48/apps/window_list.png share/icons/hicolor/48x48/apps/winprops.png share/icons/hicolor/48x48/apps/xedit.png @@ -1678,12 +1925,17 @@ share/icons/hicolor/48x48/devices/hdd_unmount.png share/icons/hicolor/48x48/devices/memory.png share/icons/hicolor/48x48/devices/mo_mount.png share/icons/hicolor/48x48/devices/mo_unmount.png +share/icons/hicolor/48x48/devices/nfs_mount.png +share/icons/hicolor/48x48/devices/nfs_unmount.png share/icons/hicolor/48x48/devices/printer1.png share/icons/hicolor/48x48/devices/printer2.png share/icons/hicolor/48x48/devices/scanner.png share/icons/hicolor/48x48/devices/tablet.png share/icons/hicolor/48x48/devices/zip_mount.png share/icons/hicolor/48x48/devices/zip_unmount.png +share/icons/hicolor/48x48/filesystems/file_important.png +share/icons/hicolor/48x48/filesystems/folder_important.png +share/icons/locolor/16x16/actions/bookmark_folder.png share/icons/locolor/16x16/actions/view_choose.png share/icons/locolor/16x16/actions/view_detailed.png share/icons/locolor/16x16/actions/view_icon.png @@ -1693,12 +1945,13 @@ share/icons/locolor/16x16/actions/view_tree.png share/icons/locolor/16x16/apps/access.png share/icons/locolor/16x16/apps/acroread.png share/icons/locolor/16x16/apps/agent.png +share/icons/locolor/16x16/apps/alevt.png share/icons/locolor/16x16/apps/applixware.png share/icons/locolor/16x16/apps/arts.png share/icons/locolor/16x16/apps/background.png share/icons/locolor/16x16/apps/bell.png -share/icons/locolor/16x16/apps/borders.png -share/icons/locolor/16x16/apps/buttons.png +share/icons/locolor/16x16/apps/blender.png +share/icons/locolor/16x16/apps/clock.png share/icons/locolor/16x16/apps/colors.png share/icons/locolor/16x16/apps/cookie.png share/icons/locolor/16x16/apps/date.png @@ -1735,12 +1988,14 @@ share/icons/locolor/16x16/apps/kcmx.png share/icons/locolor/16x16/apps/kcontrol.png share/icons/locolor/16x16/apps/kdisknav.png share/icons/locolor/16x16/apps/kdmconfig.png +share/icons/locolor/16x16/apps/keditbookmarks.png share/icons/locolor/16x16/apps/key_bindings.png share/icons/locolor/16x16/apps/keyboard.png share/icons/locolor/16x16/apps/keyboard_layout.png share/icons/locolor/16x16/apps/kfm.png share/icons/locolor/16x16/apps/kfm_home.png share/icons/locolor/16x16/apps/khelpcenter.png +share/icons/locolor/16x16/apps/kicker.png share/icons/locolor/16x16/apps/klipper.png share/icons/locolor/16x16/apps/kmenuedit.png share/icons/locolor/16x16/apps/knotify.png @@ -1758,6 +2013,7 @@ share/icons/locolor/16x16/apps/looknfeel.png share/icons/locolor/16x16/apps/lyx.png share/icons/locolor/16x16/apps/mathematica.png share/icons/locolor/16x16/apps/mouse.png +share/icons/locolor/16x16/apps/mozilla.png share/icons/locolor/16x16/apps/multimedia.png share/icons/locolor/16x16/apps/nedit.png share/icons/locolor/16x16/apps/netscape.png @@ -1778,11 +2034,12 @@ share/icons/locolor/16x16/apps/password.png share/icons/locolor/16x16/apps/penguin.png share/icons/locolor/16x16/apps/plan.png share/icons/locolor/16x16/apps/proxy.png +share/icons/locolor/16x16/apps/pybliographic.png share/icons/locolor/16x16/apps/realplayer.png +share/icons/locolor/16x16/apps/remote.png share/icons/locolor/16x16/apps/samba.png share/icons/locolor/16x16/apps/style.png share/icons/locolor/16x16/apps/terminal.png -share/icons/locolor/16x16/apps/titlebar.png share/icons/locolor/16x16/apps/wabi.png share/icons/locolor/16x16/apps/window_list.png share/icons/locolor/16x16/apps/winprops.png @@ -1824,11 +2081,12 @@ share/icons/locolor/16x16/devices/zip_unmount.png share/icons/locolor/32x32/apps/access.png share/icons/locolor/32x32/apps/acroread.png share/icons/locolor/32x32/apps/agent.png +share/icons/locolor/32x32/apps/alevt.png share/icons/locolor/32x32/apps/applixware.png share/icons/locolor/32x32/apps/background.png share/icons/locolor/32x32/apps/bell.png -share/icons/locolor/32x32/apps/borders.png -share/icons/locolor/32x32/apps/buttons.png +share/icons/locolor/32x32/apps/blender.png +share/icons/locolor/32x32/apps/clanbomber.png share/icons/locolor/32x32/apps/clock.png share/icons/locolor/32x32/apps/colors.png share/icons/locolor/32x32/apps/cookie.png @@ -1908,16 +2166,18 @@ share/icons/locolor/32x32/apps/password.png share/icons/locolor/32x32/apps/penguin.png share/icons/locolor/32x32/apps/plan.png share/icons/locolor/32x32/apps/proxy.png +share/icons/locolor/32x32/apps/pybliographic.png +share/icons/locolor/32x32/apps/pysol.png share/icons/locolor/32x32/apps/realplayer.png share/icons/locolor/32x32/apps/samba.png share/icons/locolor/32x32/apps/style.png share/icons/locolor/32x32/apps/terminal.png -share/icons/locolor/32x32/apps/titlebar.png share/icons/locolor/32x32/apps/wabi.png share/icons/locolor/32x32/apps/window_list.png share/icons/locolor/32x32/apps/winprops.png share/icons/locolor/32x32/apps/wp.png share/icons/locolor/32x32/apps/xapp.png +share/icons/locolor/32x32/apps/xawtv.png share/icons/locolor/32x32/apps/xcalc.png share/icons/locolor/32x32/apps/xclipboard.png share/icons/locolor/32x32/apps/xclock.png @@ -2041,8 +2301,12 @@ share/locale/l10n/kr/entry.desktop share/locale/l10n/kr/flag.png share/locale/l10n/lc/entry.desktop share/locale/l10n/lc/flag.png +share/locale/l10n/lt/entry.desktop +share/locale/l10n/lt/flag.png share/locale/l10n/lu/entry.desktop share/locale/l10n/lu/flag.png +share/locale/l10n/lv/entry.desktop +share/locale/l10n/lv/flag.png share/locale/l10n/mk/entry.desktop share/locale/l10n/mk/flag.png share/locale/l10n/mx/entry.desktop @@ -2104,12 +2368,23 @@ share/locale/l10n/westeurope.desktop share/locale/l10n/za/entry.desktop share/locale/l10n/za/flag.png share/mimelnk/application/x-konsole.desktop +share/mimelnk/application/x-ktheme.desktop +share/services/bzip.protocol +share/services/bzip2.protocol +share/services/finger.protocol +share/services/floppy.protocol share/services/gopher.protocol share/services/gzip.protocol share/services/help.protocol +share/services/htmlthumbnail.desktop +share/services/imagethumbnail.desktop +share/services/imap4.protocol +share/services/imaps.protocol share/services/info.protocol share/services/kaccess.desktop +share/services/kfindpart.desktop share/services/khelpcenter.desktop +share/services/konq_aboutpage.desktop share/services/konq_detailedlistview.desktop share/services/konq_dirtree.desktop share/services/konq_iconview.desktop @@ -2117,6 +2392,7 @@ share/services/konq_multicolumnview.desktop share/services/konq_textview.desktop share/services/konq_treeview.desktop share/services/konqueror.desktop +share/services/konqueror_config.desktop share/services/konsolepart.desktop share/services/kshorturifilter.desktop share/services/kuriikwsfilter.desktop @@ -2124,14 +2400,58 @@ share/services/kurisearchfilter.desktop share/services/kwrite_component.desktop share/services/kxkb.desktop share/services/kxmlrpcd.desktop +share/services/ldap.protocol share/services/man.protocol share/services/nfs.protocol share/services/nntp.protocol share/services/pop3.protocol share/services/pop3s.protocol +share/services/searchproviders/acronym.desktop +share/services/searchproviders/altavista.desktop +share/services/searchproviders/austronaut.desktop +share/services/searchproviders/bugft.desktop +share/services/searchproviders/bugno.desktop +share/services/searchproviders/deja.desktop +share/services/searchproviders/dmoz.desktop +share/services/searchproviders/excite.desktop +share/services/searchproviders/foldoc.desktop +share/services/searchproviders/freshmeat.desktop +share/services/searchproviders/google.desktop +share/services/searchproviders/hotbot.desktop +share/services/searchproviders/jeeves.desktop +share/services/searchproviders/leo.desktop +share/services/searchproviders/lycos.desktop +share/services/searchproviders/mamma.desktop +share/services/searchproviders/metacrawler.desktop +share/services/searchproviders/realnames.desktop +share/services/searchproviders/rpmfind.desktop +share/services/searchproviders/seek.desktop +share/services/searchproviders/thesaurus.desktop +share/services/searchproviders/voila.desktop +share/services/searchproviders/webster.desktop share/services/smb.protocol share/services/smtp.protocol share/services/tar.protocol +share/services/textthumbnail.desktop +share/services/thumbnail.protocol +share/servicetypes/findpart.desktop +share/servicetypes/konqaboutpage.desktop +share/servicetypes/searchprovider.desktop +share/servicetypes/thumbcreator.desktop +share/sounds/KDE_Beep_Ahem.wav +share/sounds/KDE_Beep_Beep.wav +share/sounds/KDE_Beep_Bottles.wav +share/sounds/KDE_Beep_ClassicBeep.wav +share/sounds/KDE_Beep_ClockChime.wav +share/sounds/KDE_Beep_Connect.wav +share/sounds/KDE_Beep_Door.wav +share/sounds/KDE_Beep_Honk.wav +share/sounds/KDE_Beep_Lightning.wav +share/sounds/KDE_Beep_Pop.wav +share/sounds/KDE_Beep_RimShot.wav +share/sounds/KDE_Beep_RingRing.wav +share/sounds/KDE_Beep_ShortBeep.wav +share/sounds/KDE_Beep_Yo.wav share/sounds/KDE_Close_Window.wav share/sounds/KDE_Logout.wav share/sounds/KDE_Startup.wav @@ -2185,6 +2505,105 @@ share/wallpapers/northbeach.jpg share/wallpapers/simple_wallpaper.jpg share/wallpapers/sunday_brunch.jpg share/wallpapers/vegetative_fog.jpg +@dirrm share/wallpapers +@dirrm share/templates/.source +@dirrm share/templates +@dirrm share/sounds +@dirrm share/servicetypes +@dirrm share/services/searchproviders +@dirrm share/services +@dirrm share/mimelnk/application +@dirrm share/locale/l10n/za +@dirrm share/locale/l10n/ve +@dirrm share/locale/l10n/vc +@dirrm share/locale/l10n/uy +@dirrm share/locale/l10n/us +@dirrm share/locale/l10n/ua +@dirrm share/locale/l10n/tw +@dirrm share/locale/l10n/tt +@dirrm share/locale/l10n/tr +@dirrm share/locale/l10n/th +@dirrm share/locale/l10n/sv +@dirrm share/locale/l10n/sr +@dirrm share/locale/l10n/sk +@dirrm share/locale/l10n/si +@dirrm share/locale/l10n/se +@dirrm share/locale/l10n/ru +@dirrm share/locale/l10n/ro +@dirrm share/locale/l10n/py +@dirrm share/locale/l10n/pt +@dirrm share/locale/l10n/pl +@dirrm share/locale/l10n/pe +@dirrm share/locale/l10n/pa +@dirrm share/locale/l10n/nz +@dirrm share/locale/l10n/no +@dirrm share/locale/l10n/nl +@dirrm share/locale/l10n/mx +@dirrm share/locale/l10n/mk +@dirrm share/locale/l10n/lv +@dirrm share/locale/l10n/lu +@dirrm share/locale/l10n/lt +@dirrm share/locale/l10n/lc +@dirrm share/locale/l10n/kr +@dirrm share/locale/l10n/kp +@dirrm share/locale/l10n/kn +@dirrm share/locale/l10n/jp +@dirrm share/locale/l10n/jm +@dirrm share/locale/l10n/it +@dirrm share/locale/l10n/is +@dirrm share/locale/l10n/il +@dirrm share/locale/l10n/ie +@dirrm share/locale/l10n/hu +@dirrm share/locale/l10n/hr +@dirrm share/locale/l10n/hn +@dirrm share/locale/l10n/gt +@dirrm share/locale/l10n/gr +@dirrm share/locale/l10n/gd +@dirrm share/locale/l10n/gb +@dirrm share/locale/l10n/fr +@dirrm share/locale/l10n/fi +@dirrm share/locale/l10n/es +@dirrm share/locale/l10n/ee +@dirrm share/locale/l10n/ec +@dirrm share/locale/l10n/do +@dirrm share/locale/l10n/dk +@dirrm share/locale/l10n/de +@dirrm share/locale/l10n/cz +@dirrm share/locale/l10n/co +@dirrm share/locale/l10n/cn +@dirrm share/locale/l10n/cl +@dirrm share/locale/l10n/ch +@dirrm share/locale/l10n/ca +@dirrm share/locale/l10n/br +@dirrm share/locale/l10n/bo +@dirrm share/locale/l10n/bg +@dirrm share/locale/l10n/be +@dirrm share/locale/l10n/bb +@dirrm share/locale/l10n/au +@dirrm share/locale/l10n/at +@dirrm share/locale/l10n/ar +@dirrm share/locale/l10n/ag +@dirrm share/locale/l10n/C +@dirrm share/locale/l10n +@dirrm share/locale/C +@dirrm share/icons/locolor/32x32/devices +@dirrm share/icons/locolor/32x32/apps +@dirrm share/icons/locolor/16x16/devices +@dirrm share/icons/locolor/16x16/apps +@dirrm share/icons/locolor/16x16/actions +@dirrm share/icons/hicolor/48x48/filesystems +@dirrm share/icons/hicolor/48x48/devices +@dirrm share/icons/hicolor/48x48/apps +@dirrm share/icons/hicolor/32x32/filesystems +@dirrm share/icons/hicolor/32x32/devices +@dirrm share/icons/hicolor/32x32/apps +@dirrm share/icons/hicolor/32x32/actions +@dirrm share/icons/hicolor/22x22/actions +@dirrm share/icons/hicolor/16x16/filesystems +@dirrm share/icons/hicolor/16x16/devices +@dirrm share/icons/hicolor/16x16/apps +@dirrm share/fonts/override +@dirrm share/fonts @dirrm share/doc/HTML/en/kwrite @dirrm share/doc/HTML/en/ksysguard @dirrm share/doc/HTML/en/kpager @@ -2202,17 +2621,22 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/doc/HTML/en/kdesu @dirrm share/doc/HTML/en/kdebugdialog @dirrm share/doc/HTML/en/kcontrol -@dirrm share/apps/quickbrowser +@dirrm share/doc/HTML/en +@dirrm share/config +@dirrm share/autostart +@dirrm share/apps/naughtyapplet/pics @dirrm share/apps/kwrite @dirrm share/apps/kwin/pics @dirrm share/apps/kwin +@dirrm share/apps/kthememgr/Themes +@dirrm share/apps/kthememgr @dirrm share/apps/ksysguard/icons/locolor/16x16/apps @dirrm share/apps/ksysguard/icons/locolor/16x16 @dirrm share/apps/ksysguard/icons/locolor @dirrm share/apps/ksysguard/icons @dirrm share/apps/ksysguard +@dirrm share/apps/ksplash/pics/locolor @dirrm share/apps/ksplash/pics -@dirrm share/apps/ksplash @dirrm share/apps/kscreensaver @dirrm share/apps/konsole/pics @dirrm share/apps/konsole @@ -2226,14 +2650,18 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/konqueror/icons/hicolor/32x32 @dirrm share/apps/konqueror/icons/hicolor/22x22/actions @dirrm share/apps/konqueror/icons/hicolor/22x22 +@dirrm share/apps/konqueror/icons/hicolor/16x16/actions @dirrm share/apps/konqueror/icons/hicolor @dirrm share/apps/konqueror/icons @dirrm share/apps/konqueror/dirtree/remote/web @dirrm share/apps/konqueror/dirtree/remote/ftp @dirrm share/apps/konqueror/dirtree/remote @dirrm share/apps/konqueror/dirtree +@dirrm share/apps/konqueror/about @dirrm share/apps/konqueror +@dirrm share/apps/konqlistview/kpartplugins @dirrm share/apps/konqlistview +@dirrm share/apps/konqiconview/kpartplugins @dirrm share/apps/konqiconview @dirrm share/apps/kmenuedit/icons/locolor/16x16/actions @dirrm share/apps/kmenuedit/icons/locolor/16x16 @@ -2246,13 +2674,16 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kmenuedit/icons @dirrm share/apps/kmenuedit @dirrm share/apps/kio_info +@dirrm share/apps/kio_finger @dirrm share/apps/kicker/wallpapers @dirrm share/apps/kicker/tiles @dirrm share/apps/kicker/pics @dirrm share/apps/kicker/icons/locolor/16x16/actions @dirrm share/apps/kicker/icons/locolor/16x16 @dirrm share/apps/kicker/icons/locolor +@dirrm share/apps/kicker/icons/hicolor/16x16/actions @dirrm share/apps/kicker/icons +@dirrm share/apps/kicker/extensions @dirrm share/apps/kicker/applets @dirrm share/apps/kicker @dirrm share/apps/khelpcenter/plugins/Tutorials @@ -2264,6 +2695,8 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/khelpcenter/icons @dirrm share/apps/khelpcenter/en @dirrm share/apps/khelpcenter +@dirrm share/apps/kfind/icons/locolor/22x22/actions +@dirrm share/apps/keditbookmarks @dirrm share/apps/kdm/pics/users @dirrm share/apps/kdm/pics @dirrm share/apps/kdm @@ -2282,9 +2715,11 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kcontrol @dirrm share/apps/kcmlocale/pics @dirrm share/apps/kcmlocale +@dirrm share/apps/kcmkeys/standard @dirrm share/apps/kcminput @dirrm share/apps/kbookmark @dirrm share/apps/kappfinder/apps/WordProcessing +@dirrm share/apps/kappfinder/apps/Utilities/XUtilities @dirrm share/apps/kappfinder/apps/Utilities @dirrm share/apps/kappfinder/apps/Toys @dirrm share/apps/kappfinder/apps/System/ScreenSavers @@ -2293,13 +2728,45 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kappfinder/apps/Multimedia @dirrm share/apps/kappfinder/apps/Internet @dirrm share/apps/kappfinder/apps/Graphics +@dirrm share/apps/kappfinder/apps/Games @dirrm share/apps/kappfinder/apps/Editors @dirrm share/apps/kappfinder/apps/Development @dirrm share/apps/kappfinder/apps -@dirrm share/apps/kappfinder @dirrm share/apps/drkonqi/presets @dirrm share/apps/drkonqi/pics @dirrm share/apps/drkonqi/debuggers @dirrm share/apps/drkonqi @dirrm share/apps/clockapplet/pics @dirrm share/apps/clockapplet +@dirrm share/apps +@dirrm share/applnk/Utilities +@dirrm share/applnk/Toys +@dirrm share/applnk/System/ScreenSavers +@dirrm share/applnk/System +@dirrm share/applnk/Settings/WebBrowsing +@dirrm share/applnk/Settings/System +@dirrm share/applnk/Settings/Sound +@dirrm share/applnk/Settings/PowerControl +@dirrm share/applnk/Settings/Personalization +@dirrm share/applnk/Settings/Peripherals +@dirrm share/applnk/Settings/Network +@dirrm share/applnk/Settings/LookNFeel/Windows +@dirrm share/applnk/Settings/LookNFeel/Themes +@dirrm share/applnk/Settings/LookNFeel/Desktop +@dirrm share/applnk/Settings/LookNFeel +@dirrm share/applnk/Settings/Information +@dirrm share/applnk/Settings/Help +@dirrm share/applnk/Settings/FileBrowsing +@dirrm share/applnk/Settings +@dirrm share/applnk/Office +@dirrm share/applnk/Multimedia +@dirrm share/applnk/Internet +@dirrm share/applnk/Graphics +@dirrm share/applnk/Games +@dirrm share/applnk/Editors +@dirrm share/applnk/Development +@dirrm share/applnk/Applications +@dirrm share/applnk/.hidden +@dirrm share/applnk +@dirrm lib/kde2 +@dirrm include/kwin diff --git a/x11/kdebase4-runtime/Makefile b/x11/kdebase4-runtime/Makefile index e44f3da88bf8..a346796a21ee 100644 --- a/x11/kdebase4-runtime/Makefile +++ b/x11/kdebase4-runtime/Makefile @@ -6,12 +6,12 @@ # PORTNAME= kdebase -PORTVERSION= 2.0.1 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION}/distribution/tar/generic/src -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= kdeui.4:${PORTSDIR}/x11/kdelibs2 \ intl.1:${PORTSDIR}/devel/gettext diff --git a/x11/kdebase4-runtime/distinfo b/x11/kdebase4-runtime/distinfo index 80f0c4ce35f6..243923f1a5d7 100644 --- a/x11/kdebase4-runtime/distinfo +++ b/x11/kdebase4-runtime/distinfo @@ -1 +1 @@ -MD5 (kdebase-2.0.1.tar.bz2) = b138a67ae22fbda05def8e932820ac66 +MD5 (kdebase-2.1.tar.bz2) = 54264460bca895cc3e315bb49c297f8f diff --git a/x11/kdebase4-runtime/files/patch-Processlist.c b/x11/kdebase4-runtime/files/patch-Processlist.c deleted file mode 100644 index 863d56e7ec72..000000000000 --- a/x11/kdebase4-runtime/files/patch-Processlist.c +++ /dev/null @@ -1,80 +0,0 @@ ---- ksysguard/ksysguardd/FreeBSD/ProcessList.c.old Tue Jan 23 19:44:29 2001 -+++ ksysguard/ksysguardd/FreeBSD/ProcessList.c Tue Jan 23 20:19:24 2001 -@@ -186,7 +186,20 @@ - if (sysctl(mib, 4, &p, &len, NULL, 0) == -1 || !len) - return -1; - -- /* ?? */ -+#if __FreeBSD_version >= 500015 -+ /* Getting runtime process info */ -+ ps->pid = p.ki_pid; -+ ps->ppid = p.ki_ppid; -+ strcpy(ps->name, p.ki_comm); -+ ps->uid = p.ki_uid; -+ ps->gid = p.ki_pgid; -+ -+ pwent = getpwuid(ps->uid); -+ strcpy(ps->userName, pwent ? pwent->pw_name : "????"); -+ ps->priority = p.ki_priority; -+ ps->niceLevel = p.ki_nice; -+ -+#else - ps->pid = p.kp_proc.p_pid; - ps->ppid = p.kp_eproc.e_ppid; - strcpy(ps->name, p.kp_proc.p_comm); -@@ -198,16 +211,30 @@ - strcpy(ps->userName, pwent ? pwent->pw_name : "????"); - ps->priority = p.kp_proc.p_priority; - ps->niceLevel = p.kp_proc.p_nice; -+#endif - - /* this isn't usertime -- it's total time (??) */ --#if __FreeBSD_version >= 300000 -+#if __FreeBSD_version >= 500015 -+ ps->userTime = p.ki_runtime / 10000; -+#elif __FreeBSD_version >= 300000 - ps->userTime = p.kp_proc.p_runtime / 10000; - #else - ps->userTime = p.kp_proc.p_rtime.tv_sec*100+p.kp_proc.p_rtime.tv_usec/100 - #endif -+ - ps->sysTime = 0; -- ps->userLoad = p.kp_proc.p_pctcpu / 100; - ps->sysLoad = 0; -+#if __FreeBSD_version >= 500015 -+ ps->userLoad = p.ki_pctcpu / 100; -+ -+ /* memory */ -+ ps->vmSize = p.ki_size * getpagesize(); -+ -+ ps->vmRss = p.ki_rssize * getpagesize(); -+ -+ ps->status = p.ki_stat; -+#else -+ ps->userLoad = p.kp_proc.p_pctcpu / 100; - - /* memory */ - ps->vmSize = (p.kp_eproc.e_vm.vm_tsize + -@@ -216,7 +243,7 @@ - ps->vmRss = p.kp_eproc.e_vm.vm_rssize * getpagesize(); - - ps->status = p.kp_proc.p_stat; -- -+#endif - return (0); - } - -@@ -284,8 +311,13 @@ - p = malloc(len); - sysctl(mib, 3, p, &len, NULL, 0); - -+#if __FreeBSD_version >= 500015 -+ for (num = 0; num < len / sizeof(struct kinfo_proc); num++) -+ updateProcess(p[num].ki_pid); -+#else - for (num = 0; num < len / sizeof(struct kinfo_proc); num++) - updateProcess(p[num].kp_proc.p_pid); -+#endif - - cleanupProcessList(); - diff --git a/x11/kdebase4-runtime/files/patch-TEPty.C b/x11/kdebase4-runtime/files/patch-TEPty.C index 9bfd5db25ccd..796ec243efbf 100644 --- a/x11/kdebase4-runtime/files/patch-TEPty.C +++ b/x11/kdebase4-runtime/files/patch-TEPty.C @@ -1,83 +1,6 @@ ---- konsole/src/TEPty.C.orig Fri Dec 8 11:51:24 2000 -+++ konsole/src/TEPty.C Fri Dec 8 11:52:51 2000 -@@ -180,27 +180,57 @@ - // param grant: 1 to grant, 0 to revoke - // returns 1 on success 0 on fail - { -- pid_t pid = fork(); -- if (pid < 0) -- { -- return 0; -- } -- if (pid == 0) -- { -- /* We pass the master pseudo terminal as file descriptor PTY_FILENO. */ -- if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) exit(1); -- QString path = locate("exe", BASE_CHOWN); -+ pid_t pid; -+ int pstat; -+ struct sigaction ign; -+ struct sigaction intact; // interupt action -+ struct sigaction quitact; // quit action -+ sigset_t newsigblock, oldsigblock; -+ QString path; -+ -+ ign.sa_handler = SIG_IGN; -+ sigemptyset(&ign.sa_mask); -+ ign.sa_flags = 0; -+ sigaction(SIGINT, &ign, &intact); -+ sigaction(SIGQUIT, &ign, &quitact); -+ sigemptyset(&newsigblock); -+ sigaddset(&newsigblock, SIGCHLD); -+ sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock); -+ -+ switch (pid = fork()) { -+ case -1: -+ return(0); -+ break; -+ case 0: // child -+ if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) -+ exit(1); -+ path = locate("exe", BASE_CHOWN); -+ -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); - execle(path.ascii(), BASE_CHOWN, grant?"--grant":"--revoke", NULL, NULL); -- exit(1); // should not be reached -- } -- if (pid > 0) -- { int w; -- retry: -- int rc = waitpid (pid, &w, 0); -- if ((rc == -1) && (errno == EINTR)) -- goto retry; -- return (rc != -1 && WIFEXITED(w) && WEXITSTATUS(w) == 0); -+ exit(1); -+ break; -+ default: -+ do { -+ pid = waitpid(pid, &pstat, 0); -+ } while (pid == -1 && errno == EINTR); -+ break; - } -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); -+ -+ if (pid == -1) { -+ return 0; -+ } -+ else if (WIFEXITED(pstat) && (WEXITSTATUS(pstat) == 0)) { -+ return 1; -+ } -+ else { -+ return 0; -+ } - return 0; //dummy. - } - -@@ -225,7 +255,7 @@ +--- konsole/src/TEPty.C Sun Feb 18 10:28:28 2001 ++++ konsole/src/TEPty.C.new Fri Feb 23 02:55:58 2001 +@@ -238,7 +238,7 @@ #ifdef HAVE_UTEMPTER removeLineFromUtmp(ttynam, fd); #elif defined(USE_LOGIN) diff --git a/x11/kdebase4-runtime/files/patch-kdeeject b/x11/kdebase4-runtime/files/patch-kdeeject index 38c12b5eafbf..8a5870ad25ff 100644 --- a/x11/kdebase4-runtime/files/patch-kdeeject +++ b/x11/kdebase4-runtime/files/patch-kdeeject @@ -1,9 +1,9 @@ ---- kdesktop/kdeeject.orig Fri Dec 1 15:25:26 2000 -+++ kdesktop/kdeeject Fri Dec 1 15:25:33 2000 -@@ -8,7 +8,8 @@ - # kmessage, to show a message box in case of error. - # - if [ $# = 1 -a "$1" != "--help" ]; then +--- kdesktop/kdeeject Wed Dec 13 13:25:02 2000 ++++ kdesktop/kdeeject.new Fri Feb 23 02:59:54 2001 +@@ -11,7 +11,8 @@ + # TODO: On bsd, it should be 'cdcontrol -f $1 eject' + # Checking for stuff in the PATH is ugly with sh though. + # I guess this is the reason for making this a kde app... - if eject $1; then + dev=`echo $1 | sed -E -e 's#/dev/##' -e 's/([0-9])./\1/'` + if cdcontrol -f $dev eject; then diff --git a/x11/kdebase4-runtime/files/patch-konsole_grantpty.c b/x11/kdebase4-runtime/files/patch-konsole_grantpty.c deleted file mode 100644 index 889d15bdb592..000000000000 --- a/x11/kdebase4-runtime/files/patch-konsole_grantpty.c +++ /dev/null @@ -1,79 +0,0 @@ ---- konsole/src/konsole_grantpty.c.orig Sat Jun 12 07:13:31 1999 -+++ konsole/src/konsole_grantpty.c Fri Dec 8 11:54:43 2000 -@@ -31,13 +31,15 @@ - #include <string.h> - #include <sys/stat.h> - #include <unistd.h> -+#include <dirent.h> -+#include <paths.h> - - #define PTY_FILENO 3 /* keep in sync with grantpty */ - #define TTY_GROUP "tty" - - int main (int argc, char *argv[]) - { -- char* pty; -+ char* pty = NULL; - struct stat st; - struct group* p; - gid_t gid; -@@ -81,6 +83,7 @@ - - /* get slave pty name from master pty file handle in PTY_FILENO *********/ - -+#if 0 - /* Check that PTY_FILENO is a valid master pseudo terminal. */ - pty = ttyname(PTY_FILENO); /* posix */ - if (pty == NULL) -@@ -89,6 +92,42 @@ - return 1; /* FAIL */ - } - close(PTY_FILENO); -+#else -+ /* The trouble with the ifdef'd-out portion above is that ttyname() -+ ** does not work correctly when not passed a valid tty, but a pseudotty -+ ** instead. All we're doing here is finding out what the name of -+ ** the associated pty is without having to pass it in on the command line. -+ ** Nothing complex. -+ */ -+ { -+ struct stat sb; -+ struct stat dsb; -+ struct dirent *dirp; -+ static char buf[sizeof(_PATH_DEV) + MAXNAMLEN] = _PATH_DEV; -+ DIR *dp; -+ -+ pty = NULL; -+ -+ if (fstat(PTY_FILENO, &sb)) -+ return 1; /* FAIL */ -+ if ((dp = opendir(_PATH_DEV)) == NULL) -+ return 1; /* FAIL */ -+ -+ while ((dirp = readdir(dp))) { -+ if (dirp->d_fileno != sb.st_ino) -+ continue; -+ bcopy(dirp->d_name, buf + sizeof(_PATH_DEV) - 1, dirp->d_namlen+1); -+ /*fprintf(stderr, "looking at %s\n", buf);*/ -+ if (stat(buf, &dsb) || sb.st_dev != dsb.st_dev || sb.st_ino != dsb.st_ino) -+ continue; -+ pty = buf; -+ } -+ closedir(dp); -+ if (pty == NULL) -+ return 1; /* FAIL */ -+ } -+ /*fprintf(stderr, "successful at finding %s\n", pty);*/ -+#endif - - /* matches /dev/pty?? */ - if (strlen(pty) < 8 || strncmp(pty,"/dev/pty",8)) -@@ -120,6 +159,8 @@ - fprintf(stderr,"%s: cannot chmod %s.\n",argv[0],tty); perror("Reason"); - return 1; /* FAIL */ - } -+ -+ /*fprintf(stderr, "made it here\n");*/ - - return 0; /* OK */ - } diff --git a/x11/kdebase4-runtime/pkg-plist b/x11/kdebase4-runtime/pkg-plist index 7a8ef62507e2..5424c20a9cca 100644 --- a/x11/kdebase4-runtime/pkg-plist +++ b/x11/kdebase4-runtime/pkg-plist @@ -2,6 +2,7 @@ bin/appletproxy bin/chooser bin/conttest bin/drkonqi +bin/extensionproxy bin/kaccess bin/kappfinder bin/kbanner.kss @@ -21,6 +22,7 @@ bin/kdesu bin/kdesud bin/kdm bin/kdmdesktop +bin/keditbookmarks bin/keditfiletype bin/kfmclient bin/kfmexec @@ -33,25 +35,22 @@ bin/klegacyimport bin/klines.kss bin/klipper bin/klorenz.kss -bin/kman2html bin/kmatrix.kss bin/kmenuedit -bin/kmorph3d.kss bin/konqueror bin/konsole bin/konsole_grantpty bin/kpager -bin/kpipes.kss bin/kpolygon.kss bin/kpyro.kss bin/krandom.kss bin/krdb +bin/kreadconfig bin/krock.kss bin/kscience.kss bin/kslidescreen.kss bin/kslideshow.kss bin/ksmserver -bin/kspace.kss bin/ksplash bin/kstart bin/kswarm.kss @@ -59,7 +58,9 @@ bin/ksysguard bin/ksysguardd bin/ktip bin/kvm.kss +bin/kwebdesktop bin/kwin +bin/kwmtheme bin/kwrite bin/kwrited bin/kxkb @@ -75,6 +76,10 @@ include/KonquerorIface.h include/ccont.h include/kbookmark.h include/kbookmarkbar.h +include/kbookmarkdrag.h +include/kbookmarkexporter.h +include/kbookmarkimporter.h +include/kbookmarkmanager.h include/kbookmarkmenu.h include/kfileivi.h include/knewmenu.h @@ -84,61 +89,189 @@ include/konq_dirlister.h include/konq_dirpart.h include/konq_drag.h include/konq_events.h +include/konq_faviconmgr.h include/konq_fileitem.h +include/konq_historycomm.h +include/konq_historymgr.h include/konq_iconviewwidget.h include/konq_imagepreviewjob.h +include/konq_mimetyperesolver.h include/konq_operations.h +include/konq_pixmapprovider.h include/konq_popupmenu.h include/konq_propsview.h include/konq_settings.h include/konq_undo.h +include/kwin/client.h +include/kwin/options.h +include/kwin/workspace.h +include/thumbcreator.h lib/appletproxy.la lib/appletproxy.so -lib/kaccess.la -lib/kaccess.so +lib/extensionproxy.la +lib/extensionproxy.so lib/kcminit.la lib/kcminit.so lib/kcmshell.la lib/kcmshell.so lib/kcontrol.la lib/kcontrol.so +lib/kde2/htmlthumbnail.la +lib/kde2/htmlthumbnail.so +lib/kde2/imagethumbnail.la +lib/kde2/imagethumbnail.so +lib/kde2/kaccess.la +lib/kde2/kaccess.so +lib/kde2/kio_filter.la +lib/kde2/kio_filter.so +lib/kde2/kio_finger.la +lib/kde2/kio_finger.so +lib/kde2/kio_floppy.la +lib/kde2/kio_floppy.so +lib/kde2/kio_gopher.la +lib/kde2/kio_gopher.so +lib/kde2/kio_help.la +lib/kde2/kio_help.so +lib/kde2/kio_imap4.la +lib/kde2/kio_imap4.so +lib/kde2/kio_info.la +lib/kde2/kio_info.so +lib/kde2/kio_ldap.la +lib/kde2/kio_ldap.so +lib/kde2/kio_man.la +lib/kde2/kio_man.so +lib/kde2/kio_nfs.la +lib/kde2/kio_nfs.so +lib/kde2/kio_nntp.la +lib/kde2/kio_nntp.so +lib/kde2/kio_pop3.la +lib/kde2/kio_pop3.so +lib/kde2/kio_smb.la +lib/kde2/kio_smb.so +lib/kde2/kio_smtp.la +lib/kde2/kio_smtp.so +lib/kde2/kio_tar.la +lib/kde2/kio_tar.so +lib/kde2/kio_thumbnail.la +lib/kde2/kio_thumbnail.so +lib/kde2/libkcm_access.la +lib/kde2/libkcm_access.so +lib/kde2/libkcm_arts.la +lib/kde2/libkcm_arts.so +lib/kde2/libkcm_background.la +lib/kde2/libkcm_background.so +lib/kde2/libkcm_bell.la +lib/kde2/libkcm_bell.so +lib/kde2/libkcm_clock.la +lib/kde2/libkcm_clock.so +lib/kde2/libkcm_colors.la +lib/kde2/libkcm_colors.so +lib/kde2/libkcm_crypto.la +lib/kde2/libkcm_crypto.so +lib/kde2/libkcm_email.la +lib/kde2/libkcm_email.so +lib/kde2/libkcm_energy.la +lib/kde2/libkcm_energy.so +lib/kde2/libkcm_filetypes.la +lib/kde2/libkcm_filetypes.so +lib/kde2/libkcm_fonts.la +lib/kde2/libkcm_fonts.so +lib/kde2/libkcm_icons.la +lib/kde2/libkcm_icons.so +lib/kde2/libkcm_info.la +lib/kde2/libkcm_info.so +lib/kde2/libkcm_input.la +lib/kde2/libkcm_input.so +lib/kde2/libkcm_kdm.la +lib/kde2/libkcm_kdm.so +lib/kde2/libkcm_keys.la +lib/kde2/libkcm_keys.so +lib/kde2/libkcm_khotkeys.la +lib/kde2/libkcm_khotkeys.so +lib/kde2/libkcm_kicker.la +lib/kde2/libkcm_kicker.so +lib/kde2/libkcm_kio.la +lib/kde2/libkcm_kio.so +lib/kde2/libkcm_knotify.la +lib/kde2/libkcm_knotify.so +lib/kde2/libkcm_konq.la +lib/kde2/libkcm_konq.so +lib/kde2/libkcm_konqhtml.la +lib/kde2/libkcm_konqhtml.so +lib/kde2/libkcm_kurifilt.la +lib/kde2/libkcm_kurifilt.so +lib/kde2/libkcm_kwinoptions.la +lib/kde2/libkcm_kwinoptions.so +lib/kde2/libkcm_locale.la +lib/kde2/libkcm_locale.so +lib/kde2/libkcm_midi.la +lib/kde2/libkcm_midi.so +lib/kde2/libkcm_passwords.la +lib/kde2/libkcm_passwords.so +lib/kde2/libkcm_samba.la +lib/kde2/libkcm_samba.so +lib/kde2/libkcm_screensaver.la +lib/kde2/libkcm_screensaver.so +lib/kde2/libkcm_smserver.la +lib/kde2/libkcm_smserver.so +lib/kde2/libkcm_style.la +lib/kde2/libkcm_style.so +lib/kde2/libkcm_taskbar.la +lib/kde2/libkcm_taskbar.so +lib/kde2/libkcm_themes.la +lib/kde2/libkcm_themes.so +lib/kde2/libkfindpart.la +lib/kde2/libkfindpart.so +lib/kde2/libkonqiconview.la +lib/kde2/libkonqiconview.so +lib/kde2/libkonqlistview.la +lib/kde2/libkonqlistview.so +lib/kde2/libkonqtree.la +lib/kde2/libkonqtree.so +lib/kde2/libkshellcmdplugin.la +lib/kde2/libkshellcmdplugin.so +lib/kde2/libkshorturifilter.la +lib/kde2/libkshorturifilter.so +lib/kde2/libkuriikwsfilter.la +lib/kde2/libkuriikwsfilter.so +lib/kde2/libkurisearchfilter.la +lib/kde2/libkurisearchfilter.so +lib/kde2/libkwin2k.la +lib/kde2/libkwin2k.so +lib/kde2/libkwinb2.la +lib/kde2/libkwinb2.so +lib/kde2/libkwinkde1.la +lib/kde2/libkwinkde1.so +lib/kde2/libkwinkstep.la +lib/kde2/libkwinkstep.so +lib/kde2/libkwinkwmtheme.la +lib/kde2/libkwinkwmtheme.so +lib/kde2/libkwinlaptop.la +lib/kde2/libkwinlaptop.so +lib/kde2/libkwinmodernsys.la +lib/kde2/libkwinmodernsys.so +lib/kde2/libkwinriscos.la +lib/kde2/libkwinriscos.so +lib/kde2/libkwinsystem.la +lib/kde2/libkwinsystem.so +lib/kde2/textthumbnail.la +lib/kde2/textthumbnail.so lib/kdesktop.la lib/kdesktop.so +lib/keditbookmarks.la +lib/keditbookmarks.so lib/kfmclient.la lib/kfmclient.so lib/khotkeys.la lib/khotkeys.so lib/kicker.la lib/kicker.so -lib/kio_gopher.la -lib/kio_gopher.so -lib/kio_gzip.la -lib/kio_gzip.so -lib/kio_help.la -lib/kio_help.so -lib/kio_info.la -lib/kio_info.so -lib/kio_man.la -lib/kio_man.so -lib/kio_nfs.la -lib/kio_nfs.so -lib/kio_nntp.la -lib/kio_nntp.so -lib/kio_pop3.la -lib/kio_pop3.so -lib/kio_smb.la -lib/kio_smb.so -lib/kio_smtp.la -lib/kio_smtp.so -lib/kio_tar.la -lib/kio_tar.so lib/klegacyimport.la lib/klegacyimport.so lib/klipper.la lib/klipper.so lib/kmenuedit.la lib/kmenuedit.so -lib/kmenuedit.so.0 lib/konqueror.la lib/konqueror.so lib/konsole.la @@ -153,86 +286,29 @@ lib/kxkb.la lib/kxkb.so lib/kxmlrpcd.la lib/kxmlrpcd.so +lib/libKdmGreet.la +lib/libKdmGreet.so lib/libccont.a +lib/libchildpanelextension.la +lib/libchildpanelextension.so +lib/libchildpanelextension.so.1 lib/libclockapplet.la lib/libclockapplet.so lib/libclockapplet.so.1 +lib/libdockbarextension.la +lib/libdockbarextension.so +lib/libdockbarextension.so.1 lib/libhtmlsearch.la lib/libhtmlsearch.so -lib/libkcm_access.la -lib/libkcm_access.so -lib/libkcm_arts.la -lib/libkcm_arts.so -lib/libkcm_background.la -lib/libkcm_background.so -lib/libkcm_bell.la -lib/libkcm_bell.so -lib/libkcm_clock.la -lib/libkcm_clock.so -lib/libkcm_colors.la -lib/libkcm_colors.so -lib/libkcm_crypto.la -lib/libkcm_crypto.so -lib/libkcm_email.la -lib/libkcm_email.so -lib/libkcm_energy.la -lib/libkcm_energy.so -lib/libkcm_filetypes.la -lib/libkcm_filetypes.so -lib/libkcm_fonts.la -lib/libkcm_fonts.so +lib/libkasbarextension.la +lib/libkasbarextension.so +lib/libkasbarextension.so.1 lib/libkcm_htmlsearch.la lib/libkcm_htmlsearch.so -lib/libkcm_icons.la -lib/libkcm_icons.so -lib/libkcm_iconthemes.la -lib/libkcm_iconthemes.so -lib/libkcm_info.la -lib/libkcm_info.so -lib/libkcm_input.la -lib/libkcm_input.so -lib/libkcm_kdm.la -lib/libkcm_kdm.so -lib/libkcm_keys.la -lib/libkcm_keys.so -lib/libkcm_khotkeys.la -lib/libkcm_khotkeys.so -lib/libkcm_kicker.la -lib/libkcm_kicker.so -lib/libkcm_kio.la -lib/libkcm_kio.so -lib/libkcm_knotify.la -lib/libkcm_knotify.so -lib/libkcm_konq.la -lib/libkcm_konq.so -lib/libkcm_konqhtml.la -lib/libkcm_konqhtml.so -lib/libkcm_kurifilt.la -lib/libkcm_kurifilt.so -lib/libkcm_kwindesktop.la -lib/libkcm_kwindesktop.so -lib/libkcm_kwinmouse.la -lib/libkcm_kwinmouse.so -lib/libkcm_kwinoptions.la -lib/libkcm_kwinoptions.so +lib/libkcm_ioslaveinfo.la +lib/libkcm_ioslaveinfo.so lib/libkcm_layout.la lib/libkcm_layout.so -lib/libkcm_locale.la -lib/libkcm_locale.so -lib/libkcm_midi.la -lib/libkcm_midi.so -lib/libkcm_passwords.la -lib/libkcm_passwords.so -lib/libkcm_samba.la -lib/libkcm_samba.so -lib/libkcm_screensaver.la -lib/libkcm_screensaver.so -lib/libkcm_style.la -lib/libkcm_style.so -lib/libkcm_taskbar.la -lib/libkcm_taskbar.so -lib/libkcm_virtualdesktops.la -lib/libkcm_virtualdesktops.so lib/libkcm_xmlrpcd.la lib/libkcm_xmlrpcd.so lib/libkhelpcenter.la @@ -244,71 +320,60 @@ lib/libkminipagerapplet.so.1 lib/libkonq.la lib/libkonq.so lib/libkonq.so.4 -lib/libkonqdirtree.la -lib/libkonqdirtree.so -lib/libkonqiconview.la -lib/libkonqiconview.so -lib/libkonqlistview.la -lib/libkonqlistview.so +lib/libkonqaboutpage.la +lib/libkonqaboutpage.so lib/libkonsolepart.la lib/libkonsolepart.so lib/libkrunapplet.la lib/libkrunapplet.so lib/libkrunapplet.so.1 -lib/libkshorturifilter.la -lib/libkshorturifilter.so -lib/libkshorturifilter.so.1 +lib/libksysguardapplet.la +lib/libksysguardapplet.so +lib/libksysguardapplet.so.1 lib/libksystemtrayapplet.la lib/libksystemtrayapplet.so lib/libksystemtrayapplet.so.1 lib/libktaskbarapplet.la lib/libktaskbarapplet.so lib/libktaskbarapplet.so.1 -lib/libkuriikwsfilter.la -lib/libkuriikwsfilter.so -lib/libkuriikwsfilter.so.1 -lib/libkurisearchfilter.la -lib/libkurisearchfilter.so -lib/libkurisearchfilter.so.1 -lib/libkwinb2.la -lib/libkwinb2.so lib/libkwindefault.la lib/libkwindefault.so lib/libkwindefault.so.0 -lib/libkwinkde1.la -lib/libkwinkde1.so -lib/libkwinkstep.la -lib/libkwinkstep.so -lib/libkwinlaptop.la -lib/libkwinlaptop.so -lib/libkwinmodernsys.la -lib/libkwinmodernsys.so -lib/libkwinriscos.la -lib/libkwinriscos.so -lib/libkwinsystem.la -lib/libkwinsystem.so lib/libkwritepart.la lib/libkwritepart.so +lib/libnaughtyapplet.la +lib/libnaughtyapplet.so +lib/libnaughtyapplet.so.1 lib/libquicklauncher.la lib/libquicklauncher.so lib/libquicklauncher.so.1 -lib/libsmb++.la -lib/libsmb++.so -lib/libsmb++.so.0 +lib/libtaskbarextension.la +lib/libtaskbarextension.so +lib/libtaskbarextension.so.1 +lib/libtaskmanager.la +lib/libtaskmanager.so +lib/libtaskmanager.so.1 share/applnk/.directory share/applnk/.hidden/konqfilemgr.desktop share/applnk/Applications/.directory -share/applnk/Development/designer.desktop +share/applnk/Development/.directory share/applnk/Editors/.directory +share/applnk/Editors/gvim.desktop share/applnk/Editors/kwrite.desktop +share/applnk/Editors/xedit.desktop share/applnk/Games/.directory share/applnk/Graphics/.directory +share/applnk/Graphics/gimp.desktop share/applnk/Help.desktop share/applnk/Home.desktop share/applnk/Internet/.directory +share/applnk/Internet/keditbookmarks.desktop share/applnk/Internet/konqbrowser.desktop +share/applnk/Internet/netscape.desktop share/applnk/KControl.desktop share/applnk/Multimedia/.directory +share/applnk/Multimedia/aviplay.desktop +share/applnk/Multimedia/xawtv.desktop share/applnk/Office/.directory share/applnk/Settings/.directory share/applnk/Settings/FileBrowsing/.directory @@ -321,6 +386,7 @@ share/applnk/Settings/Information/devices.desktop share/applnk/Settings/Information/dma.desktop share/applnk/Settings/Information/interrupts.desktop share/applnk/Settings/Information/ioports.desktop +share/applnk/Settings/Information/ioslaveinfo.desktop share/applnk/Settings/Information/memory.desktop share/applnk/Settings/Information/partitions.desktop share/applnk/Settings/Information/pci.desktop @@ -330,28 +396,29 @@ share/applnk/Settings/Information/smbstatus.desktop share/applnk/Settings/Information/sound.desktop share/applnk/Settings/Information/xserver.desktop share/applnk/Settings/LookNFeel/.directory -share/applnk/Settings/LookNFeel/Desktop/.directory share/applnk/Settings/LookNFeel/Desktop/background.desktop share/applnk/Settings/LookNFeel/Desktop/borders.desktop share/applnk/Settings/LookNFeel/Desktop/desktop.desktop share/applnk/Settings/LookNFeel/Desktop/virtualdesktops.desktop -share/applnk/Settings/LookNFeel/Panel/.directory -share/applnk/Settings/LookNFeel/Themes/.directory share/applnk/Settings/LookNFeel/Themes/iconthemes.desktop share/applnk/Settings/LookNFeel/Themes/style.desktop -share/applnk/Settings/LookNFeel/Windows/.directory share/applnk/Settings/LookNFeel/Windows/actions.desktop -share/applnk/Settings/LookNFeel/Windows/mouse.desktop +share/applnk/Settings/LookNFeel/Windows/kwinmouse.desktop +share/applnk/Settings/LookNFeel/background.desktop share/applnk/Settings/LookNFeel/colors.desktop +share/applnk/Settings/LookNFeel/desktop.desktop share/applnk/Settings/LookNFeel/fonts.desktop share/applnk/Settings/LookNFeel/icons.desktop share/applnk/Settings/LookNFeel/kcmnotify.desktop share/applnk/Settings/LookNFeel/kcmtaskbar.desktop share/applnk/Settings/LookNFeel/keys.desktop +share/applnk/Settings/LookNFeel/kthememgr.desktop +share/applnk/Settings/LookNFeel/kwinoptions.desktop share/applnk/Settings/LookNFeel/panel.desktop share/applnk/Settings/LookNFeel/screensaver.desktop +share/applnk/Settings/LookNFeel/style.desktop +share/applnk/Settings/LookNFeel/virtualdesktops.desktop share/applnk/Settings/Network/.directory -share/applnk/Settings/Network/smb.desktop share/applnk/Settings/Peripherals/.directory share/applnk/Settings/Peripherals/keyboard.desktop share/applnk/Settings/Peripherals/mouse.desktop @@ -370,28 +437,24 @@ share/applnk/Settings/Sound/bell.desktop share/applnk/Settings/Sound/midi.desktop share/applnk/Settings/System/.directory share/applnk/Settings/System/clock.desktop +share/applnk/Settings/System/kcmsmserver.desktop share/applnk/Settings/System/kdm.desktop share/applnk/Settings/WebBrowsing/.directory share/applnk/Settings/WebBrowsing/cookies.desktop share/applnk/Settings/WebBrowsing/ebrowsing.desktop share/applnk/Settings/WebBrowsing/konqhtml.desktop share/applnk/Settings/WebBrowsing/proxy.desktop +share/applnk/Settings/WebBrowsing/smb.desktop share/applnk/Settings/WebBrowsing/useragent.desktop share/applnk/System/.directory -share/applnk/System/Arrange.desktop share/applnk/System/ScreenSavers/.directory -share/applnk/System/ScreenSavers/KAttration.desktop share/applnk/System/ScreenSavers/KBanner.desktop share/applnk/System/ScreenSavers/KBlankscreen.desktop share/applnk/System/ScreenSavers/KBlob.desktop share/applnk/System/ScreenSavers/KBouboule.desktop share/applnk/System/ScreenSavers/KBsod.desktop -share/applnk/System/ScreenSavers/KFlame.desktop -share/applnk/System/ScreenSavers/KForest.desktop share/applnk/System/ScreenSavers/KHop.desktop -share/applnk/System/ScreenSavers/KLaser.desktop share/applnk/System/ScreenSavers/KLines.desktop -share/applnk/System/ScreenSavers/KLissie.desktop share/applnk/System/ScreenSavers/KLorenz.desktop share/applnk/System/ScreenSavers/KMatrix.desktop share/applnk/System/ScreenSavers/KMorph3D.desktop @@ -403,12 +466,14 @@ share/applnk/System/ScreenSavers/KRock.desktop share/applnk/System/ScreenSavers/KScience.desktop share/applnk/System/ScreenSavers/KSlidescreen.desktop share/applnk/System/ScreenSavers/KSlideshow.desktop -share/applnk/System/ScreenSavers/KSlip.desktop share/applnk/System/ScreenSavers/KSpace.desktop share/applnk/System/ScreenSavers/KSwarm.desktop share/applnk/System/ScreenSavers/KVm.desktop +share/applnk/System/ScreenSavers/Worm.desktop share/applnk/System/kappfinder.desktop share/applnk/System/kfmclient.desktop +share/applnk/System/kfmclient_dir.desktop +share/applnk/System/kfmclient_html.desktop share/applnk/System/klegacyimport.desktop share/applnk/System/kmenuedit.desktop share/applnk/System/konquerorsu.desktop @@ -417,15 +482,19 @@ share/applnk/System/konsolesu.desktop share/applnk/System/ksysguard.desktop share/applnk/Toys/.directory share/applnk/Toys/ktip.desktop +share/applnk/Toys/xeyes.desktop share/applnk/Utilities/.directory +share/applnk/Utilities/XUtilities/xcalc.desktop +share/applnk/Utilities/XUtilities/xclipboard.desktop +share/applnk/Utilities/XUtilities/xclock.desktop +share/applnk/Utilities/XUtilities/xconsole.desktop +share/applnk/Utilities/XUtilities/xload.desktop +share/applnk/Utilities/XUtilities/xmag.desktop +share/applnk/Utilities/XUtilities/xterm.desktop share/applnk/Utilities/klipper.desktop share/applnk/Utilities/kpager.desktop -share/applnk/Utilities/passwd.desktop -share/applnk/Utilities/xclipboard.desktop -share/applnk/Utilities/xclock.desktop -share/applnk/Utilities/xconsole.desktop -share/applnk/Utilities/xmag.desktop -share/applnk/Utilities/xterm.desktop +share/applnk/WordProcessing/gv.desktop +share/applnk/WordProcessing/xpdf.desktop share/apps/clockapplet/pics/lcd.png share/apps/drkonqi/debuggers/gdbrc share/apps/drkonqi/pics/konqi.png @@ -443,6 +512,13 @@ share/apps/kappfinder/apps/Editors/lemacs.desktop share/apps/kappfinder/apps/Editors/nedit.desktop share/apps/kappfinder/apps/Editors/xedit.desktop share/apps/kappfinder/apps/Editors/xemacs.desktop +share/apps/kappfinder/apps/Games/.directory +share/apps/kappfinder/apps/Games/Clanbomber.desktop +share/apps/kappfinder/apps/Games/Qmamecat.desktop +share/apps/kappfinder/apps/Games/defendguin.desktop +share/apps/kappfinder/apps/Games/freeciv.desktop +share/apps/kappfinder/apps/Games/penguin-command.desktop +share/apps/kappfinder/apps/Games/xshipwars.desktop share/apps/kappfinder/apps/Graphics/.directory share/apps/kappfinder/apps/Graphics/gimp.desktop share/apps/kappfinder/apps/Graphics/xfig.desktop @@ -451,6 +527,8 @@ share/apps/kappfinder/apps/Graphics/xv.desktop share/apps/kappfinder/apps/Internet/.directory share/apps/kappfinder/apps/Internet/arena.desktop share/apps/kappfinder/apps/Internet/coolmail.desktop +share/apps/kappfinder/apps/Internet/ethereal.desktop +share/apps/kappfinder/apps/Internet/ncftp.desktop share/apps/kappfinder/apps/Internet/netscape.desktop share/apps/kappfinder/apps/Internet/pine.desktop share/apps/kappfinder/apps/Internet/xbiff.desktop @@ -458,7 +536,11 @@ share/apps/kappfinder/apps/Internet/xchat.desktop share/apps/kappfinder/apps/Internet/xfmail.desktop share/apps/kappfinder/apps/Internet/xftp.desktop share/apps/kappfinder/apps/Multimedia/.directory +share/apps/kappfinder/apps/Multimedia/alevt.desktop +share/apps/kappfinder/apps/Multimedia/aviplay.desktop +share/apps/kappfinder/apps/Multimedia/gtv.desktop share/apps/kappfinder/apps/Multimedia/realplayer.desktop +share/apps/kappfinder/apps/Multimedia/xawtv.desktop share/apps/kappfinder/apps/Multimedia/xmms.desktop share/apps/kappfinder/apps/Office/.directory share/apps/kappfinder/apps/Office/Applix.desktop @@ -531,15 +613,14 @@ share/apps/kappfinder/apps/Toys/.directory share/apps/kappfinder/apps/Toys/xeyes.desktop share/apps/kappfinder/apps/Toys/xpinguin.desktop share/apps/kappfinder/apps/Utilities/.directory -share/apps/kappfinder/apps/Utilities/jar.desktop -share/apps/kappfinder/apps/Utilities/passwd.desktop -share/apps/kappfinder/apps/Utilities/xcalc.desktop -share/apps/kappfinder/apps/Utilities/xclipboard.desktop -share/apps/kappfinder/apps/Utilities/xclock.desktop -share/apps/kappfinder/apps/Utilities/xconsole.desktop -share/apps/kappfinder/apps/Utilities/xload.desktop -share/apps/kappfinder/apps/Utilities/xmag.desktop -share/apps/kappfinder/apps/Utilities/xterm.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/.directory +share/apps/kappfinder/apps/Utilities/XUtilities/xcalc.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclipboard.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclock.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xconsole.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xload.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xmag.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xterm.desktop share/apps/kappfinder/apps/WordProcessing/.directory share/apps/kappfinder/apps/WordProcessing/WordPerfect.desktop share/apps/kappfinder/apps/WordProcessing/WordPerfect2000.desktop @@ -547,10 +628,12 @@ share/apps/kappfinder/apps/WordProcessing/acroread.desktop share/apps/kappfinder/apps/WordProcessing/ghostview.desktop share/apps/kappfinder/apps/WordProcessing/gv.desktop share/apps/kappfinder/apps/WordProcessing/lyx.desktop +share/apps/kappfinder/apps/WordProcessing/pybliographic.desktop share/apps/kappfinder/apps/WordProcessing/xdvi.desktop share/apps/kappfinder/apps/WordProcessing/xpdf.desktop share/apps/kbookmark/directory_bookmarkbar.desktop share/apps/kcminput/cursor_large.pcf.gz +share/apps/kcmkeys/standard/Unix.kksrc share/apps/kcmlocale/pics/background.png share/apps/kcontrol/kcontrolui.rc share/apps/kcontrol/pics/energybig.png @@ -560,8 +643,10 @@ share/apps/kcontrol/pics/mini-world.png share/apps/kcontrol/pics/monitor.png share/apps/kcontrol/pics/onlyone.png share/apps/kcontrol/pics/overlapping.png +share/apps/kcontrol/pics/part1.png +share/apps/kcontrol/pics/part2.png +share/apps/kcontrol/pics/part3.png share/apps/kcontrol/pics/play.png -share/apps/kcontrol/pics/wizard.png share/apps/kdcop/kdcopui.rc share/apps/kdesktop/DesktopLinks/Home.desktop share/apps/kdesktop/directory.autostart @@ -586,8 +671,10 @@ share/apps/kdesktop/pics/kde2.xbm share/apps/kdesktop/pics/ksslogo.png share/apps/kdesktop/pics/splash.png share/apps/kdesktop/pics/splash2.png +share/apps/kdesktop/programs/kwebdesktop.desktop share/apps/kdesktop/programs/xearth.desktop share/apps/kdesktop/programs/xglobe.desktop +share/apps/kdesktop/programs/xplanet.desktop share/apps/kdewizard/pics/wizard_small.png share/apps/kdewizard/tips share/apps/kdisplay/app-defaults/AAAAAAGeneral.ad @@ -605,6 +692,8 @@ share/apps/kdisplay/app-defaults/XCalc.ad share/apps/kdisplay/app-defaults/XOsview.ad share/apps/kdisplay/app-defaults/XTerm.ad share/apps/kdisplay/app-defaults/XV.ad +share/apps/kdisplay/app-defaults/Xawtv.ad +share/apps/kdisplay/app-defaults/Xpdf.ad share/apps/kdisplay/color-schemes/AtlasGreen.kcsrc share/apps/kdisplay/color-schemes/BeOS.kcsrc share/apps/kdisplay/color-schemes/BlueSlate.kcsrc @@ -627,15 +716,21 @@ share/apps/kdm/pics/users/default.png share/apps/kdm/pics/users/default2.png share/apps/kdm/pics/users/root.png share/apps/kdm/pics/users/root2.png +share/apps/keditbookmarks/keditbookmarksui.rc +share/apps/kfind/icons/locolor/22x22/actions/archive.png +share/apps/kfind/icons/locolor/22x22/actions/delete.png +share/apps/kfind/icons/locolor/22x22/actions/idea.png +share/apps/kfind/icons/locolor/22x22/actions/info.png +share/apps/kfind/icons/locolor/22x22/actions/openfile.png +share/apps/kfind/icons/locolor/22x22/actions/save.png +share/apps/kfind/icons/locolor/22x22/actions/search.png share/apps/khelpcenter/en/bad_words share/apps/khelpcenter/en/long.html share/apps/khelpcenter/en/nomatch.html share/apps/khelpcenter/en/short.html share/apps/khelpcenter/en/syntax.html share/apps/khelpcenter/en/wrapper.html -share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook.png share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook_open.png -share/apps/khelpcenter/icons/locolor/16x16/apps/helpdoc.png share/apps/khelpcenter/pics/checked.xpm share/apps/khelpcenter/pics/star.png share/apps/khelpcenter/pics/star_blank.png @@ -646,9 +741,16 @@ share/apps/khelpcenter/plugins/Tutorials/visualdict.desktop share/apps/kicker/applets/clockapplet.desktop share/apps/kicker/applets/kminipagerapplet.desktop share/apps/kicker/applets/krunapplet.desktop +share/apps/kicker/applets/ksysguardapplet.desktop share/apps/kicker/applets/ksystemtrayapplet.desktop share/apps/kicker/applets/ktaskbarapplet.desktop +share/apps/kicker/applets/naughtyapplet.desktop share/apps/kicker/applets/quicklauncher.desktop +share/apps/kicker/extensions/childpanelextension.desktop +share/apps/kicker/extensions/dockbarextension.desktop +share/apps/kicker/extensions/kasbarextension.desktop +share/apps/kicker/extensions/taskbarextension.desktop +share/apps/kicker/icons/hicolor/16x16/actions/modified.png share/apps/kicker/icons/locolor/16x16/actions/modified.png share/apps/kicker/pics/disk1.png share/apps/kicker/pics/disk2.png @@ -761,6 +863,8 @@ share/apps/kicker/tiles/solid_tgri_tiny_up.png share/apps/kicker/wallpapers/deck_plate.png share/apps/kicker/wallpapers/green_line.png share/apps/kicker/wallpapers/rail.png +share/apps/kio_finger/kio_finger.css +share/apps/kio_finger/kio_finger.pl share/apps/kio_info/kde-info2html share/apps/kio_info/kde-info2html.conf share/apps/kmenuedit/icons/hicolor/22x22/actions/menu_new.png @@ -769,17 +873,46 @@ share/apps/kmenuedit/icons/locolor/16x16/actions/menu_new.png share/apps/kmenuedit/kmenueditui.rc share/apps/konqiconview/konq_iconview.rc share/apps/konqiconview/konq_multicolumnview.rc +share/apps/konqiconview/kpartplugins/kshellcmdplugin.rc share/apps/konqlistview/konq_detailedlistview.rc share/apps/konqlistview/konq_textview.rc share/apps/konqlistview/konq_treeview.rc +share/apps/konqlistview/kpartplugins/kshellcmdplugin.rc +share/apps/konqueror/about/back.png +share/apps/konqueror/about/background.png +share/apps/konqueror/about/bgtable.png +share/apps/konqueror/about/gohome.png +share/apps/konqueror/about/history.png +share/apps/konqueror/about/intro.html +share/apps/konqueror/about/kdelogo2.png +share/apps/konqueror/about/konq.css +share/apps/konqueror/about/konqueror.png +share/apps/konqueror/about/lines.png +share/apps/konqueror/about/lines2.png +share/apps/konqueror/about/locationbar_erase.png +share/apps/konqueror/about/more.png +share/apps/konqueror/about/openterm.png +share/apps/konqueror/about/pointers.gif +share/apps/konqueror/about/shadow1.png +share/apps/konqueror/about/specs.html +share/apps/konqueror/about/tips.html +share/apps/konqueror/about/view_left_right.png +share/apps/konqueror/about/viewmag.png +share/apps/konqueror/about/window_fullscreen.png +share/apps/konqueror/dirtree/bookmarks.desktop +share/apps/konqueror/dirtree/history.desktop share/apps/konqueror/dirtree/home.desktop share/apps/konqueror/dirtree/remote/.directory share/apps/konqueror/dirtree/remote/ftp/.directory share/apps/konqueror/dirtree/remote/ftp/kde_ftp.desktop share/apps/konqueror/dirtree/remote/web/.directory share/apps/konqueror/dirtree/remote/web/kde_web.desktop -share/apps/konqueror/dirtree/remote/windows.desktop share/apps/konqueror/dirtree/root.desktop +share/apps/konqueror/icons/hicolor/16x16/actions/remove_view.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_bottom.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_left_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_top_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/remove_view.png share/apps/konqueror/icons/hicolor/22x22/actions/view_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/view_left_right.png @@ -796,7 +929,6 @@ share/apps/konqueror/icons/locolor/16x16/actions/kde3.png share/apps/konqueror/icons/locolor/16x16/actions/kde4.png share/apps/konqueror/icons/locolor/16x16/actions/kde5.png share/apps/konqueror/icons/locolor/16x16/actions/kde6.png -share/apps/konqueror/icons/locolor/16x16/actions/locationbar_erase.png share/apps/konqueror/icons/locolor/16x16/actions/remove_view.png share/apps/konqueror/icons/locolor/16x16/actions/view_bottom.png share/apps/konqueror/icons/locolor/16x16/actions/view_left_right.png @@ -808,13 +940,17 @@ share/apps/konqueror/pics/indicator_connect.png share/apps/konqueror/pics/indicator_empty.png share/apps/konqueror/pics/indicator_noconnect.png share/apps/konqueror/pics/indicator_viewactive.png +share/apps/konqueror/pics/thumbnailfont_7x4.png share/apps/konqueror/profiles/filemanagement +share/apps/konqueror/profiles/filepreview +share/apps/konqueror/profiles/midnightcommander share/apps/konqueror/profiles/webbrowsing share/apps/konqueror/tiles/bluemorning.png share/apps/konqueror/tiles/canvas.png share/apps/konqueror/tiles/checker.png share/apps/konqueror/tiles/cubic.png share/apps/konqueror/tiles/kde4ever.png +share/apps/konqueror/tiles/kenwimer.png share/apps/konqueror/tiles/noise.png share/apps/konqueror/tiles/paper_flieder.png share/apps/konqueror/tiles/punika_attack.png @@ -850,12 +986,18 @@ share/apps/konsole/syscolor.schema share/apps/konsole/vim.schema share/apps/konsole/vt100.keytab share/apps/konsole/vt420pc.keytab +share/apps/konsole/x11r5.keytab share/apps/kscreensaver/kscience-small.gif share/apps/kscreensaver/kscience.gif +share/apps/ksplash/pics/locolor/splash_active_bar.png +share/apps/ksplash/pics/locolor/splash_bottom.png +share/apps/ksplash/pics/locolor/splash_inactive_bar.png +share/apps/ksplash/pics/locolor/splash_top.png share/apps/ksplash/pics/splash_active_bar.png share/apps/ksplash/pics/splash_bottom.png share/apps/ksplash/pics/splash_inactive_bar.png share/apps/ksplash/pics/splash_top.png +share/apps/ksysguard/KSysGuardApplet.xml share/apps/ksysguard/ProcessTable.sgrd share/apps/ksysguard/SystemLoad.sgrd share/apps/ksysguard/icons/locolor/16x16/apps/X.png @@ -906,6 +1048,13 @@ share/apps/ksysguard/icons/locolor/16x16/apps/xntpd.png share/apps/ksysguard/icons/locolor/16x16/apps/xterm.png share/apps/ksysguard/icons/locolor/16x16/apps/ypbind.png share/apps/ksysguard/ksysguardui.rc +share/apps/kthememgr/Themes/Default.ktheme +share/apps/kthememgr/Themes/Eclipse.ktheme +share/apps/kthememgr/Themes/MGBreizh.ktheme +share/apps/kthememgr/Themes/Nostalgy.ktheme +share/apps/kthememgr/Themes/Template.themerc +share/apps/kthememgr/Themes/Wood.ktheme +share/apps/kthememgr/theme.mappings share/apps/kwin/b2.desktop share/apps/kwin/eventsrc share/apps/kwin/kde.desktop @@ -928,12 +1077,19 @@ share/apps/kwin/pics/pinup.png share/apps/kwin/pics/unknown.png share/apps/kwin/riscos.desktop share/apps/kwin/system.desktop +share/apps/kwin/win2k.desktop share/apps/kwrite/kwrite_browser.rc share/apps/kwrite/kwrite_shell.rc share/apps/kwrite/kwriteui.rc -share/apps/quickbrowser/Home.desktop -share/apps/quickbrowser/KDE.desktop -share/apps/quickbrowser/Root.desktop +share/apps/kwrite/syntax.xml +share/apps/naughtyapplet/pics/naughty-happy.png +share/apps/naughtyapplet/pics/naughty-sad.png +share/autostart/kdesktop.desktop +share/autostart/khotkeys.desktop +share/autostart/klipper.desktop +share/autostart/ktip.desktop +share/autostart/kwrited.desktop +share/autostart/panel.desktop share/config/antrc share/config/attractionrc share/config/bouboulerc @@ -955,6 +1111,8 @@ share/config/gravrc share/config/halorc share/config/imsmaprc share/config/interferencerc +share/config/kdesktop_custom_menu1 +share/config/kdesktop_custom_menu2 share/config/kdmrc share/config/klipperrc share/config/konsolerc @@ -991,12 +1149,9 @@ share/doc/HTML/en/kcontrol/email.html share/doc/HTML/en/kcontrol/energy.html share/doc/HTML/en/kcontrol/file-assoc.html share/doc/HTML/en/kcontrol/file-manager.html -share/doc/HTML/en/kcontrol/kfileman1.png -share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/fonts.html share/doc/HTML/en/kcontrol/help-index.html share/doc/HTML/en/kcontrol/icons.html -share/doc/HTML/en/kcontrol/iconstyle.html share/doc/HTML/en/kcontrol/index.docbook share/doc/HTML/en/kcontrol/index.html share/doc/HTML/en/kcontrol/interrupts.html @@ -1034,7 +1189,6 @@ share/doc/HTML/en/kcontrol/kcmkbd.docbook share/doc/HTML/en/kcontrol/kcmkblayout.docbook share/doc/HTML/en/kcontrol/kcmkbrowse.docbook share/doc/HTML/en/kcontrol/kcmkeybind.docbook -share/doc/HTML/en/kcontrol/kcmkeys.docbook share/doc/HTML/en/kcontrol/kcmlocate.docbook share/doc/HTML/en/kcontrol/kcmloginmanage.docbook share/doc/HTML/en/kcontrol/kcmlowbatcrit.docbook @@ -1044,6 +1198,7 @@ share/doc/HTML/en/kcontrol/kcmmidi.docbook share/doc/HTML/en/kcontrol/kcmmixer.docbook share/doc/HTML/en/kcontrol/kcmmouse.docbook share/doc/HTML/en/kcontrol/kcmmousebeh.docbook +share/doc/HTML/en/kcontrol/kcmnetscapeplugins.docbook share/doc/HTML/en/kcontrol/kcmnumbername.docbook share/doc/HTML/en/kcontrol/kcmpanel.docbook share/doc/HTML/en/kcontrol/kcmpartitioninfo.docbook @@ -1055,6 +1210,7 @@ share/doc/HTML/en/kcontrol/kcmprocinfo.docbook share/doc/HTML/en/kcontrol/kcmproxie.docbook share/doc/HTML/en/kcontrol/kcmscnsave.docbook share/doc/HTML/en/kcontrol/kcmscsiinfo.docbook +share/doc/HTML/en/kcontrol/kcmsessionman.docbook share/doc/HTML/en/kcontrol/kcmsmbstat.docbook share/doc/HTML/en/kcontrol/kcmsndinfo.docbook share/doc/HTML/en/kcontrol/kcmsndsrv.docbook @@ -1066,6 +1222,8 @@ share/doc/HTML/en/kcontrol/kcmuseragent.docbook share/doc/HTML/en/kcontrol/kcmwinshare.docbook share/doc/HTML/en/kcontrol/kcmxservinfo.docbook share/doc/HTML/en/kcontrol/key-bindings.html +share/doc/HTML/en/kcontrol/kfileman1.png +share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/konq-browsing.html share/doc/HTML/en/kcontrol/laptop.html share/doc/HTML/en/kcontrol/locale.html @@ -1079,7 +1237,7 @@ share/doc/HTML/en/kcontrol/module.html share/doc/HTML/en/kcontrol/modules.html share/doc/HTML/en/kcontrol/mouse-behav.html share/doc/HTML/en/kcontrol/mouse.html -share/doc/HTML/en/kcontrol/numbername.html +share/doc/HTML/en/kcontrol/nsplugins.html share/doc/HTML/en/kcontrol/panel.html share/doc/HTML/en/kcontrol/partitions.html share/doc/HTML/en/kcontrol/passwords.html @@ -1092,11 +1250,11 @@ share/doc/HTML/en/kcontrol/sambastatus.html share/doc/HTML/en/kcontrol/screensaver.html share/doc/HTML/en/kcontrol/screenshot.png share/doc/HTML/en/kcontrol/scsi.html +share/doc/HTML/en/kcontrol/sessions.html share/doc/HTML/en/kcontrol/sndserver.html share/doc/HTML/en/kcontrol/soundinfo.html share/doc/HTML/en/kcontrol/style.html share/doc/HTML/en/kcontrol/sys-notify.html -share/doc/HTML/en/kcontrol/talk.html share/doc/HTML/en/kcontrol/taskbar.html share/doc/HTML/en/kcontrol/user-agent.html share/doc/HTML/en/kcontrol/windows-shares.html @@ -1135,6 +1293,8 @@ share/doc/HTML/en/kdm/lilo.html share/doc/HTML/en/kdm/locale.html share/doc/HTML/en/kdm/other-information.html share/doc/HTML/en/khelpcenter/.anchors +share/doc/HTML/en/khelpcenter/background.png +share/doc/HTML/en/khelpcenter/bgtable.png share/doc/HTML/en/khelpcenter/common share/doc/HTML/en/khelpcenter/contact-developers.html share/doc/HTML/en/khelpcenter/contact-more-information.html @@ -1144,16 +1304,6 @@ share/doc/HTML/en/khelpcenter/contact.docbook share/doc/HTML/en/khelpcenter/credits.html share/doc/HTML/en/khelpcenter/faq/.anchors share/doc/HTML/en/khelpcenter/faq/TODO -share/doc/HTML/en/khelpcenter/faq/index.docbook -share/doc/HTML/en/khelpcenter/faq/index.html -share/doc/HTML/en/khelpcenter/help-system-user-manual.html -share/doc/HTML/en/khelpcenter/help.docbook -share/doc/HTML/en/khelpcenter/index.docbook -share/doc/HTML/en/khelpcenter/index.html -share/doc/HTML/en/khelpcenter/interface-basics.html -share/doc/HTML/en/khelpcenter/invoking-help.html -share/doc/HTML/en/khelpcenter/links.docbook -share/doc/HTML/en/khelpcenter/no-html.html share/doc/HTML/en/khelpcenter/faq/about.html share/doc/HTML/en/khelpcenter/faq/applications.html share/doc/HTML/en/khelpcenter/faq/common @@ -1163,6 +1313,8 @@ share/doc/HTML/en/khelpcenter/faq/credits.html share/doc/HTML/en/khelpcenter/faq/desktop.html share/doc/HTML/en/khelpcenter/faq/filemanager.html share/doc/HTML/en/khelpcenter/faq/getting-kde.html +share/doc/HTML/en/khelpcenter/faq/index.docbook +share/doc/HTML/en/khelpcenter/faq/index.html share/doc/HTML/en/khelpcenter/faq/install.html share/doc/HTML/en/khelpcenter/faq/introduction.html share/doc/HTML/en/khelpcenter/faq/misc.html @@ -1172,6 +1324,21 @@ share/doc/HTML/en/khelpcenter/faq/not-kde.html share/doc/HTML/en/khelpcenter/faq/panel.html share/doc/HTML/en/khelpcenter/faq/tips.html share/doc/HTML/en/khelpcenter/faq/windowmanager.html +share/doc/HTML/en/khelpcenter/help-system-user-manual.html +share/doc/HTML/en/khelpcenter/help.docbook +share/doc/HTML/en/khelpcenter/index.docbook +share/doc/HTML/en/khelpcenter/index.html +share/doc/HTML/en/khelpcenter/interface-basics.html +share/doc/HTML/en/khelpcenter/invoking-help.html +share/doc/HTML/en/khelpcenter/kdelogo2.png +share/doc/HTML/en/khelpcenter/khelpcenter.png +share/doc/HTML/en/khelpcenter/konq.css +share/doc/HTML/en/khelpcenter/lines.png +share/doc/HTML/en/khelpcenter/lines2.png +share/doc/HTML/en/khelpcenter/links.docbook +share/doc/HTML/en/khelpcenter/main.html +share/doc/HTML/en/khelpcenter/no-html.html +share/doc/HTML/en/khelpcenter/pointers.png share/doc/HTML/en/khelpcenter/quickstart/.anchors share/doc/HTML/en/khelpcenter/quickstart/advanced-topics.html share/doc/HTML/en/khelpcenter/quickstart/an-overview-of-kde.html @@ -1193,6 +1360,7 @@ share/doc/HTML/en/khelpcenter/quickstart/using-templates.html share/doc/HTML/en/khelpcenter/quickstart/using-v-desktops.html share/doc/HTML/en/khelpcenter/quickstart/want-command-line-back.html share/doc/HTML/en/khelpcenter/quickstart/working-with-windows.html +share/doc/HTML/en/khelpcenter/shadow1.png share/doc/HTML/en/khelpcenter/support.docbook share/doc/HTML/en/khelpcenter/supporting-kde-financial-support.html share/doc/HTML/en/khelpcenter/supporting-kde-get-started.html @@ -1276,44 +1444,48 @@ share/doc/HTML/en/khelpcenter/what-is-kde-the-office-suite.html share/doc/HTML/en/khelpcenter/what-is-kde.html share/doc/HTML/en/khelpcenter/whatiskde.docbook share/doc/HTML/en/kicker/.anchors -share/doc/HTML/en/kicker/access_config.png -share/doc/HTML/en/kicker/basic_icons.png -share/doc/HTML/en/kicker/button-preferences.html +share/doc/HTML/en/kicker/applets.html +share/doc/HTML/en/kicker/application-group.html +share/doc/HTML/en/kicker/basics.html +share/doc/HTML/en/kicker/browsers.html +share/doc/HTML/en/kicker/child-panel-extension.html +share/doc/HTML/en/kicker/clock-applet.html +share/doc/HTML/en/kicker/commands.html share/doc/HTML/en/kicker/common -share/doc/HTML/en/kicker/config_window.png -share/doc/HTML/en/kicker/configuration-adding-icons.html -share/doc/HTML/en/kicker/configuration-config-window.html +share/doc/HTML/en/kicker/compilation.html share/doc/HTML/en/kicker/configuration.html +share/doc/HTML/en/kicker/configuring-apps.html +share/doc/HTML/en/kicker/configuring.html share/doc/HTML/en/kicker/credits.html -share/doc/HTML/en/kicker/drag-and-drop.html -share/doc/HTML/en/kicker/drag_applet.png -share/doc/HTML/en/kicker/five-minute-course.html -share/doc/HTML/en/kicker/glossary.html -share/doc/HTML/en/kicker/handles.png -share/doc/HTML/en/kicker/hide_buttons.png -share/doc/HTML/en/kicker/i_adv_editor.png -share/doc/HTML/en/kicker/i_control_center.png -share/doc/HTML/en/kicker/i_desktop.png -share/doc/HTML/en/kicker/i_help.png -share/doc/HTML/en/kicker/i_home_dir.png -share/doc/HTML/en/kicker/i_k_button.png -share/doc/HTML/en/kicker/i_kandalfs_tips.png -share/doc/HTML/en/kicker/i_shell.png -share/doc/HTML/en/kicker/i_window_list.png +share/doc/HTML/en/kicker/dock-application-bar-extension.html +share/doc/HTML/en/kicker/extensions.html +share/doc/HTML/en/kicker/faq.html share/doc/HTML/en/kicker/index.docbook share/doc/HTML/en/kicker/index.html share/doc/HTML/en/kicker/installation.html share/doc/HTML/en/kicker/introduction.html -share/doc/HTML/en/kicker/kicker-for-admins-symbolic-links.html -share/doc/HTML/en/kicker/kicker-for-admins.html -share/doc/HTML/en/kicker/kicker-panel-elements.html -share/doc/HTML/en/kicker/kicker_access_size.png -share/doc/HTML/en/kicker/kicker_add_basic.png -share/doc/HTML/en/kicker/kicker_basic_icons.png -share/doc/HTML/en/kicker/kicker_basic_icons_2.png -share/doc/HTML/en/kicker/other-features.html -share/doc/HTML/en/kicker/qb_root.png +share/doc/HTML/en/kicker/k-menu.html +share/doc/HTML/en/kicker/k_menu_icon.png +share/doc/HTML/en/kicker/kasbar-extension.html +share/doc/HTML/en/kicker/kfind-advanced.html +share/doc/HTML/en/kicker/kfind-date-range.html +share/doc/HTML/en/kicker/kfind.html +share/doc/HTML/en/kicker/launcher-applet.html +share/doc/HTML/en/kicker/most-recently-group.html +share/doc/HTML/en/kicker/naughty-applet.html +share/doc/HTML/en/kicker/pager-applet.html +share/doc/HTML/en/kicker/panel-applets.html +share/doc/HTML/en/kicker/panel-buttons.html +share/doc/HTML/en/kicker/panel-looknfeel.html +share/doc/HTML/en/kicker/panel-menus.html +share/doc/HTML/en/kicker/requirements.html +share/doc/HTML/en/kicker/run-applet.html +share/doc/HTML/en/kicker/run-command.html +share/doc/HTML/en/kicker/screenshot_left.png +share/doc/HTML/en/kicker/screenshot_right.png +share/doc/HTML/en/kicker/systemtray-applet.html share/doc/HTML/en/kicker/using-kicker.html +share/doc/HTML/en/kicker/windowlist_icon.png share/doc/HTML/en/klipper/.anchors share/doc/HTML/en/klipper/actions.html share/doc/HTML/en/klipper/common @@ -1329,6 +1501,7 @@ share/doc/HTML/en/klipper/screenshot.png share/doc/HTML/en/klipper/using-klipper.html share/doc/HTML/en/kmenuedit/.anchors share/doc/HTML/en/kmenuedit/common +share/doc/HTML/en/kmenuedit/compilation.html share/doc/HTML/en/kmenuedit/credits.html share/doc/HTML/en/kmenuedit/details-advanced.html share/doc/HTML/en/kmenuedit/glossary.html @@ -1343,30 +1516,33 @@ share/doc/HTML/en/kmenuedit/icon_sets.png share/doc/HTML/en/kmenuedit/icons.png share/doc/HTML/en/kmenuedit/index.docbook share/doc/HTML/en/kmenuedit/index.html +share/doc/HTML/en/kmenuedit/installation.html share/doc/HTML/en/kmenuedit/introduction.html share/doc/HTML/en/kmenuedit/menu-reference.html share/doc/HTML/en/kmenuedit/using-kmenuedit.html share/doc/HTML/en/konqueror/.anchors -share/doc/HTML/en/konqueror/autocomplete.html share/doc/HTML/en/konqueror/basics.html share/doc/HTML/en/konqueror/bookmarks.html share/doc/HTML/en/konqueror/browser.html share/doc/HTML/en/konqueror/bubble.html -share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/cmndline.png share/doc/HTML/en/konqueror/commandline.html share/doc/HTML/en/konqueror/commands.html -share/doc/HTML/en/konqueror/config-prox.html +share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/config.html -share/doc/HTML/en/konqueror/configure-bars.html -share/doc/HTML/en/konqueror/cook.html +share/doc/HTML/en/konqueror/configfm.html +share/doc/HTML/en/konqueror/configure-browser.html +share/doc/HTML/en/konqueror/configure-enhanced-browsing.html +share/doc/HTML/en/konqueror/configure-proxy.html +share/doc/HTML/en/konqueror/configure-user-agent.html +share/doc/HTML/en/konqueror/cookies.html share/doc/HTML/en/konqueror/credits.html share/doc/HTML/en/konqueror/crypto.html share/doc/HTML/en/konqueror/deleting.html share/doc/HTML/en/konqueror/dirtree.png share/doc/HTML/en/konqueror/dragdrop.png share/doc/HTML/en/konqueror/faq.html -share/doc/HTML/en/konqueror/fileassoc.html +share/doc/HTML/en/konqueror/file-associations.html share/doc/HTML/en/konqueror/filemanager.html share/doc/HTML/en/konqueror/filetype1.png share/doc/HTML/en/konqueror/filetype3.png @@ -1375,23 +1551,20 @@ share/doc/HTML/en/konqueror/ftp.html share/doc/HTML/en/konqueror/index.docbook share/doc/HTML/en/konqueror/index.html share/doc/HTML/en/konqueror/installation.html -share/doc/HTML/en/konqueror/introduction.html share/doc/HTML/en/konqueror/konqorg.png -share/doc/HTML/en/konqueror/lmbmmb.html +share/doc/HTML/en/konqueror/lmb-mmb.html share/doc/HTML/en/konqueror/making.html -share/doc/HTML/en/konqueror/miscbrowser.html +share/doc/HTML/en/konqueror/man-info.html share/doc/HTML/en/konqueror/moving.html share/doc/HTML/en/konqueror/multiple.html share/doc/HTML/en/konqueror/newname.html -share/doc/HTML/en/konqueror/optionalbrowser.html share/doc/HTML/en/konqueror/parts.html share/doc/HTML/en/konqueror/parts.png share/doc/HTML/en/konqueror/plugin.html share/doc/HTML/en/konqueror/rmb-menus.html -share/doc/HTML/en/konqueror/samba.html share/doc/HTML/en/konqueror/samba.png share/doc/HTML/en/konqueror/save-print-web.html -share/doc/HTML/en/konqueror/saveset.html +share/doc/HTML/en/konqueror/save-settings.html share/doc/HTML/en/konqueror/surf.html share/doc/HTML/en/konsole/.anchors share/doc/HTML/en/konsole/command-line-options.html @@ -1447,6 +1620,7 @@ share/doc/HTML/en/kwrite/go.html share/doc/HTML/en/kwrite/help.html share/doc/HTML/en/kwrite/index.docbook share/doc/HTML/en/kwrite/index.html +share/doc/HTML/en/kwrite/installation.html share/doc/HTML/en/kwrite/introduction.html share/doc/HTML/en/kwrite/keybindings.html share/doc/HTML/en/kwrite/on-screen-fundamentals.html @@ -1465,6 +1639,66 @@ share/fonts/console8x16.pcf.gz share/fonts/console8x8.pcf.gz share/fonts/fonts.dir share/fonts/override/fonts.dir +share/icons/hicolor/16x16/apps/background.png +share/icons/hicolor/16x16/apps/bell.png +share/icons/hicolor/16x16/apps/cookie.png +share/icons/hicolor/16x16/apps/email.png +share/icons/hicolor/16x16/apps/energy.png +share/icons/hicolor/16x16/apps/enhanced_browsing.png +share/icons/hicolor/16x16/apps/go.png +share/icons/hicolor/16x16/apps/hwinfo.png +share/icons/hicolor/16x16/apps/input_devices_settings.png +share/icons/hicolor/16x16/apps/kappfinder.png +share/icons/hicolor/16x16/apps/kcmkwm.png +share/icons/hicolor/16x16/apps/kcmsystem.png +share/icons/hicolor/16x16/apps/kcontrol.png +share/icons/hicolor/16x16/apps/kdisknav.png +share/icons/hicolor/16x16/apps/keditbookmarks.png +share/icons/hicolor/16x16/apps/kfm.png +share/icons/hicolor/16x16/apps/kfm_home.png +share/icons/hicolor/16x16/apps/khelpcenter.png +share/icons/hicolor/16x16/apps/klipper.png +share/icons/hicolor/16x16/apps/konqueror.png +share/icons/hicolor/16x16/apps/konsole.png +share/icons/hicolor/16x16/apps/kscreensaver.png +share/icons/hicolor/16x16/apps/ksysguard.png +share/icons/hicolor/16x16/apps/ktip.png +share/icons/hicolor/16x16/apps/kwrite.png +share/icons/hicolor/16x16/apps/locale.png +share/icons/hicolor/16x16/apps/looknfeel.png +share/icons/hicolor/16x16/apps/multimedia.png +share/icons/hicolor/16x16/apps/netscape.png +share/icons/hicolor/16x16/apps/package_applications.png +share/icons/hicolor/16x16/apps/package_development.png +share/icons/hicolor/16x16/apps/package_editors.png +share/icons/hicolor/16x16/apps/package_graphics.png +share/icons/hicolor/16x16/apps/package_multimedia.png +share/icons/hicolor/16x16/apps/package_network.png +share/icons/hicolor/16x16/apps/package_settings.png +share/icons/hicolor/16x16/apps/package_system.png +share/icons/hicolor/16x16/apps/package_toys.png +share/icons/hicolor/16x16/apps/package_utilities.png +share/icons/hicolor/16x16/apps/package_wordprocessing.png +share/icons/hicolor/16x16/apps/realplayer.png +share/icons/hicolor/16x16/apps/remote.png +share/icons/hicolor/16x16/apps/samba.png +share/icons/hicolor/16x16/apps/style.png +share/icons/hicolor/16x16/apps/window_list.png +share/icons/hicolor/16x16/devices/3floppy_mount.png +share/icons/hicolor/16x16/devices/3floppy_unmount.png +share/icons/hicolor/16x16/devices/cdaudio_mount.png +share/icons/hicolor/16x16/devices/cdaudio_unmount.png +share/icons/hicolor/16x16/devices/cdrom_mount.png +share/icons/hicolor/16x16/devices/cdrom_unmount.png +share/icons/hicolor/16x16/devices/dvd_mount.png +share/icons/hicolor/16x16/devices/dvd_unmount.png +share/icons/hicolor/16x16/devices/hdd_mount.png +share/icons/hicolor/16x16/devices/hdd_unmount.png +share/icons/hicolor/16x16/devices/nfs_mount.png +share/icons/hicolor/16x16/devices/nfs_unmount.png +share/icons/hicolor/16x16/devices/printer1.png +share/icons/hicolor/16x16/filesystems/file_important.png +share/icons/hicolor/16x16/filesystems/folder_important.png share/icons/hicolor/22x22/actions/view_choose.png share/icons/hicolor/22x22/actions/view_detailed.png share/icons/hicolor/22x22/actions/view_icon.png @@ -1478,11 +1712,13 @@ share/icons/hicolor/32x32/actions/view_multicolumn.png share/icons/hicolor/32x32/actions/view_text.png share/icons/hicolor/32x32/actions/view_tree.png share/icons/hicolor/32x32/apps/access.png +share/icons/hicolor/32x32/apps/acroread.png share/icons/hicolor/32x32/apps/agent.png share/icons/hicolor/32x32/apps/bell.png -share/icons/hicolor/32x32/apps/buttons.png +share/icons/hicolor/32x32/apps/blender.png share/icons/hicolor/32x32/apps/clock.png share/icons/hicolor/32x32/apps/colors.png +share/icons/hicolor/32x32/apps/cookie.png share/icons/hicolor/32x32/apps/date.png share/icons/hicolor/32x32/apps/designer.png share/icons/hicolor/32x32/apps/emacs.png @@ -1512,6 +1748,7 @@ share/icons/hicolor/32x32/apps/kcmx.png share/icons/hicolor/32x32/apps/kcontrol.png share/icons/hicolor/32x32/apps/kdisknav.png share/icons/hicolor/32x32/apps/kdmconfig.png +share/icons/hicolor/32x32/apps/keditbookmarks.png share/icons/hicolor/32x32/apps/key_bindings.png share/icons/hicolor/32x32/apps/keyboard_layout.png share/icons/hicolor/32x32/apps/kfm.png @@ -1544,15 +1781,18 @@ share/icons/hicolor/32x32/apps/package_multimedia.png share/icons/hicolor/32x32/apps/package_network.png share/icons/hicolor/32x32/apps/package_settings.png share/icons/hicolor/32x32/apps/package_system.png +share/icons/hicolor/32x32/apps/package_toys.png share/icons/hicolor/32x32/apps/package_utilities.png +share/icons/hicolor/32x32/apps/package_wordprocessing.png share/icons/hicolor/32x32/apps/password.png share/icons/hicolor/32x32/apps/proxy.png +share/icons/hicolor/32x32/apps/realplayer.png share/icons/hicolor/32x32/apps/style.png share/icons/hicolor/32x32/apps/terminal.png -share/icons/hicolor/32x32/apps/titlebar.png share/icons/hicolor/32x32/apps/window_list.png share/icons/hicolor/32x32/apps/winprops.png share/icons/hicolor/32x32/apps/xapp.png +share/icons/hicolor/32x32/apps/xawtv.png share/icons/hicolor/32x32/apps/xedit.png share/icons/hicolor/32x32/apps/xemacs.png share/icons/hicolor/32x32/apps/xmag.png @@ -1574,16 +1814,20 @@ share/icons/hicolor/32x32/devices/hdd_unmount.png share/icons/hicolor/32x32/devices/memory.png share/icons/hicolor/32x32/devices/mo_mount.png share/icons/hicolor/32x32/devices/mo_unmount.png +share/icons/hicolor/32x32/devices/nfs_mount.png +share/icons/hicolor/32x32/devices/nfs_unmount.png share/icons/hicolor/32x32/devices/printer1.png share/icons/hicolor/32x32/devices/printer2.png share/icons/hicolor/32x32/devices/scanner.png share/icons/hicolor/32x32/devices/tablet.png share/icons/hicolor/32x32/devices/zip_mount.png share/icons/hicolor/32x32/devices/zip_unmount.png +share/icons/hicolor/32x32/filesystems/file_important.png +share/icons/hicolor/32x32/filesystems/folder_important.png share/icons/hicolor/48x48/apps/access.png share/icons/hicolor/48x48/apps/agent.png share/icons/hicolor/48x48/apps/bell.png -share/icons/hicolor/48x48/apps/buttons.png +share/icons/hicolor/48x48/apps/blender.png share/icons/hicolor/48x48/apps/clock.png share/icons/hicolor/48x48/apps/colors.png share/icons/hicolor/48x48/apps/cookie.png @@ -1649,12 +1893,15 @@ share/icons/hicolor/48x48/apps/package_multimedia.png share/icons/hicolor/48x48/apps/package_network.png share/icons/hicolor/48x48/apps/package_settings.png share/icons/hicolor/48x48/apps/package_system.png +share/icons/hicolor/48x48/apps/package_toys.png share/icons/hicolor/48x48/apps/package_utilities.png +share/icons/hicolor/48x48/apps/package_wordprocessing.png share/icons/hicolor/48x48/apps/password.png share/icons/hicolor/48x48/apps/proxy.png +share/icons/hicolor/48x48/apps/remote.png +share/icons/hicolor/48x48/apps/samba.png share/icons/hicolor/48x48/apps/style.png share/icons/hicolor/48x48/apps/terminal.png -share/icons/hicolor/48x48/apps/titlebar.png share/icons/hicolor/48x48/apps/window_list.png share/icons/hicolor/48x48/apps/winprops.png share/icons/hicolor/48x48/apps/xedit.png @@ -1678,12 +1925,17 @@ share/icons/hicolor/48x48/devices/hdd_unmount.png share/icons/hicolor/48x48/devices/memory.png share/icons/hicolor/48x48/devices/mo_mount.png share/icons/hicolor/48x48/devices/mo_unmount.png +share/icons/hicolor/48x48/devices/nfs_mount.png +share/icons/hicolor/48x48/devices/nfs_unmount.png share/icons/hicolor/48x48/devices/printer1.png share/icons/hicolor/48x48/devices/printer2.png share/icons/hicolor/48x48/devices/scanner.png share/icons/hicolor/48x48/devices/tablet.png share/icons/hicolor/48x48/devices/zip_mount.png share/icons/hicolor/48x48/devices/zip_unmount.png +share/icons/hicolor/48x48/filesystems/file_important.png +share/icons/hicolor/48x48/filesystems/folder_important.png +share/icons/locolor/16x16/actions/bookmark_folder.png share/icons/locolor/16x16/actions/view_choose.png share/icons/locolor/16x16/actions/view_detailed.png share/icons/locolor/16x16/actions/view_icon.png @@ -1693,12 +1945,13 @@ share/icons/locolor/16x16/actions/view_tree.png share/icons/locolor/16x16/apps/access.png share/icons/locolor/16x16/apps/acroread.png share/icons/locolor/16x16/apps/agent.png +share/icons/locolor/16x16/apps/alevt.png share/icons/locolor/16x16/apps/applixware.png share/icons/locolor/16x16/apps/arts.png share/icons/locolor/16x16/apps/background.png share/icons/locolor/16x16/apps/bell.png -share/icons/locolor/16x16/apps/borders.png -share/icons/locolor/16x16/apps/buttons.png +share/icons/locolor/16x16/apps/blender.png +share/icons/locolor/16x16/apps/clock.png share/icons/locolor/16x16/apps/colors.png share/icons/locolor/16x16/apps/cookie.png share/icons/locolor/16x16/apps/date.png @@ -1735,12 +1988,14 @@ share/icons/locolor/16x16/apps/kcmx.png share/icons/locolor/16x16/apps/kcontrol.png share/icons/locolor/16x16/apps/kdisknav.png share/icons/locolor/16x16/apps/kdmconfig.png +share/icons/locolor/16x16/apps/keditbookmarks.png share/icons/locolor/16x16/apps/key_bindings.png share/icons/locolor/16x16/apps/keyboard.png share/icons/locolor/16x16/apps/keyboard_layout.png share/icons/locolor/16x16/apps/kfm.png share/icons/locolor/16x16/apps/kfm_home.png share/icons/locolor/16x16/apps/khelpcenter.png +share/icons/locolor/16x16/apps/kicker.png share/icons/locolor/16x16/apps/klipper.png share/icons/locolor/16x16/apps/kmenuedit.png share/icons/locolor/16x16/apps/knotify.png @@ -1758,6 +2013,7 @@ share/icons/locolor/16x16/apps/looknfeel.png share/icons/locolor/16x16/apps/lyx.png share/icons/locolor/16x16/apps/mathematica.png share/icons/locolor/16x16/apps/mouse.png +share/icons/locolor/16x16/apps/mozilla.png share/icons/locolor/16x16/apps/multimedia.png share/icons/locolor/16x16/apps/nedit.png share/icons/locolor/16x16/apps/netscape.png @@ -1778,11 +2034,12 @@ share/icons/locolor/16x16/apps/password.png share/icons/locolor/16x16/apps/penguin.png share/icons/locolor/16x16/apps/plan.png share/icons/locolor/16x16/apps/proxy.png +share/icons/locolor/16x16/apps/pybliographic.png share/icons/locolor/16x16/apps/realplayer.png +share/icons/locolor/16x16/apps/remote.png share/icons/locolor/16x16/apps/samba.png share/icons/locolor/16x16/apps/style.png share/icons/locolor/16x16/apps/terminal.png -share/icons/locolor/16x16/apps/titlebar.png share/icons/locolor/16x16/apps/wabi.png share/icons/locolor/16x16/apps/window_list.png share/icons/locolor/16x16/apps/winprops.png @@ -1824,11 +2081,12 @@ share/icons/locolor/16x16/devices/zip_unmount.png share/icons/locolor/32x32/apps/access.png share/icons/locolor/32x32/apps/acroread.png share/icons/locolor/32x32/apps/agent.png +share/icons/locolor/32x32/apps/alevt.png share/icons/locolor/32x32/apps/applixware.png share/icons/locolor/32x32/apps/background.png share/icons/locolor/32x32/apps/bell.png -share/icons/locolor/32x32/apps/borders.png -share/icons/locolor/32x32/apps/buttons.png +share/icons/locolor/32x32/apps/blender.png +share/icons/locolor/32x32/apps/clanbomber.png share/icons/locolor/32x32/apps/clock.png share/icons/locolor/32x32/apps/colors.png share/icons/locolor/32x32/apps/cookie.png @@ -1908,16 +2166,18 @@ share/icons/locolor/32x32/apps/password.png share/icons/locolor/32x32/apps/penguin.png share/icons/locolor/32x32/apps/plan.png share/icons/locolor/32x32/apps/proxy.png +share/icons/locolor/32x32/apps/pybliographic.png +share/icons/locolor/32x32/apps/pysol.png share/icons/locolor/32x32/apps/realplayer.png share/icons/locolor/32x32/apps/samba.png share/icons/locolor/32x32/apps/style.png share/icons/locolor/32x32/apps/terminal.png -share/icons/locolor/32x32/apps/titlebar.png share/icons/locolor/32x32/apps/wabi.png share/icons/locolor/32x32/apps/window_list.png share/icons/locolor/32x32/apps/winprops.png share/icons/locolor/32x32/apps/wp.png share/icons/locolor/32x32/apps/xapp.png +share/icons/locolor/32x32/apps/xawtv.png share/icons/locolor/32x32/apps/xcalc.png share/icons/locolor/32x32/apps/xclipboard.png share/icons/locolor/32x32/apps/xclock.png @@ -2041,8 +2301,12 @@ share/locale/l10n/kr/entry.desktop share/locale/l10n/kr/flag.png share/locale/l10n/lc/entry.desktop share/locale/l10n/lc/flag.png +share/locale/l10n/lt/entry.desktop +share/locale/l10n/lt/flag.png share/locale/l10n/lu/entry.desktop share/locale/l10n/lu/flag.png +share/locale/l10n/lv/entry.desktop +share/locale/l10n/lv/flag.png share/locale/l10n/mk/entry.desktop share/locale/l10n/mk/flag.png share/locale/l10n/mx/entry.desktop @@ -2104,12 +2368,23 @@ share/locale/l10n/westeurope.desktop share/locale/l10n/za/entry.desktop share/locale/l10n/za/flag.png share/mimelnk/application/x-konsole.desktop +share/mimelnk/application/x-ktheme.desktop +share/services/bzip.protocol +share/services/bzip2.protocol +share/services/finger.protocol +share/services/floppy.protocol share/services/gopher.protocol share/services/gzip.protocol share/services/help.protocol +share/services/htmlthumbnail.desktop +share/services/imagethumbnail.desktop +share/services/imap4.protocol +share/services/imaps.protocol share/services/info.protocol share/services/kaccess.desktop +share/services/kfindpart.desktop share/services/khelpcenter.desktop +share/services/konq_aboutpage.desktop share/services/konq_detailedlistview.desktop share/services/konq_dirtree.desktop share/services/konq_iconview.desktop @@ -2117,6 +2392,7 @@ share/services/konq_multicolumnview.desktop share/services/konq_textview.desktop share/services/konq_treeview.desktop share/services/konqueror.desktop +share/services/konqueror_config.desktop share/services/konsolepart.desktop share/services/kshorturifilter.desktop share/services/kuriikwsfilter.desktop @@ -2124,14 +2400,58 @@ share/services/kurisearchfilter.desktop share/services/kwrite_component.desktop share/services/kxkb.desktop share/services/kxmlrpcd.desktop +share/services/ldap.protocol share/services/man.protocol share/services/nfs.protocol share/services/nntp.protocol share/services/pop3.protocol share/services/pop3s.protocol +share/services/searchproviders/acronym.desktop +share/services/searchproviders/altavista.desktop +share/services/searchproviders/austronaut.desktop +share/services/searchproviders/bugft.desktop +share/services/searchproviders/bugno.desktop +share/services/searchproviders/deja.desktop +share/services/searchproviders/dmoz.desktop +share/services/searchproviders/excite.desktop +share/services/searchproviders/foldoc.desktop +share/services/searchproviders/freshmeat.desktop +share/services/searchproviders/google.desktop +share/services/searchproviders/hotbot.desktop +share/services/searchproviders/jeeves.desktop +share/services/searchproviders/leo.desktop +share/services/searchproviders/lycos.desktop +share/services/searchproviders/mamma.desktop +share/services/searchproviders/metacrawler.desktop +share/services/searchproviders/realnames.desktop +share/services/searchproviders/rpmfind.desktop +share/services/searchproviders/seek.desktop +share/services/searchproviders/thesaurus.desktop +share/services/searchproviders/voila.desktop +share/services/searchproviders/webster.desktop share/services/smb.protocol share/services/smtp.protocol share/services/tar.protocol +share/services/textthumbnail.desktop +share/services/thumbnail.protocol +share/servicetypes/findpart.desktop +share/servicetypes/konqaboutpage.desktop +share/servicetypes/searchprovider.desktop +share/servicetypes/thumbcreator.desktop +share/sounds/KDE_Beep_Ahem.wav +share/sounds/KDE_Beep_Beep.wav +share/sounds/KDE_Beep_Bottles.wav +share/sounds/KDE_Beep_ClassicBeep.wav +share/sounds/KDE_Beep_ClockChime.wav +share/sounds/KDE_Beep_Connect.wav +share/sounds/KDE_Beep_Door.wav +share/sounds/KDE_Beep_Honk.wav +share/sounds/KDE_Beep_Lightning.wav +share/sounds/KDE_Beep_Pop.wav +share/sounds/KDE_Beep_RimShot.wav +share/sounds/KDE_Beep_RingRing.wav +share/sounds/KDE_Beep_ShortBeep.wav +share/sounds/KDE_Beep_Yo.wav share/sounds/KDE_Close_Window.wav share/sounds/KDE_Logout.wav share/sounds/KDE_Startup.wav @@ -2185,6 +2505,105 @@ share/wallpapers/northbeach.jpg share/wallpapers/simple_wallpaper.jpg share/wallpapers/sunday_brunch.jpg share/wallpapers/vegetative_fog.jpg +@dirrm share/wallpapers +@dirrm share/templates/.source +@dirrm share/templates +@dirrm share/sounds +@dirrm share/servicetypes +@dirrm share/services/searchproviders +@dirrm share/services +@dirrm share/mimelnk/application +@dirrm share/locale/l10n/za +@dirrm share/locale/l10n/ve +@dirrm share/locale/l10n/vc +@dirrm share/locale/l10n/uy +@dirrm share/locale/l10n/us +@dirrm share/locale/l10n/ua +@dirrm share/locale/l10n/tw +@dirrm share/locale/l10n/tt +@dirrm share/locale/l10n/tr +@dirrm share/locale/l10n/th +@dirrm share/locale/l10n/sv +@dirrm share/locale/l10n/sr +@dirrm share/locale/l10n/sk +@dirrm share/locale/l10n/si +@dirrm share/locale/l10n/se +@dirrm share/locale/l10n/ru +@dirrm share/locale/l10n/ro +@dirrm share/locale/l10n/py +@dirrm share/locale/l10n/pt +@dirrm share/locale/l10n/pl +@dirrm share/locale/l10n/pe +@dirrm share/locale/l10n/pa +@dirrm share/locale/l10n/nz +@dirrm share/locale/l10n/no +@dirrm share/locale/l10n/nl +@dirrm share/locale/l10n/mx +@dirrm share/locale/l10n/mk +@dirrm share/locale/l10n/lv +@dirrm share/locale/l10n/lu +@dirrm share/locale/l10n/lt +@dirrm share/locale/l10n/lc +@dirrm share/locale/l10n/kr +@dirrm share/locale/l10n/kp +@dirrm share/locale/l10n/kn +@dirrm share/locale/l10n/jp +@dirrm share/locale/l10n/jm +@dirrm share/locale/l10n/it +@dirrm share/locale/l10n/is +@dirrm share/locale/l10n/il +@dirrm share/locale/l10n/ie +@dirrm share/locale/l10n/hu +@dirrm share/locale/l10n/hr +@dirrm share/locale/l10n/hn +@dirrm share/locale/l10n/gt +@dirrm share/locale/l10n/gr +@dirrm share/locale/l10n/gd +@dirrm share/locale/l10n/gb +@dirrm share/locale/l10n/fr +@dirrm share/locale/l10n/fi +@dirrm share/locale/l10n/es +@dirrm share/locale/l10n/ee +@dirrm share/locale/l10n/ec +@dirrm share/locale/l10n/do +@dirrm share/locale/l10n/dk +@dirrm share/locale/l10n/de +@dirrm share/locale/l10n/cz +@dirrm share/locale/l10n/co +@dirrm share/locale/l10n/cn +@dirrm share/locale/l10n/cl +@dirrm share/locale/l10n/ch +@dirrm share/locale/l10n/ca +@dirrm share/locale/l10n/br +@dirrm share/locale/l10n/bo +@dirrm share/locale/l10n/bg +@dirrm share/locale/l10n/be +@dirrm share/locale/l10n/bb +@dirrm share/locale/l10n/au +@dirrm share/locale/l10n/at +@dirrm share/locale/l10n/ar +@dirrm share/locale/l10n/ag +@dirrm share/locale/l10n/C +@dirrm share/locale/l10n +@dirrm share/locale/C +@dirrm share/icons/locolor/32x32/devices +@dirrm share/icons/locolor/32x32/apps +@dirrm share/icons/locolor/16x16/devices +@dirrm share/icons/locolor/16x16/apps +@dirrm share/icons/locolor/16x16/actions +@dirrm share/icons/hicolor/48x48/filesystems +@dirrm share/icons/hicolor/48x48/devices +@dirrm share/icons/hicolor/48x48/apps +@dirrm share/icons/hicolor/32x32/filesystems +@dirrm share/icons/hicolor/32x32/devices +@dirrm share/icons/hicolor/32x32/apps +@dirrm share/icons/hicolor/32x32/actions +@dirrm share/icons/hicolor/22x22/actions +@dirrm share/icons/hicolor/16x16/filesystems +@dirrm share/icons/hicolor/16x16/devices +@dirrm share/icons/hicolor/16x16/apps +@dirrm share/fonts/override +@dirrm share/fonts @dirrm share/doc/HTML/en/kwrite @dirrm share/doc/HTML/en/ksysguard @dirrm share/doc/HTML/en/kpager @@ -2202,17 +2621,22 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/doc/HTML/en/kdesu @dirrm share/doc/HTML/en/kdebugdialog @dirrm share/doc/HTML/en/kcontrol -@dirrm share/apps/quickbrowser +@dirrm share/doc/HTML/en +@dirrm share/config +@dirrm share/autostart +@dirrm share/apps/naughtyapplet/pics @dirrm share/apps/kwrite @dirrm share/apps/kwin/pics @dirrm share/apps/kwin +@dirrm share/apps/kthememgr/Themes +@dirrm share/apps/kthememgr @dirrm share/apps/ksysguard/icons/locolor/16x16/apps @dirrm share/apps/ksysguard/icons/locolor/16x16 @dirrm share/apps/ksysguard/icons/locolor @dirrm share/apps/ksysguard/icons @dirrm share/apps/ksysguard +@dirrm share/apps/ksplash/pics/locolor @dirrm share/apps/ksplash/pics -@dirrm share/apps/ksplash @dirrm share/apps/kscreensaver @dirrm share/apps/konsole/pics @dirrm share/apps/konsole @@ -2226,14 +2650,18 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/konqueror/icons/hicolor/32x32 @dirrm share/apps/konqueror/icons/hicolor/22x22/actions @dirrm share/apps/konqueror/icons/hicolor/22x22 +@dirrm share/apps/konqueror/icons/hicolor/16x16/actions @dirrm share/apps/konqueror/icons/hicolor @dirrm share/apps/konqueror/icons @dirrm share/apps/konqueror/dirtree/remote/web @dirrm share/apps/konqueror/dirtree/remote/ftp @dirrm share/apps/konqueror/dirtree/remote @dirrm share/apps/konqueror/dirtree +@dirrm share/apps/konqueror/about @dirrm share/apps/konqueror +@dirrm share/apps/konqlistview/kpartplugins @dirrm share/apps/konqlistview +@dirrm share/apps/konqiconview/kpartplugins @dirrm share/apps/konqiconview @dirrm share/apps/kmenuedit/icons/locolor/16x16/actions @dirrm share/apps/kmenuedit/icons/locolor/16x16 @@ -2246,13 +2674,16 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kmenuedit/icons @dirrm share/apps/kmenuedit @dirrm share/apps/kio_info +@dirrm share/apps/kio_finger @dirrm share/apps/kicker/wallpapers @dirrm share/apps/kicker/tiles @dirrm share/apps/kicker/pics @dirrm share/apps/kicker/icons/locolor/16x16/actions @dirrm share/apps/kicker/icons/locolor/16x16 @dirrm share/apps/kicker/icons/locolor +@dirrm share/apps/kicker/icons/hicolor/16x16/actions @dirrm share/apps/kicker/icons +@dirrm share/apps/kicker/extensions @dirrm share/apps/kicker/applets @dirrm share/apps/kicker @dirrm share/apps/khelpcenter/plugins/Tutorials @@ -2264,6 +2695,8 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/khelpcenter/icons @dirrm share/apps/khelpcenter/en @dirrm share/apps/khelpcenter +@dirrm share/apps/kfind/icons/locolor/22x22/actions +@dirrm share/apps/keditbookmarks @dirrm share/apps/kdm/pics/users @dirrm share/apps/kdm/pics @dirrm share/apps/kdm @@ -2282,9 +2715,11 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kcontrol @dirrm share/apps/kcmlocale/pics @dirrm share/apps/kcmlocale +@dirrm share/apps/kcmkeys/standard @dirrm share/apps/kcminput @dirrm share/apps/kbookmark @dirrm share/apps/kappfinder/apps/WordProcessing +@dirrm share/apps/kappfinder/apps/Utilities/XUtilities @dirrm share/apps/kappfinder/apps/Utilities @dirrm share/apps/kappfinder/apps/Toys @dirrm share/apps/kappfinder/apps/System/ScreenSavers @@ -2293,13 +2728,45 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kappfinder/apps/Multimedia @dirrm share/apps/kappfinder/apps/Internet @dirrm share/apps/kappfinder/apps/Graphics +@dirrm share/apps/kappfinder/apps/Games @dirrm share/apps/kappfinder/apps/Editors @dirrm share/apps/kappfinder/apps/Development @dirrm share/apps/kappfinder/apps -@dirrm share/apps/kappfinder @dirrm share/apps/drkonqi/presets @dirrm share/apps/drkonqi/pics @dirrm share/apps/drkonqi/debuggers @dirrm share/apps/drkonqi @dirrm share/apps/clockapplet/pics @dirrm share/apps/clockapplet +@dirrm share/apps +@dirrm share/applnk/Utilities +@dirrm share/applnk/Toys +@dirrm share/applnk/System/ScreenSavers +@dirrm share/applnk/System +@dirrm share/applnk/Settings/WebBrowsing +@dirrm share/applnk/Settings/System +@dirrm share/applnk/Settings/Sound +@dirrm share/applnk/Settings/PowerControl +@dirrm share/applnk/Settings/Personalization +@dirrm share/applnk/Settings/Peripherals +@dirrm share/applnk/Settings/Network +@dirrm share/applnk/Settings/LookNFeel/Windows +@dirrm share/applnk/Settings/LookNFeel/Themes +@dirrm share/applnk/Settings/LookNFeel/Desktop +@dirrm share/applnk/Settings/LookNFeel +@dirrm share/applnk/Settings/Information +@dirrm share/applnk/Settings/Help +@dirrm share/applnk/Settings/FileBrowsing +@dirrm share/applnk/Settings +@dirrm share/applnk/Office +@dirrm share/applnk/Multimedia +@dirrm share/applnk/Internet +@dirrm share/applnk/Graphics +@dirrm share/applnk/Games +@dirrm share/applnk/Editors +@dirrm share/applnk/Development +@dirrm share/applnk/Applications +@dirrm share/applnk/.hidden +@dirrm share/applnk +@dirrm lib/kde2 +@dirrm include/kwin diff --git a/x11/kdebase4-workspace/Makefile b/x11/kdebase4-workspace/Makefile index e44f3da88bf8..a346796a21ee 100644 --- a/x11/kdebase4-workspace/Makefile +++ b/x11/kdebase4-workspace/Makefile @@ -6,12 +6,12 @@ # PORTNAME= kdebase -PORTVERSION= 2.0.1 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION}/distribution/tar/generic/src -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= kdeui.4:${PORTSDIR}/x11/kdelibs2 \ intl.1:${PORTSDIR}/devel/gettext diff --git a/x11/kdebase4-workspace/distinfo b/x11/kdebase4-workspace/distinfo index 80f0c4ce35f6..243923f1a5d7 100644 --- a/x11/kdebase4-workspace/distinfo +++ b/x11/kdebase4-workspace/distinfo @@ -1 +1 @@ -MD5 (kdebase-2.0.1.tar.bz2) = b138a67ae22fbda05def8e932820ac66 +MD5 (kdebase-2.1.tar.bz2) = 54264460bca895cc3e315bb49c297f8f diff --git a/x11/kdebase4-workspace/files/patch-Processlist.c b/x11/kdebase4-workspace/files/patch-Processlist.c deleted file mode 100644 index 863d56e7ec72..000000000000 --- a/x11/kdebase4-workspace/files/patch-Processlist.c +++ /dev/null @@ -1,80 +0,0 @@ ---- ksysguard/ksysguardd/FreeBSD/ProcessList.c.old Tue Jan 23 19:44:29 2001 -+++ ksysguard/ksysguardd/FreeBSD/ProcessList.c Tue Jan 23 20:19:24 2001 -@@ -186,7 +186,20 @@ - if (sysctl(mib, 4, &p, &len, NULL, 0) == -1 || !len) - return -1; - -- /* ?? */ -+#if __FreeBSD_version >= 500015 -+ /* Getting runtime process info */ -+ ps->pid = p.ki_pid; -+ ps->ppid = p.ki_ppid; -+ strcpy(ps->name, p.ki_comm); -+ ps->uid = p.ki_uid; -+ ps->gid = p.ki_pgid; -+ -+ pwent = getpwuid(ps->uid); -+ strcpy(ps->userName, pwent ? pwent->pw_name : "????"); -+ ps->priority = p.ki_priority; -+ ps->niceLevel = p.ki_nice; -+ -+#else - ps->pid = p.kp_proc.p_pid; - ps->ppid = p.kp_eproc.e_ppid; - strcpy(ps->name, p.kp_proc.p_comm); -@@ -198,16 +211,30 @@ - strcpy(ps->userName, pwent ? pwent->pw_name : "????"); - ps->priority = p.kp_proc.p_priority; - ps->niceLevel = p.kp_proc.p_nice; -+#endif - - /* this isn't usertime -- it's total time (??) */ --#if __FreeBSD_version >= 300000 -+#if __FreeBSD_version >= 500015 -+ ps->userTime = p.ki_runtime / 10000; -+#elif __FreeBSD_version >= 300000 - ps->userTime = p.kp_proc.p_runtime / 10000; - #else - ps->userTime = p.kp_proc.p_rtime.tv_sec*100+p.kp_proc.p_rtime.tv_usec/100 - #endif -+ - ps->sysTime = 0; -- ps->userLoad = p.kp_proc.p_pctcpu / 100; - ps->sysLoad = 0; -+#if __FreeBSD_version >= 500015 -+ ps->userLoad = p.ki_pctcpu / 100; -+ -+ /* memory */ -+ ps->vmSize = p.ki_size * getpagesize(); -+ -+ ps->vmRss = p.ki_rssize * getpagesize(); -+ -+ ps->status = p.ki_stat; -+#else -+ ps->userLoad = p.kp_proc.p_pctcpu / 100; - - /* memory */ - ps->vmSize = (p.kp_eproc.e_vm.vm_tsize + -@@ -216,7 +243,7 @@ - ps->vmRss = p.kp_eproc.e_vm.vm_rssize * getpagesize(); - - ps->status = p.kp_proc.p_stat; -- -+#endif - return (0); - } - -@@ -284,8 +311,13 @@ - p = malloc(len); - sysctl(mib, 3, p, &len, NULL, 0); - -+#if __FreeBSD_version >= 500015 -+ for (num = 0; num < len / sizeof(struct kinfo_proc); num++) -+ updateProcess(p[num].ki_pid); -+#else - for (num = 0; num < len / sizeof(struct kinfo_proc); num++) - updateProcess(p[num].kp_proc.p_pid); -+#endif - - cleanupProcessList(); - diff --git a/x11/kdebase4-workspace/files/patch-TEPty.C b/x11/kdebase4-workspace/files/patch-TEPty.C index 9bfd5db25ccd..796ec243efbf 100644 --- a/x11/kdebase4-workspace/files/patch-TEPty.C +++ b/x11/kdebase4-workspace/files/patch-TEPty.C @@ -1,83 +1,6 @@ ---- konsole/src/TEPty.C.orig Fri Dec 8 11:51:24 2000 -+++ konsole/src/TEPty.C Fri Dec 8 11:52:51 2000 -@@ -180,27 +180,57 @@ - // param grant: 1 to grant, 0 to revoke - // returns 1 on success 0 on fail - { -- pid_t pid = fork(); -- if (pid < 0) -- { -- return 0; -- } -- if (pid == 0) -- { -- /* We pass the master pseudo terminal as file descriptor PTY_FILENO. */ -- if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) exit(1); -- QString path = locate("exe", BASE_CHOWN); -+ pid_t pid; -+ int pstat; -+ struct sigaction ign; -+ struct sigaction intact; // interupt action -+ struct sigaction quitact; // quit action -+ sigset_t newsigblock, oldsigblock; -+ QString path; -+ -+ ign.sa_handler = SIG_IGN; -+ sigemptyset(&ign.sa_mask); -+ ign.sa_flags = 0; -+ sigaction(SIGINT, &ign, &intact); -+ sigaction(SIGQUIT, &ign, &quitact); -+ sigemptyset(&newsigblock); -+ sigaddset(&newsigblock, SIGCHLD); -+ sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock); -+ -+ switch (pid = fork()) { -+ case -1: -+ return(0); -+ break; -+ case 0: // child -+ if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) -+ exit(1); -+ path = locate("exe", BASE_CHOWN); -+ -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); - execle(path.ascii(), BASE_CHOWN, grant?"--grant":"--revoke", NULL, NULL); -- exit(1); // should not be reached -- } -- if (pid > 0) -- { int w; -- retry: -- int rc = waitpid (pid, &w, 0); -- if ((rc == -1) && (errno == EINTR)) -- goto retry; -- return (rc != -1 && WIFEXITED(w) && WEXITSTATUS(w) == 0); -+ exit(1); -+ break; -+ default: -+ do { -+ pid = waitpid(pid, &pstat, 0); -+ } while (pid == -1 && errno == EINTR); -+ break; - } -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); -+ -+ if (pid == -1) { -+ return 0; -+ } -+ else if (WIFEXITED(pstat) && (WEXITSTATUS(pstat) == 0)) { -+ return 1; -+ } -+ else { -+ return 0; -+ } - return 0; //dummy. - } - -@@ -225,7 +255,7 @@ +--- konsole/src/TEPty.C Sun Feb 18 10:28:28 2001 ++++ konsole/src/TEPty.C.new Fri Feb 23 02:55:58 2001 +@@ -238,7 +238,7 @@ #ifdef HAVE_UTEMPTER removeLineFromUtmp(ttynam, fd); #elif defined(USE_LOGIN) diff --git a/x11/kdebase4-workspace/files/patch-kdeeject b/x11/kdebase4-workspace/files/patch-kdeeject index 38c12b5eafbf..8a5870ad25ff 100644 --- a/x11/kdebase4-workspace/files/patch-kdeeject +++ b/x11/kdebase4-workspace/files/patch-kdeeject @@ -1,9 +1,9 @@ ---- kdesktop/kdeeject.orig Fri Dec 1 15:25:26 2000 -+++ kdesktop/kdeeject Fri Dec 1 15:25:33 2000 -@@ -8,7 +8,8 @@ - # kmessage, to show a message box in case of error. - # - if [ $# = 1 -a "$1" != "--help" ]; then +--- kdesktop/kdeeject Wed Dec 13 13:25:02 2000 ++++ kdesktop/kdeeject.new Fri Feb 23 02:59:54 2001 +@@ -11,7 +11,8 @@ + # TODO: On bsd, it should be 'cdcontrol -f $1 eject' + # Checking for stuff in the PATH is ugly with sh though. + # I guess this is the reason for making this a kde app... - if eject $1; then + dev=`echo $1 | sed -E -e 's#/dev/##' -e 's/([0-9])./\1/'` + if cdcontrol -f $dev eject; then diff --git a/x11/kdebase4-workspace/files/patch-konsole_grantpty.c b/x11/kdebase4-workspace/files/patch-konsole_grantpty.c deleted file mode 100644 index 889d15bdb592..000000000000 --- a/x11/kdebase4-workspace/files/patch-konsole_grantpty.c +++ /dev/null @@ -1,79 +0,0 @@ ---- konsole/src/konsole_grantpty.c.orig Sat Jun 12 07:13:31 1999 -+++ konsole/src/konsole_grantpty.c Fri Dec 8 11:54:43 2000 -@@ -31,13 +31,15 @@ - #include <string.h> - #include <sys/stat.h> - #include <unistd.h> -+#include <dirent.h> -+#include <paths.h> - - #define PTY_FILENO 3 /* keep in sync with grantpty */ - #define TTY_GROUP "tty" - - int main (int argc, char *argv[]) - { -- char* pty; -+ char* pty = NULL; - struct stat st; - struct group* p; - gid_t gid; -@@ -81,6 +83,7 @@ - - /* get slave pty name from master pty file handle in PTY_FILENO *********/ - -+#if 0 - /* Check that PTY_FILENO is a valid master pseudo terminal. */ - pty = ttyname(PTY_FILENO); /* posix */ - if (pty == NULL) -@@ -89,6 +92,42 @@ - return 1; /* FAIL */ - } - close(PTY_FILENO); -+#else -+ /* The trouble with the ifdef'd-out portion above is that ttyname() -+ ** does not work correctly when not passed a valid tty, but a pseudotty -+ ** instead. All we're doing here is finding out what the name of -+ ** the associated pty is without having to pass it in on the command line. -+ ** Nothing complex. -+ */ -+ { -+ struct stat sb; -+ struct stat dsb; -+ struct dirent *dirp; -+ static char buf[sizeof(_PATH_DEV) + MAXNAMLEN] = _PATH_DEV; -+ DIR *dp; -+ -+ pty = NULL; -+ -+ if (fstat(PTY_FILENO, &sb)) -+ return 1; /* FAIL */ -+ if ((dp = opendir(_PATH_DEV)) == NULL) -+ return 1; /* FAIL */ -+ -+ while ((dirp = readdir(dp))) { -+ if (dirp->d_fileno != sb.st_ino) -+ continue; -+ bcopy(dirp->d_name, buf + sizeof(_PATH_DEV) - 1, dirp->d_namlen+1); -+ /*fprintf(stderr, "looking at %s\n", buf);*/ -+ if (stat(buf, &dsb) || sb.st_dev != dsb.st_dev || sb.st_ino != dsb.st_ino) -+ continue; -+ pty = buf; -+ } -+ closedir(dp); -+ if (pty == NULL) -+ return 1; /* FAIL */ -+ } -+ /*fprintf(stderr, "successful at finding %s\n", pty);*/ -+#endif - - /* matches /dev/pty?? */ - if (strlen(pty) < 8 || strncmp(pty,"/dev/pty",8)) -@@ -120,6 +159,8 @@ - fprintf(stderr,"%s: cannot chmod %s.\n",argv[0],tty); perror("Reason"); - return 1; /* FAIL */ - } -+ -+ /*fprintf(stderr, "made it here\n");*/ - - return 0; /* OK */ - } diff --git a/x11/kdebase4-workspace/pkg-plist b/x11/kdebase4-workspace/pkg-plist index 7a8ef62507e2..5424c20a9cca 100644 --- a/x11/kdebase4-workspace/pkg-plist +++ b/x11/kdebase4-workspace/pkg-plist @@ -2,6 +2,7 @@ bin/appletproxy bin/chooser bin/conttest bin/drkonqi +bin/extensionproxy bin/kaccess bin/kappfinder bin/kbanner.kss @@ -21,6 +22,7 @@ bin/kdesu bin/kdesud bin/kdm bin/kdmdesktop +bin/keditbookmarks bin/keditfiletype bin/kfmclient bin/kfmexec @@ -33,25 +35,22 @@ bin/klegacyimport bin/klines.kss bin/klipper bin/klorenz.kss -bin/kman2html bin/kmatrix.kss bin/kmenuedit -bin/kmorph3d.kss bin/konqueror bin/konsole bin/konsole_grantpty bin/kpager -bin/kpipes.kss bin/kpolygon.kss bin/kpyro.kss bin/krandom.kss bin/krdb +bin/kreadconfig bin/krock.kss bin/kscience.kss bin/kslidescreen.kss bin/kslideshow.kss bin/ksmserver -bin/kspace.kss bin/ksplash bin/kstart bin/kswarm.kss @@ -59,7 +58,9 @@ bin/ksysguard bin/ksysguardd bin/ktip bin/kvm.kss +bin/kwebdesktop bin/kwin +bin/kwmtheme bin/kwrite bin/kwrited bin/kxkb @@ -75,6 +76,10 @@ include/KonquerorIface.h include/ccont.h include/kbookmark.h include/kbookmarkbar.h +include/kbookmarkdrag.h +include/kbookmarkexporter.h +include/kbookmarkimporter.h +include/kbookmarkmanager.h include/kbookmarkmenu.h include/kfileivi.h include/knewmenu.h @@ -84,61 +89,189 @@ include/konq_dirlister.h include/konq_dirpart.h include/konq_drag.h include/konq_events.h +include/konq_faviconmgr.h include/konq_fileitem.h +include/konq_historycomm.h +include/konq_historymgr.h include/konq_iconviewwidget.h include/konq_imagepreviewjob.h +include/konq_mimetyperesolver.h include/konq_operations.h +include/konq_pixmapprovider.h include/konq_popupmenu.h include/konq_propsview.h include/konq_settings.h include/konq_undo.h +include/kwin/client.h +include/kwin/options.h +include/kwin/workspace.h +include/thumbcreator.h lib/appletproxy.la lib/appletproxy.so -lib/kaccess.la -lib/kaccess.so +lib/extensionproxy.la +lib/extensionproxy.so lib/kcminit.la lib/kcminit.so lib/kcmshell.la lib/kcmshell.so lib/kcontrol.la lib/kcontrol.so +lib/kde2/htmlthumbnail.la +lib/kde2/htmlthumbnail.so +lib/kde2/imagethumbnail.la +lib/kde2/imagethumbnail.so +lib/kde2/kaccess.la +lib/kde2/kaccess.so +lib/kde2/kio_filter.la +lib/kde2/kio_filter.so +lib/kde2/kio_finger.la +lib/kde2/kio_finger.so +lib/kde2/kio_floppy.la +lib/kde2/kio_floppy.so +lib/kde2/kio_gopher.la +lib/kde2/kio_gopher.so +lib/kde2/kio_help.la +lib/kde2/kio_help.so +lib/kde2/kio_imap4.la +lib/kde2/kio_imap4.so +lib/kde2/kio_info.la +lib/kde2/kio_info.so +lib/kde2/kio_ldap.la +lib/kde2/kio_ldap.so +lib/kde2/kio_man.la +lib/kde2/kio_man.so +lib/kde2/kio_nfs.la +lib/kde2/kio_nfs.so +lib/kde2/kio_nntp.la +lib/kde2/kio_nntp.so +lib/kde2/kio_pop3.la +lib/kde2/kio_pop3.so +lib/kde2/kio_smb.la +lib/kde2/kio_smb.so +lib/kde2/kio_smtp.la +lib/kde2/kio_smtp.so +lib/kde2/kio_tar.la +lib/kde2/kio_tar.so +lib/kde2/kio_thumbnail.la +lib/kde2/kio_thumbnail.so +lib/kde2/libkcm_access.la +lib/kde2/libkcm_access.so +lib/kde2/libkcm_arts.la +lib/kde2/libkcm_arts.so +lib/kde2/libkcm_background.la +lib/kde2/libkcm_background.so +lib/kde2/libkcm_bell.la +lib/kde2/libkcm_bell.so +lib/kde2/libkcm_clock.la +lib/kde2/libkcm_clock.so +lib/kde2/libkcm_colors.la +lib/kde2/libkcm_colors.so +lib/kde2/libkcm_crypto.la +lib/kde2/libkcm_crypto.so +lib/kde2/libkcm_email.la +lib/kde2/libkcm_email.so +lib/kde2/libkcm_energy.la +lib/kde2/libkcm_energy.so +lib/kde2/libkcm_filetypes.la +lib/kde2/libkcm_filetypes.so +lib/kde2/libkcm_fonts.la +lib/kde2/libkcm_fonts.so +lib/kde2/libkcm_icons.la +lib/kde2/libkcm_icons.so +lib/kde2/libkcm_info.la +lib/kde2/libkcm_info.so +lib/kde2/libkcm_input.la +lib/kde2/libkcm_input.so +lib/kde2/libkcm_kdm.la +lib/kde2/libkcm_kdm.so +lib/kde2/libkcm_keys.la +lib/kde2/libkcm_keys.so +lib/kde2/libkcm_khotkeys.la +lib/kde2/libkcm_khotkeys.so +lib/kde2/libkcm_kicker.la +lib/kde2/libkcm_kicker.so +lib/kde2/libkcm_kio.la +lib/kde2/libkcm_kio.so +lib/kde2/libkcm_knotify.la +lib/kde2/libkcm_knotify.so +lib/kde2/libkcm_konq.la +lib/kde2/libkcm_konq.so +lib/kde2/libkcm_konqhtml.la +lib/kde2/libkcm_konqhtml.so +lib/kde2/libkcm_kurifilt.la +lib/kde2/libkcm_kurifilt.so +lib/kde2/libkcm_kwinoptions.la +lib/kde2/libkcm_kwinoptions.so +lib/kde2/libkcm_locale.la +lib/kde2/libkcm_locale.so +lib/kde2/libkcm_midi.la +lib/kde2/libkcm_midi.so +lib/kde2/libkcm_passwords.la +lib/kde2/libkcm_passwords.so +lib/kde2/libkcm_samba.la +lib/kde2/libkcm_samba.so +lib/kde2/libkcm_screensaver.la +lib/kde2/libkcm_screensaver.so +lib/kde2/libkcm_smserver.la +lib/kde2/libkcm_smserver.so +lib/kde2/libkcm_style.la +lib/kde2/libkcm_style.so +lib/kde2/libkcm_taskbar.la +lib/kde2/libkcm_taskbar.so +lib/kde2/libkcm_themes.la +lib/kde2/libkcm_themes.so +lib/kde2/libkfindpart.la +lib/kde2/libkfindpart.so +lib/kde2/libkonqiconview.la +lib/kde2/libkonqiconview.so +lib/kde2/libkonqlistview.la +lib/kde2/libkonqlistview.so +lib/kde2/libkonqtree.la +lib/kde2/libkonqtree.so +lib/kde2/libkshellcmdplugin.la +lib/kde2/libkshellcmdplugin.so +lib/kde2/libkshorturifilter.la +lib/kde2/libkshorturifilter.so +lib/kde2/libkuriikwsfilter.la +lib/kde2/libkuriikwsfilter.so +lib/kde2/libkurisearchfilter.la +lib/kde2/libkurisearchfilter.so +lib/kde2/libkwin2k.la +lib/kde2/libkwin2k.so +lib/kde2/libkwinb2.la +lib/kde2/libkwinb2.so +lib/kde2/libkwinkde1.la +lib/kde2/libkwinkde1.so +lib/kde2/libkwinkstep.la +lib/kde2/libkwinkstep.so +lib/kde2/libkwinkwmtheme.la +lib/kde2/libkwinkwmtheme.so +lib/kde2/libkwinlaptop.la +lib/kde2/libkwinlaptop.so +lib/kde2/libkwinmodernsys.la +lib/kde2/libkwinmodernsys.so +lib/kde2/libkwinriscos.la +lib/kde2/libkwinriscos.so +lib/kde2/libkwinsystem.la +lib/kde2/libkwinsystem.so +lib/kde2/textthumbnail.la +lib/kde2/textthumbnail.so lib/kdesktop.la lib/kdesktop.so +lib/keditbookmarks.la +lib/keditbookmarks.so lib/kfmclient.la lib/kfmclient.so lib/khotkeys.la lib/khotkeys.so lib/kicker.la lib/kicker.so -lib/kio_gopher.la -lib/kio_gopher.so -lib/kio_gzip.la -lib/kio_gzip.so -lib/kio_help.la -lib/kio_help.so -lib/kio_info.la -lib/kio_info.so -lib/kio_man.la -lib/kio_man.so -lib/kio_nfs.la -lib/kio_nfs.so -lib/kio_nntp.la -lib/kio_nntp.so -lib/kio_pop3.la -lib/kio_pop3.so -lib/kio_smb.la -lib/kio_smb.so -lib/kio_smtp.la -lib/kio_smtp.so -lib/kio_tar.la -lib/kio_tar.so lib/klegacyimport.la lib/klegacyimport.so lib/klipper.la lib/klipper.so lib/kmenuedit.la lib/kmenuedit.so -lib/kmenuedit.so.0 lib/konqueror.la lib/konqueror.so lib/konsole.la @@ -153,86 +286,29 @@ lib/kxkb.la lib/kxkb.so lib/kxmlrpcd.la lib/kxmlrpcd.so +lib/libKdmGreet.la +lib/libKdmGreet.so lib/libccont.a +lib/libchildpanelextension.la +lib/libchildpanelextension.so +lib/libchildpanelextension.so.1 lib/libclockapplet.la lib/libclockapplet.so lib/libclockapplet.so.1 +lib/libdockbarextension.la +lib/libdockbarextension.so +lib/libdockbarextension.so.1 lib/libhtmlsearch.la lib/libhtmlsearch.so -lib/libkcm_access.la -lib/libkcm_access.so -lib/libkcm_arts.la -lib/libkcm_arts.so -lib/libkcm_background.la -lib/libkcm_background.so -lib/libkcm_bell.la -lib/libkcm_bell.so -lib/libkcm_clock.la -lib/libkcm_clock.so -lib/libkcm_colors.la -lib/libkcm_colors.so -lib/libkcm_crypto.la -lib/libkcm_crypto.so -lib/libkcm_email.la -lib/libkcm_email.so -lib/libkcm_energy.la -lib/libkcm_energy.so -lib/libkcm_filetypes.la -lib/libkcm_filetypes.so -lib/libkcm_fonts.la -lib/libkcm_fonts.so +lib/libkasbarextension.la +lib/libkasbarextension.so +lib/libkasbarextension.so.1 lib/libkcm_htmlsearch.la lib/libkcm_htmlsearch.so -lib/libkcm_icons.la -lib/libkcm_icons.so -lib/libkcm_iconthemes.la -lib/libkcm_iconthemes.so -lib/libkcm_info.la -lib/libkcm_info.so -lib/libkcm_input.la -lib/libkcm_input.so -lib/libkcm_kdm.la -lib/libkcm_kdm.so -lib/libkcm_keys.la -lib/libkcm_keys.so -lib/libkcm_khotkeys.la -lib/libkcm_khotkeys.so -lib/libkcm_kicker.la -lib/libkcm_kicker.so -lib/libkcm_kio.la -lib/libkcm_kio.so -lib/libkcm_knotify.la -lib/libkcm_knotify.so -lib/libkcm_konq.la -lib/libkcm_konq.so -lib/libkcm_konqhtml.la -lib/libkcm_konqhtml.so -lib/libkcm_kurifilt.la -lib/libkcm_kurifilt.so -lib/libkcm_kwindesktop.la -lib/libkcm_kwindesktop.so -lib/libkcm_kwinmouse.la -lib/libkcm_kwinmouse.so -lib/libkcm_kwinoptions.la -lib/libkcm_kwinoptions.so +lib/libkcm_ioslaveinfo.la +lib/libkcm_ioslaveinfo.so lib/libkcm_layout.la lib/libkcm_layout.so -lib/libkcm_locale.la -lib/libkcm_locale.so -lib/libkcm_midi.la -lib/libkcm_midi.so -lib/libkcm_passwords.la -lib/libkcm_passwords.so -lib/libkcm_samba.la -lib/libkcm_samba.so -lib/libkcm_screensaver.la -lib/libkcm_screensaver.so -lib/libkcm_style.la -lib/libkcm_style.so -lib/libkcm_taskbar.la -lib/libkcm_taskbar.so -lib/libkcm_virtualdesktops.la -lib/libkcm_virtualdesktops.so lib/libkcm_xmlrpcd.la lib/libkcm_xmlrpcd.so lib/libkhelpcenter.la @@ -244,71 +320,60 @@ lib/libkminipagerapplet.so.1 lib/libkonq.la lib/libkonq.so lib/libkonq.so.4 -lib/libkonqdirtree.la -lib/libkonqdirtree.so -lib/libkonqiconview.la -lib/libkonqiconview.so -lib/libkonqlistview.la -lib/libkonqlistview.so +lib/libkonqaboutpage.la +lib/libkonqaboutpage.so lib/libkonsolepart.la lib/libkonsolepart.so lib/libkrunapplet.la lib/libkrunapplet.so lib/libkrunapplet.so.1 -lib/libkshorturifilter.la -lib/libkshorturifilter.so -lib/libkshorturifilter.so.1 +lib/libksysguardapplet.la +lib/libksysguardapplet.so +lib/libksysguardapplet.so.1 lib/libksystemtrayapplet.la lib/libksystemtrayapplet.so lib/libksystemtrayapplet.so.1 lib/libktaskbarapplet.la lib/libktaskbarapplet.so lib/libktaskbarapplet.so.1 -lib/libkuriikwsfilter.la -lib/libkuriikwsfilter.so -lib/libkuriikwsfilter.so.1 -lib/libkurisearchfilter.la -lib/libkurisearchfilter.so -lib/libkurisearchfilter.so.1 -lib/libkwinb2.la -lib/libkwinb2.so lib/libkwindefault.la lib/libkwindefault.so lib/libkwindefault.so.0 -lib/libkwinkde1.la -lib/libkwinkde1.so -lib/libkwinkstep.la -lib/libkwinkstep.so -lib/libkwinlaptop.la -lib/libkwinlaptop.so -lib/libkwinmodernsys.la -lib/libkwinmodernsys.so -lib/libkwinriscos.la -lib/libkwinriscos.so -lib/libkwinsystem.la -lib/libkwinsystem.so lib/libkwritepart.la lib/libkwritepart.so +lib/libnaughtyapplet.la +lib/libnaughtyapplet.so +lib/libnaughtyapplet.so.1 lib/libquicklauncher.la lib/libquicklauncher.so lib/libquicklauncher.so.1 -lib/libsmb++.la -lib/libsmb++.so -lib/libsmb++.so.0 +lib/libtaskbarextension.la +lib/libtaskbarextension.so +lib/libtaskbarextension.so.1 +lib/libtaskmanager.la +lib/libtaskmanager.so +lib/libtaskmanager.so.1 share/applnk/.directory share/applnk/.hidden/konqfilemgr.desktop share/applnk/Applications/.directory -share/applnk/Development/designer.desktop +share/applnk/Development/.directory share/applnk/Editors/.directory +share/applnk/Editors/gvim.desktop share/applnk/Editors/kwrite.desktop +share/applnk/Editors/xedit.desktop share/applnk/Games/.directory share/applnk/Graphics/.directory +share/applnk/Graphics/gimp.desktop share/applnk/Help.desktop share/applnk/Home.desktop share/applnk/Internet/.directory +share/applnk/Internet/keditbookmarks.desktop share/applnk/Internet/konqbrowser.desktop +share/applnk/Internet/netscape.desktop share/applnk/KControl.desktop share/applnk/Multimedia/.directory +share/applnk/Multimedia/aviplay.desktop +share/applnk/Multimedia/xawtv.desktop share/applnk/Office/.directory share/applnk/Settings/.directory share/applnk/Settings/FileBrowsing/.directory @@ -321,6 +386,7 @@ share/applnk/Settings/Information/devices.desktop share/applnk/Settings/Information/dma.desktop share/applnk/Settings/Information/interrupts.desktop share/applnk/Settings/Information/ioports.desktop +share/applnk/Settings/Information/ioslaveinfo.desktop share/applnk/Settings/Information/memory.desktop share/applnk/Settings/Information/partitions.desktop share/applnk/Settings/Information/pci.desktop @@ -330,28 +396,29 @@ share/applnk/Settings/Information/smbstatus.desktop share/applnk/Settings/Information/sound.desktop share/applnk/Settings/Information/xserver.desktop share/applnk/Settings/LookNFeel/.directory -share/applnk/Settings/LookNFeel/Desktop/.directory share/applnk/Settings/LookNFeel/Desktop/background.desktop share/applnk/Settings/LookNFeel/Desktop/borders.desktop share/applnk/Settings/LookNFeel/Desktop/desktop.desktop share/applnk/Settings/LookNFeel/Desktop/virtualdesktops.desktop -share/applnk/Settings/LookNFeel/Panel/.directory -share/applnk/Settings/LookNFeel/Themes/.directory share/applnk/Settings/LookNFeel/Themes/iconthemes.desktop share/applnk/Settings/LookNFeel/Themes/style.desktop -share/applnk/Settings/LookNFeel/Windows/.directory share/applnk/Settings/LookNFeel/Windows/actions.desktop -share/applnk/Settings/LookNFeel/Windows/mouse.desktop +share/applnk/Settings/LookNFeel/Windows/kwinmouse.desktop +share/applnk/Settings/LookNFeel/background.desktop share/applnk/Settings/LookNFeel/colors.desktop +share/applnk/Settings/LookNFeel/desktop.desktop share/applnk/Settings/LookNFeel/fonts.desktop share/applnk/Settings/LookNFeel/icons.desktop share/applnk/Settings/LookNFeel/kcmnotify.desktop share/applnk/Settings/LookNFeel/kcmtaskbar.desktop share/applnk/Settings/LookNFeel/keys.desktop +share/applnk/Settings/LookNFeel/kthememgr.desktop +share/applnk/Settings/LookNFeel/kwinoptions.desktop share/applnk/Settings/LookNFeel/panel.desktop share/applnk/Settings/LookNFeel/screensaver.desktop +share/applnk/Settings/LookNFeel/style.desktop +share/applnk/Settings/LookNFeel/virtualdesktops.desktop share/applnk/Settings/Network/.directory -share/applnk/Settings/Network/smb.desktop share/applnk/Settings/Peripherals/.directory share/applnk/Settings/Peripherals/keyboard.desktop share/applnk/Settings/Peripherals/mouse.desktop @@ -370,28 +437,24 @@ share/applnk/Settings/Sound/bell.desktop share/applnk/Settings/Sound/midi.desktop share/applnk/Settings/System/.directory share/applnk/Settings/System/clock.desktop +share/applnk/Settings/System/kcmsmserver.desktop share/applnk/Settings/System/kdm.desktop share/applnk/Settings/WebBrowsing/.directory share/applnk/Settings/WebBrowsing/cookies.desktop share/applnk/Settings/WebBrowsing/ebrowsing.desktop share/applnk/Settings/WebBrowsing/konqhtml.desktop share/applnk/Settings/WebBrowsing/proxy.desktop +share/applnk/Settings/WebBrowsing/smb.desktop share/applnk/Settings/WebBrowsing/useragent.desktop share/applnk/System/.directory -share/applnk/System/Arrange.desktop share/applnk/System/ScreenSavers/.directory -share/applnk/System/ScreenSavers/KAttration.desktop share/applnk/System/ScreenSavers/KBanner.desktop share/applnk/System/ScreenSavers/KBlankscreen.desktop share/applnk/System/ScreenSavers/KBlob.desktop share/applnk/System/ScreenSavers/KBouboule.desktop share/applnk/System/ScreenSavers/KBsod.desktop -share/applnk/System/ScreenSavers/KFlame.desktop -share/applnk/System/ScreenSavers/KForest.desktop share/applnk/System/ScreenSavers/KHop.desktop -share/applnk/System/ScreenSavers/KLaser.desktop share/applnk/System/ScreenSavers/KLines.desktop -share/applnk/System/ScreenSavers/KLissie.desktop share/applnk/System/ScreenSavers/KLorenz.desktop share/applnk/System/ScreenSavers/KMatrix.desktop share/applnk/System/ScreenSavers/KMorph3D.desktop @@ -403,12 +466,14 @@ share/applnk/System/ScreenSavers/KRock.desktop share/applnk/System/ScreenSavers/KScience.desktop share/applnk/System/ScreenSavers/KSlidescreen.desktop share/applnk/System/ScreenSavers/KSlideshow.desktop -share/applnk/System/ScreenSavers/KSlip.desktop share/applnk/System/ScreenSavers/KSpace.desktop share/applnk/System/ScreenSavers/KSwarm.desktop share/applnk/System/ScreenSavers/KVm.desktop +share/applnk/System/ScreenSavers/Worm.desktop share/applnk/System/kappfinder.desktop share/applnk/System/kfmclient.desktop +share/applnk/System/kfmclient_dir.desktop +share/applnk/System/kfmclient_html.desktop share/applnk/System/klegacyimport.desktop share/applnk/System/kmenuedit.desktop share/applnk/System/konquerorsu.desktop @@ -417,15 +482,19 @@ share/applnk/System/konsolesu.desktop share/applnk/System/ksysguard.desktop share/applnk/Toys/.directory share/applnk/Toys/ktip.desktop +share/applnk/Toys/xeyes.desktop share/applnk/Utilities/.directory +share/applnk/Utilities/XUtilities/xcalc.desktop +share/applnk/Utilities/XUtilities/xclipboard.desktop +share/applnk/Utilities/XUtilities/xclock.desktop +share/applnk/Utilities/XUtilities/xconsole.desktop +share/applnk/Utilities/XUtilities/xload.desktop +share/applnk/Utilities/XUtilities/xmag.desktop +share/applnk/Utilities/XUtilities/xterm.desktop share/applnk/Utilities/klipper.desktop share/applnk/Utilities/kpager.desktop -share/applnk/Utilities/passwd.desktop -share/applnk/Utilities/xclipboard.desktop -share/applnk/Utilities/xclock.desktop -share/applnk/Utilities/xconsole.desktop -share/applnk/Utilities/xmag.desktop -share/applnk/Utilities/xterm.desktop +share/applnk/WordProcessing/gv.desktop +share/applnk/WordProcessing/xpdf.desktop share/apps/clockapplet/pics/lcd.png share/apps/drkonqi/debuggers/gdbrc share/apps/drkonqi/pics/konqi.png @@ -443,6 +512,13 @@ share/apps/kappfinder/apps/Editors/lemacs.desktop share/apps/kappfinder/apps/Editors/nedit.desktop share/apps/kappfinder/apps/Editors/xedit.desktop share/apps/kappfinder/apps/Editors/xemacs.desktop +share/apps/kappfinder/apps/Games/.directory +share/apps/kappfinder/apps/Games/Clanbomber.desktop +share/apps/kappfinder/apps/Games/Qmamecat.desktop +share/apps/kappfinder/apps/Games/defendguin.desktop +share/apps/kappfinder/apps/Games/freeciv.desktop +share/apps/kappfinder/apps/Games/penguin-command.desktop +share/apps/kappfinder/apps/Games/xshipwars.desktop share/apps/kappfinder/apps/Graphics/.directory share/apps/kappfinder/apps/Graphics/gimp.desktop share/apps/kappfinder/apps/Graphics/xfig.desktop @@ -451,6 +527,8 @@ share/apps/kappfinder/apps/Graphics/xv.desktop share/apps/kappfinder/apps/Internet/.directory share/apps/kappfinder/apps/Internet/arena.desktop share/apps/kappfinder/apps/Internet/coolmail.desktop +share/apps/kappfinder/apps/Internet/ethereal.desktop +share/apps/kappfinder/apps/Internet/ncftp.desktop share/apps/kappfinder/apps/Internet/netscape.desktop share/apps/kappfinder/apps/Internet/pine.desktop share/apps/kappfinder/apps/Internet/xbiff.desktop @@ -458,7 +536,11 @@ share/apps/kappfinder/apps/Internet/xchat.desktop share/apps/kappfinder/apps/Internet/xfmail.desktop share/apps/kappfinder/apps/Internet/xftp.desktop share/apps/kappfinder/apps/Multimedia/.directory +share/apps/kappfinder/apps/Multimedia/alevt.desktop +share/apps/kappfinder/apps/Multimedia/aviplay.desktop +share/apps/kappfinder/apps/Multimedia/gtv.desktop share/apps/kappfinder/apps/Multimedia/realplayer.desktop +share/apps/kappfinder/apps/Multimedia/xawtv.desktop share/apps/kappfinder/apps/Multimedia/xmms.desktop share/apps/kappfinder/apps/Office/.directory share/apps/kappfinder/apps/Office/Applix.desktop @@ -531,15 +613,14 @@ share/apps/kappfinder/apps/Toys/.directory share/apps/kappfinder/apps/Toys/xeyes.desktop share/apps/kappfinder/apps/Toys/xpinguin.desktop share/apps/kappfinder/apps/Utilities/.directory -share/apps/kappfinder/apps/Utilities/jar.desktop -share/apps/kappfinder/apps/Utilities/passwd.desktop -share/apps/kappfinder/apps/Utilities/xcalc.desktop -share/apps/kappfinder/apps/Utilities/xclipboard.desktop -share/apps/kappfinder/apps/Utilities/xclock.desktop -share/apps/kappfinder/apps/Utilities/xconsole.desktop -share/apps/kappfinder/apps/Utilities/xload.desktop -share/apps/kappfinder/apps/Utilities/xmag.desktop -share/apps/kappfinder/apps/Utilities/xterm.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/.directory +share/apps/kappfinder/apps/Utilities/XUtilities/xcalc.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclipboard.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclock.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xconsole.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xload.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xmag.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xterm.desktop share/apps/kappfinder/apps/WordProcessing/.directory share/apps/kappfinder/apps/WordProcessing/WordPerfect.desktop share/apps/kappfinder/apps/WordProcessing/WordPerfect2000.desktop @@ -547,10 +628,12 @@ share/apps/kappfinder/apps/WordProcessing/acroread.desktop share/apps/kappfinder/apps/WordProcessing/ghostview.desktop share/apps/kappfinder/apps/WordProcessing/gv.desktop share/apps/kappfinder/apps/WordProcessing/lyx.desktop +share/apps/kappfinder/apps/WordProcessing/pybliographic.desktop share/apps/kappfinder/apps/WordProcessing/xdvi.desktop share/apps/kappfinder/apps/WordProcessing/xpdf.desktop share/apps/kbookmark/directory_bookmarkbar.desktop share/apps/kcminput/cursor_large.pcf.gz +share/apps/kcmkeys/standard/Unix.kksrc share/apps/kcmlocale/pics/background.png share/apps/kcontrol/kcontrolui.rc share/apps/kcontrol/pics/energybig.png @@ -560,8 +643,10 @@ share/apps/kcontrol/pics/mini-world.png share/apps/kcontrol/pics/monitor.png share/apps/kcontrol/pics/onlyone.png share/apps/kcontrol/pics/overlapping.png +share/apps/kcontrol/pics/part1.png +share/apps/kcontrol/pics/part2.png +share/apps/kcontrol/pics/part3.png share/apps/kcontrol/pics/play.png -share/apps/kcontrol/pics/wizard.png share/apps/kdcop/kdcopui.rc share/apps/kdesktop/DesktopLinks/Home.desktop share/apps/kdesktop/directory.autostart @@ -586,8 +671,10 @@ share/apps/kdesktop/pics/kde2.xbm share/apps/kdesktop/pics/ksslogo.png share/apps/kdesktop/pics/splash.png share/apps/kdesktop/pics/splash2.png +share/apps/kdesktop/programs/kwebdesktop.desktop share/apps/kdesktop/programs/xearth.desktop share/apps/kdesktop/programs/xglobe.desktop +share/apps/kdesktop/programs/xplanet.desktop share/apps/kdewizard/pics/wizard_small.png share/apps/kdewizard/tips share/apps/kdisplay/app-defaults/AAAAAAGeneral.ad @@ -605,6 +692,8 @@ share/apps/kdisplay/app-defaults/XCalc.ad share/apps/kdisplay/app-defaults/XOsview.ad share/apps/kdisplay/app-defaults/XTerm.ad share/apps/kdisplay/app-defaults/XV.ad +share/apps/kdisplay/app-defaults/Xawtv.ad +share/apps/kdisplay/app-defaults/Xpdf.ad share/apps/kdisplay/color-schemes/AtlasGreen.kcsrc share/apps/kdisplay/color-schemes/BeOS.kcsrc share/apps/kdisplay/color-schemes/BlueSlate.kcsrc @@ -627,15 +716,21 @@ share/apps/kdm/pics/users/default.png share/apps/kdm/pics/users/default2.png share/apps/kdm/pics/users/root.png share/apps/kdm/pics/users/root2.png +share/apps/keditbookmarks/keditbookmarksui.rc +share/apps/kfind/icons/locolor/22x22/actions/archive.png +share/apps/kfind/icons/locolor/22x22/actions/delete.png +share/apps/kfind/icons/locolor/22x22/actions/idea.png +share/apps/kfind/icons/locolor/22x22/actions/info.png +share/apps/kfind/icons/locolor/22x22/actions/openfile.png +share/apps/kfind/icons/locolor/22x22/actions/save.png +share/apps/kfind/icons/locolor/22x22/actions/search.png share/apps/khelpcenter/en/bad_words share/apps/khelpcenter/en/long.html share/apps/khelpcenter/en/nomatch.html share/apps/khelpcenter/en/short.html share/apps/khelpcenter/en/syntax.html share/apps/khelpcenter/en/wrapper.html -share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook.png share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook_open.png -share/apps/khelpcenter/icons/locolor/16x16/apps/helpdoc.png share/apps/khelpcenter/pics/checked.xpm share/apps/khelpcenter/pics/star.png share/apps/khelpcenter/pics/star_blank.png @@ -646,9 +741,16 @@ share/apps/khelpcenter/plugins/Tutorials/visualdict.desktop share/apps/kicker/applets/clockapplet.desktop share/apps/kicker/applets/kminipagerapplet.desktop share/apps/kicker/applets/krunapplet.desktop +share/apps/kicker/applets/ksysguardapplet.desktop share/apps/kicker/applets/ksystemtrayapplet.desktop share/apps/kicker/applets/ktaskbarapplet.desktop +share/apps/kicker/applets/naughtyapplet.desktop share/apps/kicker/applets/quicklauncher.desktop +share/apps/kicker/extensions/childpanelextension.desktop +share/apps/kicker/extensions/dockbarextension.desktop +share/apps/kicker/extensions/kasbarextension.desktop +share/apps/kicker/extensions/taskbarextension.desktop +share/apps/kicker/icons/hicolor/16x16/actions/modified.png share/apps/kicker/icons/locolor/16x16/actions/modified.png share/apps/kicker/pics/disk1.png share/apps/kicker/pics/disk2.png @@ -761,6 +863,8 @@ share/apps/kicker/tiles/solid_tgri_tiny_up.png share/apps/kicker/wallpapers/deck_plate.png share/apps/kicker/wallpapers/green_line.png share/apps/kicker/wallpapers/rail.png +share/apps/kio_finger/kio_finger.css +share/apps/kio_finger/kio_finger.pl share/apps/kio_info/kde-info2html share/apps/kio_info/kde-info2html.conf share/apps/kmenuedit/icons/hicolor/22x22/actions/menu_new.png @@ -769,17 +873,46 @@ share/apps/kmenuedit/icons/locolor/16x16/actions/menu_new.png share/apps/kmenuedit/kmenueditui.rc share/apps/konqiconview/konq_iconview.rc share/apps/konqiconview/konq_multicolumnview.rc +share/apps/konqiconview/kpartplugins/kshellcmdplugin.rc share/apps/konqlistview/konq_detailedlistview.rc share/apps/konqlistview/konq_textview.rc share/apps/konqlistview/konq_treeview.rc +share/apps/konqlistview/kpartplugins/kshellcmdplugin.rc +share/apps/konqueror/about/back.png +share/apps/konqueror/about/background.png +share/apps/konqueror/about/bgtable.png +share/apps/konqueror/about/gohome.png +share/apps/konqueror/about/history.png +share/apps/konqueror/about/intro.html +share/apps/konqueror/about/kdelogo2.png +share/apps/konqueror/about/konq.css +share/apps/konqueror/about/konqueror.png +share/apps/konqueror/about/lines.png +share/apps/konqueror/about/lines2.png +share/apps/konqueror/about/locationbar_erase.png +share/apps/konqueror/about/more.png +share/apps/konqueror/about/openterm.png +share/apps/konqueror/about/pointers.gif +share/apps/konqueror/about/shadow1.png +share/apps/konqueror/about/specs.html +share/apps/konqueror/about/tips.html +share/apps/konqueror/about/view_left_right.png +share/apps/konqueror/about/viewmag.png +share/apps/konqueror/about/window_fullscreen.png +share/apps/konqueror/dirtree/bookmarks.desktop +share/apps/konqueror/dirtree/history.desktop share/apps/konqueror/dirtree/home.desktop share/apps/konqueror/dirtree/remote/.directory share/apps/konqueror/dirtree/remote/ftp/.directory share/apps/konqueror/dirtree/remote/ftp/kde_ftp.desktop share/apps/konqueror/dirtree/remote/web/.directory share/apps/konqueror/dirtree/remote/web/kde_web.desktop -share/apps/konqueror/dirtree/remote/windows.desktop share/apps/konqueror/dirtree/root.desktop +share/apps/konqueror/icons/hicolor/16x16/actions/remove_view.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_bottom.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_left_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_top_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/remove_view.png share/apps/konqueror/icons/hicolor/22x22/actions/view_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/view_left_right.png @@ -796,7 +929,6 @@ share/apps/konqueror/icons/locolor/16x16/actions/kde3.png share/apps/konqueror/icons/locolor/16x16/actions/kde4.png share/apps/konqueror/icons/locolor/16x16/actions/kde5.png share/apps/konqueror/icons/locolor/16x16/actions/kde6.png -share/apps/konqueror/icons/locolor/16x16/actions/locationbar_erase.png share/apps/konqueror/icons/locolor/16x16/actions/remove_view.png share/apps/konqueror/icons/locolor/16x16/actions/view_bottom.png share/apps/konqueror/icons/locolor/16x16/actions/view_left_right.png @@ -808,13 +940,17 @@ share/apps/konqueror/pics/indicator_connect.png share/apps/konqueror/pics/indicator_empty.png share/apps/konqueror/pics/indicator_noconnect.png share/apps/konqueror/pics/indicator_viewactive.png +share/apps/konqueror/pics/thumbnailfont_7x4.png share/apps/konqueror/profiles/filemanagement +share/apps/konqueror/profiles/filepreview +share/apps/konqueror/profiles/midnightcommander share/apps/konqueror/profiles/webbrowsing share/apps/konqueror/tiles/bluemorning.png share/apps/konqueror/tiles/canvas.png share/apps/konqueror/tiles/checker.png share/apps/konqueror/tiles/cubic.png share/apps/konqueror/tiles/kde4ever.png +share/apps/konqueror/tiles/kenwimer.png share/apps/konqueror/tiles/noise.png share/apps/konqueror/tiles/paper_flieder.png share/apps/konqueror/tiles/punika_attack.png @@ -850,12 +986,18 @@ share/apps/konsole/syscolor.schema share/apps/konsole/vim.schema share/apps/konsole/vt100.keytab share/apps/konsole/vt420pc.keytab +share/apps/konsole/x11r5.keytab share/apps/kscreensaver/kscience-small.gif share/apps/kscreensaver/kscience.gif +share/apps/ksplash/pics/locolor/splash_active_bar.png +share/apps/ksplash/pics/locolor/splash_bottom.png +share/apps/ksplash/pics/locolor/splash_inactive_bar.png +share/apps/ksplash/pics/locolor/splash_top.png share/apps/ksplash/pics/splash_active_bar.png share/apps/ksplash/pics/splash_bottom.png share/apps/ksplash/pics/splash_inactive_bar.png share/apps/ksplash/pics/splash_top.png +share/apps/ksysguard/KSysGuardApplet.xml share/apps/ksysguard/ProcessTable.sgrd share/apps/ksysguard/SystemLoad.sgrd share/apps/ksysguard/icons/locolor/16x16/apps/X.png @@ -906,6 +1048,13 @@ share/apps/ksysguard/icons/locolor/16x16/apps/xntpd.png share/apps/ksysguard/icons/locolor/16x16/apps/xterm.png share/apps/ksysguard/icons/locolor/16x16/apps/ypbind.png share/apps/ksysguard/ksysguardui.rc +share/apps/kthememgr/Themes/Default.ktheme +share/apps/kthememgr/Themes/Eclipse.ktheme +share/apps/kthememgr/Themes/MGBreizh.ktheme +share/apps/kthememgr/Themes/Nostalgy.ktheme +share/apps/kthememgr/Themes/Template.themerc +share/apps/kthememgr/Themes/Wood.ktheme +share/apps/kthememgr/theme.mappings share/apps/kwin/b2.desktop share/apps/kwin/eventsrc share/apps/kwin/kde.desktop @@ -928,12 +1077,19 @@ share/apps/kwin/pics/pinup.png share/apps/kwin/pics/unknown.png share/apps/kwin/riscos.desktop share/apps/kwin/system.desktop +share/apps/kwin/win2k.desktop share/apps/kwrite/kwrite_browser.rc share/apps/kwrite/kwrite_shell.rc share/apps/kwrite/kwriteui.rc -share/apps/quickbrowser/Home.desktop -share/apps/quickbrowser/KDE.desktop -share/apps/quickbrowser/Root.desktop +share/apps/kwrite/syntax.xml +share/apps/naughtyapplet/pics/naughty-happy.png +share/apps/naughtyapplet/pics/naughty-sad.png +share/autostart/kdesktop.desktop +share/autostart/khotkeys.desktop +share/autostart/klipper.desktop +share/autostart/ktip.desktop +share/autostart/kwrited.desktop +share/autostart/panel.desktop share/config/antrc share/config/attractionrc share/config/bouboulerc @@ -955,6 +1111,8 @@ share/config/gravrc share/config/halorc share/config/imsmaprc share/config/interferencerc +share/config/kdesktop_custom_menu1 +share/config/kdesktop_custom_menu2 share/config/kdmrc share/config/klipperrc share/config/konsolerc @@ -991,12 +1149,9 @@ share/doc/HTML/en/kcontrol/email.html share/doc/HTML/en/kcontrol/energy.html share/doc/HTML/en/kcontrol/file-assoc.html share/doc/HTML/en/kcontrol/file-manager.html -share/doc/HTML/en/kcontrol/kfileman1.png -share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/fonts.html share/doc/HTML/en/kcontrol/help-index.html share/doc/HTML/en/kcontrol/icons.html -share/doc/HTML/en/kcontrol/iconstyle.html share/doc/HTML/en/kcontrol/index.docbook share/doc/HTML/en/kcontrol/index.html share/doc/HTML/en/kcontrol/interrupts.html @@ -1034,7 +1189,6 @@ share/doc/HTML/en/kcontrol/kcmkbd.docbook share/doc/HTML/en/kcontrol/kcmkblayout.docbook share/doc/HTML/en/kcontrol/kcmkbrowse.docbook share/doc/HTML/en/kcontrol/kcmkeybind.docbook -share/doc/HTML/en/kcontrol/kcmkeys.docbook share/doc/HTML/en/kcontrol/kcmlocate.docbook share/doc/HTML/en/kcontrol/kcmloginmanage.docbook share/doc/HTML/en/kcontrol/kcmlowbatcrit.docbook @@ -1044,6 +1198,7 @@ share/doc/HTML/en/kcontrol/kcmmidi.docbook share/doc/HTML/en/kcontrol/kcmmixer.docbook share/doc/HTML/en/kcontrol/kcmmouse.docbook share/doc/HTML/en/kcontrol/kcmmousebeh.docbook +share/doc/HTML/en/kcontrol/kcmnetscapeplugins.docbook share/doc/HTML/en/kcontrol/kcmnumbername.docbook share/doc/HTML/en/kcontrol/kcmpanel.docbook share/doc/HTML/en/kcontrol/kcmpartitioninfo.docbook @@ -1055,6 +1210,7 @@ share/doc/HTML/en/kcontrol/kcmprocinfo.docbook share/doc/HTML/en/kcontrol/kcmproxie.docbook share/doc/HTML/en/kcontrol/kcmscnsave.docbook share/doc/HTML/en/kcontrol/kcmscsiinfo.docbook +share/doc/HTML/en/kcontrol/kcmsessionman.docbook share/doc/HTML/en/kcontrol/kcmsmbstat.docbook share/doc/HTML/en/kcontrol/kcmsndinfo.docbook share/doc/HTML/en/kcontrol/kcmsndsrv.docbook @@ -1066,6 +1222,8 @@ share/doc/HTML/en/kcontrol/kcmuseragent.docbook share/doc/HTML/en/kcontrol/kcmwinshare.docbook share/doc/HTML/en/kcontrol/kcmxservinfo.docbook share/doc/HTML/en/kcontrol/key-bindings.html +share/doc/HTML/en/kcontrol/kfileman1.png +share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/konq-browsing.html share/doc/HTML/en/kcontrol/laptop.html share/doc/HTML/en/kcontrol/locale.html @@ -1079,7 +1237,7 @@ share/doc/HTML/en/kcontrol/module.html share/doc/HTML/en/kcontrol/modules.html share/doc/HTML/en/kcontrol/mouse-behav.html share/doc/HTML/en/kcontrol/mouse.html -share/doc/HTML/en/kcontrol/numbername.html +share/doc/HTML/en/kcontrol/nsplugins.html share/doc/HTML/en/kcontrol/panel.html share/doc/HTML/en/kcontrol/partitions.html share/doc/HTML/en/kcontrol/passwords.html @@ -1092,11 +1250,11 @@ share/doc/HTML/en/kcontrol/sambastatus.html share/doc/HTML/en/kcontrol/screensaver.html share/doc/HTML/en/kcontrol/screenshot.png share/doc/HTML/en/kcontrol/scsi.html +share/doc/HTML/en/kcontrol/sessions.html share/doc/HTML/en/kcontrol/sndserver.html share/doc/HTML/en/kcontrol/soundinfo.html share/doc/HTML/en/kcontrol/style.html share/doc/HTML/en/kcontrol/sys-notify.html -share/doc/HTML/en/kcontrol/talk.html share/doc/HTML/en/kcontrol/taskbar.html share/doc/HTML/en/kcontrol/user-agent.html share/doc/HTML/en/kcontrol/windows-shares.html @@ -1135,6 +1293,8 @@ share/doc/HTML/en/kdm/lilo.html share/doc/HTML/en/kdm/locale.html share/doc/HTML/en/kdm/other-information.html share/doc/HTML/en/khelpcenter/.anchors +share/doc/HTML/en/khelpcenter/background.png +share/doc/HTML/en/khelpcenter/bgtable.png share/doc/HTML/en/khelpcenter/common share/doc/HTML/en/khelpcenter/contact-developers.html share/doc/HTML/en/khelpcenter/contact-more-information.html @@ -1144,16 +1304,6 @@ share/doc/HTML/en/khelpcenter/contact.docbook share/doc/HTML/en/khelpcenter/credits.html share/doc/HTML/en/khelpcenter/faq/.anchors share/doc/HTML/en/khelpcenter/faq/TODO -share/doc/HTML/en/khelpcenter/faq/index.docbook -share/doc/HTML/en/khelpcenter/faq/index.html -share/doc/HTML/en/khelpcenter/help-system-user-manual.html -share/doc/HTML/en/khelpcenter/help.docbook -share/doc/HTML/en/khelpcenter/index.docbook -share/doc/HTML/en/khelpcenter/index.html -share/doc/HTML/en/khelpcenter/interface-basics.html -share/doc/HTML/en/khelpcenter/invoking-help.html -share/doc/HTML/en/khelpcenter/links.docbook -share/doc/HTML/en/khelpcenter/no-html.html share/doc/HTML/en/khelpcenter/faq/about.html share/doc/HTML/en/khelpcenter/faq/applications.html share/doc/HTML/en/khelpcenter/faq/common @@ -1163,6 +1313,8 @@ share/doc/HTML/en/khelpcenter/faq/credits.html share/doc/HTML/en/khelpcenter/faq/desktop.html share/doc/HTML/en/khelpcenter/faq/filemanager.html share/doc/HTML/en/khelpcenter/faq/getting-kde.html +share/doc/HTML/en/khelpcenter/faq/index.docbook +share/doc/HTML/en/khelpcenter/faq/index.html share/doc/HTML/en/khelpcenter/faq/install.html share/doc/HTML/en/khelpcenter/faq/introduction.html share/doc/HTML/en/khelpcenter/faq/misc.html @@ -1172,6 +1324,21 @@ share/doc/HTML/en/khelpcenter/faq/not-kde.html share/doc/HTML/en/khelpcenter/faq/panel.html share/doc/HTML/en/khelpcenter/faq/tips.html share/doc/HTML/en/khelpcenter/faq/windowmanager.html +share/doc/HTML/en/khelpcenter/help-system-user-manual.html +share/doc/HTML/en/khelpcenter/help.docbook +share/doc/HTML/en/khelpcenter/index.docbook +share/doc/HTML/en/khelpcenter/index.html +share/doc/HTML/en/khelpcenter/interface-basics.html +share/doc/HTML/en/khelpcenter/invoking-help.html +share/doc/HTML/en/khelpcenter/kdelogo2.png +share/doc/HTML/en/khelpcenter/khelpcenter.png +share/doc/HTML/en/khelpcenter/konq.css +share/doc/HTML/en/khelpcenter/lines.png +share/doc/HTML/en/khelpcenter/lines2.png +share/doc/HTML/en/khelpcenter/links.docbook +share/doc/HTML/en/khelpcenter/main.html +share/doc/HTML/en/khelpcenter/no-html.html +share/doc/HTML/en/khelpcenter/pointers.png share/doc/HTML/en/khelpcenter/quickstart/.anchors share/doc/HTML/en/khelpcenter/quickstart/advanced-topics.html share/doc/HTML/en/khelpcenter/quickstart/an-overview-of-kde.html @@ -1193,6 +1360,7 @@ share/doc/HTML/en/khelpcenter/quickstart/using-templates.html share/doc/HTML/en/khelpcenter/quickstart/using-v-desktops.html share/doc/HTML/en/khelpcenter/quickstart/want-command-line-back.html share/doc/HTML/en/khelpcenter/quickstart/working-with-windows.html +share/doc/HTML/en/khelpcenter/shadow1.png share/doc/HTML/en/khelpcenter/support.docbook share/doc/HTML/en/khelpcenter/supporting-kde-financial-support.html share/doc/HTML/en/khelpcenter/supporting-kde-get-started.html @@ -1276,44 +1444,48 @@ share/doc/HTML/en/khelpcenter/what-is-kde-the-office-suite.html share/doc/HTML/en/khelpcenter/what-is-kde.html share/doc/HTML/en/khelpcenter/whatiskde.docbook share/doc/HTML/en/kicker/.anchors -share/doc/HTML/en/kicker/access_config.png -share/doc/HTML/en/kicker/basic_icons.png -share/doc/HTML/en/kicker/button-preferences.html +share/doc/HTML/en/kicker/applets.html +share/doc/HTML/en/kicker/application-group.html +share/doc/HTML/en/kicker/basics.html +share/doc/HTML/en/kicker/browsers.html +share/doc/HTML/en/kicker/child-panel-extension.html +share/doc/HTML/en/kicker/clock-applet.html +share/doc/HTML/en/kicker/commands.html share/doc/HTML/en/kicker/common -share/doc/HTML/en/kicker/config_window.png -share/doc/HTML/en/kicker/configuration-adding-icons.html -share/doc/HTML/en/kicker/configuration-config-window.html +share/doc/HTML/en/kicker/compilation.html share/doc/HTML/en/kicker/configuration.html +share/doc/HTML/en/kicker/configuring-apps.html +share/doc/HTML/en/kicker/configuring.html share/doc/HTML/en/kicker/credits.html -share/doc/HTML/en/kicker/drag-and-drop.html -share/doc/HTML/en/kicker/drag_applet.png -share/doc/HTML/en/kicker/five-minute-course.html -share/doc/HTML/en/kicker/glossary.html -share/doc/HTML/en/kicker/handles.png -share/doc/HTML/en/kicker/hide_buttons.png -share/doc/HTML/en/kicker/i_adv_editor.png -share/doc/HTML/en/kicker/i_control_center.png -share/doc/HTML/en/kicker/i_desktop.png -share/doc/HTML/en/kicker/i_help.png -share/doc/HTML/en/kicker/i_home_dir.png -share/doc/HTML/en/kicker/i_k_button.png -share/doc/HTML/en/kicker/i_kandalfs_tips.png -share/doc/HTML/en/kicker/i_shell.png -share/doc/HTML/en/kicker/i_window_list.png +share/doc/HTML/en/kicker/dock-application-bar-extension.html +share/doc/HTML/en/kicker/extensions.html +share/doc/HTML/en/kicker/faq.html share/doc/HTML/en/kicker/index.docbook share/doc/HTML/en/kicker/index.html share/doc/HTML/en/kicker/installation.html share/doc/HTML/en/kicker/introduction.html -share/doc/HTML/en/kicker/kicker-for-admins-symbolic-links.html -share/doc/HTML/en/kicker/kicker-for-admins.html -share/doc/HTML/en/kicker/kicker-panel-elements.html -share/doc/HTML/en/kicker/kicker_access_size.png -share/doc/HTML/en/kicker/kicker_add_basic.png -share/doc/HTML/en/kicker/kicker_basic_icons.png -share/doc/HTML/en/kicker/kicker_basic_icons_2.png -share/doc/HTML/en/kicker/other-features.html -share/doc/HTML/en/kicker/qb_root.png +share/doc/HTML/en/kicker/k-menu.html +share/doc/HTML/en/kicker/k_menu_icon.png +share/doc/HTML/en/kicker/kasbar-extension.html +share/doc/HTML/en/kicker/kfind-advanced.html +share/doc/HTML/en/kicker/kfind-date-range.html +share/doc/HTML/en/kicker/kfind.html +share/doc/HTML/en/kicker/launcher-applet.html +share/doc/HTML/en/kicker/most-recently-group.html +share/doc/HTML/en/kicker/naughty-applet.html +share/doc/HTML/en/kicker/pager-applet.html +share/doc/HTML/en/kicker/panel-applets.html +share/doc/HTML/en/kicker/panel-buttons.html +share/doc/HTML/en/kicker/panel-looknfeel.html +share/doc/HTML/en/kicker/panel-menus.html +share/doc/HTML/en/kicker/requirements.html +share/doc/HTML/en/kicker/run-applet.html +share/doc/HTML/en/kicker/run-command.html +share/doc/HTML/en/kicker/screenshot_left.png +share/doc/HTML/en/kicker/screenshot_right.png +share/doc/HTML/en/kicker/systemtray-applet.html share/doc/HTML/en/kicker/using-kicker.html +share/doc/HTML/en/kicker/windowlist_icon.png share/doc/HTML/en/klipper/.anchors share/doc/HTML/en/klipper/actions.html share/doc/HTML/en/klipper/common @@ -1329,6 +1501,7 @@ share/doc/HTML/en/klipper/screenshot.png share/doc/HTML/en/klipper/using-klipper.html share/doc/HTML/en/kmenuedit/.anchors share/doc/HTML/en/kmenuedit/common +share/doc/HTML/en/kmenuedit/compilation.html share/doc/HTML/en/kmenuedit/credits.html share/doc/HTML/en/kmenuedit/details-advanced.html share/doc/HTML/en/kmenuedit/glossary.html @@ -1343,30 +1516,33 @@ share/doc/HTML/en/kmenuedit/icon_sets.png share/doc/HTML/en/kmenuedit/icons.png share/doc/HTML/en/kmenuedit/index.docbook share/doc/HTML/en/kmenuedit/index.html +share/doc/HTML/en/kmenuedit/installation.html share/doc/HTML/en/kmenuedit/introduction.html share/doc/HTML/en/kmenuedit/menu-reference.html share/doc/HTML/en/kmenuedit/using-kmenuedit.html share/doc/HTML/en/konqueror/.anchors -share/doc/HTML/en/konqueror/autocomplete.html share/doc/HTML/en/konqueror/basics.html share/doc/HTML/en/konqueror/bookmarks.html share/doc/HTML/en/konqueror/browser.html share/doc/HTML/en/konqueror/bubble.html -share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/cmndline.png share/doc/HTML/en/konqueror/commandline.html share/doc/HTML/en/konqueror/commands.html -share/doc/HTML/en/konqueror/config-prox.html +share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/config.html -share/doc/HTML/en/konqueror/configure-bars.html -share/doc/HTML/en/konqueror/cook.html +share/doc/HTML/en/konqueror/configfm.html +share/doc/HTML/en/konqueror/configure-browser.html +share/doc/HTML/en/konqueror/configure-enhanced-browsing.html +share/doc/HTML/en/konqueror/configure-proxy.html +share/doc/HTML/en/konqueror/configure-user-agent.html +share/doc/HTML/en/konqueror/cookies.html share/doc/HTML/en/konqueror/credits.html share/doc/HTML/en/konqueror/crypto.html share/doc/HTML/en/konqueror/deleting.html share/doc/HTML/en/konqueror/dirtree.png share/doc/HTML/en/konqueror/dragdrop.png share/doc/HTML/en/konqueror/faq.html -share/doc/HTML/en/konqueror/fileassoc.html +share/doc/HTML/en/konqueror/file-associations.html share/doc/HTML/en/konqueror/filemanager.html share/doc/HTML/en/konqueror/filetype1.png share/doc/HTML/en/konqueror/filetype3.png @@ -1375,23 +1551,20 @@ share/doc/HTML/en/konqueror/ftp.html share/doc/HTML/en/konqueror/index.docbook share/doc/HTML/en/konqueror/index.html share/doc/HTML/en/konqueror/installation.html -share/doc/HTML/en/konqueror/introduction.html share/doc/HTML/en/konqueror/konqorg.png -share/doc/HTML/en/konqueror/lmbmmb.html +share/doc/HTML/en/konqueror/lmb-mmb.html share/doc/HTML/en/konqueror/making.html -share/doc/HTML/en/konqueror/miscbrowser.html +share/doc/HTML/en/konqueror/man-info.html share/doc/HTML/en/konqueror/moving.html share/doc/HTML/en/konqueror/multiple.html share/doc/HTML/en/konqueror/newname.html -share/doc/HTML/en/konqueror/optionalbrowser.html share/doc/HTML/en/konqueror/parts.html share/doc/HTML/en/konqueror/parts.png share/doc/HTML/en/konqueror/plugin.html share/doc/HTML/en/konqueror/rmb-menus.html -share/doc/HTML/en/konqueror/samba.html share/doc/HTML/en/konqueror/samba.png share/doc/HTML/en/konqueror/save-print-web.html -share/doc/HTML/en/konqueror/saveset.html +share/doc/HTML/en/konqueror/save-settings.html share/doc/HTML/en/konqueror/surf.html share/doc/HTML/en/konsole/.anchors share/doc/HTML/en/konsole/command-line-options.html @@ -1447,6 +1620,7 @@ share/doc/HTML/en/kwrite/go.html share/doc/HTML/en/kwrite/help.html share/doc/HTML/en/kwrite/index.docbook share/doc/HTML/en/kwrite/index.html +share/doc/HTML/en/kwrite/installation.html share/doc/HTML/en/kwrite/introduction.html share/doc/HTML/en/kwrite/keybindings.html share/doc/HTML/en/kwrite/on-screen-fundamentals.html @@ -1465,6 +1639,66 @@ share/fonts/console8x16.pcf.gz share/fonts/console8x8.pcf.gz share/fonts/fonts.dir share/fonts/override/fonts.dir +share/icons/hicolor/16x16/apps/background.png +share/icons/hicolor/16x16/apps/bell.png +share/icons/hicolor/16x16/apps/cookie.png +share/icons/hicolor/16x16/apps/email.png +share/icons/hicolor/16x16/apps/energy.png +share/icons/hicolor/16x16/apps/enhanced_browsing.png +share/icons/hicolor/16x16/apps/go.png +share/icons/hicolor/16x16/apps/hwinfo.png +share/icons/hicolor/16x16/apps/input_devices_settings.png +share/icons/hicolor/16x16/apps/kappfinder.png +share/icons/hicolor/16x16/apps/kcmkwm.png +share/icons/hicolor/16x16/apps/kcmsystem.png +share/icons/hicolor/16x16/apps/kcontrol.png +share/icons/hicolor/16x16/apps/kdisknav.png +share/icons/hicolor/16x16/apps/keditbookmarks.png +share/icons/hicolor/16x16/apps/kfm.png +share/icons/hicolor/16x16/apps/kfm_home.png +share/icons/hicolor/16x16/apps/khelpcenter.png +share/icons/hicolor/16x16/apps/klipper.png +share/icons/hicolor/16x16/apps/konqueror.png +share/icons/hicolor/16x16/apps/konsole.png +share/icons/hicolor/16x16/apps/kscreensaver.png +share/icons/hicolor/16x16/apps/ksysguard.png +share/icons/hicolor/16x16/apps/ktip.png +share/icons/hicolor/16x16/apps/kwrite.png +share/icons/hicolor/16x16/apps/locale.png +share/icons/hicolor/16x16/apps/looknfeel.png +share/icons/hicolor/16x16/apps/multimedia.png +share/icons/hicolor/16x16/apps/netscape.png +share/icons/hicolor/16x16/apps/package_applications.png +share/icons/hicolor/16x16/apps/package_development.png +share/icons/hicolor/16x16/apps/package_editors.png +share/icons/hicolor/16x16/apps/package_graphics.png +share/icons/hicolor/16x16/apps/package_multimedia.png +share/icons/hicolor/16x16/apps/package_network.png +share/icons/hicolor/16x16/apps/package_settings.png +share/icons/hicolor/16x16/apps/package_system.png +share/icons/hicolor/16x16/apps/package_toys.png +share/icons/hicolor/16x16/apps/package_utilities.png +share/icons/hicolor/16x16/apps/package_wordprocessing.png +share/icons/hicolor/16x16/apps/realplayer.png +share/icons/hicolor/16x16/apps/remote.png +share/icons/hicolor/16x16/apps/samba.png +share/icons/hicolor/16x16/apps/style.png +share/icons/hicolor/16x16/apps/window_list.png +share/icons/hicolor/16x16/devices/3floppy_mount.png +share/icons/hicolor/16x16/devices/3floppy_unmount.png +share/icons/hicolor/16x16/devices/cdaudio_mount.png +share/icons/hicolor/16x16/devices/cdaudio_unmount.png +share/icons/hicolor/16x16/devices/cdrom_mount.png +share/icons/hicolor/16x16/devices/cdrom_unmount.png +share/icons/hicolor/16x16/devices/dvd_mount.png +share/icons/hicolor/16x16/devices/dvd_unmount.png +share/icons/hicolor/16x16/devices/hdd_mount.png +share/icons/hicolor/16x16/devices/hdd_unmount.png +share/icons/hicolor/16x16/devices/nfs_mount.png +share/icons/hicolor/16x16/devices/nfs_unmount.png +share/icons/hicolor/16x16/devices/printer1.png +share/icons/hicolor/16x16/filesystems/file_important.png +share/icons/hicolor/16x16/filesystems/folder_important.png share/icons/hicolor/22x22/actions/view_choose.png share/icons/hicolor/22x22/actions/view_detailed.png share/icons/hicolor/22x22/actions/view_icon.png @@ -1478,11 +1712,13 @@ share/icons/hicolor/32x32/actions/view_multicolumn.png share/icons/hicolor/32x32/actions/view_text.png share/icons/hicolor/32x32/actions/view_tree.png share/icons/hicolor/32x32/apps/access.png +share/icons/hicolor/32x32/apps/acroread.png share/icons/hicolor/32x32/apps/agent.png share/icons/hicolor/32x32/apps/bell.png -share/icons/hicolor/32x32/apps/buttons.png +share/icons/hicolor/32x32/apps/blender.png share/icons/hicolor/32x32/apps/clock.png share/icons/hicolor/32x32/apps/colors.png +share/icons/hicolor/32x32/apps/cookie.png share/icons/hicolor/32x32/apps/date.png share/icons/hicolor/32x32/apps/designer.png share/icons/hicolor/32x32/apps/emacs.png @@ -1512,6 +1748,7 @@ share/icons/hicolor/32x32/apps/kcmx.png share/icons/hicolor/32x32/apps/kcontrol.png share/icons/hicolor/32x32/apps/kdisknav.png share/icons/hicolor/32x32/apps/kdmconfig.png +share/icons/hicolor/32x32/apps/keditbookmarks.png share/icons/hicolor/32x32/apps/key_bindings.png share/icons/hicolor/32x32/apps/keyboard_layout.png share/icons/hicolor/32x32/apps/kfm.png @@ -1544,15 +1781,18 @@ share/icons/hicolor/32x32/apps/package_multimedia.png share/icons/hicolor/32x32/apps/package_network.png share/icons/hicolor/32x32/apps/package_settings.png share/icons/hicolor/32x32/apps/package_system.png +share/icons/hicolor/32x32/apps/package_toys.png share/icons/hicolor/32x32/apps/package_utilities.png +share/icons/hicolor/32x32/apps/package_wordprocessing.png share/icons/hicolor/32x32/apps/password.png share/icons/hicolor/32x32/apps/proxy.png +share/icons/hicolor/32x32/apps/realplayer.png share/icons/hicolor/32x32/apps/style.png share/icons/hicolor/32x32/apps/terminal.png -share/icons/hicolor/32x32/apps/titlebar.png share/icons/hicolor/32x32/apps/window_list.png share/icons/hicolor/32x32/apps/winprops.png share/icons/hicolor/32x32/apps/xapp.png +share/icons/hicolor/32x32/apps/xawtv.png share/icons/hicolor/32x32/apps/xedit.png share/icons/hicolor/32x32/apps/xemacs.png share/icons/hicolor/32x32/apps/xmag.png @@ -1574,16 +1814,20 @@ share/icons/hicolor/32x32/devices/hdd_unmount.png share/icons/hicolor/32x32/devices/memory.png share/icons/hicolor/32x32/devices/mo_mount.png share/icons/hicolor/32x32/devices/mo_unmount.png +share/icons/hicolor/32x32/devices/nfs_mount.png +share/icons/hicolor/32x32/devices/nfs_unmount.png share/icons/hicolor/32x32/devices/printer1.png share/icons/hicolor/32x32/devices/printer2.png share/icons/hicolor/32x32/devices/scanner.png share/icons/hicolor/32x32/devices/tablet.png share/icons/hicolor/32x32/devices/zip_mount.png share/icons/hicolor/32x32/devices/zip_unmount.png +share/icons/hicolor/32x32/filesystems/file_important.png +share/icons/hicolor/32x32/filesystems/folder_important.png share/icons/hicolor/48x48/apps/access.png share/icons/hicolor/48x48/apps/agent.png share/icons/hicolor/48x48/apps/bell.png -share/icons/hicolor/48x48/apps/buttons.png +share/icons/hicolor/48x48/apps/blender.png share/icons/hicolor/48x48/apps/clock.png share/icons/hicolor/48x48/apps/colors.png share/icons/hicolor/48x48/apps/cookie.png @@ -1649,12 +1893,15 @@ share/icons/hicolor/48x48/apps/package_multimedia.png share/icons/hicolor/48x48/apps/package_network.png share/icons/hicolor/48x48/apps/package_settings.png share/icons/hicolor/48x48/apps/package_system.png +share/icons/hicolor/48x48/apps/package_toys.png share/icons/hicolor/48x48/apps/package_utilities.png +share/icons/hicolor/48x48/apps/package_wordprocessing.png share/icons/hicolor/48x48/apps/password.png share/icons/hicolor/48x48/apps/proxy.png +share/icons/hicolor/48x48/apps/remote.png +share/icons/hicolor/48x48/apps/samba.png share/icons/hicolor/48x48/apps/style.png share/icons/hicolor/48x48/apps/terminal.png -share/icons/hicolor/48x48/apps/titlebar.png share/icons/hicolor/48x48/apps/window_list.png share/icons/hicolor/48x48/apps/winprops.png share/icons/hicolor/48x48/apps/xedit.png @@ -1678,12 +1925,17 @@ share/icons/hicolor/48x48/devices/hdd_unmount.png share/icons/hicolor/48x48/devices/memory.png share/icons/hicolor/48x48/devices/mo_mount.png share/icons/hicolor/48x48/devices/mo_unmount.png +share/icons/hicolor/48x48/devices/nfs_mount.png +share/icons/hicolor/48x48/devices/nfs_unmount.png share/icons/hicolor/48x48/devices/printer1.png share/icons/hicolor/48x48/devices/printer2.png share/icons/hicolor/48x48/devices/scanner.png share/icons/hicolor/48x48/devices/tablet.png share/icons/hicolor/48x48/devices/zip_mount.png share/icons/hicolor/48x48/devices/zip_unmount.png +share/icons/hicolor/48x48/filesystems/file_important.png +share/icons/hicolor/48x48/filesystems/folder_important.png +share/icons/locolor/16x16/actions/bookmark_folder.png share/icons/locolor/16x16/actions/view_choose.png share/icons/locolor/16x16/actions/view_detailed.png share/icons/locolor/16x16/actions/view_icon.png @@ -1693,12 +1945,13 @@ share/icons/locolor/16x16/actions/view_tree.png share/icons/locolor/16x16/apps/access.png share/icons/locolor/16x16/apps/acroread.png share/icons/locolor/16x16/apps/agent.png +share/icons/locolor/16x16/apps/alevt.png share/icons/locolor/16x16/apps/applixware.png share/icons/locolor/16x16/apps/arts.png share/icons/locolor/16x16/apps/background.png share/icons/locolor/16x16/apps/bell.png -share/icons/locolor/16x16/apps/borders.png -share/icons/locolor/16x16/apps/buttons.png +share/icons/locolor/16x16/apps/blender.png +share/icons/locolor/16x16/apps/clock.png share/icons/locolor/16x16/apps/colors.png share/icons/locolor/16x16/apps/cookie.png share/icons/locolor/16x16/apps/date.png @@ -1735,12 +1988,14 @@ share/icons/locolor/16x16/apps/kcmx.png share/icons/locolor/16x16/apps/kcontrol.png share/icons/locolor/16x16/apps/kdisknav.png share/icons/locolor/16x16/apps/kdmconfig.png +share/icons/locolor/16x16/apps/keditbookmarks.png share/icons/locolor/16x16/apps/key_bindings.png share/icons/locolor/16x16/apps/keyboard.png share/icons/locolor/16x16/apps/keyboard_layout.png share/icons/locolor/16x16/apps/kfm.png share/icons/locolor/16x16/apps/kfm_home.png share/icons/locolor/16x16/apps/khelpcenter.png +share/icons/locolor/16x16/apps/kicker.png share/icons/locolor/16x16/apps/klipper.png share/icons/locolor/16x16/apps/kmenuedit.png share/icons/locolor/16x16/apps/knotify.png @@ -1758,6 +2013,7 @@ share/icons/locolor/16x16/apps/looknfeel.png share/icons/locolor/16x16/apps/lyx.png share/icons/locolor/16x16/apps/mathematica.png share/icons/locolor/16x16/apps/mouse.png +share/icons/locolor/16x16/apps/mozilla.png share/icons/locolor/16x16/apps/multimedia.png share/icons/locolor/16x16/apps/nedit.png share/icons/locolor/16x16/apps/netscape.png @@ -1778,11 +2034,12 @@ share/icons/locolor/16x16/apps/password.png share/icons/locolor/16x16/apps/penguin.png share/icons/locolor/16x16/apps/plan.png share/icons/locolor/16x16/apps/proxy.png +share/icons/locolor/16x16/apps/pybliographic.png share/icons/locolor/16x16/apps/realplayer.png +share/icons/locolor/16x16/apps/remote.png share/icons/locolor/16x16/apps/samba.png share/icons/locolor/16x16/apps/style.png share/icons/locolor/16x16/apps/terminal.png -share/icons/locolor/16x16/apps/titlebar.png share/icons/locolor/16x16/apps/wabi.png share/icons/locolor/16x16/apps/window_list.png share/icons/locolor/16x16/apps/winprops.png @@ -1824,11 +2081,12 @@ share/icons/locolor/16x16/devices/zip_unmount.png share/icons/locolor/32x32/apps/access.png share/icons/locolor/32x32/apps/acroread.png share/icons/locolor/32x32/apps/agent.png +share/icons/locolor/32x32/apps/alevt.png share/icons/locolor/32x32/apps/applixware.png share/icons/locolor/32x32/apps/background.png share/icons/locolor/32x32/apps/bell.png -share/icons/locolor/32x32/apps/borders.png -share/icons/locolor/32x32/apps/buttons.png +share/icons/locolor/32x32/apps/blender.png +share/icons/locolor/32x32/apps/clanbomber.png share/icons/locolor/32x32/apps/clock.png share/icons/locolor/32x32/apps/colors.png share/icons/locolor/32x32/apps/cookie.png @@ -1908,16 +2166,18 @@ share/icons/locolor/32x32/apps/password.png share/icons/locolor/32x32/apps/penguin.png share/icons/locolor/32x32/apps/plan.png share/icons/locolor/32x32/apps/proxy.png +share/icons/locolor/32x32/apps/pybliographic.png +share/icons/locolor/32x32/apps/pysol.png share/icons/locolor/32x32/apps/realplayer.png share/icons/locolor/32x32/apps/samba.png share/icons/locolor/32x32/apps/style.png share/icons/locolor/32x32/apps/terminal.png -share/icons/locolor/32x32/apps/titlebar.png share/icons/locolor/32x32/apps/wabi.png share/icons/locolor/32x32/apps/window_list.png share/icons/locolor/32x32/apps/winprops.png share/icons/locolor/32x32/apps/wp.png share/icons/locolor/32x32/apps/xapp.png +share/icons/locolor/32x32/apps/xawtv.png share/icons/locolor/32x32/apps/xcalc.png share/icons/locolor/32x32/apps/xclipboard.png share/icons/locolor/32x32/apps/xclock.png @@ -2041,8 +2301,12 @@ share/locale/l10n/kr/entry.desktop share/locale/l10n/kr/flag.png share/locale/l10n/lc/entry.desktop share/locale/l10n/lc/flag.png +share/locale/l10n/lt/entry.desktop +share/locale/l10n/lt/flag.png share/locale/l10n/lu/entry.desktop share/locale/l10n/lu/flag.png +share/locale/l10n/lv/entry.desktop +share/locale/l10n/lv/flag.png share/locale/l10n/mk/entry.desktop share/locale/l10n/mk/flag.png share/locale/l10n/mx/entry.desktop @@ -2104,12 +2368,23 @@ share/locale/l10n/westeurope.desktop share/locale/l10n/za/entry.desktop share/locale/l10n/za/flag.png share/mimelnk/application/x-konsole.desktop +share/mimelnk/application/x-ktheme.desktop +share/services/bzip.protocol +share/services/bzip2.protocol +share/services/finger.protocol +share/services/floppy.protocol share/services/gopher.protocol share/services/gzip.protocol share/services/help.protocol +share/services/htmlthumbnail.desktop +share/services/imagethumbnail.desktop +share/services/imap4.protocol +share/services/imaps.protocol share/services/info.protocol share/services/kaccess.desktop +share/services/kfindpart.desktop share/services/khelpcenter.desktop +share/services/konq_aboutpage.desktop share/services/konq_detailedlistview.desktop share/services/konq_dirtree.desktop share/services/konq_iconview.desktop @@ -2117,6 +2392,7 @@ share/services/konq_multicolumnview.desktop share/services/konq_textview.desktop share/services/konq_treeview.desktop share/services/konqueror.desktop +share/services/konqueror_config.desktop share/services/konsolepart.desktop share/services/kshorturifilter.desktop share/services/kuriikwsfilter.desktop @@ -2124,14 +2400,58 @@ share/services/kurisearchfilter.desktop share/services/kwrite_component.desktop share/services/kxkb.desktop share/services/kxmlrpcd.desktop +share/services/ldap.protocol share/services/man.protocol share/services/nfs.protocol share/services/nntp.protocol share/services/pop3.protocol share/services/pop3s.protocol +share/services/searchproviders/acronym.desktop +share/services/searchproviders/altavista.desktop +share/services/searchproviders/austronaut.desktop +share/services/searchproviders/bugft.desktop +share/services/searchproviders/bugno.desktop +share/services/searchproviders/deja.desktop +share/services/searchproviders/dmoz.desktop +share/services/searchproviders/excite.desktop +share/services/searchproviders/foldoc.desktop +share/services/searchproviders/freshmeat.desktop +share/services/searchproviders/google.desktop +share/services/searchproviders/hotbot.desktop +share/services/searchproviders/jeeves.desktop +share/services/searchproviders/leo.desktop +share/services/searchproviders/lycos.desktop +share/services/searchproviders/mamma.desktop +share/services/searchproviders/metacrawler.desktop +share/services/searchproviders/realnames.desktop +share/services/searchproviders/rpmfind.desktop +share/services/searchproviders/seek.desktop +share/services/searchproviders/thesaurus.desktop +share/services/searchproviders/voila.desktop +share/services/searchproviders/webster.desktop share/services/smb.protocol share/services/smtp.protocol share/services/tar.protocol +share/services/textthumbnail.desktop +share/services/thumbnail.protocol +share/servicetypes/findpart.desktop +share/servicetypes/konqaboutpage.desktop +share/servicetypes/searchprovider.desktop +share/servicetypes/thumbcreator.desktop +share/sounds/KDE_Beep_Ahem.wav +share/sounds/KDE_Beep_Beep.wav +share/sounds/KDE_Beep_Bottles.wav +share/sounds/KDE_Beep_ClassicBeep.wav +share/sounds/KDE_Beep_ClockChime.wav +share/sounds/KDE_Beep_Connect.wav +share/sounds/KDE_Beep_Door.wav +share/sounds/KDE_Beep_Honk.wav +share/sounds/KDE_Beep_Lightning.wav +share/sounds/KDE_Beep_Pop.wav +share/sounds/KDE_Beep_RimShot.wav +share/sounds/KDE_Beep_RingRing.wav +share/sounds/KDE_Beep_ShortBeep.wav +share/sounds/KDE_Beep_Yo.wav share/sounds/KDE_Close_Window.wav share/sounds/KDE_Logout.wav share/sounds/KDE_Startup.wav @@ -2185,6 +2505,105 @@ share/wallpapers/northbeach.jpg share/wallpapers/simple_wallpaper.jpg share/wallpapers/sunday_brunch.jpg share/wallpapers/vegetative_fog.jpg +@dirrm share/wallpapers +@dirrm share/templates/.source +@dirrm share/templates +@dirrm share/sounds +@dirrm share/servicetypes +@dirrm share/services/searchproviders +@dirrm share/services +@dirrm share/mimelnk/application +@dirrm share/locale/l10n/za +@dirrm share/locale/l10n/ve +@dirrm share/locale/l10n/vc +@dirrm share/locale/l10n/uy +@dirrm share/locale/l10n/us +@dirrm share/locale/l10n/ua +@dirrm share/locale/l10n/tw +@dirrm share/locale/l10n/tt +@dirrm share/locale/l10n/tr +@dirrm share/locale/l10n/th +@dirrm share/locale/l10n/sv +@dirrm share/locale/l10n/sr +@dirrm share/locale/l10n/sk +@dirrm share/locale/l10n/si +@dirrm share/locale/l10n/se +@dirrm share/locale/l10n/ru +@dirrm share/locale/l10n/ro +@dirrm share/locale/l10n/py +@dirrm share/locale/l10n/pt +@dirrm share/locale/l10n/pl +@dirrm share/locale/l10n/pe +@dirrm share/locale/l10n/pa +@dirrm share/locale/l10n/nz +@dirrm share/locale/l10n/no +@dirrm share/locale/l10n/nl +@dirrm share/locale/l10n/mx +@dirrm share/locale/l10n/mk +@dirrm share/locale/l10n/lv +@dirrm share/locale/l10n/lu +@dirrm share/locale/l10n/lt +@dirrm share/locale/l10n/lc +@dirrm share/locale/l10n/kr +@dirrm share/locale/l10n/kp +@dirrm share/locale/l10n/kn +@dirrm share/locale/l10n/jp +@dirrm share/locale/l10n/jm +@dirrm share/locale/l10n/it +@dirrm share/locale/l10n/is +@dirrm share/locale/l10n/il +@dirrm share/locale/l10n/ie +@dirrm share/locale/l10n/hu +@dirrm share/locale/l10n/hr +@dirrm share/locale/l10n/hn +@dirrm share/locale/l10n/gt +@dirrm share/locale/l10n/gr +@dirrm share/locale/l10n/gd +@dirrm share/locale/l10n/gb +@dirrm share/locale/l10n/fr +@dirrm share/locale/l10n/fi +@dirrm share/locale/l10n/es +@dirrm share/locale/l10n/ee +@dirrm share/locale/l10n/ec +@dirrm share/locale/l10n/do +@dirrm share/locale/l10n/dk +@dirrm share/locale/l10n/de +@dirrm share/locale/l10n/cz +@dirrm share/locale/l10n/co +@dirrm share/locale/l10n/cn +@dirrm share/locale/l10n/cl +@dirrm share/locale/l10n/ch +@dirrm share/locale/l10n/ca +@dirrm share/locale/l10n/br +@dirrm share/locale/l10n/bo +@dirrm share/locale/l10n/bg +@dirrm share/locale/l10n/be +@dirrm share/locale/l10n/bb +@dirrm share/locale/l10n/au +@dirrm share/locale/l10n/at +@dirrm share/locale/l10n/ar +@dirrm share/locale/l10n/ag +@dirrm share/locale/l10n/C +@dirrm share/locale/l10n +@dirrm share/locale/C +@dirrm share/icons/locolor/32x32/devices +@dirrm share/icons/locolor/32x32/apps +@dirrm share/icons/locolor/16x16/devices +@dirrm share/icons/locolor/16x16/apps +@dirrm share/icons/locolor/16x16/actions +@dirrm share/icons/hicolor/48x48/filesystems +@dirrm share/icons/hicolor/48x48/devices +@dirrm share/icons/hicolor/48x48/apps +@dirrm share/icons/hicolor/32x32/filesystems +@dirrm share/icons/hicolor/32x32/devices +@dirrm share/icons/hicolor/32x32/apps +@dirrm share/icons/hicolor/32x32/actions +@dirrm share/icons/hicolor/22x22/actions +@dirrm share/icons/hicolor/16x16/filesystems +@dirrm share/icons/hicolor/16x16/devices +@dirrm share/icons/hicolor/16x16/apps +@dirrm share/fonts/override +@dirrm share/fonts @dirrm share/doc/HTML/en/kwrite @dirrm share/doc/HTML/en/ksysguard @dirrm share/doc/HTML/en/kpager @@ -2202,17 +2621,22 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/doc/HTML/en/kdesu @dirrm share/doc/HTML/en/kdebugdialog @dirrm share/doc/HTML/en/kcontrol -@dirrm share/apps/quickbrowser +@dirrm share/doc/HTML/en +@dirrm share/config +@dirrm share/autostart +@dirrm share/apps/naughtyapplet/pics @dirrm share/apps/kwrite @dirrm share/apps/kwin/pics @dirrm share/apps/kwin +@dirrm share/apps/kthememgr/Themes +@dirrm share/apps/kthememgr @dirrm share/apps/ksysguard/icons/locolor/16x16/apps @dirrm share/apps/ksysguard/icons/locolor/16x16 @dirrm share/apps/ksysguard/icons/locolor @dirrm share/apps/ksysguard/icons @dirrm share/apps/ksysguard +@dirrm share/apps/ksplash/pics/locolor @dirrm share/apps/ksplash/pics -@dirrm share/apps/ksplash @dirrm share/apps/kscreensaver @dirrm share/apps/konsole/pics @dirrm share/apps/konsole @@ -2226,14 +2650,18 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/konqueror/icons/hicolor/32x32 @dirrm share/apps/konqueror/icons/hicolor/22x22/actions @dirrm share/apps/konqueror/icons/hicolor/22x22 +@dirrm share/apps/konqueror/icons/hicolor/16x16/actions @dirrm share/apps/konqueror/icons/hicolor @dirrm share/apps/konqueror/icons @dirrm share/apps/konqueror/dirtree/remote/web @dirrm share/apps/konqueror/dirtree/remote/ftp @dirrm share/apps/konqueror/dirtree/remote @dirrm share/apps/konqueror/dirtree +@dirrm share/apps/konqueror/about @dirrm share/apps/konqueror +@dirrm share/apps/konqlistview/kpartplugins @dirrm share/apps/konqlistview +@dirrm share/apps/konqiconview/kpartplugins @dirrm share/apps/konqiconview @dirrm share/apps/kmenuedit/icons/locolor/16x16/actions @dirrm share/apps/kmenuedit/icons/locolor/16x16 @@ -2246,13 +2674,16 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kmenuedit/icons @dirrm share/apps/kmenuedit @dirrm share/apps/kio_info +@dirrm share/apps/kio_finger @dirrm share/apps/kicker/wallpapers @dirrm share/apps/kicker/tiles @dirrm share/apps/kicker/pics @dirrm share/apps/kicker/icons/locolor/16x16/actions @dirrm share/apps/kicker/icons/locolor/16x16 @dirrm share/apps/kicker/icons/locolor +@dirrm share/apps/kicker/icons/hicolor/16x16/actions @dirrm share/apps/kicker/icons +@dirrm share/apps/kicker/extensions @dirrm share/apps/kicker/applets @dirrm share/apps/kicker @dirrm share/apps/khelpcenter/plugins/Tutorials @@ -2264,6 +2695,8 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/khelpcenter/icons @dirrm share/apps/khelpcenter/en @dirrm share/apps/khelpcenter +@dirrm share/apps/kfind/icons/locolor/22x22/actions +@dirrm share/apps/keditbookmarks @dirrm share/apps/kdm/pics/users @dirrm share/apps/kdm/pics @dirrm share/apps/kdm @@ -2282,9 +2715,11 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kcontrol @dirrm share/apps/kcmlocale/pics @dirrm share/apps/kcmlocale +@dirrm share/apps/kcmkeys/standard @dirrm share/apps/kcminput @dirrm share/apps/kbookmark @dirrm share/apps/kappfinder/apps/WordProcessing +@dirrm share/apps/kappfinder/apps/Utilities/XUtilities @dirrm share/apps/kappfinder/apps/Utilities @dirrm share/apps/kappfinder/apps/Toys @dirrm share/apps/kappfinder/apps/System/ScreenSavers @@ -2293,13 +2728,45 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kappfinder/apps/Multimedia @dirrm share/apps/kappfinder/apps/Internet @dirrm share/apps/kappfinder/apps/Graphics +@dirrm share/apps/kappfinder/apps/Games @dirrm share/apps/kappfinder/apps/Editors @dirrm share/apps/kappfinder/apps/Development @dirrm share/apps/kappfinder/apps -@dirrm share/apps/kappfinder @dirrm share/apps/drkonqi/presets @dirrm share/apps/drkonqi/pics @dirrm share/apps/drkonqi/debuggers @dirrm share/apps/drkonqi @dirrm share/apps/clockapplet/pics @dirrm share/apps/clockapplet +@dirrm share/apps +@dirrm share/applnk/Utilities +@dirrm share/applnk/Toys +@dirrm share/applnk/System/ScreenSavers +@dirrm share/applnk/System +@dirrm share/applnk/Settings/WebBrowsing +@dirrm share/applnk/Settings/System +@dirrm share/applnk/Settings/Sound +@dirrm share/applnk/Settings/PowerControl +@dirrm share/applnk/Settings/Personalization +@dirrm share/applnk/Settings/Peripherals +@dirrm share/applnk/Settings/Network +@dirrm share/applnk/Settings/LookNFeel/Windows +@dirrm share/applnk/Settings/LookNFeel/Themes +@dirrm share/applnk/Settings/LookNFeel/Desktop +@dirrm share/applnk/Settings/LookNFeel +@dirrm share/applnk/Settings/Information +@dirrm share/applnk/Settings/Help +@dirrm share/applnk/Settings/FileBrowsing +@dirrm share/applnk/Settings +@dirrm share/applnk/Office +@dirrm share/applnk/Multimedia +@dirrm share/applnk/Internet +@dirrm share/applnk/Graphics +@dirrm share/applnk/Games +@dirrm share/applnk/Editors +@dirrm share/applnk/Development +@dirrm share/applnk/Applications +@dirrm share/applnk/.hidden +@dirrm share/applnk +@dirrm lib/kde2 +@dirrm include/kwin diff --git a/x11/kdebase4/Makefile b/x11/kdebase4/Makefile index e44f3da88bf8..a346796a21ee 100644 --- a/x11/kdebase4/Makefile +++ b/x11/kdebase4/Makefile @@ -6,12 +6,12 @@ # PORTNAME= kdebase -PORTVERSION= 2.0.1 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION}/distribution/tar/generic/src -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= kdeui.4:${PORTSDIR}/x11/kdelibs2 \ intl.1:${PORTSDIR}/devel/gettext diff --git a/x11/kdebase4/distinfo b/x11/kdebase4/distinfo index 80f0c4ce35f6..243923f1a5d7 100644 --- a/x11/kdebase4/distinfo +++ b/x11/kdebase4/distinfo @@ -1 +1 @@ -MD5 (kdebase-2.0.1.tar.bz2) = b138a67ae22fbda05def8e932820ac66 +MD5 (kdebase-2.1.tar.bz2) = 54264460bca895cc3e315bb49c297f8f diff --git a/x11/kdebase4/files/patch-Processlist.c b/x11/kdebase4/files/patch-Processlist.c deleted file mode 100644 index 863d56e7ec72..000000000000 --- a/x11/kdebase4/files/patch-Processlist.c +++ /dev/null @@ -1,80 +0,0 @@ ---- ksysguard/ksysguardd/FreeBSD/ProcessList.c.old Tue Jan 23 19:44:29 2001 -+++ ksysguard/ksysguardd/FreeBSD/ProcessList.c Tue Jan 23 20:19:24 2001 -@@ -186,7 +186,20 @@ - if (sysctl(mib, 4, &p, &len, NULL, 0) == -1 || !len) - return -1; - -- /* ?? */ -+#if __FreeBSD_version >= 500015 -+ /* Getting runtime process info */ -+ ps->pid = p.ki_pid; -+ ps->ppid = p.ki_ppid; -+ strcpy(ps->name, p.ki_comm); -+ ps->uid = p.ki_uid; -+ ps->gid = p.ki_pgid; -+ -+ pwent = getpwuid(ps->uid); -+ strcpy(ps->userName, pwent ? pwent->pw_name : "????"); -+ ps->priority = p.ki_priority; -+ ps->niceLevel = p.ki_nice; -+ -+#else - ps->pid = p.kp_proc.p_pid; - ps->ppid = p.kp_eproc.e_ppid; - strcpy(ps->name, p.kp_proc.p_comm); -@@ -198,16 +211,30 @@ - strcpy(ps->userName, pwent ? pwent->pw_name : "????"); - ps->priority = p.kp_proc.p_priority; - ps->niceLevel = p.kp_proc.p_nice; -+#endif - - /* this isn't usertime -- it's total time (??) */ --#if __FreeBSD_version >= 300000 -+#if __FreeBSD_version >= 500015 -+ ps->userTime = p.ki_runtime / 10000; -+#elif __FreeBSD_version >= 300000 - ps->userTime = p.kp_proc.p_runtime / 10000; - #else - ps->userTime = p.kp_proc.p_rtime.tv_sec*100+p.kp_proc.p_rtime.tv_usec/100 - #endif -+ - ps->sysTime = 0; -- ps->userLoad = p.kp_proc.p_pctcpu / 100; - ps->sysLoad = 0; -+#if __FreeBSD_version >= 500015 -+ ps->userLoad = p.ki_pctcpu / 100; -+ -+ /* memory */ -+ ps->vmSize = p.ki_size * getpagesize(); -+ -+ ps->vmRss = p.ki_rssize * getpagesize(); -+ -+ ps->status = p.ki_stat; -+#else -+ ps->userLoad = p.kp_proc.p_pctcpu / 100; - - /* memory */ - ps->vmSize = (p.kp_eproc.e_vm.vm_tsize + -@@ -216,7 +243,7 @@ - ps->vmRss = p.kp_eproc.e_vm.vm_rssize * getpagesize(); - - ps->status = p.kp_proc.p_stat; -- -+#endif - return (0); - } - -@@ -284,8 +311,13 @@ - p = malloc(len); - sysctl(mib, 3, p, &len, NULL, 0); - -+#if __FreeBSD_version >= 500015 -+ for (num = 0; num < len / sizeof(struct kinfo_proc); num++) -+ updateProcess(p[num].ki_pid); -+#else - for (num = 0; num < len / sizeof(struct kinfo_proc); num++) - updateProcess(p[num].kp_proc.p_pid); -+#endif - - cleanupProcessList(); - diff --git a/x11/kdebase4/files/patch-TEPty.C b/x11/kdebase4/files/patch-TEPty.C index 9bfd5db25ccd..796ec243efbf 100644 --- a/x11/kdebase4/files/patch-TEPty.C +++ b/x11/kdebase4/files/patch-TEPty.C @@ -1,83 +1,6 @@ ---- konsole/src/TEPty.C.orig Fri Dec 8 11:51:24 2000 -+++ konsole/src/TEPty.C Fri Dec 8 11:52:51 2000 -@@ -180,27 +180,57 @@ - // param grant: 1 to grant, 0 to revoke - // returns 1 on success 0 on fail - { -- pid_t pid = fork(); -- if (pid < 0) -- { -- return 0; -- } -- if (pid == 0) -- { -- /* We pass the master pseudo terminal as file descriptor PTY_FILENO. */ -- if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) exit(1); -- QString path = locate("exe", BASE_CHOWN); -+ pid_t pid; -+ int pstat; -+ struct sigaction ign; -+ struct sigaction intact; // interupt action -+ struct sigaction quitact; // quit action -+ sigset_t newsigblock, oldsigblock; -+ QString path; -+ -+ ign.sa_handler = SIG_IGN; -+ sigemptyset(&ign.sa_mask); -+ ign.sa_flags = 0; -+ sigaction(SIGINT, &ign, &intact); -+ sigaction(SIGQUIT, &ign, &quitact); -+ sigemptyset(&newsigblock); -+ sigaddset(&newsigblock, SIGCHLD); -+ sigprocmask(SIG_BLOCK, &newsigblock, &oldsigblock); -+ -+ switch (pid = fork()) { -+ case -1: -+ return(0); -+ break; -+ case 0: // child -+ if (fd != PTY_FILENO && dup2(fd, PTY_FILENO) < 0) -+ exit(1); -+ path = locate("exe", BASE_CHOWN); -+ -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); - execle(path.ascii(), BASE_CHOWN, grant?"--grant":"--revoke", NULL, NULL); -- exit(1); // should not be reached -- } -- if (pid > 0) -- { int w; -- retry: -- int rc = waitpid (pid, &w, 0); -- if ((rc == -1) && (errno == EINTR)) -- goto retry; -- return (rc != -1 && WIFEXITED(w) && WEXITSTATUS(w) == 0); -+ exit(1); -+ break; -+ default: -+ do { -+ pid = waitpid(pid, &pstat, 0); -+ } while (pid == -1 && errno == EINTR); -+ break; - } -+ sigaction(SIGINT, &intact, NULL); -+ sigaction(SIGQUIT, &quitact, NULL); -+ sigprocmask(SIG_SETMASK, &oldsigblock, NULL); -+ -+ if (pid == -1) { -+ return 0; -+ } -+ else if (WIFEXITED(pstat) && (WEXITSTATUS(pstat) == 0)) { -+ return 1; -+ } -+ else { -+ return 0; -+ } - return 0; //dummy. - } - -@@ -225,7 +255,7 @@ +--- konsole/src/TEPty.C Sun Feb 18 10:28:28 2001 ++++ konsole/src/TEPty.C.new Fri Feb 23 02:55:58 2001 +@@ -238,7 +238,7 @@ #ifdef HAVE_UTEMPTER removeLineFromUtmp(ttynam, fd); #elif defined(USE_LOGIN) diff --git a/x11/kdebase4/files/patch-kdeeject b/x11/kdebase4/files/patch-kdeeject index 38c12b5eafbf..8a5870ad25ff 100644 --- a/x11/kdebase4/files/patch-kdeeject +++ b/x11/kdebase4/files/patch-kdeeject @@ -1,9 +1,9 @@ ---- kdesktop/kdeeject.orig Fri Dec 1 15:25:26 2000 -+++ kdesktop/kdeeject Fri Dec 1 15:25:33 2000 -@@ -8,7 +8,8 @@ - # kmessage, to show a message box in case of error. - # - if [ $# = 1 -a "$1" != "--help" ]; then +--- kdesktop/kdeeject Wed Dec 13 13:25:02 2000 ++++ kdesktop/kdeeject.new Fri Feb 23 02:59:54 2001 +@@ -11,7 +11,8 @@ + # TODO: On bsd, it should be 'cdcontrol -f $1 eject' + # Checking for stuff in the PATH is ugly with sh though. + # I guess this is the reason for making this a kde app... - if eject $1; then + dev=`echo $1 | sed -E -e 's#/dev/##' -e 's/([0-9])./\1/'` + if cdcontrol -f $dev eject; then diff --git a/x11/kdebase4/files/patch-konsole_grantpty.c b/x11/kdebase4/files/patch-konsole_grantpty.c deleted file mode 100644 index 889d15bdb592..000000000000 --- a/x11/kdebase4/files/patch-konsole_grantpty.c +++ /dev/null @@ -1,79 +0,0 @@ ---- konsole/src/konsole_grantpty.c.orig Sat Jun 12 07:13:31 1999 -+++ konsole/src/konsole_grantpty.c Fri Dec 8 11:54:43 2000 -@@ -31,13 +31,15 @@ - #include <string.h> - #include <sys/stat.h> - #include <unistd.h> -+#include <dirent.h> -+#include <paths.h> - - #define PTY_FILENO 3 /* keep in sync with grantpty */ - #define TTY_GROUP "tty" - - int main (int argc, char *argv[]) - { -- char* pty; -+ char* pty = NULL; - struct stat st; - struct group* p; - gid_t gid; -@@ -81,6 +83,7 @@ - - /* get slave pty name from master pty file handle in PTY_FILENO *********/ - -+#if 0 - /* Check that PTY_FILENO is a valid master pseudo terminal. */ - pty = ttyname(PTY_FILENO); /* posix */ - if (pty == NULL) -@@ -89,6 +92,42 @@ - return 1; /* FAIL */ - } - close(PTY_FILENO); -+#else -+ /* The trouble with the ifdef'd-out portion above is that ttyname() -+ ** does not work correctly when not passed a valid tty, but a pseudotty -+ ** instead. All we're doing here is finding out what the name of -+ ** the associated pty is without having to pass it in on the command line. -+ ** Nothing complex. -+ */ -+ { -+ struct stat sb; -+ struct stat dsb; -+ struct dirent *dirp; -+ static char buf[sizeof(_PATH_DEV) + MAXNAMLEN] = _PATH_DEV; -+ DIR *dp; -+ -+ pty = NULL; -+ -+ if (fstat(PTY_FILENO, &sb)) -+ return 1; /* FAIL */ -+ if ((dp = opendir(_PATH_DEV)) == NULL) -+ return 1; /* FAIL */ -+ -+ while ((dirp = readdir(dp))) { -+ if (dirp->d_fileno != sb.st_ino) -+ continue; -+ bcopy(dirp->d_name, buf + sizeof(_PATH_DEV) - 1, dirp->d_namlen+1); -+ /*fprintf(stderr, "looking at %s\n", buf);*/ -+ if (stat(buf, &dsb) || sb.st_dev != dsb.st_dev || sb.st_ino != dsb.st_ino) -+ continue; -+ pty = buf; -+ } -+ closedir(dp); -+ if (pty == NULL) -+ return 1; /* FAIL */ -+ } -+ /*fprintf(stderr, "successful at finding %s\n", pty);*/ -+#endif - - /* matches /dev/pty?? */ - if (strlen(pty) < 8 || strncmp(pty,"/dev/pty",8)) -@@ -120,6 +159,8 @@ - fprintf(stderr,"%s: cannot chmod %s.\n",argv[0],tty); perror("Reason"); - return 1; /* FAIL */ - } -+ -+ /*fprintf(stderr, "made it here\n");*/ - - return 0; /* OK */ - } diff --git a/x11/kdebase4/pkg-plist b/x11/kdebase4/pkg-plist index 7a8ef62507e2..5424c20a9cca 100644 --- a/x11/kdebase4/pkg-plist +++ b/x11/kdebase4/pkg-plist @@ -2,6 +2,7 @@ bin/appletproxy bin/chooser bin/conttest bin/drkonqi +bin/extensionproxy bin/kaccess bin/kappfinder bin/kbanner.kss @@ -21,6 +22,7 @@ bin/kdesu bin/kdesud bin/kdm bin/kdmdesktop +bin/keditbookmarks bin/keditfiletype bin/kfmclient bin/kfmexec @@ -33,25 +35,22 @@ bin/klegacyimport bin/klines.kss bin/klipper bin/klorenz.kss -bin/kman2html bin/kmatrix.kss bin/kmenuedit -bin/kmorph3d.kss bin/konqueror bin/konsole bin/konsole_grantpty bin/kpager -bin/kpipes.kss bin/kpolygon.kss bin/kpyro.kss bin/krandom.kss bin/krdb +bin/kreadconfig bin/krock.kss bin/kscience.kss bin/kslidescreen.kss bin/kslideshow.kss bin/ksmserver -bin/kspace.kss bin/ksplash bin/kstart bin/kswarm.kss @@ -59,7 +58,9 @@ bin/ksysguard bin/ksysguardd bin/ktip bin/kvm.kss +bin/kwebdesktop bin/kwin +bin/kwmtheme bin/kwrite bin/kwrited bin/kxkb @@ -75,6 +76,10 @@ include/KonquerorIface.h include/ccont.h include/kbookmark.h include/kbookmarkbar.h +include/kbookmarkdrag.h +include/kbookmarkexporter.h +include/kbookmarkimporter.h +include/kbookmarkmanager.h include/kbookmarkmenu.h include/kfileivi.h include/knewmenu.h @@ -84,61 +89,189 @@ include/konq_dirlister.h include/konq_dirpart.h include/konq_drag.h include/konq_events.h +include/konq_faviconmgr.h include/konq_fileitem.h +include/konq_historycomm.h +include/konq_historymgr.h include/konq_iconviewwidget.h include/konq_imagepreviewjob.h +include/konq_mimetyperesolver.h include/konq_operations.h +include/konq_pixmapprovider.h include/konq_popupmenu.h include/konq_propsview.h include/konq_settings.h include/konq_undo.h +include/kwin/client.h +include/kwin/options.h +include/kwin/workspace.h +include/thumbcreator.h lib/appletproxy.la lib/appletproxy.so -lib/kaccess.la -lib/kaccess.so +lib/extensionproxy.la +lib/extensionproxy.so lib/kcminit.la lib/kcminit.so lib/kcmshell.la lib/kcmshell.so lib/kcontrol.la lib/kcontrol.so +lib/kde2/htmlthumbnail.la +lib/kde2/htmlthumbnail.so +lib/kde2/imagethumbnail.la +lib/kde2/imagethumbnail.so +lib/kde2/kaccess.la +lib/kde2/kaccess.so +lib/kde2/kio_filter.la +lib/kde2/kio_filter.so +lib/kde2/kio_finger.la +lib/kde2/kio_finger.so +lib/kde2/kio_floppy.la +lib/kde2/kio_floppy.so +lib/kde2/kio_gopher.la +lib/kde2/kio_gopher.so +lib/kde2/kio_help.la +lib/kde2/kio_help.so +lib/kde2/kio_imap4.la +lib/kde2/kio_imap4.so +lib/kde2/kio_info.la +lib/kde2/kio_info.so +lib/kde2/kio_ldap.la +lib/kde2/kio_ldap.so +lib/kde2/kio_man.la +lib/kde2/kio_man.so +lib/kde2/kio_nfs.la +lib/kde2/kio_nfs.so +lib/kde2/kio_nntp.la +lib/kde2/kio_nntp.so +lib/kde2/kio_pop3.la +lib/kde2/kio_pop3.so +lib/kde2/kio_smb.la +lib/kde2/kio_smb.so +lib/kde2/kio_smtp.la +lib/kde2/kio_smtp.so +lib/kde2/kio_tar.la +lib/kde2/kio_tar.so +lib/kde2/kio_thumbnail.la +lib/kde2/kio_thumbnail.so +lib/kde2/libkcm_access.la +lib/kde2/libkcm_access.so +lib/kde2/libkcm_arts.la +lib/kde2/libkcm_arts.so +lib/kde2/libkcm_background.la +lib/kde2/libkcm_background.so +lib/kde2/libkcm_bell.la +lib/kde2/libkcm_bell.so +lib/kde2/libkcm_clock.la +lib/kde2/libkcm_clock.so +lib/kde2/libkcm_colors.la +lib/kde2/libkcm_colors.so +lib/kde2/libkcm_crypto.la +lib/kde2/libkcm_crypto.so +lib/kde2/libkcm_email.la +lib/kde2/libkcm_email.so +lib/kde2/libkcm_energy.la +lib/kde2/libkcm_energy.so +lib/kde2/libkcm_filetypes.la +lib/kde2/libkcm_filetypes.so +lib/kde2/libkcm_fonts.la +lib/kde2/libkcm_fonts.so +lib/kde2/libkcm_icons.la +lib/kde2/libkcm_icons.so +lib/kde2/libkcm_info.la +lib/kde2/libkcm_info.so +lib/kde2/libkcm_input.la +lib/kde2/libkcm_input.so +lib/kde2/libkcm_kdm.la +lib/kde2/libkcm_kdm.so +lib/kde2/libkcm_keys.la +lib/kde2/libkcm_keys.so +lib/kde2/libkcm_khotkeys.la +lib/kde2/libkcm_khotkeys.so +lib/kde2/libkcm_kicker.la +lib/kde2/libkcm_kicker.so +lib/kde2/libkcm_kio.la +lib/kde2/libkcm_kio.so +lib/kde2/libkcm_knotify.la +lib/kde2/libkcm_knotify.so +lib/kde2/libkcm_konq.la +lib/kde2/libkcm_konq.so +lib/kde2/libkcm_konqhtml.la +lib/kde2/libkcm_konqhtml.so +lib/kde2/libkcm_kurifilt.la +lib/kde2/libkcm_kurifilt.so +lib/kde2/libkcm_kwinoptions.la +lib/kde2/libkcm_kwinoptions.so +lib/kde2/libkcm_locale.la +lib/kde2/libkcm_locale.so +lib/kde2/libkcm_midi.la +lib/kde2/libkcm_midi.so +lib/kde2/libkcm_passwords.la +lib/kde2/libkcm_passwords.so +lib/kde2/libkcm_samba.la +lib/kde2/libkcm_samba.so +lib/kde2/libkcm_screensaver.la +lib/kde2/libkcm_screensaver.so +lib/kde2/libkcm_smserver.la +lib/kde2/libkcm_smserver.so +lib/kde2/libkcm_style.la +lib/kde2/libkcm_style.so +lib/kde2/libkcm_taskbar.la +lib/kde2/libkcm_taskbar.so +lib/kde2/libkcm_themes.la +lib/kde2/libkcm_themes.so +lib/kde2/libkfindpart.la +lib/kde2/libkfindpart.so +lib/kde2/libkonqiconview.la +lib/kde2/libkonqiconview.so +lib/kde2/libkonqlistview.la +lib/kde2/libkonqlistview.so +lib/kde2/libkonqtree.la +lib/kde2/libkonqtree.so +lib/kde2/libkshellcmdplugin.la +lib/kde2/libkshellcmdplugin.so +lib/kde2/libkshorturifilter.la +lib/kde2/libkshorturifilter.so +lib/kde2/libkuriikwsfilter.la +lib/kde2/libkuriikwsfilter.so +lib/kde2/libkurisearchfilter.la +lib/kde2/libkurisearchfilter.so +lib/kde2/libkwin2k.la +lib/kde2/libkwin2k.so +lib/kde2/libkwinb2.la +lib/kde2/libkwinb2.so +lib/kde2/libkwinkde1.la +lib/kde2/libkwinkde1.so +lib/kde2/libkwinkstep.la +lib/kde2/libkwinkstep.so +lib/kde2/libkwinkwmtheme.la +lib/kde2/libkwinkwmtheme.so +lib/kde2/libkwinlaptop.la +lib/kde2/libkwinlaptop.so +lib/kde2/libkwinmodernsys.la +lib/kde2/libkwinmodernsys.so +lib/kde2/libkwinriscos.la +lib/kde2/libkwinriscos.so +lib/kde2/libkwinsystem.la +lib/kde2/libkwinsystem.so +lib/kde2/textthumbnail.la +lib/kde2/textthumbnail.so lib/kdesktop.la lib/kdesktop.so +lib/keditbookmarks.la +lib/keditbookmarks.so lib/kfmclient.la lib/kfmclient.so lib/khotkeys.la lib/khotkeys.so lib/kicker.la lib/kicker.so -lib/kio_gopher.la -lib/kio_gopher.so -lib/kio_gzip.la -lib/kio_gzip.so -lib/kio_help.la -lib/kio_help.so -lib/kio_info.la -lib/kio_info.so -lib/kio_man.la -lib/kio_man.so -lib/kio_nfs.la -lib/kio_nfs.so -lib/kio_nntp.la -lib/kio_nntp.so -lib/kio_pop3.la -lib/kio_pop3.so -lib/kio_smb.la -lib/kio_smb.so -lib/kio_smtp.la -lib/kio_smtp.so -lib/kio_tar.la -lib/kio_tar.so lib/klegacyimport.la lib/klegacyimport.so lib/klipper.la lib/klipper.so lib/kmenuedit.la lib/kmenuedit.so -lib/kmenuedit.so.0 lib/konqueror.la lib/konqueror.so lib/konsole.la @@ -153,86 +286,29 @@ lib/kxkb.la lib/kxkb.so lib/kxmlrpcd.la lib/kxmlrpcd.so +lib/libKdmGreet.la +lib/libKdmGreet.so lib/libccont.a +lib/libchildpanelextension.la +lib/libchildpanelextension.so +lib/libchildpanelextension.so.1 lib/libclockapplet.la lib/libclockapplet.so lib/libclockapplet.so.1 +lib/libdockbarextension.la +lib/libdockbarextension.so +lib/libdockbarextension.so.1 lib/libhtmlsearch.la lib/libhtmlsearch.so -lib/libkcm_access.la -lib/libkcm_access.so -lib/libkcm_arts.la -lib/libkcm_arts.so -lib/libkcm_background.la -lib/libkcm_background.so -lib/libkcm_bell.la -lib/libkcm_bell.so -lib/libkcm_clock.la -lib/libkcm_clock.so -lib/libkcm_colors.la -lib/libkcm_colors.so -lib/libkcm_crypto.la -lib/libkcm_crypto.so -lib/libkcm_email.la -lib/libkcm_email.so -lib/libkcm_energy.la -lib/libkcm_energy.so -lib/libkcm_filetypes.la -lib/libkcm_filetypes.so -lib/libkcm_fonts.la -lib/libkcm_fonts.so +lib/libkasbarextension.la +lib/libkasbarextension.so +lib/libkasbarextension.so.1 lib/libkcm_htmlsearch.la lib/libkcm_htmlsearch.so -lib/libkcm_icons.la -lib/libkcm_icons.so -lib/libkcm_iconthemes.la -lib/libkcm_iconthemes.so -lib/libkcm_info.la -lib/libkcm_info.so -lib/libkcm_input.la -lib/libkcm_input.so -lib/libkcm_kdm.la -lib/libkcm_kdm.so -lib/libkcm_keys.la -lib/libkcm_keys.so -lib/libkcm_khotkeys.la -lib/libkcm_khotkeys.so -lib/libkcm_kicker.la -lib/libkcm_kicker.so -lib/libkcm_kio.la -lib/libkcm_kio.so -lib/libkcm_knotify.la -lib/libkcm_knotify.so -lib/libkcm_konq.la -lib/libkcm_konq.so -lib/libkcm_konqhtml.la -lib/libkcm_konqhtml.so -lib/libkcm_kurifilt.la -lib/libkcm_kurifilt.so -lib/libkcm_kwindesktop.la -lib/libkcm_kwindesktop.so -lib/libkcm_kwinmouse.la -lib/libkcm_kwinmouse.so -lib/libkcm_kwinoptions.la -lib/libkcm_kwinoptions.so +lib/libkcm_ioslaveinfo.la +lib/libkcm_ioslaveinfo.so lib/libkcm_layout.la lib/libkcm_layout.so -lib/libkcm_locale.la -lib/libkcm_locale.so -lib/libkcm_midi.la -lib/libkcm_midi.so -lib/libkcm_passwords.la -lib/libkcm_passwords.so -lib/libkcm_samba.la -lib/libkcm_samba.so -lib/libkcm_screensaver.la -lib/libkcm_screensaver.so -lib/libkcm_style.la -lib/libkcm_style.so -lib/libkcm_taskbar.la -lib/libkcm_taskbar.so -lib/libkcm_virtualdesktops.la -lib/libkcm_virtualdesktops.so lib/libkcm_xmlrpcd.la lib/libkcm_xmlrpcd.so lib/libkhelpcenter.la @@ -244,71 +320,60 @@ lib/libkminipagerapplet.so.1 lib/libkonq.la lib/libkonq.so lib/libkonq.so.4 -lib/libkonqdirtree.la -lib/libkonqdirtree.so -lib/libkonqiconview.la -lib/libkonqiconview.so -lib/libkonqlistview.la -lib/libkonqlistview.so +lib/libkonqaboutpage.la +lib/libkonqaboutpage.so lib/libkonsolepart.la lib/libkonsolepart.so lib/libkrunapplet.la lib/libkrunapplet.so lib/libkrunapplet.so.1 -lib/libkshorturifilter.la -lib/libkshorturifilter.so -lib/libkshorturifilter.so.1 +lib/libksysguardapplet.la +lib/libksysguardapplet.so +lib/libksysguardapplet.so.1 lib/libksystemtrayapplet.la lib/libksystemtrayapplet.so lib/libksystemtrayapplet.so.1 lib/libktaskbarapplet.la lib/libktaskbarapplet.so lib/libktaskbarapplet.so.1 -lib/libkuriikwsfilter.la -lib/libkuriikwsfilter.so -lib/libkuriikwsfilter.so.1 -lib/libkurisearchfilter.la -lib/libkurisearchfilter.so -lib/libkurisearchfilter.so.1 -lib/libkwinb2.la -lib/libkwinb2.so lib/libkwindefault.la lib/libkwindefault.so lib/libkwindefault.so.0 -lib/libkwinkde1.la -lib/libkwinkde1.so -lib/libkwinkstep.la -lib/libkwinkstep.so -lib/libkwinlaptop.la -lib/libkwinlaptop.so -lib/libkwinmodernsys.la -lib/libkwinmodernsys.so -lib/libkwinriscos.la -lib/libkwinriscos.so -lib/libkwinsystem.la -lib/libkwinsystem.so lib/libkwritepart.la lib/libkwritepart.so +lib/libnaughtyapplet.la +lib/libnaughtyapplet.so +lib/libnaughtyapplet.so.1 lib/libquicklauncher.la lib/libquicklauncher.so lib/libquicklauncher.so.1 -lib/libsmb++.la -lib/libsmb++.so -lib/libsmb++.so.0 +lib/libtaskbarextension.la +lib/libtaskbarextension.so +lib/libtaskbarextension.so.1 +lib/libtaskmanager.la +lib/libtaskmanager.so +lib/libtaskmanager.so.1 share/applnk/.directory share/applnk/.hidden/konqfilemgr.desktop share/applnk/Applications/.directory -share/applnk/Development/designer.desktop +share/applnk/Development/.directory share/applnk/Editors/.directory +share/applnk/Editors/gvim.desktop share/applnk/Editors/kwrite.desktop +share/applnk/Editors/xedit.desktop share/applnk/Games/.directory share/applnk/Graphics/.directory +share/applnk/Graphics/gimp.desktop share/applnk/Help.desktop share/applnk/Home.desktop share/applnk/Internet/.directory +share/applnk/Internet/keditbookmarks.desktop share/applnk/Internet/konqbrowser.desktop +share/applnk/Internet/netscape.desktop share/applnk/KControl.desktop share/applnk/Multimedia/.directory +share/applnk/Multimedia/aviplay.desktop +share/applnk/Multimedia/xawtv.desktop share/applnk/Office/.directory share/applnk/Settings/.directory share/applnk/Settings/FileBrowsing/.directory @@ -321,6 +386,7 @@ share/applnk/Settings/Information/devices.desktop share/applnk/Settings/Information/dma.desktop share/applnk/Settings/Information/interrupts.desktop share/applnk/Settings/Information/ioports.desktop +share/applnk/Settings/Information/ioslaveinfo.desktop share/applnk/Settings/Information/memory.desktop share/applnk/Settings/Information/partitions.desktop share/applnk/Settings/Information/pci.desktop @@ -330,28 +396,29 @@ share/applnk/Settings/Information/smbstatus.desktop share/applnk/Settings/Information/sound.desktop share/applnk/Settings/Information/xserver.desktop share/applnk/Settings/LookNFeel/.directory -share/applnk/Settings/LookNFeel/Desktop/.directory share/applnk/Settings/LookNFeel/Desktop/background.desktop share/applnk/Settings/LookNFeel/Desktop/borders.desktop share/applnk/Settings/LookNFeel/Desktop/desktop.desktop share/applnk/Settings/LookNFeel/Desktop/virtualdesktops.desktop -share/applnk/Settings/LookNFeel/Panel/.directory -share/applnk/Settings/LookNFeel/Themes/.directory share/applnk/Settings/LookNFeel/Themes/iconthemes.desktop share/applnk/Settings/LookNFeel/Themes/style.desktop -share/applnk/Settings/LookNFeel/Windows/.directory share/applnk/Settings/LookNFeel/Windows/actions.desktop -share/applnk/Settings/LookNFeel/Windows/mouse.desktop +share/applnk/Settings/LookNFeel/Windows/kwinmouse.desktop +share/applnk/Settings/LookNFeel/background.desktop share/applnk/Settings/LookNFeel/colors.desktop +share/applnk/Settings/LookNFeel/desktop.desktop share/applnk/Settings/LookNFeel/fonts.desktop share/applnk/Settings/LookNFeel/icons.desktop share/applnk/Settings/LookNFeel/kcmnotify.desktop share/applnk/Settings/LookNFeel/kcmtaskbar.desktop share/applnk/Settings/LookNFeel/keys.desktop +share/applnk/Settings/LookNFeel/kthememgr.desktop +share/applnk/Settings/LookNFeel/kwinoptions.desktop share/applnk/Settings/LookNFeel/panel.desktop share/applnk/Settings/LookNFeel/screensaver.desktop +share/applnk/Settings/LookNFeel/style.desktop +share/applnk/Settings/LookNFeel/virtualdesktops.desktop share/applnk/Settings/Network/.directory -share/applnk/Settings/Network/smb.desktop share/applnk/Settings/Peripherals/.directory share/applnk/Settings/Peripherals/keyboard.desktop share/applnk/Settings/Peripherals/mouse.desktop @@ -370,28 +437,24 @@ share/applnk/Settings/Sound/bell.desktop share/applnk/Settings/Sound/midi.desktop share/applnk/Settings/System/.directory share/applnk/Settings/System/clock.desktop +share/applnk/Settings/System/kcmsmserver.desktop share/applnk/Settings/System/kdm.desktop share/applnk/Settings/WebBrowsing/.directory share/applnk/Settings/WebBrowsing/cookies.desktop share/applnk/Settings/WebBrowsing/ebrowsing.desktop share/applnk/Settings/WebBrowsing/konqhtml.desktop share/applnk/Settings/WebBrowsing/proxy.desktop +share/applnk/Settings/WebBrowsing/smb.desktop share/applnk/Settings/WebBrowsing/useragent.desktop share/applnk/System/.directory -share/applnk/System/Arrange.desktop share/applnk/System/ScreenSavers/.directory -share/applnk/System/ScreenSavers/KAttration.desktop share/applnk/System/ScreenSavers/KBanner.desktop share/applnk/System/ScreenSavers/KBlankscreen.desktop share/applnk/System/ScreenSavers/KBlob.desktop share/applnk/System/ScreenSavers/KBouboule.desktop share/applnk/System/ScreenSavers/KBsod.desktop -share/applnk/System/ScreenSavers/KFlame.desktop -share/applnk/System/ScreenSavers/KForest.desktop share/applnk/System/ScreenSavers/KHop.desktop -share/applnk/System/ScreenSavers/KLaser.desktop share/applnk/System/ScreenSavers/KLines.desktop -share/applnk/System/ScreenSavers/KLissie.desktop share/applnk/System/ScreenSavers/KLorenz.desktop share/applnk/System/ScreenSavers/KMatrix.desktop share/applnk/System/ScreenSavers/KMorph3D.desktop @@ -403,12 +466,14 @@ share/applnk/System/ScreenSavers/KRock.desktop share/applnk/System/ScreenSavers/KScience.desktop share/applnk/System/ScreenSavers/KSlidescreen.desktop share/applnk/System/ScreenSavers/KSlideshow.desktop -share/applnk/System/ScreenSavers/KSlip.desktop share/applnk/System/ScreenSavers/KSpace.desktop share/applnk/System/ScreenSavers/KSwarm.desktop share/applnk/System/ScreenSavers/KVm.desktop +share/applnk/System/ScreenSavers/Worm.desktop share/applnk/System/kappfinder.desktop share/applnk/System/kfmclient.desktop +share/applnk/System/kfmclient_dir.desktop +share/applnk/System/kfmclient_html.desktop share/applnk/System/klegacyimport.desktop share/applnk/System/kmenuedit.desktop share/applnk/System/konquerorsu.desktop @@ -417,15 +482,19 @@ share/applnk/System/konsolesu.desktop share/applnk/System/ksysguard.desktop share/applnk/Toys/.directory share/applnk/Toys/ktip.desktop +share/applnk/Toys/xeyes.desktop share/applnk/Utilities/.directory +share/applnk/Utilities/XUtilities/xcalc.desktop +share/applnk/Utilities/XUtilities/xclipboard.desktop +share/applnk/Utilities/XUtilities/xclock.desktop +share/applnk/Utilities/XUtilities/xconsole.desktop +share/applnk/Utilities/XUtilities/xload.desktop +share/applnk/Utilities/XUtilities/xmag.desktop +share/applnk/Utilities/XUtilities/xterm.desktop share/applnk/Utilities/klipper.desktop share/applnk/Utilities/kpager.desktop -share/applnk/Utilities/passwd.desktop -share/applnk/Utilities/xclipboard.desktop -share/applnk/Utilities/xclock.desktop -share/applnk/Utilities/xconsole.desktop -share/applnk/Utilities/xmag.desktop -share/applnk/Utilities/xterm.desktop +share/applnk/WordProcessing/gv.desktop +share/applnk/WordProcessing/xpdf.desktop share/apps/clockapplet/pics/lcd.png share/apps/drkonqi/debuggers/gdbrc share/apps/drkonqi/pics/konqi.png @@ -443,6 +512,13 @@ share/apps/kappfinder/apps/Editors/lemacs.desktop share/apps/kappfinder/apps/Editors/nedit.desktop share/apps/kappfinder/apps/Editors/xedit.desktop share/apps/kappfinder/apps/Editors/xemacs.desktop +share/apps/kappfinder/apps/Games/.directory +share/apps/kappfinder/apps/Games/Clanbomber.desktop +share/apps/kappfinder/apps/Games/Qmamecat.desktop +share/apps/kappfinder/apps/Games/defendguin.desktop +share/apps/kappfinder/apps/Games/freeciv.desktop +share/apps/kappfinder/apps/Games/penguin-command.desktop +share/apps/kappfinder/apps/Games/xshipwars.desktop share/apps/kappfinder/apps/Graphics/.directory share/apps/kappfinder/apps/Graphics/gimp.desktop share/apps/kappfinder/apps/Graphics/xfig.desktop @@ -451,6 +527,8 @@ share/apps/kappfinder/apps/Graphics/xv.desktop share/apps/kappfinder/apps/Internet/.directory share/apps/kappfinder/apps/Internet/arena.desktop share/apps/kappfinder/apps/Internet/coolmail.desktop +share/apps/kappfinder/apps/Internet/ethereal.desktop +share/apps/kappfinder/apps/Internet/ncftp.desktop share/apps/kappfinder/apps/Internet/netscape.desktop share/apps/kappfinder/apps/Internet/pine.desktop share/apps/kappfinder/apps/Internet/xbiff.desktop @@ -458,7 +536,11 @@ share/apps/kappfinder/apps/Internet/xchat.desktop share/apps/kappfinder/apps/Internet/xfmail.desktop share/apps/kappfinder/apps/Internet/xftp.desktop share/apps/kappfinder/apps/Multimedia/.directory +share/apps/kappfinder/apps/Multimedia/alevt.desktop +share/apps/kappfinder/apps/Multimedia/aviplay.desktop +share/apps/kappfinder/apps/Multimedia/gtv.desktop share/apps/kappfinder/apps/Multimedia/realplayer.desktop +share/apps/kappfinder/apps/Multimedia/xawtv.desktop share/apps/kappfinder/apps/Multimedia/xmms.desktop share/apps/kappfinder/apps/Office/.directory share/apps/kappfinder/apps/Office/Applix.desktop @@ -531,15 +613,14 @@ share/apps/kappfinder/apps/Toys/.directory share/apps/kappfinder/apps/Toys/xeyes.desktop share/apps/kappfinder/apps/Toys/xpinguin.desktop share/apps/kappfinder/apps/Utilities/.directory -share/apps/kappfinder/apps/Utilities/jar.desktop -share/apps/kappfinder/apps/Utilities/passwd.desktop -share/apps/kappfinder/apps/Utilities/xcalc.desktop -share/apps/kappfinder/apps/Utilities/xclipboard.desktop -share/apps/kappfinder/apps/Utilities/xclock.desktop -share/apps/kappfinder/apps/Utilities/xconsole.desktop -share/apps/kappfinder/apps/Utilities/xload.desktop -share/apps/kappfinder/apps/Utilities/xmag.desktop -share/apps/kappfinder/apps/Utilities/xterm.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/.directory +share/apps/kappfinder/apps/Utilities/XUtilities/xcalc.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclipboard.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xclock.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xconsole.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xload.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xmag.desktop +share/apps/kappfinder/apps/Utilities/XUtilities/xterm.desktop share/apps/kappfinder/apps/WordProcessing/.directory share/apps/kappfinder/apps/WordProcessing/WordPerfect.desktop share/apps/kappfinder/apps/WordProcessing/WordPerfect2000.desktop @@ -547,10 +628,12 @@ share/apps/kappfinder/apps/WordProcessing/acroread.desktop share/apps/kappfinder/apps/WordProcessing/ghostview.desktop share/apps/kappfinder/apps/WordProcessing/gv.desktop share/apps/kappfinder/apps/WordProcessing/lyx.desktop +share/apps/kappfinder/apps/WordProcessing/pybliographic.desktop share/apps/kappfinder/apps/WordProcessing/xdvi.desktop share/apps/kappfinder/apps/WordProcessing/xpdf.desktop share/apps/kbookmark/directory_bookmarkbar.desktop share/apps/kcminput/cursor_large.pcf.gz +share/apps/kcmkeys/standard/Unix.kksrc share/apps/kcmlocale/pics/background.png share/apps/kcontrol/kcontrolui.rc share/apps/kcontrol/pics/energybig.png @@ -560,8 +643,10 @@ share/apps/kcontrol/pics/mini-world.png share/apps/kcontrol/pics/monitor.png share/apps/kcontrol/pics/onlyone.png share/apps/kcontrol/pics/overlapping.png +share/apps/kcontrol/pics/part1.png +share/apps/kcontrol/pics/part2.png +share/apps/kcontrol/pics/part3.png share/apps/kcontrol/pics/play.png -share/apps/kcontrol/pics/wizard.png share/apps/kdcop/kdcopui.rc share/apps/kdesktop/DesktopLinks/Home.desktop share/apps/kdesktop/directory.autostart @@ -586,8 +671,10 @@ share/apps/kdesktop/pics/kde2.xbm share/apps/kdesktop/pics/ksslogo.png share/apps/kdesktop/pics/splash.png share/apps/kdesktop/pics/splash2.png +share/apps/kdesktop/programs/kwebdesktop.desktop share/apps/kdesktop/programs/xearth.desktop share/apps/kdesktop/programs/xglobe.desktop +share/apps/kdesktop/programs/xplanet.desktop share/apps/kdewizard/pics/wizard_small.png share/apps/kdewizard/tips share/apps/kdisplay/app-defaults/AAAAAAGeneral.ad @@ -605,6 +692,8 @@ share/apps/kdisplay/app-defaults/XCalc.ad share/apps/kdisplay/app-defaults/XOsview.ad share/apps/kdisplay/app-defaults/XTerm.ad share/apps/kdisplay/app-defaults/XV.ad +share/apps/kdisplay/app-defaults/Xawtv.ad +share/apps/kdisplay/app-defaults/Xpdf.ad share/apps/kdisplay/color-schemes/AtlasGreen.kcsrc share/apps/kdisplay/color-schemes/BeOS.kcsrc share/apps/kdisplay/color-schemes/BlueSlate.kcsrc @@ -627,15 +716,21 @@ share/apps/kdm/pics/users/default.png share/apps/kdm/pics/users/default2.png share/apps/kdm/pics/users/root.png share/apps/kdm/pics/users/root2.png +share/apps/keditbookmarks/keditbookmarksui.rc +share/apps/kfind/icons/locolor/22x22/actions/archive.png +share/apps/kfind/icons/locolor/22x22/actions/delete.png +share/apps/kfind/icons/locolor/22x22/actions/idea.png +share/apps/kfind/icons/locolor/22x22/actions/info.png +share/apps/kfind/icons/locolor/22x22/actions/openfile.png +share/apps/kfind/icons/locolor/22x22/actions/save.png +share/apps/kfind/icons/locolor/22x22/actions/search.png share/apps/khelpcenter/en/bad_words share/apps/khelpcenter/en/long.html share/apps/khelpcenter/en/nomatch.html share/apps/khelpcenter/en/short.html share/apps/khelpcenter/en/syntax.html share/apps/khelpcenter/en/wrapper.html -share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook.png share/apps/khelpcenter/icons/locolor/16x16/apps/helpbook_open.png -share/apps/khelpcenter/icons/locolor/16x16/apps/helpdoc.png share/apps/khelpcenter/pics/checked.xpm share/apps/khelpcenter/pics/star.png share/apps/khelpcenter/pics/star_blank.png @@ -646,9 +741,16 @@ share/apps/khelpcenter/plugins/Tutorials/visualdict.desktop share/apps/kicker/applets/clockapplet.desktop share/apps/kicker/applets/kminipagerapplet.desktop share/apps/kicker/applets/krunapplet.desktop +share/apps/kicker/applets/ksysguardapplet.desktop share/apps/kicker/applets/ksystemtrayapplet.desktop share/apps/kicker/applets/ktaskbarapplet.desktop +share/apps/kicker/applets/naughtyapplet.desktop share/apps/kicker/applets/quicklauncher.desktop +share/apps/kicker/extensions/childpanelextension.desktop +share/apps/kicker/extensions/dockbarextension.desktop +share/apps/kicker/extensions/kasbarextension.desktop +share/apps/kicker/extensions/taskbarextension.desktop +share/apps/kicker/icons/hicolor/16x16/actions/modified.png share/apps/kicker/icons/locolor/16x16/actions/modified.png share/apps/kicker/pics/disk1.png share/apps/kicker/pics/disk2.png @@ -761,6 +863,8 @@ share/apps/kicker/tiles/solid_tgri_tiny_up.png share/apps/kicker/wallpapers/deck_plate.png share/apps/kicker/wallpapers/green_line.png share/apps/kicker/wallpapers/rail.png +share/apps/kio_finger/kio_finger.css +share/apps/kio_finger/kio_finger.pl share/apps/kio_info/kde-info2html share/apps/kio_info/kde-info2html.conf share/apps/kmenuedit/icons/hicolor/22x22/actions/menu_new.png @@ -769,17 +873,46 @@ share/apps/kmenuedit/icons/locolor/16x16/actions/menu_new.png share/apps/kmenuedit/kmenueditui.rc share/apps/konqiconview/konq_iconview.rc share/apps/konqiconview/konq_multicolumnview.rc +share/apps/konqiconview/kpartplugins/kshellcmdplugin.rc share/apps/konqlistview/konq_detailedlistview.rc share/apps/konqlistview/konq_textview.rc share/apps/konqlistview/konq_treeview.rc +share/apps/konqlistview/kpartplugins/kshellcmdplugin.rc +share/apps/konqueror/about/back.png +share/apps/konqueror/about/background.png +share/apps/konqueror/about/bgtable.png +share/apps/konqueror/about/gohome.png +share/apps/konqueror/about/history.png +share/apps/konqueror/about/intro.html +share/apps/konqueror/about/kdelogo2.png +share/apps/konqueror/about/konq.css +share/apps/konqueror/about/konqueror.png +share/apps/konqueror/about/lines.png +share/apps/konqueror/about/lines2.png +share/apps/konqueror/about/locationbar_erase.png +share/apps/konqueror/about/more.png +share/apps/konqueror/about/openterm.png +share/apps/konqueror/about/pointers.gif +share/apps/konqueror/about/shadow1.png +share/apps/konqueror/about/specs.html +share/apps/konqueror/about/tips.html +share/apps/konqueror/about/view_left_right.png +share/apps/konqueror/about/viewmag.png +share/apps/konqueror/about/window_fullscreen.png +share/apps/konqueror/dirtree/bookmarks.desktop +share/apps/konqueror/dirtree/history.desktop share/apps/konqueror/dirtree/home.desktop share/apps/konqueror/dirtree/remote/.directory share/apps/konqueror/dirtree/remote/ftp/.directory share/apps/konqueror/dirtree/remote/ftp/kde_ftp.desktop share/apps/konqueror/dirtree/remote/web/.directory share/apps/konqueror/dirtree/remote/web/kde_web.desktop -share/apps/konqueror/dirtree/remote/windows.desktop share/apps/konqueror/dirtree/root.desktop +share/apps/konqueror/icons/hicolor/16x16/actions/remove_view.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_bottom.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_left_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_right.png +share/apps/konqueror/icons/hicolor/16x16/actions/view_top_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/remove_view.png share/apps/konqueror/icons/hicolor/22x22/actions/view_bottom.png share/apps/konqueror/icons/hicolor/22x22/actions/view_left_right.png @@ -796,7 +929,6 @@ share/apps/konqueror/icons/locolor/16x16/actions/kde3.png share/apps/konqueror/icons/locolor/16x16/actions/kde4.png share/apps/konqueror/icons/locolor/16x16/actions/kde5.png share/apps/konqueror/icons/locolor/16x16/actions/kde6.png -share/apps/konqueror/icons/locolor/16x16/actions/locationbar_erase.png share/apps/konqueror/icons/locolor/16x16/actions/remove_view.png share/apps/konqueror/icons/locolor/16x16/actions/view_bottom.png share/apps/konqueror/icons/locolor/16x16/actions/view_left_right.png @@ -808,13 +940,17 @@ share/apps/konqueror/pics/indicator_connect.png share/apps/konqueror/pics/indicator_empty.png share/apps/konqueror/pics/indicator_noconnect.png share/apps/konqueror/pics/indicator_viewactive.png +share/apps/konqueror/pics/thumbnailfont_7x4.png share/apps/konqueror/profiles/filemanagement +share/apps/konqueror/profiles/filepreview +share/apps/konqueror/profiles/midnightcommander share/apps/konqueror/profiles/webbrowsing share/apps/konqueror/tiles/bluemorning.png share/apps/konqueror/tiles/canvas.png share/apps/konqueror/tiles/checker.png share/apps/konqueror/tiles/cubic.png share/apps/konqueror/tiles/kde4ever.png +share/apps/konqueror/tiles/kenwimer.png share/apps/konqueror/tiles/noise.png share/apps/konqueror/tiles/paper_flieder.png share/apps/konqueror/tiles/punika_attack.png @@ -850,12 +986,18 @@ share/apps/konsole/syscolor.schema share/apps/konsole/vim.schema share/apps/konsole/vt100.keytab share/apps/konsole/vt420pc.keytab +share/apps/konsole/x11r5.keytab share/apps/kscreensaver/kscience-small.gif share/apps/kscreensaver/kscience.gif +share/apps/ksplash/pics/locolor/splash_active_bar.png +share/apps/ksplash/pics/locolor/splash_bottom.png +share/apps/ksplash/pics/locolor/splash_inactive_bar.png +share/apps/ksplash/pics/locolor/splash_top.png share/apps/ksplash/pics/splash_active_bar.png share/apps/ksplash/pics/splash_bottom.png share/apps/ksplash/pics/splash_inactive_bar.png share/apps/ksplash/pics/splash_top.png +share/apps/ksysguard/KSysGuardApplet.xml share/apps/ksysguard/ProcessTable.sgrd share/apps/ksysguard/SystemLoad.sgrd share/apps/ksysguard/icons/locolor/16x16/apps/X.png @@ -906,6 +1048,13 @@ share/apps/ksysguard/icons/locolor/16x16/apps/xntpd.png share/apps/ksysguard/icons/locolor/16x16/apps/xterm.png share/apps/ksysguard/icons/locolor/16x16/apps/ypbind.png share/apps/ksysguard/ksysguardui.rc +share/apps/kthememgr/Themes/Default.ktheme +share/apps/kthememgr/Themes/Eclipse.ktheme +share/apps/kthememgr/Themes/MGBreizh.ktheme +share/apps/kthememgr/Themes/Nostalgy.ktheme +share/apps/kthememgr/Themes/Template.themerc +share/apps/kthememgr/Themes/Wood.ktheme +share/apps/kthememgr/theme.mappings share/apps/kwin/b2.desktop share/apps/kwin/eventsrc share/apps/kwin/kde.desktop @@ -928,12 +1077,19 @@ share/apps/kwin/pics/pinup.png share/apps/kwin/pics/unknown.png share/apps/kwin/riscos.desktop share/apps/kwin/system.desktop +share/apps/kwin/win2k.desktop share/apps/kwrite/kwrite_browser.rc share/apps/kwrite/kwrite_shell.rc share/apps/kwrite/kwriteui.rc -share/apps/quickbrowser/Home.desktop -share/apps/quickbrowser/KDE.desktop -share/apps/quickbrowser/Root.desktop +share/apps/kwrite/syntax.xml +share/apps/naughtyapplet/pics/naughty-happy.png +share/apps/naughtyapplet/pics/naughty-sad.png +share/autostart/kdesktop.desktop +share/autostart/khotkeys.desktop +share/autostart/klipper.desktop +share/autostart/ktip.desktop +share/autostart/kwrited.desktop +share/autostart/panel.desktop share/config/antrc share/config/attractionrc share/config/bouboulerc @@ -955,6 +1111,8 @@ share/config/gravrc share/config/halorc share/config/imsmaprc share/config/interferencerc +share/config/kdesktop_custom_menu1 +share/config/kdesktop_custom_menu2 share/config/kdmrc share/config/klipperrc share/config/konsolerc @@ -991,12 +1149,9 @@ share/doc/HTML/en/kcontrol/email.html share/doc/HTML/en/kcontrol/energy.html share/doc/HTML/en/kcontrol/file-assoc.html share/doc/HTML/en/kcontrol/file-manager.html -share/doc/HTML/en/kcontrol/kfileman1.png -share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/fonts.html share/doc/HTML/en/kcontrol/help-index.html share/doc/HTML/en/kcontrol/icons.html -share/doc/HTML/en/kcontrol/iconstyle.html share/doc/HTML/en/kcontrol/index.docbook share/doc/HTML/en/kcontrol/index.html share/doc/HTML/en/kcontrol/interrupts.html @@ -1034,7 +1189,6 @@ share/doc/HTML/en/kcontrol/kcmkbd.docbook share/doc/HTML/en/kcontrol/kcmkblayout.docbook share/doc/HTML/en/kcontrol/kcmkbrowse.docbook share/doc/HTML/en/kcontrol/kcmkeybind.docbook -share/doc/HTML/en/kcontrol/kcmkeys.docbook share/doc/HTML/en/kcontrol/kcmlocate.docbook share/doc/HTML/en/kcontrol/kcmloginmanage.docbook share/doc/HTML/en/kcontrol/kcmlowbatcrit.docbook @@ -1044,6 +1198,7 @@ share/doc/HTML/en/kcontrol/kcmmidi.docbook share/doc/HTML/en/kcontrol/kcmmixer.docbook share/doc/HTML/en/kcontrol/kcmmouse.docbook share/doc/HTML/en/kcontrol/kcmmousebeh.docbook +share/doc/HTML/en/kcontrol/kcmnetscapeplugins.docbook share/doc/HTML/en/kcontrol/kcmnumbername.docbook share/doc/HTML/en/kcontrol/kcmpanel.docbook share/doc/HTML/en/kcontrol/kcmpartitioninfo.docbook @@ -1055,6 +1210,7 @@ share/doc/HTML/en/kcontrol/kcmprocinfo.docbook share/doc/HTML/en/kcontrol/kcmproxie.docbook share/doc/HTML/en/kcontrol/kcmscnsave.docbook share/doc/HTML/en/kcontrol/kcmscsiinfo.docbook +share/doc/HTML/en/kcontrol/kcmsessionman.docbook share/doc/HTML/en/kcontrol/kcmsmbstat.docbook share/doc/HTML/en/kcontrol/kcmsndinfo.docbook share/doc/HTML/en/kcontrol/kcmsndsrv.docbook @@ -1066,6 +1222,8 @@ share/doc/HTML/en/kcontrol/kcmuseragent.docbook share/doc/HTML/en/kcontrol/kcmwinshare.docbook share/doc/HTML/en/kcontrol/kcmxservinfo.docbook share/doc/HTML/en/kcontrol/key-bindings.html +share/doc/HTML/en/kcontrol/kfileman1.png +share/doc/HTML/en/kcontrol/kfileman2.png share/doc/HTML/en/kcontrol/konq-browsing.html share/doc/HTML/en/kcontrol/laptop.html share/doc/HTML/en/kcontrol/locale.html @@ -1079,7 +1237,7 @@ share/doc/HTML/en/kcontrol/module.html share/doc/HTML/en/kcontrol/modules.html share/doc/HTML/en/kcontrol/mouse-behav.html share/doc/HTML/en/kcontrol/mouse.html -share/doc/HTML/en/kcontrol/numbername.html +share/doc/HTML/en/kcontrol/nsplugins.html share/doc/HTML/en/kcontrol/panel.html share/doc/HTML/en/kcontrol/partitions.html share/doc/HTML/en/kcontrol/passwords.html @@ -1092,11 +1250,11 @@ share/doc/HTML/en/kcontrol/sambastatus.html share/doc/HTML/en/kcontrol/screensaver.html share/doc/HTML/en/kcontrol/screenshot.png share/doc/HTML/en/kcontrol/scsi.html +share/doc/HTML/en/kcontrol/sessions.html share/doc/HTML/en/kcontrol/sndserver.html share/doc/HTML/en/kcontrol/soundinfo.html share/doc/HTML/en/kcontrol/style.html share/doc/HTML/en/kcontrol/sys-notify.html -share/doc/HTML/en/kcontrol/talk.html share/doc/HTML/en/kcontrol/taskbar.html share/doc/HTML/en/kcontrol/user-agent.html share/doc/HTML/en/kcontrol/windows-shares.html @@ -1135,6 +1293,8 @@ share/doc/HTML/en/kdm/lilo.html share/doc/HTML/en/kdm/locale.html share/doc/HTML/en/kdm/other-information.html share/doc/HTML/en/khelpcenter/.anchors +share/doc/HTML/en/khelpcenter/background.png +share/doc/HTML/en/khelpcenter/bgtable.png share/doc/HTML/en/khelpcenter/common share/doc/HTML/en/khelpcenter/contact-developers.html share/doc/HTML/en/khelpcenter/contact-more-information.html @@ -1144,16 +1304,6 @@ share/doc/HTML/en/khelpcenter/contact.docbook share/doc/HTML/en/khelpcenter/credits.html share/doc/HTML/en/khelpcenter/faq/.anchors share/doc/HTML/en/khelpcenter/faq/TODO -share/doc/HTML/en/khelpcenter/faq/index.docbook -share/doc/HTML/en/khelpcenter/faq/index.html -share/doc/HTML/en/khelpcenter/help-system-user-manual.html -share/doc/HTML/en/khelpcenter/help.docbook -share/doc/HTML/en/khelpcenter/index.docbook -share/doc/HTML/en/khelpcenter/index.html -share/doc/HTML/en/khelpcenter/interface-basics.html -share/doc/HTML/en/khelpcenter/invoking-help.html -share/doc/HTML/en/khelpcenter/links.docbook -share/doc/HTML/en/khelpcenter/no-html.html share/doc/HTML/en/khelpcenter/faq/about.html share/doc/HTML/en/khelpcenter/faq/applications.html share/doc/HTML/en/khelpcenter/faq/common @@ -1163,6 +1313,8 @@ share/doc/HTML/en/khelpcenter/faq/credits.html share/doc/HTML/en/khelpcenter/faq/desktop.html share/doc/HTML/en/khelpcenter/faq/filemanager.html share/doc/HTML/en/khelpcenter/faq/getting-kde.html +share/doc/HTML/en/khelpcenter/faq/index.docbook +share/doc/HTML/en/khelpcenter/faq/index.html share/doc/HTML/en/khelpcenter/faq/install.html share/doc/HTML/en/khelpcenter/faq/introduction.html share/doc/HTML/en/khelpcenter/faq/misc.html @@ -1172,6 +1324,21 @@ share/doc/HTML/en/khelpcenter/faq/not-kde.html share/doc/HTML/en/khelpcenter/faq/panel.html share/doc/HTML/en/khelpcenter/faq/tips.html share/doc/HTML/en/khelpcenter/faq/windowmanager.html +share/doc/HTML/en/khelpcenter/help-system-user-manual.html +share/doc/HTML/en/khelpcenter/help.docbook +share/doc/HTML/en/khelpcenter/index.docbook +share/doc/HTML/en/khelpcenter/index.html +share/doc/HTML/en/khelpcenter/interface-basics.html +share/doc/HTML/en/khelpcenter/invoking-help.html +share/doc/HTML/en/khelpcenter/kdelogo2.png +share/doc/HTML/en/khelpcenter/khelpcenter.png +share/doc/HTML/en/khelpcenter/konq.css +share/doc/HTML/en/khelpcenter/lines.png +share/doc/HTML/en/khelpcenter/lines2.png +share/doc/HTML/en/khelpcenter/links.docbook +share/doc/HTML/en/khelpcenter/main.html +share/doc/HTML/en/khelpcenter/no-html.html +share/doc/HTML/en/khelpcenter/pointers.png share/doc/HTML/en/khelpcenter/quickstart/.anchors share/doc/HTML/en/khelpcenter/quickstart/advanced-topics.html share/doc/HTML/en/khelpcenter/quickstart/an-overview-of-kde.html @@ -1193,6 +1360,7 @@ share/doc/HTML/en/khelpcenter/quickstart/using-templates.html share/doc/HTML/en/khelpcenter/quickstart/using-v-desktops.html share/doc/HTML/en/khelpcenter/quickstart/want-command-line-back.html share/doc/HTML/en/khelpcenter/quickstart/working-with-windows.html +share/doc/HTML/en/khelpcenter/shadow1.png share/doc/HTML/en/khelpcenter/support.docbook share/doc/HTML/en/khelpcenter/supporting-kde-financial-support.html share/doc/HTML/en/khelpcenter/supporting-kde-get-started.html @@ -1276,44 +1444,48 @@ share/doc/HTML/en/khelpcenter/what-is-kde-the-office-suite.html share/doc/HTML/en/khelpcenter/what-is-kde.html share/doc/HTML/en/khelpcenter/whatiskde.docbook share/doc/HTML/en/kicker/.anchors -share/doc/HTML/en/kicker/access_config.png -share/doc/HTML/en/kicker/basic_icons.png -share/doc/HTML/en/kicker/button-preferences.html +share/doc/HTML/en/kicker/applets.html +share/doc/HTML/en/kicker/application-group.html +share/doc/HTML/en/kicker/basics.html +share/doc/HTML/en/kicker/browsers.html +share/doc/HTML/en/kicker/child-panel-extension.html +share/doc/HTML/en/kicker/clock-applet.html +share/doc/HTML/en/kicker/commands.html share/doc/HTML/en/kicker/common -share/doc/HTML/en/kicker/config_window.png -share/doc/HTML/en/kicker/configuration-adding-icons.html -share/doc/HTML/en/kicker/configuration-config-window.html +share/doc/HTML/en/kicker/compilation.html share/doc/HTML/en/kicker/configuration.html +share/doc/HTML/en/kicker/configuring-apps.html +share/doc/HTML/en/kicker/configuring.html share/doc/HTML/en/kicker/credits.html -share/doc/HTML/en/kicker/drag-and-drop.html -share/doc/HTML/en/kicker/drag_applet.png -share/doc/HTML/en/kicker/five-minute-course.html -share/doc/HTML/en/kicker/glossary.html -share/doc/HTML/en/kicker/handles.png -share/doc/HTML/en/kicker/hide_buttons.png -share/doc/HTML/en/kicker/i_adv_editor.png -share/doc/HTML/en/kicker/i_control_center.png -share/doc/HTML/en/kicker/i_desktop.png -share/doc/HTML/en/kicker/i_help.png -share/doc/HTML/en/kicker/i_home_dir.png -share/doc/HTML/en/kicker/i_k_button.png -share/doc/HTML/en/kicker/i_kandalfs_tips.png -share/doc/HTML/en/kicker/i_shell.png -share/doc/HTML/en/kicker/i_window_list.png +share/doc/HTML/en/kicker/dock-application-bar-extension.html +share/doc/HTML/en/kicker/extensions.html +share/doc/HTML/en/kicker/faq.html share/doc/HTML/en/kicker/index.docbook share/doc/HTML/en/kicker/index.html share/doc/HTML/en/kicker/installation.html share/doc/HTML/en/kicker/introduction.html -share/doc/HTML/en/kicker/kicker-for-admins-symbolic-links.html -share/doc/HTML/en/kicker/kicker-for-admins.html -share/doc/HTML/en/kicker/kicker-panel-elements.html -share/doc/HTML/en/kicker/kicker_access_size.png -share/doc/HTML/en/kicker/kicker_add_basic.png -share/doc/HTML/en/kicker/kicker_basic_icons.png -share/doc/HTML/en/kicker/kicker_basic_icons_2.png -share/doc/HTML/en/kicker/other-features.html -share/doc/HTML/en/kicker/qb_root.png +share/doc/HTML/en/kicker/k-menu.html +share/doc/HTML/en/kicker/k_menu_icon.png +share/doc/HTML/en/kicker/kasbar-extension.html +share/doc/HTML/en/kicker/kfind-advanced.html +share/doc/HTML/en/kicker/kfind-date-range.html +share/doc/HTML/en/kicker/kfind.html +share/doc/HTML/en/kicker/launcher-applet.html +share/doc/HTML/en/kicker/most-recently-group.html +share/doc/HTML/en/kicker/naughty-applet.html +share/doc/HTML/en/kicker/pager-applet.html +share/doc/HTML/en/kicker/panel-applets.html +share/doc/HTML/en/kicker/panel-buttons.html +share/doc/HTML/en/kicker/panel-looknfeel.html +share/doc/HTML/en/kicker/panel-menus.html +share/doc/HTML/en/kicker/requirements.html +share/doc/HTML/en/kicker/run-applet.html +share/doc/HTML/en/kicker/run-command.html +share/doc/HTML/en/kicker/screenshot_left.png +share/doc/HTML/en/kicker/screenshot_right.png +share/doc/HTML/en/kicker/systemtray-applet.html share/doc/HTML/en/kicker/using-kicker.html +share/doc/HTML/en/kicker/windowlist_icon.png share/doc/HTML/en/klipper/.anchors share/doc/HTML/en/klipper/actions.html share/doc/HTML/en/klipper/common @@ -1329,6 +1501,7 @@ share/doc/HTML/en/klipper/screenshot.png share/doc/HTML/en/klipper/using-klipper.html share/doc/HTML/en/kmenuedit/.anchors share/doc/HTML/en/kmenuedit/common +share/doc/HTML/en/kmenuedit/compilation.html share/doc/HTML/en/kmenuedit/credits.html share/doc/HTML/en/kmenuedit/details-advanced.html share/doc/HTML/en/kmenuedit/glossary.html @@ -1343,30 +1516,33 @@ share/doc/HTML/en/kmenuedit/icon_sets.png share/doc/HTML/en/kmenuedit/icons.png share/doc/HTML/en/kmenuedit/index.docbook share/doc/HTML/en/kmenuedit/index.html +share/doc/HTML/en/kmenuedit/installation.html share/doc/HTML/en/kmenuedit/introduction.html share/doc/HTML/en/kmenuedit/menu-reference.html share/doc/HTML/en/kmenuedit/using-kmenuedit.html share/doc/HTML/en/konqueror/.anchors -share/doc/HTML/en/konqueror/autocomplete.html share/doc/HTML/en/konqueror/basics.html share/doc/HTML/en/konqueror/bookmarks.html share/doc/HTML/en/konqueror/browser.html share/doc/HTML/en/konqueror/bubble.html -share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/cmndline.png share/doc/HTML/en/konqueror/commandline.html share/doc/HTML/en/konqueror/commands.html -share/doc/HTML/en/konqueror/config-prox.html +share/doc/HTML/en/konqueror/common share/doc/HTML/en/konqueror/config.html -share/doc/HTML/en/konqueror/configure-bars.html -share/doc/HTML/en/konqueror/cook.html +share/doc/HTML/en/konqueror/configfm.html +share/doc/HTML/en/konqueror/configure-browser.html +share/doc/HTML/en/konqueror/configure-enhanced-browsing.html +share/doc/HTML/en/konqueror/configure-proxy.html +share/doc/HTML/en/konqueror/configure-user-agent.html +share/doc/HTML/en/konqueror/cookies.html share/doc/HTML/en/konqueror/credits.html share/doc/HTML/en/konqueror/crypto.html share/doc/HTML/en/konqueror/deleting.html share/doc/HTML/en/konqueror/dirtree.png share/doc/HTML/en/konqueror/dragdrop.png share/doc/HTML/en/konqueror/faq.html -share/doc/HTML/en/konqueror/fileassoc.html +share/doc/HTML/en/konqueror/file-associations.html share/doc/HTML/en/konqueror/filemanager.html share/doc/HTML/en/konqueror/filetype1.png share/doc/HTML/en/konqueror/filetype3.png @@ -1375,23 +1551,20 @@ share/doc/HTML/en/konqueror/ftp.html share/doc/HTML/en/konqueror/index.docbook share/doc/HTML/en/konqueror/index.html share/doc/HTML/en/konqueror/installation.html -share/doc/HTML/en/konqueror/introduction.html share/doc/HTML/en/konqueror/konqorg.png -share/doc/HTML/en/konqueror/lmbmmb.html +share/doc/HTML/en/konqueror/lmb-mmb.html share/doc/HTML/en/konqueror/making.html -share/doc/HTML/en/konqueror/miscbrowser.html +share/doc/HTML/en/konqueror/man-info.html share/doc/HTML/en/konqueror/moving.html share/doc/HTML/en/konqueror/multiple.html share/doc/HTML/en/konqueror/newname.html -share/doc/HTML/en/konqueror/optionalbrowser.html share/doc/HTML/en/konqueror/parts.html share/doc/HTML/en/konqueror/parts.png share/doc/HTML/en/konqueror/plugin.html share/doc/HTML/en/konqueror/rmb-menus.html -share/doc/HTML/en/konqueror/samba.html share/doc/HTML/en/konqueror/samba.png share/doc/HTML/en/konqueror/save-print-web.html -share/doc/HTML/en/konqueror/saveset.html +share/doc/HTML/en/konqueror/save-settings.html share/doc/HTML/en/konqueror/surf.html share/doc/HTML/en/konsole/.anchors share/doc/HTML/en/konsole/command-line-options.html @@ -1447,6 +1620,7 @@ share/doc/HTML/en/kwrite/go.html share/doc/HTML/en/kwrite/help.html share/doc/HTML/en/kwrite/index.docbook share/doc/HTML/en/kwrite/index.html +share/doc/HTML/en/kwrite/installation.html share/doc/HTML/en/kwrite/introduction.html share/doc/HTML/en/kwrite/keybindings.html share/doc/HTML/en/kwrite/on-screen-fundamentals.html @@ -1465,6 +1639,66 @@ share/fonts/console8x16.pcf.gz share/fonts/console8x8.pcf.gz share/fonts/fonts.dir share/fonts/override/fonts.dir +share/icons/hicolor/16x16/apps/background.png +share/icons/hicolor/16x16/apps/bell.png +share/icons/hicolor/16x16/apps/cookie.png +share/icons/hicolor/16x16/apps/email.png +share/icons/hicolor/16x16/apps/energy.png +share/icons/hicolor/16x16/apps/enhanced_browsing.png +share/icons/hicolor/16x16/apps/go.png +share/icons/hicolor/16x16/apps/hwinfo.png +share/icons/hicolor/16x16/apps/input_devices_settings.png +share/icons/hicolor/16x16/apps/kappfinder.png +share/icons/hicolor/16x16/apps/kcmkwm.png +share/icons/hicolor/16x16/apps/kcmsystem.png +share/icons/hicolor/16x16/apps/kcontrol.png +share/icons/hicolor/16x16/apps/kdisknav.png +share/icons/hicolor/16x16/apps/keditbookmarks.png +share/icons/hicolor/16x16/apps/kfm.png +share/icons/hicolor/16x16/apps/kfm_home.png +share/icons/hicolor/16x16/apps/khelpcenter.png +share/icons/hicolor/16x16/apps/klipper.png +share/icons/hicolor/16x16/apps/konqueror.png +share/icons/hicolor/16x16/apps/konsole.png +share/icons/hicolor/16x16/apps/kscreensaver.png +share/icons/hicolor/16x16/apps/ksysguard.png +share/icons/hicolor/16x16/apps/ktip.png +share/icons/hicolor/16x16/apps/kwrite.png +share/icons/hicolor/16x16/apps/locale.png +share/icons/hicolor/16x16/apps/looknfeel.png +share/icons/hicolor/16x16/apps/multimedia.png +share/icons/hicolor/16x16/apps/netscape.png +share/icons/hicolor/16x16/apps/package_applications.png +share/icons/hicolor/16x16/apps/package_development.png +share/icons/hicolor/16x16/apps/package_editors.png +share/icons/hicolor/16x16/apps/package_graphics.png +share/icons/hicolor/16x16/apps/package_multimedia.png +share/icons/hicolor/16x16/apps/package_network.png +share/icons/hicolor/16x16/apps/package_settings.png +share/icons/hicolor/16x16/apps/package_system.png +share/icons/hicolor/16x16/apps/package_toys.png +share/icons/hicolor/16x16/apps/package_utilities.png +share/icons/hicolor/16x16/apps/package_wordprocessing.png +share/icons/hicolor/16x16/apps/realplayer.png +share/icons/hicolor/16x16/apps/remote.png +share/icons/hicolor/16x16/apps/samba.png +share/icons/hicolor/16x16/apps/style.png +share/icons/hicolor/16x16/apps/window_list.png +share/icons/hicolor/16x16/devices/3floppy_mount.png +share/icons/hicolor/16x16/devices/3floppy_unmount.png +share/icons/hicolor/16x16/devices/cdaudio_mount.png +share/icons/hicolor/16x16/devices/cdaudio_unmount.png +share/icons/hicolor/16x16/devices/cdrom_mount.png +share/icons/hicolor/16x16/devices/cdrom_unmount.png +share/icons/hicolor/16x16/devices/dvd_mount.png +share/icons/hicolor/16x16/devices/dvd_unmount.png +share/icons/hicolor/16x16/devices/hdd_mount.png +share/icons/hicolor/16x16/devices/hdd_unmount.png +share/icons/hicolor/16x16/devices/nfs_mount.png +share/icons/hicolor/16x16/devices/nfs_unmount.png +share/icons/hicolor/16x16/devices/printer1.png +share/icons/hicolor/16x16/filesystems/file_important.png +share/icons/hicolor/16x16/filesystems/folder_important.png share/icons/hicolor/22x22/actions/view_choose.png share/icons/hicolor/22x22/actions/view_detailed.png share/icons/hicolor/22x22/actions/view_icon.png @@ -1478,11 +1712,13 @@ share/icons/hicolor/32x32/actions/view_multicolumn.png share/icons/hicolor/32x32/actions/view_text.png share/icons/hicolor/32x32/actions/view_tree.png share/icons/hicolor/32x32/apps/access.png +share/icons/hicolor/32x32/apps/acroread.png share/icons/hicolor/32x32/apps/agent.png share/icons/hicolor/32x32/apps/bell.png -share/icons/hicolor/32x32/apps/buttons.png +share/icons/hicolor/32x32/apps/blender.png share/icons/hicolor/32x32/apps/clock.png share/icons/hicolor/32x32/apps/colors.png +share/icons/hicolor/32x32/apps/cookie.png share/icons/hicolor/32x32/apps/date.png share/icons/hicolor/32x32/apps/designer.png share/icons/hicolor/32x32/apps/emacs.png @@ -1512,6 +1748,7 @@ share/icons/hicolor/32x32/apps/kcmx.png share/icons/hicolor/32x32/apps/kcontrol.png share/icons/hicolor/32x32/apps/kdisknav.png share/icons/hicolor/32x32/apps/kdmconfig.png +share/icons/hicolor/32x32/apps/keditbookmarks.png share/icons/hicolor/32x32/apps/key_bindings.png share/icons/hicolor/32x32/apps/keyboard_layout.png share/icons/hicolor/32x32/apps/kfm.png @@ -1544,15 +1781,18 @@ share/icons/hicolor/32x32/apps/package_multimedia.png share/icons/hicolor/32x32/apps/package_network.png share/icons/hicolor/32x32/apps/package_settings.png share/icons/hicolor/32x32/apps/package_system.png +share/icons/hicolor/32x32/apps/package_toys.png share/icons/hicolor/32x32/apps/package_utilities.png +share/icons/hicolor/32x32/apps/package_wordprocessing.png share/icons/hicolor/32x32/apps/password.png share/icons/hicolor/32x32/apps/proxy.png +share/icons/hicolor/32x32/apps/realplayer.png share/icons/hicolor/32x32/apps/style.png share/icons/hicolor/32x32/apps/terminal.png -share/icons/hicolor/32x32/apps/titlebar.png share/icons/hicolor/32x32/apps/window_list.png share/icons/hicolor/32x32/apps/winprops.png share/icons/hicolor/32x32/apps/xapp.png +share/icons/hicolor/32x32/apps/xawtv.png share/icons/hicolor/32x32/apps/xedit.png share/icons/hicolor/32x32/apps/xemacs.png share/icons/hicolor/32x32/apps/xmag.png @@ -1574,16 +1814,20 @@ share/icons/hicolor/32x32/devices/hdd_unmount.png share/icons/hicolor/32x32/devices/memory.png share/icons/hicolor/32x32/devices/mo_mount.png share/icons/hicolor/32x32/devices/mo_unmount.png +share/icons/hicolor/32x32/devices/nfs_mount.png +share/icons/hicolor/32x32/devices/nfs_unmount.png share/icons/hicolor/32x32/devices/printer1.png share/icons/hicolor/32x32/devices/printer2.png share/icons/hicolor/32x32/devices/scanner.png share/icons/hicolor/32x32/devices/tablet.png share/icons/hicolor/32x32/devices/zip_mount.png share/icons/hicolor/32x32/devices/zip_unmount.png +share/icons/hicolor/32x32/filesystems/file_important.png +share/icons/hicolor/32x32/filesystems/folder_important.png share/icons/hicolor/48x48/apps/access.png share/icons/hicolor/48x48/apps/agent.png share/icons/hicolor/48x48/apps/bell.png -share/icons/hicolor/48x48/apps/buttons.png +share/icons/hicolor/48x48/apps/blender.png share/icons/hicolor/48x48/apps/clock.png share/icons/hicolor/48x48/apps/colors.png share/icons/hicolor/48x48/apps/cookie.png @@ -1649,12 +1893,15 @@ share/icons/hicolor/48x48/apps/package_multimedia.png share/icons/hicolor/48x48/apps/package_network.png share/icons/hicolor/48x48/apps/package_settings.png share/icons/hicolor/48x48/apps/package_system.png +share/icons/hicolor/48x48/apps/package_toys.png share/icons/hicolor/48x48/apps/package_utilities.png +share/icons/hicolor/48x48/apps/package_wordprocessing.png share/icons/hicolor/48x48/apps/password.png share/icons/hicolor/48x48/apps/proxy.png +share/icons/hicolor/48x48/apps/remote.png +share/icons/hicolor/48x48/apps/samba.png share/icons/hicolor/48x48/apps/style.png share/icons/hicolor/48x48/apps/terminal.png -share/icons/hicolor/48x48/apps/titlebar.png share/icons/hicolor/48x48/apps/window_list.png share/icons/hicolor/48x48/apps/winprops.png share/icons/hicolor/48x48/apps/xedit.png @@ -1678,12 +1925,17 @@ share/icons/hicolor/48x48/devices/hdd_unmount.png share/icons/hicolor/48x48/devices/memory.png share/icons/hicolor/48x48/devices/mo_mount.png share/icons/hicolor/48x48/devices/mo_unmount.png +share/icons/hicolor/48x48/devices/nfs_mount.png +share/icons/hicolor/48x48/devices/nfs_unmount.png share/icons/hicolor/48x48/devices/printer1.png share/icons/hicolor/48x48/devices/printer2.png share/icons/hicolor/48x48/devices/scanner.png share/icons/hicolor/48x48/devices/tablet.png share/icons/hicolor/48x48/devices/zip_mount.png share/icons/hicolor/48x48/devices/zip_unmount.png +share/icons/hicolor/48x48/filesystems/file_important.png +share/icons/hicolor/48x48/filesystems/folder_important.png +share/icons/locolor/16x16/actions/bookmark_folder.png share/icons/locolor/16x16/actions/view_choose.png share/icons/locolor/16x16/actions/view_detailed.png share/icons/locolor/16x16/actions/view_icon.png @@ -1693,12 +1945,13 @@ share/icons/locolor/16x16/actions/view_tree.png share/icons/locolor/16x16/apps/access.png share/icons/locolor/16x16/apps/acroread.png share/icons/locolor/16x16/apps/agent.png +share/icons/locolor/16x16/apps/alevt.png share/icons/locolor/16x16/apps/applixware.png share/icons/locolor/16x16/apps/arts.png share/icons/locolor/16x16/apps/background.png share/icons/locolor/16x16/apps/bell.png -share/icons/locolor/16x16/apps/borders.png -share/icons/locolor/16x16/apps/buttons.png +share/icons/locolor/16x16/apps/blender.png +share/icons/locolor/16x16/apps/clock.png share/icons/locolor/16x16/apps/colors.png share/icons/locolor/16x16/apps/cookie.png share/icons/locolor/16x16/apps/date.png @@ -1735,12 +1988,14 @@ share/icons/locolor/16x16/apps/kcmx.png share/icons/locolor/16x16/apps/kcontrol.png share/icons/locolor/16x16/apps/kdisknav.png share/icons/locolor/16x16/apps/kdmconfig.png +share/icons/locolor/16x16/apps/keditbookmarks.png share/icons/locolor/16x16/apps/key_bindings.png share/icons/locolor/16x16/apps/keyboard.png share/icons/locolor/16x16/apps/keyboard_layout.png share/icons/locolor/16x16/apps/kfm.png share/icons/locolor/16x16/apps/kfm_home.png share/icons/locolor/16x16/apps/khelpcenter.png +share/icons/locolor/16x16/apps/kicker.png share/icons/locolor/16x16/apps/klipper.png share/icons/locolor/16x16/apps/kmenuedit.png share/icons/locolor/16x16/apps/knotify.png @@ -1758,6 +2013,7 @@ share/icons/locolor/16x16/apps/looknfeel.png share/icons/locolor/16x16/apps/lyx.png share/icons/locolor/16x16/apps/mathematica.png share/icons/locolor/16x16/apps/mouse.png +share/icons/locolor/16x16/apps/mozilla.png share/icons/locolor/16x16/apps/multimedia.png share/icons/locolor/16x16/apps/nedit.png share/icons/locolor/16x16/apps/netscape.png @@ -1778,11 +2034,12 @@ share/icons/locolor/16x16/apps/password.png share/icons/locolor/16x16/apps/penguin.png share/icons/locolor/16x16/apps/plan.png share/icons/locolor/16x16/apps/proxy.png +share/icons/locolor/16x16/apps/pybliographic.png share/icons/locolor/16x16/apps/realplayer.png +share/icons/locolor/16x16/apps/remote.png share/icons/locolor/16x16/apps/samba.png share/icons/locolor/16x16/apps/style.png share/icons/locolor/16x16/apps/terminal.png -share/icons/locolor/16x16/apps/titlebar.png share/icons/locolor/16x16/apps/wabi.png share/icons/locolor/16x16/apps/window_list.png share/icons/locolor/16x16/apps/winprops.png @@ -1824,11 +2081,12 @@ share/icons/locolor/16x16/devices/zip_unmount.png share/icons/locolor/32x32/apps/access.png share/icons/locolor/32x32/apps/acroread.png share/icons/locolor/32x32/apps/agent.png +share/icons/locolor/32x32/apps/alevt.png share/icons/locolor/32x32/apps/applixware.png share/icons/locolor/32x32/apps/background.png share/icons/locolor/32x32/apps/bell.png -share/icons/locolor/32x32/apps/borders.png -share/icons/locolor/32x32/apps/buttons.png +share/icons/locolor/32x32/apps/blender.png +share/icons/locolor/32x32/apps/clanbomber.png share/icons/locolor/32x32/apps/clock.png share/icons/locolor/32x32/apps/colors.png share/icons/locolor/32x32/apps/cookie.png @@ -1908,16 +2166,18 @@ share/icons/locolor/32x32/apps/password.png share/icons/locolor/32x32/apps/penguin.png share/icons/locolor/32x32/apps/plan.png share/icons/locolor/32x32/apps/proxy.png +share/icons/locolor/32x32/apps/pybliographic.png +share/icons/locolor/32x32/apps/pysol.png share/icons/locolor/32x32/apps/realplayer.png share/icons/locolor/32x32/apps/samba.png share/icons/locolor/32x32/apps/style.png share/icons/locolor/32x32/apps/terminal.png -share/icons/locolor/32x32/apps/titlebar.png share/icons/locolor/32x32/apps/wabi.png share/icons/locolor/32x32/apps/window_list.png share/icons/locolor/32x32/apps/winprops.png share/icons/locolor/32x32/apps/wp.png share/icons/locolor/32x32/apps/xapp.png +share/icons/locolor/32x32/apps/xawtv.png share/icons/locolor/32x32/apps/xcalc.png share/icons/locolor/32x32/apps/xclipboard.png share/icons/locolor/32x32/apps/xclock.png @@ -2041,8 +2301,12 @@ share/locale/l10n/kr/entry.desktop share/locale/l10n/kr/flag.png share/locale/l10n/lc/entry.desktop share/locale/l10n/lc/flag.png +share/locale/l10n/lt/entry.desktop +share/locale/l10n/lt/flag.png share/locale/l10n/lu/entry.desktop share/locale/l10n/lu/flag.png +share/locale/l10n/lv/entry.desktop +share/locale/l10n/lv/flag.png share/locale/l10n/mk/entry.desktop share/locale/l10n/mk/flag.png share/locale/l10n/mx/entry.desktop @@ -2104,12 +2368,23 @@ share/locale/l10n/westeurope.desktop share/locale/l10n/za/entry.desktop share/locale/l10n/za/flag.png share/mimelnk/application/x-konsole.desktop +share/mimelnk/application/x-ktheme.desktop +share/services/bzip.protocol +share/services/bzip2.protocol +share/services/finger.protocol +share/services/floppy.protocol share/services/gopher.protocol share/services/gzip.protocol share/services/help.protocol +share/services/htmlthumbnail.desktop +share/services/imagethumbnail.desktop +share/services/imap4.protocol +share/services/imaps.protocol share/services/info.protocol share/services/kaccess.desktop +share/services/kfindpart.desktop share/services/khelpcenter.desktop +share/services/konq_aboutpage.desktop share/services/konq_detailedlistview.desktop share/services/konq_dirtree.desktop share/services/konq_iconview.desktop @@ -2117,6 +2392,7 @@ share/services/konq_multicolumnview.desktop share/services/konq_textview.desktop share/services/konq_treeview.desktop share/services/konqueror.desktop +share/services/konqueror_config.desktop share/services/konsolepart.desktop share/services/kshorturifilter.desktop share/services/kuriikwsfilter.desktop @@ -2124,14 +2400,58 @@ share/services/kurisearchfilter.desktop share/services/kwrite_component.desktop share/services/kxkb.desktop share/services/kxmlrpcd.desktop +share/services/ldap.protocol share/services/man.protocol share/services/nfs.protocol share/services/nntp.protocol share/services/pop3.protocol share/services/pop3s.protocol +share/services/searchproviders/acronym.desktop +share/services/searchproviders/altavista.desktop +share/services/searchproviders/austronaut.desktop +share/services/searchproviders/bugft.desktop +share/services/searchproviders/bugno.desktop +share/services/searchproviders/deja.desktop +share/services/searchproviders/dmoz.desktop +share/services/searchproviders/excite.desktop +share/services/searchproviders/foldoc.desktop +share/services/searchproviders/freshmeat.desktop +share/services/searchproviders/google.desktop +share/services/searchproviders/hotbot.desktop +share/services/searchproviders/jeeves.desktop +share/services/searchproviders/leo.desktop +share/services/searchproviders/lycos.desktop +share/services/searchproviders/mamma.desktop +share/services/searchproviders/metacrawler.desktop +share/services/searchproviders/realnames.desktop +share/services/searchproviders/rpmfind.desktop +share/services/searchproviders/seek.desktop +share/services/searchproviders/thesaurus.desktop +share/services/searchproviders/voila.desktop +share/services/searchproviders/webster.desktop share/services/smb.protocol share/services/smtp.protocol share/services/tar.protocol +share/services/textthumbnail.desktop +share/services/thumbnail.protocol +share/servicetypes/findpart.desktop +share/servicetypes/konqaboutpage.desktop +share/servicetypes/searchprovider.desktop +share/servicetypes/thumbcreator.desktop +share/sounds/KDE_Beep_Ahem.wav +share/sounds/KDE_Beep_Beep.wav +share/sounds/KDE_Beep_Bottles.wav +share/sounds/KDE_Beep_ClassicBeep.wav +share/sounds/KDE_Beep_ClockChime.wav +share/sounds/KDE_Beep_Connect.wav +share/sounds/KDE_Beep_Door.wav +share/sounds/KDE_Beep_Honk.wav +share/sounds/KDE_Beep_Lightning.wav +share/sounds/KDE_Beep_Pop.wav +share/sounds/KDE_Beep_RimShot.wav +share/sounds/KDE_Beep_RingRing.wav +share/sounds/KDE_Beep_ShortBeep.wav +share/sounds/KDE_Beep_Yo.wav share/sounds/KDE_Close_Window.wav share/sounds/KDE_Logout.wav share/sounds/KDE_Startup.wav @@ -2185,6 +2505,105 @@ share/wallpapers/northbeach.jpg share/wallpapers/simple_wallpaper.jpg share/wallpapers/sunday_brunch.jpg share/wallpapers/vegetative_fog.jpg +@dirrm share/wallpapers +@dirrm share/templates/.source +@dirrm share/templates +@dirrm share/sounds +@dirrm share/servicetypes +@dirrm share/services/searchproviders +@dirrm share/services +@dirrm share/mimelnk/application +@dirrm share/locale/l10n/za +@dirrm share/locale/l10n/ve +@dirrm share/locale/l10n/vc +@dirrm share/locale/l10n/uy +@dirrm share/locale/l10n/us +@dirrm share/locale/l10n/ua +@dirrm share/locale/l10n/tw +@dirrm share/locale/l10n/tt +@dirrm share/locale/l10n/tr +@dirrm share/locale/l10n/th +@dirrm share/locale/l10n/sv +@dirrm share/locale/l10n/sr +@dirrm share/locale/l10n/sk +@dirrm share/locale/l10n/si +@dirrm share/locale/l10n/se +@dirrm share/locale/l10n/ru +@dirrm share/locale/l10n/ro +@dirrm share/locale/l10n/py +@dirrm share/locale/l10n/pt +@dirrm share/locale/l10n/pl +@dirrm share/locale/l10n/pe +@dirrm share/locale/l10n/pa +@dirrm share/locale/l10n/nz +@dirrm share/locale/l10n/no +@dirrm share/locale/l10n/nl +@dirrm share/locale/l10n/mx +@dirrm share/locale/l10n/mk +@dirrm share/locale/l10n/lv +@dirrm share/locale/l10n/lu +@dirrm share/locale/l10n/lt +@dirrm share/locale/l10n/lc +@dirrm share/locale/l10n/kr +@dirrm share/locale/l10n/kp +@dirrm share/locale/l10n/kn +@dirrm share/locale/l10n/jp +@dirrm share/locale/l10n/jm +@dirrm share/locale/l10n/it +@dirrm share/locale/l10n/is +@dirrm share/locale/l10n/il +@dirrm share/locale/l10n/ie +@dirrm share/locale/l10n/hu +@dirrm share/locale/l10n/hr +@dirrm share/locale/l10n/hn +@dirrm share/locale/l10n/gt +@dirrm share/locale/l10n/gr +@dirrm share/locale/l10n/gd +@dirrm share/locale/l10n/gb +@dirrm share/locale/l10n/fr +@dirrm share/locale/l10n/fi +@dirrm share/locale/l10n/es +@dirrm share/locale/l10n/ee +@dirrm share/locale/l10n/ec +@dirrm share/locale/l10n/do +@dirrm share/locale/l10n/dk +@dirrm share/locale/l10n/de +@dirrm share/locale/l10n/cz +@dirrm share/locale/l10n/co +@dirrm share/locale/l10n/cn +@dirrm share/locale/l10n/cl +@dirrm share/locale/l10n/ch +@dirrm share/locale/l10n/ca +@dirrm share/locale/l10n/br +@dirrm share/locale/l10n/bo +@dirrm share/locale/l10n/bg +@dirrm share/locale/l10n/be +@dirrm share/locale/l10n/bb +@dirrm share/locale/l10n/au +@dirrm share/locale/l10n/at +@dirrm share/locale/l10n/ar +@dirrm share/locale/l10n/ag +@dirrm share/locale/l10n/C +@dirrm share/locale/l10n +@dirrm share/locale/C +@dirrm share/icons/locolor/32x32/devices +@dirrm share/icons/locolor/32x32/apps +@dirrm share/icons/locolor/16x16/devices +@dirrm share/icons/locolor/16x16/apps +@dirrm share/icons/locolor/16x16/actions +@dirrm share/icons/hicolor/48x48/filesystems +@dirrm share/icons/hicolor/48x48/devices +@dirrm share/icons/hicolor/48x48/apps +@dirrm share/icons/hicolor/32x32/filesystems +@dirrm share/icons/hicolor/32x32/devices +@dirrm share/icons/hicolor/32x32/apps +@dirrm share/icons/hicolor/32x32/actions +@dirrm share/icons/hicolor/22x22/actions +@dirrm share/icons/hicolor/16x16/filesystems +@dirrm share/icons/hicolor/16x16/devices +@dirrm share/icons/hicolor/16x16/apps +@dirrm share/fonts/override +@dirrm share/fonts @dirrm share/doc/HTML/en/kwrite @dirrm share/doc/HTML/en/ksysguard @dirrm share/doc/HTML/en/kpager @@ -2202,17 +2621,22 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/doc/HTML/en/kdesu @dirrm share/doc/HTML/en/kdebugdialog @dirrm share/doc/HTML/en/kcontrol -@dirrm share/apps/quickbrowser +@dirrm share/doc/HTML/en +@dirrm share/config +@dirrm share/autostart +@dirrm share/apps/naughtyapplet/pics @dirrm share/apps/kwrite @dirrm share/apps/kwin/pics @dirrm share/apps/kwin +@dirrm share/apps/kthememgr/Themes +@dirrm share/apps/kthememgr @dirrm share/apps/ksysguard/icons/locolor/16x16/apps @dirrm share/apps/ksysguard/icons/locolor/16x16 @dirrm share/apps/ksysguard/icons/locolor @dirrm share/apps/ksysguard/icons @dirrm share/apps/ksysguard +@dirrm share/apps/ksplash/pics/locolor @dirrm share/apps/ksplash/pics -@dirrm share/apps/ksplash @dirrm share/apps/kscreensaver @dirrm share/apps/konsole/pics @dirrm share/apps/konsole @@ -2226,14 +2650,18 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/konqueror/icons/hicolor/32x32 @dirrm share/apps/konqueror/icons/hicolor/22x22/actions @dirrm share/apps/konqueror/icons/hicolor/22x22 +@dirrm share/apps/konqueror/icons/hicolor/16x16/actions @dirrm share/apps/konqueror/icons/hicolor @dirrm share/apps/konqueror/icons @dirrm share/apps/konqueror/dirtree/remote/web @dirrm share/apps/konqueror/dirtree/remote/ftp @dirrm share/apps/konqueror/dirtree/remote @dirrm share/apps/konqueror/dirtree +@dirrm share/apps/konqueror/about @dirrm share/apps/konqueror +@dirrm share/apps/konqlistview/kpartplugins @dirrm share/apps/konqlistview +@dirrm share/apps/konqiconview/kpartplugins @dirrm share/apps/konqiconview @dirrm share/apps/kmenuedit/icons/locolor/16x16/actions @dirrm share/apps/kmenuedit/icons/locolor/16x16 @@ -2246,13 +2674,16 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kmenuedit/icons @dirrm share/apps/kmenuedit @dirrm share/apps/kio_info +@dirrm share/apps/kio_finger @dirrm share/apps/kicker/wallpapers @dirrm share/apps/kicker/tiles @dirrm share/apps/kicker/pics @dirrm share/apps/kicker/icons/locolor/16x16/actions @dirrm share/apps/kicker/icons/locolor/16x16 @dirrm share/apps/kicker/icons/locolor +@dirrm share/apps/kicker/icons/hicolor/16x16/actions @dirrm share/apps/kicker/icons +@dirrm share/apps/kicker/extensions @dirrm share/apps/kicker/applets @dirrm share/apps/kicker @dirrm share/apps/khelpcenter/plugins/Tutorials @@ -2264,6 +2695,8 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/khelpcenter/icons @dirrm share/apps/khelpcenter/en @dirrm share/apps/khelpcenter +@dirrm share/apps/kfind/icons/locolor/22x22/actions +@dirrm share/apps/keditbookmarks @dirrm share/apps/kdm/pics/users @dirrm share/apps/kdm/pics @dirrm share/apps/kdm @@ -2282,9 +2715,11 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kcontrol @dirrm share/apps/kcmlocale/pics @dirrm share/apps/kcmlocale +@dirrm share/apps/kcmkeys/standard @dirrm share/apps/kcminput @dirrm share/apps/kbookmark @dirrm share/apps/kappfinder/apps/WordProcessing +@dirrm share/apps/kappfinder/apps/Utilities/XUtilities @dirrm share/apps/kappfinder/apps/Utilities @dirrm share/apps/kappfinder/apps/Toys @dirrm share/apps/kappfinder/apps/System/ScreenSavers @@ -2293,13 +2728,45 @@ share/wallpapers/vegetative_fog.jpg @dirrm share/apps/kappfinder/apps/Multimedia @dirrm share/apps/kappfinder/apps/Internet @dirrm share/apps/kappfinder/apps/Graphics +@dirrm share/apps/kappfinder/apps/Games @dirrm share/apps/kappfinder/apps/Editors @dirrm share/apps/kappfinder/apps/Development @dirrm share/apps/kappfinder/apps -@dirrm share/apps/kappfinder @dirrm share/apps/drkonqi/presets @dirrm share/apps/drkonqi/pics @dirrm share/apps/drkonqi/debuggers @dirrm share/apps/drkonqi @dirrm share/apps/clockapplet/pics @dirrm share/apps/clockapplet +@dirrm share/apps +@dirrm share/applnk/Utilities +@dirrm share/applnk/Toys +@dirrm share/applnk/System/ScreenSavers +@dirrm share/applnk/System +@dirrm share/applnk/Settings/WebBrowsing +@dirrm share/applnk/Settings/System +@dirrm share/applnk/Settings/Sound +@dirrm share/applnk/Settings/PowerControl +@dirrm share/applnk/Settings/Personalization +@dirrm share/applnk/Settings/Peripherals +@dirrm share/applnk/Settings/Network +@dirrm share/applnk/Settings/LookNFeel/Windows +@dirrm share/applnk/Settings/LookNFeel/Themes +@dirrm share/applnk/Settings/LookNFeel/Desktop +@dirrm share/applnk/Settings/LookNFeel +@dirrm share/applnk/Settings/Information +@dirrm share/applnk/Settings/Help +@dirrm share/applnk/Settings/FileBrowsing +@dirrm share/applnk/Settings +@dirrm share/applnk/Office +@dirrm share/applnk/Multimedia +@dirrm share/applnk/Internet +@dirrm share/applnk/Graphics +@dirrm share/applnk/Games +@dirrm share/applnk/Editors +@dirrm share/applnk/Development +@dirrm share/applnk/Applications +@dirrm share/applnk/.hidden +@dirrm share/applnk +@dirrm lib/kde2 +@dirrm include/kwin diff --git a/x11/kdelibs2/Makefile b/x11/kdelibs2/Makefile index a2025a298f30..44b695d2e414 100644 --- a/x11/kdelibs2/Makefile +++ b/x11/kdelibs2/Makefile @@ -6,13 +6,12 @@ # PORTNAME= kdelibs -PORTVERSION= 2.0.1 -PORTREVISION= 2 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION}/distribution/tar/generic/src -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff \ audiofile.0:${PORTSDIR}/audio/libaudiofile \ diff --git a/x11/kdelibs2/distinfo b/x11/kdelibs2/distinfo index 763aa8c1e749..992af6f45bd7 100644 --- a/x11/kdelibs2/distinfo +++ b/x11/kdelibs2/distinfo @@ -1 +1 @@ -MD5 (kdelibs-2.0.1.tar.bz2) = 563d6b24a216a32be2f55f5b1c14e14c +MD5 (kdelibs-2.1.tar.bz2) = d1795459c4bc8bedc4af67211275b050 diff --git a/x11/kdelibs2/files/patch-charsets.conf b/x11/kdelibs2/files/patch-charsets.conf deleted file mode 100644 index 90fa60181d48..000000000000 --- a/x11/kdelibs2/files/patch-charsets.conf +++ /dev/null @@ -1,37 +0,0 @@ -diff -ur kdecore/charsets.config kdecore/charsets.config ---- kdecore/charsets.config Tue Oct 24 19:57:36 2000 -+++ kdecore/charsets.config Tue Oct 24 20:06:04 2000 -@@ -84,11 +84,15 @@ - iso-8859-13=iso 8859-13 - iso-8859-14=iso 8859-14 - iso-8859-15=iso 8859-15 -+paratype-cp154=pt 154 -+paratype-154=pt 154 -+pt-154=pt 154 - - # some different names for the encodings defined in the charmaps files. - # even though the charmap file names are all uppercase, the names are all lowercase here. - [aliases] - cp852=ibm852 -+microsoft-cp1251=cp1251 - - # some last resort hints in case the charmap file couldn't be found. This gives at least a partial conversion - # and helps making things readable. -@@ -106,3 +110,3 @@ - [charsetsForEncoding] --koi8-r=koi8-r,iso-8859-5,koi8-u --koi8-u=koi8-u,iso8859-5,koi8-r -+koi8-r=koi8-u,koi8-r,iso8859-5, -+koi8-u=koi8-u,iso8859-5,koi8-r -@@ -113,1 +117,1 @@ --iso 8859-5=iso8859-5,koi8-r,koi8-u -+iso 8859-5=iso8859-5,koi8-u,koi8-r -@@ -126,1 +130,1 @@ --cp 1251=koi8-r,iso8859-5 -+cp 1251=koi8-u,koi8-r,iso8859-5 -@@ -138,3 +142,4 @@ - big5=set-big5,unicode - gbk=set-gbk,unicode - euckr=euckr,unicode,iso8859-1 -+pt 154=unicode,pt154,cp1251 -\ No newline at end of file diff --git a/x11/kdelibs2/files/patch-global.cpp b/x11/kdelibs2/files/patch-global.cpp index 13636e36b43a..9f423c75cbf1 100644 --- a/x11/kdelibs2/files/patch-global.cpp +++ b/x11/kdelibs2/files/patch-global.cpp @@ -1,6 +1,6 @@ ---- kio/global.cpp.orig Thu Dec 7 14:52:15 2000 -+++ kio/global.cpp Thu Dec 7 14:52:29 2000 -@@ -28,6 +28,12 @@ +--- kio/global.cpp Sun Feb 18 10:27:06 2001 ++++ kio/global.cpp.new Thu Feb 22 23:47:34 2001 +@@ -30,6 +30,12 @@ #include <string.h> #include <unistd.h> @@ -10,10 +10,10 @@ +#include <sys/mount.h> +#endif + - #ifdef HAVE_FSTAB_H - #include <fstab.h> - #endif -@@ -423,6 +429,30 @@ + #include "kio/global.h" + #include "kio/job.h" + +@@ -567,6 +573,30 @@ /* Get the list of mounted file systems */ @@ -44,9 +44,9 @@ if ((mtab = SETMNTENT(MNTTAB, "r")) == 0) { perror("setmntent"); return QString::null; -@@ -467,6 +497,7 @@ +@@ -612,6 +642,7 @@ + #endif /* GET_MNTINFO */ - ENDMNTENT(mtab); //kdDebug( 7007 ) << "Returning result " << result << endl; +#endif return result; diff --git a/x11/kdelibs2/files/patch-kapp.cpp b/x11/kdelibs2/files/patch-kapp.cpp index f46eb7dec9f6..51d25c2ae580 100644 --- a/x11/kdelibs2/files/patch-kapp.cpp +++ b/x11/kdelibs2/files/patch-kapp.cpp @@ -1,10 +1,10 @@ ---- kdecore/kapp.cpp.orig Fri Dec 22 11:27:55 2000 -+++ kdecore/kapp.cpp Fri Dec 22 11:28:22 2000 -@@ -776,6 +776,7 @@ - if ( mySmcConnection ) { +--- kdecore/kapp.cpp Sun Feb 18 10:26:53 2001 ++++ kdecore/kapp.cpp.new Thu Feb 22 23:58:03 2001 +@@ -795,6 +795,7 @@ // we already have a connection to the session manager, use it. - SmcRequestSaveYourself( mySmcConnection, SmSaveBoth, True, SmInteractStyleAny, False, True ); + SmcRequestSaveYourself( mySmcConnection, SmSaveBoth, True, + SmInteractStyleAny, False, True ); + SmcCloseConnection( mySmcConnection, 0, 0 ); - return TRUE; - } + // flush the request + IceFlush(SmcGetIceConnection(mySmcConnection)); diff --git a/x11/kdelibs2/files/patch-kcharsets.cpp b/x11/kdelibs2/files/patch-kcharsets.cpp deleted file mode 100644 index c104c830da46..000000000000 --- a/x11/kdelibs2/files/patch-kcharsets.cpp +++ /dev/null @@ -1,90 +0,0 @@ -diff -ur kdecore/kcharsets.cpp kdecore/kcharsets.cpp ---- kdecore/kcharsets.cpp Tue Oct 24 19:57:36 2000 -+++ kdecore/kcharsets.cpp Tue Oct 24 20:10:19 2000 -@@ -37,9 +37,9 @@ - template class QList<QFont::CharSet>; - - #if QT_VERSION > 220 --#define CHARSETS_COUNT 30 -+#define CHARSETS_COUNT 32 - #else --#define CHARSETS_COUNT 29 -+#define CHARSETS_COUNT 32 - #endif - - static const char * const charsetsStr[CHARSETS_COUNT] = { -@@ -60,6 +60,9 @@ - "iso-8859-14", - "iso-8859-15", - "koi8r", -+ "koi8u", -+ "cp1251", -+ "pt154", - "eucjp", - "euckr", - "set-th-th", -@@ -71,9 +74,6 @@ - "utf-8", - "utf-16", - "iso-8859-11", --#if QT_VERSION > 220 -- "koi8u", --#endif - "Any" - }; - -@@ -96,6 +96,9 @@ - "iso8859-14", - "iso8859-15", - "koi8-r", -+ "koi8-u", -+ "microsoft-cp1251", -+ "paratype-cp154", - "jisx0208.1983-0", - "ksc5601.1987-0", - "tis620.2533-1", -@@ -107,9 +110,6 @@ - "utf8", - "utf16", - "tis620-*", --#if QT_VERSION > 220 -- "koi8-u", --#endif - "" // this will always return true... - }; - -@@ -131,6 +131,9 @@ - QFont::ISO_8859_14, - QFont::ISO_8859_15, - QFont::KOI8R, -+ QFont::KOI8U, -+ QFont::CP_1251, -+ QFont::PT_154, - QFont::Set_Ja, - QFont::Set_Ko, - QFont::Set_Th_TH, -@@ -142,9 +145,6 @@ - QFont::Unicode, - QFont::Unicode, - QFont::ISO_8859_11, --#if QT_VERSION > 220 -- QFont::KOI8U, --#endif - QFont::AnyCharSet - }; - -@@ -536,10 +536,12 @@ - return "iso8859-15"; - case QFont::KOI8R: - return "koi8-r"; --#if QT_VERSION > 220 - case QFont::KOI8U: - return "koi8-u"; --#endif -+ case QFont::CP_1251: -+ return "microsoft-cp1251"; -+ case QFont::PT_154: -+ return "paratype-cp154"; - case QFont::Set_Ko: - return "ksc5601.1987-0"; - case QFont::Set_Ja: diff --git a/x11/kdelibs2/pkg-plist b/x11/kdelibs2/pkg-plist index 23caf2feb129..d716fe96d906 100644 --- a/x11/kdelibs2/pkg-plist +++ b/x11/kdelibs2/pkg-plist @@ -3,6 +3,7 @@ bin/artscat bin/artsd bin/artsdsp bin/artsplay +bin/artsshell bin/artswrapper bin/dcop bin/dcopidl @@ -11,6 +12,7 @@ bin/dcopserver bin/kbuildsycoca bin/kcookiejar bin/kdb2html +bin/kde-config bin/kded bin/kdeinit bin/kdeinit_wrapper @@ -29,6 +31,7 @@ include/arts/anyref.h include/arts/artsflow.h include/arts/artsflow.idl include/arts/asyncstream.h +include/arts/audioio.h include/arts/audiosubsys.h include/arts/buffer.h include/arts/cache.h @@ -38,6 +41,7 @@ include/arts/connect.h include/arts/connection.h include/arts/convert.h include/arts/core.h +include/arts/core.idl include/arts/datapacket.h include/arts/debug.h include/arts/dispatcher.h @@ -61,6 +65,7 @@ include/arts/pool.h include/arts/qiomanager.h include/arts/reference.h include/arts/referenceclean.h +include/arts/resample.h include/arts/socketconnection.h include/arts/soundserver.h include/arts/soundserver.idl @@ -116,6 +121,7 @@ include/kaccel.h include/kaccelmenu.h include/kaction.h include/kallocator.h +include/kalphapainter.h include/kanimwidget.h include/kapp.h include/kaudioplayer.h @@ -136,7 +142,9 @@ include/kcolordlg.h include/kcolordrag.h include/kcombiview.h include/kcombobox.h +include/kcommand.h include/kcompletion.h +include/kcompletionbox.h include/kconfig.h include/kconfigbackend.h include/kconfigbase.h @@ -178,7 +186,9 @@ include/kdockwindow.h include/kdrawutil.h include/kdualcolorbtn.h include/keditcl.h +include/keditlistbox.h include/kedittoolbar.h +include/kemailsettings.h include/kfile.h include/kfilebookmark.h include/kfiledetailview.h @@ -190,6 +200,8 @@ include/kfilepreview.h include/kfilereader.h include/kfileview.h include/kfileviewitem.h +include/kfilterbase.h +include/kfilterdev.h include/kfontdialog.h include/kglobal.h include/kglobalaccel.h @@ -208,19 +220,27 @@ include/kiconview.h include/kimageeffect.h include/kimageio.h include/kinstance.h +include/kio/authinfo.h +include/kio/chmodjob.h include/kio/connection.h include/kio/defaultprogress.h include/kio/file.h include/kio/global.h include/kio/job.h include/kio/jobclasses.h +include/kio/kmdbase.h +include/kio/kmdcodec.h +include/kio/kpac.h include/kio/netaccess.h include/kio/observer.h include/kio/passdlg.h include/kio/paste.h include/kio/progressbase.h include/kio/renamedlg.h +include/kio/sasl/saslcontext.h +include/kio/sasl/saslmodule.h include/kio/skipdlg.h +include/kio/slave.h include/kio/slavebase.h include/kio/slaveinterface.h include/kio/statusbarprogress.h @@ -253,6 +273,7 @@ include/kmainwindow.h include/kmenubar.h include/kmessagebox.h include/kmimemagic.h +include/kmimesourcefactory.h include/kmimetype.h include/knotifyclient.h include/knuminput.h @@ -260,11 +281,13 @@ include/knumvalidator.h include/kopenwith.h include/kpalette.h include/kpanelapplet.h +include/kpanelextension.h include/kpanelmenu.h include/kparts/browserextension.h include/kparts/dockmainwindow.h include/kparts/event.h include/kparts/factory.h +include/kparts/historyprovider.h include/kparts/mainwindow.h include/kparts/part.h include/kparts/partmanager.h @@ -274,6 +297,7 @@ include/kpixmap.h include/kpixmapeffect.h include/kpixmapio.h include/kpixmapprovider.h +include/kpixmapsplitter.h include/kpopupmenu.h include/kprocctrl.h include/kprocess.h @@ -282,6 +306,7 @@ include/kprogress.h include/kpropsdlg.h include/kprotocolinfo.h include/kprotocolmanager.h +include/kpushbutton.h include/krandomsequence.h include/krecentdocument.h include/kregexp.h @@ -306,6 +331,7 @@ include/ksimpleconfig.h include/ksock.h include/kspell.h include/kspelldlg.h +include/ksqueezedtextlabel.h include/kssl.h include/ksslcertificate.h include/ksslcertificatecache.h @@ -354,6 +380,7 @@ include/kurlrequesterdlg.h include/kuserprofile.h include/kwidgetid.h include/kwin.h +include/kwindowlistmenu.h include/kwinmodule.h include/kwizard.h include/kxmlgui.h @@ -396,28 +423,36 @@ lib/kbuildsycoca.la lib/kbuildsycoca.so lib/kcookiejar.la lib/kcookiejar.so +lib/kde2/kbzip2filter.la +lib/kde2/kbzip2filter.so +lib/kde2/kgzipfilter.la +lib/kde2/kgzipfilter.so +lib/kde2/kimg_eps.la +lib/kde2/kimg_eps.so +lib/kde2/kimg_g3.la +lib/kde2/kimg_g3.so +lib/kde2/kimg_ico.la +lib/kde2/kimg_ico.so +lib/kde2/kimg_krl.la +lib/kde2/kimg_krl.so +lib/kde2/kimg_tiff.la +lib/kde2/kimg_tiff.so +lib/kde2/kimg_xview.la +lib/kde2/kimg_xview.so +lib/kde2/kio_file.la +lib/kde2/kio_file.so +lib/kde2/kio_ftp.la +lib/kde2/kio_ftp.so +lib/kde2/kio_http.la +lib/kde2/kio_http.so +lib/kde2/kio_https.la +lib/kde2/kio_https.so +lib/kde2/libkpac.la +lib/kde2/libkpac.so lib/kded.la lib/kded.so -lib/kimg_eps.la -lib/kimg_eps.so -lib/kimg_g3.la -lib/kimg_g3.so -lib/kimg_krl.la -lib/kimg_krl.so -lib/kimg_tiff.la -lib/kimg_tiff.so -lib/kimg_xview.la -lib/kimg_xview.so -lib/kio_file.la -lib/kio_file.so -lib/kio_ftp.la -lib/kio_ftp.so -lib/kio_http.la -lib/kio_http.so lib/kio_http_cache_cleaner.la lib/kio_http_cache_cleaner.so -lib/kio_https.la -lib/kio_https.so lib/kio_uiserver.la lib/kio_uiserver.so lib/kjs_html.la @@ -428,6 +463,8 @@ lib/klegacystyle.la lib/klegacystyle.so lib/knotify.la lib/knotify.so +lib/ksasl_auth_plain.la +lib/ksasl_auth_plain.so lib/ksgistyle.la lib/ksgistyle.so lib/kstephighcolor.la @@ -452,12 +489,18 @@ lib/libartsflow.so.0 lib/libartsflow_idl.la lib/libartsflow_idl.so lib/libartsflow_idl.so.0 +lib/libartswavplayobject.la +lib/libartswavplayobject.so +lib/libartswavplayobject.so.0 lib/libkab.la lib/libkab.so lib/libkab.so.4 lib/libkdecore.la lib/libkdecore.so lib/libkdecore.so.4 +lib/libkdefakes.la +lib/libkdefakes.so +lib/libkdefakes.so.4 lib/libkdesu.la lib/libkdesu.so lib/libkdesu.so.4 @@ -467,9 +510,12 @@ lib/libkdeui.so.4 lib/libkfile.la lib/libkfile.so lib/libkfile.so.4 +lib/libkformula.so lib/libkhtml.la lib/libkhtml.so lib/libkhtml.so.4 +lib/libkhtmlimage.la +lib/libkhtmlimage.so lib/libkio.la lib/libkio.so lib/libkio.so.4 @@ -488,6 +534,8 @@ lib/libkmid.so.0 lib/libkparts.la lib/libkparts.so lib/libkparts.so.4 +lib/libksasl.la +lib/libksasl.so lib/libkspell.la lib/libkspell.so lib/libkspell.so.4 @@ -526,6 +574,12 @@ lib/mcop/Arts/Synth_RECORD.mcopclass lib/mcop/Arts/Synth_WAVE_SIN.mcopclass lib/mcop/Arts/WavPlayObject.mcopclass lib/mcop/Arts/X11GlobalComm.mcopclass +lib/mcop/artsflow.mcopclass +lib/mcop/artsflow.mcoptype +lib/mcop/kmedia2.mcopclass +lib/mcop/kmedia2.mcoptype +lib/mcop/soundserver.mcopclass +lib/mcop/soundserver.mcoptype share/apps/LICENSES/ARTISTIC share/apps/LICENSES/BSD share/apps/LICENSES/GPL_V2 @@ -543,11 +597,12 @@ share/apps/khtml/khtml.rc share/apps/khtml/khtml_browser.rc share/apps/khtml/khtml_popupmenu.rc share/apps/kio_uiserver/icons/locolor/16x16/apps/kio_uiserver.png -share/apps/kjava/kjava-classes.zip +share/apps/kjava/kjava.jar +share/apps/kjava/kjava.policy +share/apps/knotify/eventsrc share/apps/ksgmltools/ca/catalog share/apps/ksgmltools/ca/entities/fdl-notice.docbook share/apps/ksgmltools/ca/entities/gpl-notice.docbook -share/apps/ksgmltools/ca/entities/help-menu.docbook share/apps/ksgmltools/ca/entities/lgpl-notice.docbook share/apps/ksgmltools/ca/entities/report-bugs.docbook share/apps/ksgmltools/ca/entities/underArtisticLicense.docbook @@ -562,7 +617,6 @@ share/apps/ksgmltools/catalog share/apps/ksgmltools/cs/catalog share/apps/ksgmltools/cs/entities/fdl-notice.docbook share/apps/ksgmltools/cs/entities/gpl-notice.docbook -share/apps/ksgmltools/cs/entities/help-menu.docbook share/apps/ksgmltools/cs/entities/lgpl-notice.docbook share/apps/ksgmltools/cs/entities/report-bugs.docbook share/apps/ksgmltools/cs/entities/underArtisticLicense.docbook @@ -576,7 +630,6 @@ share/apps/ksgmltools/cs/user.entities share/apps/ksgmltools/da/catalog share/apps/ksgmltools/da/entities/fdl-notice.docbook share/apps/ksgmltools/da/entities/gpl-notice.docbook -share/apps/ksgmltools/da/entities/help-menu.docbook share/apps/ksgmltools/da/entities/lgpl-notice.docbook share/apps/ksgmltools/da/entities/report-bugs.docbook share/apps/ksgmltools/da/entities/underArtisticLicense.docbook @@ -590,7 +643,6 @@ share/apps/ksgmltools/da/user.entities share/apps/ksgmltools/de/catalog share/apps/ksgmltools/de/entities/fdl-notice.docbook share/apps/ksgmltools/de/entities/gpl-notice.docbook -share/apps/ksgmltools/de/entities/help-menu.docbook share/apps/ksgmltools/de/entities/lgpl-notice.docbook share/apps/ksgmltools/de/entities/report-bugs.docbook share/apps/ksgmltools/de/entities/underArtisticLicense.docbook @@ -601,17 +653,14 @@ share/apps/ksgmltools/de/entities/underX11License.docbook share/apps/ksgmltools/de/kde-prologue.entities share/apps/ksgmltools/de/strings.entities share/apps/ksgmltools/de/user.entities -share/apps/ksgmltools/dtd/kde-genent.entities share/apps/ksgmltools/dtd/kde-modifications.elements share/apps/ksgmltools/dtd/kde-next.dtd -share/apps/ksgmltools/dtd/kde-prologue.entities share/apps/ksgmltools/dtd/kde-rdbhier2.elements share/apps/ksgmltools/dtd/kde-rdbpool.elements share/apps/ksgmltools/dtd/kde.dtd share/apps/ksgmltools/el/catalog share/apps/ksgmltools/el/entities/fdl-notice.docbook share/apps/ksgmltools/el/entities/gpl-notice.docbook -share/apps/ksgmltools/el/entities/help-menu.docbook share/apps/ksgmltools/el/entities/lgpl-notice.docbook share/apps/ksgmltools/el/entities/report-bugs.docbook share/apps/ksgmltools/el/entities/underArtisticLicense.docbook @@ -625,7 +674,6 @@ share/apps/ksgmltools/el/user.entities share/apps/ksgmltools/en/catalog share/apps/ksgmltools/en/entities/fdl-notice.docbook share/apps/ksgmltools/en/entities/gpl-notice.docbook -share/apps/ksgmltools/en/entities/help-menu.docbook share/apps/ksgmltools/en/entities/lgpl-notice.docbook share/apps/ksgmltools/en/entities/report-bugs.docbook share/apps/ksgmltools/en/entities/underArtisticLicense.docbook @@ -636,19 +684,11 @@ share/apps/ksgmltools/en/entities/underX11License.docbook share/apps/ksgmltools/en/kde-prologue.entities share/apps/ksgmltools/en/strings.entities share/apps/ksgmltools/en/user.entities -share/apps/ksgmltools/entities/artistic-license.docbook -share/apps/ksgmltools/entities/artisticlicense-links.docbook -share/apps/ksgmltools/entities/bsd-license.docbook -share/apps/ksgmltools/entities/bsdlicense-links.docbook -share/apps/ksgmltools/entities/license-links.docbook -share/apps/ksgmltools/entities/qpl-license.docbook -share/apps/ksgmltools/entities/qpllicense-links.docbook -share/apps/ksgmltools/entities/x11-license.docbook -share/apps/ksgmltools/entities/x11license-links.docbook +share/apps/ksgmltools/entities/kde-genent.entities +share/apps/ksgmltools/entities/kde-prologue.entities share/apps/ksgmltools/es/catalog share/apps/ksgmltools/es/entities/fdl-notice.docbook share/apps/ksgmltools/es/entities/gpl-notice.docbook -share/apps/ksgmltools/es/entities/help-menu.docbook share/apps/ksgmltools/es/entities/lgpl-notice.docbook share/apps/ksgmltools/es/entities/report-bugs.docbook share/apps/ksgmltools/es/entities/underArtisticLicense.docbook @@ -662,7 +702,6 @@ share/apps/ksgmltools/es/user.entities share/apps/ksgmltools/et/catalog share/apps/ksgmltools/et/entities/fdl-notice.docbook share/apps/ksgmltools/et/entities/gpl-notice.docbook -share/apps/ksgmltools/et/entities/help-menu.docbook share/apps/ksgmltools/et/entities/lgpl-notice.docbook share/apps/ksgmltools/et/entities/report-bugs.docbook share/apps/ksgmltools/et/entities/underArtisticLicense.docbook @@ -676,7 +715,6 @@ share/apps/ksgmltools/et/user.entities share/apps/ksgmltools/fi/catalog share/apps/ksgmltools/fi/entities/fdl-notice.docbook share/apps/ksgmltools/fi/entities/gpl-notice.docbook -share/apps/ksgmltools/fi/entities/help-menu.docbook share/apps/ksgmltools/fi/entities/lgpl-notice.docbook share/apps/ksgmltools/fi/entities/report-bugs.docbook share/apps/ksgmltools/fi/entities/underArtisticLicense.docbook @@ -690,7 +728,6 @@ share/apps/ksgmltools/fi/user.entities share/apps/ksgmltools/fr/catalog share/apps/ksgmltools/fr/entities/fdl-notice.docbook share/apps/ksgmltools/fr/entities/gpl-notice.docbook -share/apps/ksgmltools/fr/entities/help-menu.docbook share/apps/ksgmltools/fr/entities/lgpl-notice.docbook share/apps/ksgmltools/fr/entities/report-bugs.docbook share/apps/ksgmltools/fr/entities/underArtisticLicense.docbook @@ -704,7 +741,6 @@ share/apps/ksgmltools/fr/user.entities share/apps/ksgmltools/hu/catalog share/apps/ksgmltools/hu/entities/fdl-notice.docbook share/apps/ksgmltools/hu/entities/gpl-notice.docbook -share/apps/ksgmltools/hu/entities/help-menu.docbook share/apps/ksgmltools/hu/entities/lgpl-notice.docbook share/apps/ksgmltools/hu/entities/report-bugs.docbook share/apps/ksgmltools/hu/entities/underArtisticLicense.docbook @@ -718,7 +754,6 @@ share/apps/ksgmltools/hu/user.entities share/apps/ksgmltools/it/catalog share/apps/ksgmltools/it/entities/fdl-notice.docbook share/apps/ksgmltools/it/entities/gpl-notice.docbook -share/apps/ksgmltools/it/entities/help-menu.docbook share/apps/ksgmltools/it/entities/lgpl-notice.docbook share/apps/ksgmltools/it/entities/report-bugs.docbook share/apps/ksgmltools/it/entities/underArtisticLicense.docbook @@ -732,7 +767,6 @@ share/apps/ksgmltools/it/user.entities share/apps/ksgmltools/ja/catalog share/apps/ksgmltools/ja/entities/fdl-notice.docbook share/apps/ksgmltools/ja/entities/gpl-notice.docbook -share/apps/ksgmltools/ja/entities/help-menu.docbook share/apps/ksgmltools/ja/entities/lgpl-notice.docbook share/apps/ksgmltools/ja/entities/report-bugs.docbook share/apps/ksgmltools/ja/entities/underArtisticLicense.docbook @@ -744,10 +778,21 @@ share/apps/ksgmltools/ja/kde-prologue.entities share/apps/ksgmltools/ja/strings.entities share/apps/ksgmltools/ja/user.entities share/apps/ksgmltools/kde.dcl +share/apps/ksgmltools/ko/catalog +share/apps/ksgmltools/ko/entities/fdl-notice.docbook +share/apps/ksgmltools/ko/entities/gpl-notice.docbook +share/apps/ksgmltools/ko/entities/lgpl-notice.docbook +share/apps/ksgmltools/ko/entities/underArtisticLicense.docbook +share/apps/ksgmltools/ko/entities/underBSDLicense.docbook +share/apps/ksgmltools/ko/entities/underFDL.docbook +share/apps/ksgmltools/ko/entities/underGPL.docbook +share/apps/ksgmltools/ko/entities/underX11License.docbook +share/apps/ksgmltools/ko/kde-prologue.entities +share/apps/ksgmltools/ko/strings.entities +share/apps/ksgmltools/ko/user.entities share/apps/ksgmltools/nl/catalog share/apps/ksgmltools/nl/entities/fdl-notice.docbook share/apps/ksgmltools/nl/entities/gpl-notice.docbook -share/apps/ksgmltools/nl/entities/help-menu.docbook share/apps/ksgmltools/nl/entities/lgpl-notice.docbook share/apps/ksgmltools/nl/entities/report-bugs.docbook share/apps/ksgmltools/nl/entities/underArtisticLicense.docbook @@ -761,7 +806,6 @@ share/apps/ksgmltools/nl/user.entities share/apps/ksgmltools/no/catalog share/apps/ksgmltools/no/entities/fdl-notice.docbook share/apps/ksgmltools/no/entities/gpl-notice.docbook -share/apps/ksgmltools/no/entities/help-menu.docbook share/apps/ksgmltools/no/entities/lgpl-notice.docbook share/apps/ksgmltools/no/entities/report-bugs.docbook share/apps/ksgmltools/no/entities/underArtisticLicense.docbook @@ -775,7 +819,6 @@ share/apps/ksgmltools/no/user.entities share/apps/ksgmltools/pl/catalog share/apps/ksgmltools/pl/entities/fdl-notice.docbook share/apps/ksgmltools/pl/entities/gpl-notice.docbook -share/apps/ksgmltools/pl/entities/help-menu.docbook share/apps/ksgmltools/pl/entities/lgpl-notice.docbook share/apps/ksgmltools/pl/entities/report-bugs.docbook share/apps/ksgmltools/pl/entities/underArtisticLicense.docbook @@ -789,7 +832,6 @@ share/apps/ksgmltools/pl/user.entities share/apps/ksgmltools/pt-BR/catalog share/apps/ksgmltools/pt-BR/entities/fdl-notice.docbook share/apps/ksgmltools/pt-BR/entities/gpl-notice.docbook -share/apps/ksgmltools/pt-BR/entities/help-menu.docbook share/apps/ksgmltools/pt-BR/entities/lgpl-notice.docbook share/apps/ksgmltools/pt-BR/entities/report-bugs.docbook share/apps/ksgmltools/pt-BR/entities/underArtisticLicense.docbook @@ -803,7 +845,6 @@ share/apps/ksgmltools/pt-BR/user.entities share/apps/ksgmltools/pt/catalog share/apps/ksgmltools/pt/entities/fdl-notice.docbook share/apps/ksgmltools/pt/entities/gpl-notice.docbook -share/apps/ksgmltools/pt/entities/help-menu.docbook share/apps/ksgmltools/pt/entities/lgpl-notice.docbook share/apps/ksgmltools/pt/entities/report-bugs.docbook share/apps/ksgmltools/pt/entities/underArtisticLicense.docbook @@ -817,7 +858,6 @@ share/apps/ksgmltools/pt/user.entities share/apps/ksgmltools/ro/catalog share/apps/ksgmltools/ro/entities/fdl-notice.docbook share/apps/ksgmltools/ro/entities/gpl-notice.docbook -share/apps/ksgmltools/ro/entities/help-menu.docbook share/apps/ksgmltools/ro/entities/lgpl-notice.docbook share/apps/ksgmltools/ro/entities/report-bugs.docbook share/apps/ksgmltools/ro/entities/underArtisticLicense.docbook @@ -831,7 +871,6 @@ share/apps/ksgmltools/ro/user.entities share/apps/ksgmltools/ru/catalog share/apps/ksgmltools/ru/entities/fdl-notice.docbook share/apps/ksgmltools/ru/entities/gpl-notice.docbook -share/apps/ksgmltools/ru/entities/help-menu.docbook share/apps/ksgmltools/ru/entities/lgpl-notice.docbook share/apps/ksgmltools/ru/entities/report-bugs.docbook share/apps/ksgmltools/ru/entities/underArtisticLicense.docbook @@ -845,7 +884,6 @@ share/apps/ksgmltools/ru/user.entities share/apps/ksgmltools/sk/catalog share/apps/ksgmltools/sk/entities/fdl-notice.docbook share/apps/ksgmltools/sk/entities/gpl-notice.docbook -share/apps/ksgmltools/sk/entities/help-menu.docbook share/apps/ksgmltools/sk/entities/lgpl-notice.docbook share/apps/ksgmltools/sk/entities/report-bugs.docbook share/apps/ksgmltools/sk/entities/underArtisticLicense.docbook @@ -859,7 +897,6 @@ share/apps/ksgmltools/sk/user.entities share/apps/ksgmltools/sl/catalog share/apps/ksgmltools/sl/entities/fdl-notice.docbook share/apps/ksgmltools/sl/entities/gpl-notice.docbook -share/apps/ksgmltools/sl/entities/help-menu.docbook share/apps/ksgmltools/sl/entities/lgpl-notice.docbook share/apps/ksgmltools/sl/entities/report-bugs.docbook share/apps/ksgmltools/sl/entities/underArtisticLicense.docbook @@ -873,7 +910,6 @@ share/apps/ksgmltools/sl/user.entities share/apps/ksgmltools/sr/catalog share/apps/ksgmltools/sr/entities/fdl-notice.docbook share/apps/ksgmltools/sr/entities/gpl-notice.docbook -share/apps/ksgmltools/sr/entities/help-menu.docbook share/apps/ksgmltools/sr/entities/lgpl-notice.docbook share/apps/ksgmltools/sr/entities/report-bugs.docbook share/apps/ksgmltools/sr/entities/underArtisticLicense.docbook @@ -915,6 +951,8 @@ share/apps/ksgmltools/stylesheets/kde-l1it.dsl share/apps/ksgmltools/stylesheets/kde-l1it.ent share/apps/ksgmltools/stylesheets/kde-l1ja.dsl share/apps/ksgmltools/stylesheets/kde-l1ja.ent +share/apps/ksgmltools/stylesheets/kde-l1ko.dsl +share/apps/ksgmltools/stylesheets/kde-l1ko.ent share/apps/ksgmltools/stylesheets/kde-l1nl.dsl share/apps/ksgmltools/stylesheets/kde-l1nl.ent share/apps/ksgmltools/stylesheets/kde-l1no.dsl @@ -939,6 +977,8 @@ share/apps/ksgmltools/stylesheets/kde-l1sv.dsl share/apps/ksgmltools/stylesheets/kde-l1sv.ent share/apps/ksgmltools/stylesheets/kde-l1zhcn.dsl share/apps/ksgmltools/stylesheets/kde-l1zhcn.ent +share/apps/ksgmltools/stylesheets/kde-l1zhtw.dsl +share/apps/ksgmltools/stylesheets/kde-l1zhtw.ent share/apps/ksgmltools/stylesheets/kde-navig.dsl share/apps/ksgmltools/stylesheets/kde-search.dsl share/apps/ksgmltools/stylesheets/kde-ttlpg.dsl @@ -947,7 +987,6 @@ share/apps/ksgmltools/stylesheets/kde.dsl share/apps/ksgmltools/sv/catalog share/apps/ksgmltools/sv/entities/fdl-notice.docbook share/apps/ksgmltools/sv/entities/gpl-notice.docbook -share/apps/ksgmltools/sv/entities/help-menu.docbook share/apps/ksgmltools/sv/entities/lgpl-notice.docbook share/apps/ksgmltools/sv/entities/report-bugs.docbook share/apps/ksgmltools/sv/entities/underArtisticLicense.docbook @@ -961,7 +1000,6 @@ share/apps/ksgmltools/sv/user.entities share/apps/ksgmltools/zh-CN/catalog share/apps/ksgmltools/zh-CN/entities/fdl-notice.docbook share/apps/ksgmltools/zh-CN/entities/gpl-notice.docbook -share/apps/ksgmltools/zh-CN/entities/help-menu.docbook share/apps/ksgmltools/zh-CN/entities/lgpl-notice.docbook share/apps/ksgmltools/zh-CN/entities/report-bugs.docbook share/apps/ksgmltools/zh-CN/entities/underArtisticLicense.docbook @@ -972,6 +1010,19 @@ share/apps/ksgmltools/zh-CN/entities/underX11License.docbook share/apps/ksgmltools/zh-CN/kde-prologue.entities share/apps/ksgmltools/zh-CN/strings.entities share/apps/ksgmltools/zh-CN/user.entities +share/apps/ksgmltools/zh-TW/catalog +share/apps/ksgmltools/zh-TW/entities/fdl-notice.docbook +share/apps/ksgmltools/zh-TW/entities/gpl-notice.docbook +share/apps/ksgmltools/zh-TW/entities/lgpl-notice.docbook +share/apps/ksgmltools/zh-TW/entities/report-bugs.docbook +share/apps/ksgmltools/zh-TW/entities/underArtisticLicense.docbook +share/apps/ksgmltools/zh-TW/entities/underBSDLicense.docbook +share/apps/ksgmltools/zh-TW/entities/underFDL.docbook +share/apps/ksgmltools/zh-TW/entities/underGPL.docbook +share/apps/ksgmltools/zh-TW/entities/underX11License.docbook +share/apps/ksgmltools/zh-TW/kde-prologue.entities +share/apps/ksgmltools/zh-TW/strings.entities +share/apps/ksgmltools/zh-TW/user.entities share/apps/kssl/caroot/ca-bundle.crt share/apps/kstyle/pixmaps/aquaice.png share/apps/kstyle/pixmaps/black_combo.png @@ -1045,46 +1096,40 @@ share/apps/kstyle/themes/qtsgi.themerc share/apps/kstyle/themes/qtwindows.themerc share/apps/kstyle/themes/system.themerc share/apps/kstyle/themes/systemalt.themerc -share/apps/kstyle/themes/systemtest.themerc share/config/charsets share/config/colors/40 Colors share/config/colors/Royal share/config/colors/Web -share/config/eventsrc -share/config/kde-config share/config/kdebug.areas share/config/kdebugrc share/config/ui/ui_standards.rc -share/doc/HTML/en/common/artistic-licence.html -share/doc/HTML/en/common/bsd-licence.html +share/doc/HTML/default +share/doc/HTML/en/common/artistic-license.html +share/doc/HTML/en/common/bsd-license.html share/doc/HTML/en/common/caution.png -share/doc/HTML/en/common/fdl-licence -share/doc/HTML/en/common/fdl-licence.html -share/doc/HTML/en/common/fdl-notice -share/doc/HTML/en/common/gpl-licence -share/doc/HTML/en/common/gpl-licence.html -share/doc/HTML/en/common/gpl-notice +share/doc/HTML/en/common/fdl-license +share/doc/HTML/en/common/fdl-license.html +share/doc/HTML/en/common/gpl-license +share/doc/HTML/en/common/gpl-license.html share/doc/HTML/en/common/home.png share/doc/HTML/en/common/important.png share/doc/HTML/en/common/kde-common.css share/doc/HTML/en/common/kde-default.css -share/doc/HTML/en/common/lgpl-licence -share/doc/HTML/en/common/lgpl-licence.html -share/doc/HTML/en/common/lgpl-notice +share/doc/HTML/en/common/lgpl-license +share/doc/HTML/en/common/lgpl-license.html share/doc/HTML/en/common/logotp3-small.png share/doc/HTML/en/common/logotp3.png -share/doc/HTML/en/common/mieterra-artistic-license share/doc/HTML/en/common/next.png share/doc/HTML/en/common/note.png share/doc/HTML/en/common/prev.png -share/doc/HTML/en/common/qpl-licence.html +share/doc/HTML/en/common/qpl-license.html share/doc/HTML/en/common/tip.png share/doc/HTML/en/common/toc-blank.png share/doc/HTML/en/common/toc-minus.png share/doc/HTML/en/common/toc-plus.png share/doc/HTML/en/common/up.png share/doc/HTML/en/common/warning.png -share/doc/HTML/en/common/x11-licence.html +share/doc/HTML/en/common/x11-license.html share/doc/HTML/en/common/xml.dcl share/doc/HTML/en/kspell/.anchors share/doc/HTML/en/kspell/common @@ -1098,6 +1143,174 @@ share/doc/HTML/en/kspell/misspelled-word-dialog.html share/doc/HTML/en/kspell/other-functions.html share/doc/HTML/en/kspell/other.html share/doc/HTML/en/kspell/spell-checking-client.html +share/icons/hicolor/16x16/actions/1downarrow.png +share/icons/hicolor/16x16/actions/1leftarrow.png +share/icons/hicolor/16x16/actions/1rightarrow.png +share/icons/hicolor/16x16/actions/1uparrow.png +share/icons/hicolor/16x16/actions/2downarrow.png +share/icons/hicolor/16x16/actions/2leftarrow.png +share/icons/hicolor/16x16/actions/2rightarrow.png +share/icons/hicolor/16x16/actions/2uparrow.png +share/icons/hicolor/16x16/actions/airbrush.png +share/icons/hicolor/16x16/actions/attach.png +share/icons/hicolor/16x16/actions/back.png +share/icons/hicolor/16x16/actions/blend.png +share/icons/hicolor/16x16/actions/bookmark.png +share/icons/hicolor/16x16/actions/bookmark_add.png +share/icons/hicolor/16x16/actions/bookmark_folder.png +share/icons/hicolor/16x16/actions/bookmark_toolbar.png +share/icons/hicolor/16x16/actions/bottom.png +share/icons/hicolor/16x16/actions/colorpicker.png +share/icons/hicolor/16x16/actions/configure.png +share/icons/hicolor/16x16/actions/connect_creating.png +share/icons/hicolor/16x16/actions/connect_established.png +share/icons/hicolor/16x16/actions/connect_no.png +share/icons/hicolor/16x16/actions/contents.png +share/icons/hicolor/16x16/actions/contents2.png +share/icons/hicolor/16x16/actions/contexthelp.png +share/icons/hicolor/16x16/actions/crop.png +share/icons/hicolor/16x16/actions/decrypted.png +share/icons/hicolor/16x16/actions/down.png +share/icons/hicolor/16x16/actions/edit.png +share/icons/hicolor/16x16/actions/editcopy.png +share/icons/hicolor/16x16/actions/editcut.png +share/icons/hicolor/16x16/actions/editdelete.png +share/icons/hicolor/16x16/actions/editpaste.png +share/icons/hicolor/16x16/actions/editshred.png +share/icons/hicolor/16x16/actions/encrypted.png +share/icons/hicolor/16x16/actions/eraser.png +share/icons/hicolor/16x16/actions/exec.png +share/icons/hicolor/16x16/actions/exit.png +share/icons/hicolor/16x16/actions/fileclose.png +share/icons/hicolor/16x16/actions/filefind.png +share/icons/hicolor/16x16/actions/filenew.png +share/icons/hicolor/16x16/actions/fileopen.png +share/icons/hicolor/16x16/actions/fileprint.png +share/icons/hicolor/16x16/actions/filesave.png +share/icons/hicolor/16x16/actions/fill.png +share/icons/hicolor/16x16/actions/filter.png +share/icons/hicolor/16x16/actions/find.png +share/icons/hicolor/16x16/actions/finish.png +share/icons/hicolor/16x16/actions/flag.png +share/icons/hicolor/16x16/actions/folder_new.png +share/icons/hicolor/16x16/actions/forward.png +share/icons/hicolor/16x16/actions/frameprint.png +share/icons/hicolor/16x16/actions/gear.png +share/icons/hicolor/16x16/actions/gohome.png +share/icons/hicolor/16x16/actions/goto.png +share/icons/hicolor/16x16/actions/help.png +share/icons/hicolor/16x16/actions/history.png +share/icons/hicolor/16x16/actions/idea.png +share/icons/hicolor/16x16/actions/lock.png +share/icons/hicolor/16x16/actions/mail_forward.png +share/icons/hicolor/16x16/actions/mail_generic.png +share/icons/hicolor/16x16/actions/mail_get.png +share/icons/hicolor/16x16/actions/mail_reply.png +share/icons/hicolor/16x16/actions/mail_replyall.png +share/icons/hicolor/16x16/actions/mail_send.png +share/icons/hicolor/16x16/actions/move.png +share/icons/hicolor/16x16/actions/news_subscribe.png +share/icons/hicolor/16x16/actions/news_unsubscribe.png +share/icons/hicolor/16x16/actions/next.png +share/icons/hicolor/16x16/actions/openterm.png +share/icons/hicolor/16x16/actions/previous.png +share/icons/hicolor/16x16/actions/redo.png +share/icons/hicolor/16x16/actions/reload.png +share/icons/hicolor/16x16/actions/run.png +share/icons/hicolor/16x16/actions/start.png +share/icons/hicolor/16x16/actions/stop.png +share/icons/hicolor/16x16/actions/top.png +share/icons/hicolor/16x16/actions/undo.png +share/icons/hicolor/16x16/actions/unlock.png +share/icons/hicolor/16x16/actions/up.png +share/icons/hicolor/16x16/actions/viewmag+.png +share/icons/hicolor/16x16/actions/viewmag-.png +share/icons/hicolor/16x16/actions/viewmag.png +share/icons/hicolor/16x16/actions/window_fullscreen.png +share/icons/hicolor/16x16/actions/window_new.png +share/icons/hicolor/16x16/actions/window_nofullscreen.png +share/icons/hicolor/16x16/filesystems/desktop.png +share/icons/hicolor/16x16/filesystems/folder.png +share/icons/hicolor/16x16/filesystems/folder_blue.png +share/icons/hicolor/16x16/filesystems/folder_blue_open.png +share/icons/hicolor/16x16/filesystems/folder_cyan.png +share/icons/hicolor/16x16/filesystems/folder_cyan_open.png +share/icons/hicolor/16x16/filesystems/folder_green.png +share/icons/hicolor/16x16/filesystems/folder_green_open.png +share/icons/hicolor/16x16/filesystems/folder_grey.png +share/icons/hicolor/16x16/filesystems/folder_grey_open.png +share/icons/hicolor/16x16/filesystems/folder_home.png +share/icons/hicolor/16x16/filesystems/folder_html.png +share/icons/hicolor/16x16/filesystems/folder_image.png +share/icons/hicolor/16x16/filesystems/folder_locked.png +share/icons/hicolor/16x16/filesystems/folder_man.png +share/icons/hicolor/16x16/filesystems/folder_open.png +share/icons/hicolor/16x16/filesystems/folder_orange.png +share/icons/hicolor/16x16/filesystems/folder_orange_open.png +share/icons/hicolor/16x16/filesystems/folder_red.png +share/icons/hicolor/16x16/filesystems/folder_red_open.png +share/icons/hicolor/16x16/filesystems/folder_sound.png +share/icons/hicolor/16x16/filesystems/folder_tar.png +share/icons/hicolor/16x16/filesystems/folder_txt.png +share/icons/hicolor/16x16/filesystems/folder_video.png +share/icons/hicolor/16x16/filesystems/folder_violet.png +share/icons/hicolor/16x16/filesystems/folder_violet_open.png +share/icons/hicolor/16x16/filesystems/folder_wordprocessing.png +share/icons/hicolor/16x16/filesystems/folder_yellow.png +share/icons/hicolor/16x16/filesystems/folder_yellow_open.png +share/icons/hicolor/16x16/filesystems/ftp.png +share/icons/hicolor/16x16/filesystems/link.png +share/icons/hicolor/16x16/filesystems/network.png +share/icons/hicolor/16x16/filesystems/www.png +share/icons/hicolor/16x16/mimetypes/applix.png +share/icons/hicolor/16x16/mimetypes/binary.png +share/icons/hicolor/16x16/mimetypes/binary2.png +share/icons/hicolor/16x16/mimetypes/core.png +share/icons/hicolor/16x16/mimetypes/deb.png +share/icons/hicolor/16x16/mimetypes/document.png +share/icons/hicolor/16x16/mimetypes/document2.png +share/icons/hicolor/16x16/mimetypes/dvi.png +share/icons/hicolor/16x16/mimetypes/font_bitmap.png +share/icons/hicolor/16x16/mimetypes/font_truetype.png +share/icons/hicolor/16x16/mimetypes/font_type1.png +share/icons/hicolor/16x16/mimetypes/html.png +share/icons/hicolor/16x16/mimetypes/image.png +share/icons/hicolor/16x16/mimetypes/info.png +share/icons/hicolor/16x16/mimetypes/log.png +share/icons/hicolor/16x16/mimetypes/make.png +share/icons/hicolor/16x16/mimetypes/man.png +share/icons/hicolor/16x16/mimetypes/metafont.png +share/icons/hicolor/16x16/mimetypes/midi.png +share/icons/hicolor/16x16/mimetypes/mime_empty.png +share/icons/hicolor/16x16/mimetypes/misc_doc.png +share/icons/hicolor/16x16/mimetypes/netscape_doc.png +share/icons/hicolor/16x16/mimetypes/pdf.png +share/icons/hicolor/16x16/mimetypes/postscript.png +share/icons/hicolor/16x16/mimetypes/readme.png +share/icons/hicolor/16x16/mimetypes/recycled.png +share/icons/hicolor/16x16/mimetypes/resource.png +share/icons/hicolor/16x16/mimetypes/rpm.png +share/icons/hicolor/16x16/mimetypes/shellscript.png +share/icons/hicolor/16x16/mimetypes/shellscript2.png +share/icons/hicolor/16x16/mimetypes/sound.png +share/icons/hicolor/16x16/mimetypes/source.png +share/icons/hicolor/16x16/mimetypes/source_c.png +share/icons/hicolor/16x16/mimetypes/source_cpp.png +share/icons/hicolor/16x16/mimetypes/source_f.png +share/icons/hicolor/16x16/mimetypes/source_h.png +share/icons/hicolor/16x16/mimetypes/source_java.png +share/icons/hicolor/16x16/mimetypes/source_l.png +share/icons/hicolor/16x16/mimetypes/source_o.png +share/icons/hicolor/16x16/mimetypes/source_pl.png +share/icons/hicolor/16x16/mimetypes/source_py.png +share/icons/hicolor/16x16/mimetypes/source_s.png +share/icons/hicolor/16x16/mimetypes/source_y.png +share/icons/hicolor/16x16/mimetypes/tar.png +share/icons/hicolor/16x16/mimetypes/tgz.png +share/icons/hicolor/16x16/mimetypes/txt.png +share/icons/hicolor/16x16/mimetypes/unknown.png +share/icons/hicolor/16x16/mimetypes/video.png +share/icons/hicolor/16x16/mimetypes/wordprocessing.png share/icons/hicolor/22x22/actions/1downarrow.png share/icons/hicolor/22x22/actions/1leftarrow.png share/icons/hicolor/22x22/actions/1rightarrow.png @@ -1111,6 +1324,8 @@ share/icons/hicolor/22x22/actions/appearance.png share/icons/hicolor/22x22/actions/attach.png share/icons/hicolor/22x22/actions/back.png share/icons/hicolor/22x22/actions/blend.png +share/icons/hicolor/22x22/actions/bookmark.png +share/icons/hicolor/22x22/actions/bookmark_add.png share/icons/hicolor/22x22/actions/bottom.png share/icons/hicolor/22x22/actions/centrejust.png share/icons/hicolor/22x22/actions/colorize.png @@ -1134,6 +1349,7 @@ share/icons/hicolor/22x22/actions/edittrash.png share/icons/hicolor/22x22/actions/encrypted.png share/icons/hicolor/22x22/actions/eraser.png share/icons/hicolor/22x22/actions/exec.png +share/icons/hicolor/22x22/actions/filefind.png share/icons/hicolor/22x22/actions/filenew.png share/icons/hicolor/22x22/actions/fileopen.png share/icons/hicolor/22x22/actions/fileprint.png @@ -1144,6 +1360,7 @@ share/icons/hicolor/22x22/actions/find.png share/icons/hicolor/22x22/actions/finish.png share/icons/hicolor/22x22/actions/folder_new.png share/icons/hicolor/22x22/actions/forward.png +share/icons/hicolor/22x22/actions/frameprint.png share/icons/hicolor/22x22/actions/gear.png share/icons/hicolor/22x22/actions/gohome.png share/icons/hicolor/22x22/actions/goto.png @@ -1241,6 +1458,7 @@ share/icons/hicolor/22x22/actions/top.png share/icons/hicolor/22x22/actions/undo.png share/icons/hicolor/22x22/actions/unlock.png share/icons/hicolor/22x22/actions/up.png +share/icons/hicolor/22x22/actions/view_sidetree.png share/icons/hicolor/22x22/actions/viewmag+.png share/icons/hicolor/22x22/actions/viewmag-.png share/icons/hicolor/22x22/actions/viewmag.png @@ -1259,6 +1477,10 @@ share/icons/hicolor/32x32/actions/appearance.png share/icons/hicolor/32x32/actions/attach.png share/icons/hicolor/32x32/actions/back.png share/icons/hicolor/32x32/actions/blend.png +share/icons/hicolor/32x32/actions/bookmark.png +share/icons/hicolor/32x32/actions/bookmark_add.png +share/icons/hicolor/32x32/actions/bookmark_folder.png +share/icons/hicolor/32x32/actions/bookmark_toolbar.png share/icons/hicolor/32x32/actions/bottom.png share/icons/hicolor/32x32/actions/centrejust.png share/icons/hicolor/32x32/actions/colorize.png @@ -1402,13 +1624,25 @@ share/icons/hicolor/32x32/filesystems/folder_cyan.png share/icons/hicolor/32x32/filesystems/folder_cyan_open.png share/icons/hicolor/32x32/filesystems/folder_green.png share/icons/hicolor/32x32/filesystems/folder_green_open.png +share/icons/hicolor/32x32/filesystems/folder_grey.png +share/icons/hicolor/32x32/filesystems/folder_grey_open.png share/icons/hicolor/32x32/filesystems/folder_home.png +share/icons/hicolor/32x32/filesystems/folder_html.png +share/icons/hicolor/32x32/filesystems/folder_image.png share/icons/hicolor/32x32/filesystems/folder_locked.png +share/icons/hicolor/32x32/filesystems/folder_man.png share/icons/hicolor/32x32/filesystems/folder_open.png share/icons/hicolor/32x32/filesystems/folder_orange.png share/icons/hicolor/32x32/filesystems/folder_orange_open.png share/icons/hicolor/32x32/filesystems/folder_red.png share/icons/hicolor/32x32/filesystems/folder_red_open.png +share/icons/hicolor/32x32/filesystems/folder_sound.png +share/icons/hicolor/32x32/filesystems/folder_tar.png +share/icons/hicolor/32x32/filesystems/folder_txt.png +share/icons/hicolor/32x32/filesystems/folder_video.png +share/icons/hicolor/32x32/filesystems/folder_violet.png +share/icons/hicolor/32x32/filesystems/folder_violet_open.png +share/icons/hicolor/32x32/filesystems/folder_wordprocessing.png share/icons/hicolor/32x32/filesystems/folder_yellow.png share/icons/hicolor/32x32/filesystems/folder_yellow_open.png share/icons/hicolor/32x32/filesystems/ftp.png @@ -1428,6 +1662,7 @@ share/icons/hicolor/32x32/mimetypes/binary2.png share/icons/hicolor/32x32/mimetypes/core.png share/icons/hicolor/32x32/mimetypes/deb.png share/icons/hicolor/32x32/mimetypes/document.png +share/icons/hicolor/32x32/mimetypes/document2.png share/icons/hicolor/32x32/mimetypes/dvi.png share/icons/hicolor/32x32/mimetypes/font_bitmap.png share/icons/hicolor/32x32/mimetypes/font_truetype.png @@ -1477,6 +1712,7 @@ share/icons/hicolor/32x32/mimetypes/unknown.png share/icons/hicolor/32x32/mimetypes/vcalendar.png share/icons/hicolor/32x32/mimetypes/vcard.png share/icons/hicolor/32x32/mimetypes/video.png +share/icons/hicolor/32x32/mimetypes/wordprocessing.png share/icons/hicolor/48x48/actions/kde/0001.png share/icons/hicolor/48x48/actions/kde/0002.png share/icons/hicolor/48x48/actions/kde/0003.png @@ -1540,13 +1776,25 @@ share/icons/hicolor/48x48/filesystems/folder_cyan.png share/icons/hicolor/48x48/filesystems/folder_cyan_open.png share/icons/hicolor/48x48/filesystems/folder_green.png share/icons/hicolor/48x48/filesystems/folder_green_open.png +share/icons/hicolor/48x48/filesystems/folder_grey.png +share/icons/hicolor/48x48/filesystems/folder_grey_open.png share/icons/hicolor/48x48/filesystems/folder_home.png +share/icons/hicolor/48x48/filesystems/folder_html.png +share/icons/hicolor/48x48/filesystems/folder_image.png share/icons/hicolor/48x48/filesystems/folder_locked.png +share/icons/hicolor/48x48/filesystems/folder_man.png share/icons/hicolor/48x48/filesystems/folder_open.png share/icons/hicolor/48x48/filesystems/folder_orange.png share/icons/hicolor/48x48/filesystems/folder_orange_open.png share/icons/hicolor/48x48/filesystems/folder_red.png share/icons/hicolor/48x48/filesystems/folder_red_open.png +share/icons/hicolor/48x48/filesystems/folder_sound.png +share/icons/hicolor/48x48/filesystems/folder_tar.png +share/icons/hicolor/48x48/filesystems/folder_txt.png +share/icons/hicolor/48x48/filesystems/folder_video.png +share/icons/hicolor/48x48/filesystems/folder_violet.png +share/icons/hicolor/48x48/filesystems/folder_violet_open.png +share/icons/hicolor/48x48/filesystems/folder_wordprocessing.png share/icons/hicolor/48x48/filesystems/folder_yellow.png share/icons/hicolor/48x48/filesystems/folder_yellow_open.png share/icons/hicolor/48x48/filesystems/ftp.png @@ -1565,6 +1813,7 @@ share/icons/hicolor/48x48/mimetypes/binary2.png share/icons/hicolor/48x48/mimetypes/core.png share/icons/hicolor/48x48/mimetypes/deb.png share/icons/hicolor/48x48/mimetypes/document.png +share/icons/hicolor/48x48/mimetypes/document2.png share/icons/hicolor/48x48/mimetypes/dvi.png share/icons/hicolor/48x48/mimetypes/font_bitmap.png share/icons/hicolor/48x48/mimetypes/font_truetype.png @@ -1614,6 +1863,7 @@ share/icons/hicolor/48x48/mimetypes/unknown.png share/icons/hicolor/48x48/mimetypes/vcalendar.png share/icons/hicolor/48x48/mimetypes/vcard.png share/icons/hicolor/48x48/mimetypes/video.png +share/icons/hicolor/48x48/mimetypes/wordprocessing.png share/icons/hicolor/index.desktop share/icons/locolor/16x16/actions/1downarrow.png share/icons/locolor/16x16/actions/1leftarrow.png @@ -1633,6 +1883,7 @@ share/icons/locolor/16x16/actions/bookmark_toolbar.png share/icons/locolor/16x16/actions/bottom.png share/icons/locolor/16x16/actions/colorize.png share/icons/locolor/16x16/actions/colorpicker.png +share/icons/locolor/16x16/actions/completion.png share/icons/locolor/16x16/actions/configure.png share/icons/locolor/16x16/actions/connect_creating.png share/icons/locolor/16x16/actions/connect_established.png @@ -1643,6 +1894,7 @@ share/icons/locolor/16x16/actions/crop.png share/icons/locolor/16x16/actions/decrypted.png share/icons/locolor/16x16/actions/down.png share/icons/locolor/16x16/actions/edit.png +share/icons/locolor/16x16/actions/editclear.png share/icons/locolor/16x16/actions/editcopy.png share/icons/locolor/16x16/actions/editcut.png share/icons/locolor/16x16/actions/editdelete.png @@ -1722,6 +1974,7 @@ share/icons/locolor/16x16/actions/kde/0047.png share/icons/locolor/16x16/actions/kde/0048.png share/icons/locolor/16x16/actions/kde/0049.png share/icons/locolor/16x16/actions/kde/0050.png +share/icons/locolor/16x16/actions/locationbar_erase.png share/icons/locolor/16x16/actions/lock.png share/icons/locolor/16x16/actions/mail_forward.png share/icons/locolor/16x16/actions/mail_generic.png @@ -1961,6 +2214,7 @@ share/mimelnk/application/msexcel.desktop share/mimelnk/application/msexcel2.desktop share/mimelnk/application/mspowerpoint.desktop share/mimelnk/application/msword.desktop +share/mimelnk/application/msword2.desktop share/mimelnk/application/octet-stream.desktop share/mimelnk/application/pdf.desktop share/mimelnk/application/postscript.desktop @@ -2026,6 +2280,7 @@ share/mimelnk/image/png.desktop share/mimelnk/image/tiff.desktop share/mimelnk/image/x-bmp.desktop share/mimelnk/image/x-eps.desktop +share/mimelnk/image/x-ico.desktop share/mimelnk/image/x-photo-cd.desktop share/mimelnk/image/x-xbm.desktop share/mimelnk/image/x-xpm.desktop @@ -2042,14 +2297,18 @@ share/mimelnk/text/css.desktop share/mimelnk/text/english.desktop share/mimelnk/text/html.desktop share/mimelnk/text/plain.desktop +share/mimelnk/text/rdf.desktop +share/mimelnk/text/rss.desktop share/mimelnk/text/rtf.desktop share/mimelnk/text/sgml.desktop +share/mimelnk/text/x-bibtex.desktop share/mimelnk/text/x-c++hdr.desktop share/mimelnk/text/x-c++src.desktop share/mimelnk/text/x-chdr.desktop share/mimelnk/text/x-csrc.desktop share/mimelnk/text/x-diff.desktop share/mimelnk/text/x-java.desktop +share/mimelnk/text/x-log.desktop share/mimelnk/text/x-makefile.desktop share/mimelnk/text/x-moc.desktop share/mimelnk/text/x-pascal.desktop @@ -2073,33 +2332,89 @@ share/services/gif.kimgio share/services/http.protocol share/services/http_cache_cleaner.desktop share/services/https.protocol +share/services/ico.kimgio share/services/jpeg.kimgio +share/services/kauthplainmodule.desktop +share/services/kbzip2filter.desktop share/services/kcookiejar.desktop +share/services/kgzipfilter.desktop share/services/khtml.desktop +share/services/khtmlimage.desktop share/services/kio_uiserver.desktop share/services/kmailservice.protocol -share/services/knewsservice.protocol share/services/knotify.desktop share/services/krl.kimgio share/services/png.kimgio share/services/pnm.kimgio +share/services/rlogin.protocol +share/services/telnet.protocol share/services/tiff.kimgio share/services/xbm.kimgio share/services/xpm.kimgio share/services/xv.kimgio share/servicetypes/application.desktop share/servicetypes/browserview.desktop +share/servicetypes/kcomprfilter.desktop share/servicetypes/kpart.desktop share/servicetypes/kpropsdlgplugin.desktop share/servicetypes/krop.desktop share/servicetypes/krwp.desktop +share/servicetypes/ksasl.desktop share/servicetypes/ktexteditor.desktop share/servicetypes/kurifilterplugin.desktop +@dirrm share/servicetypes +@dirrm share/services +@dirrm share/mimelnk/video +@dirrm share/mimelnk/text +@dirrm share/mimelnk/message +@dirrm share/mimelnk/inode +@dirrm share/mimelnk/image +@dirrm share/mimelnk/audio +@dirrm share/mimelnk/application +@dirrm share/mimelnk/all +@dirrm share/mimelnk +@dirrm share/icons/locolor/32x32/mimetypes +@dirrm share/icons/locolor/32x32/filesystems +@dirrm share/icons/locolor/32x32/actions +@dirrm share/icons/locolor/32x32 +@dirrm share/icons/locolor/16x16/mimetypes +@dirrm share/icons/locolor/16x16/filesystems +@dirrm share/icons/locolor/16x16/actions/kde +@dirrm share/icons/locolor/16x16/actions +@dirrm share/icons/locolor/16x16 +@dirrm share/icons/locolor +@dirrm share/icons/hicolor/48x48/mimetypes +@dirrm share/icons/hicolor/48x48/filesystems +@dirrm share/icons/hicolor/48x48/actions/kde +@dirrm share/icons/hicolor/48x48/actions +@dirrm share/icons/hicolor/48x48 +@dirrm share/icons/hicolor/32x32/mimetypes +@dirrm share/icons/hicolor/32x32/filesystems +@dirrm share/icons/hicolor/32x32/actions/kde +@dirrm share/icons/hicolor/32x32/actions +@dirrm share/icons/hicolor/32x32 +@dirrm share/icons/hicolor/22x22/actions/kde +@dirrm share/icons/hicolor/22x22/actions +@dirrm share/icons/hicolor/22x22 +@dirrm share/icons/hicolor/16x16/mimetypes +@dirrm share/icons/hicolor/16x16/filesystems +@dirrm share/icons/hicolor/16x16/actions +@dirrm share/icons/hicolor/16x16 +@dirrm share/icons/hicolor @dirrm share/doc/HTML/en/kspell +@dirrm share/doc/HTML/en/common +@dirrm share/doc/HTML/en +@dirrm share/doc/HTML +@dirrm share/config/ui +@dirrm share/config/colors +@dirrm share/config @dirrm share/apps/kstyle/themes @dirrm share/apps/kstyle/pixmaps @dirrm share/apps/kstyle @dirrm share/apps/kssl/caroot +@dirrm share/apps/kssl +@dirrm share/apps/ksgmltools/zh-TW/entities +@dirrm share/apps/ksgmltools/zh-TW @dirrm share/apps/ksgmltools/zh-CN/entities @dirrm share/apps/ksgmltools/zh-CN @dirrm share/apps/ksgmltools/sv/entities @@ -2125,6 +2440,8 @@ share/servicetypes/kurifilterplugin.desktop @dirrm share/apps/ksgmltools/no @dirrm share/apps/ksgmltools/nl/entities @dirrm share/apps/ksgmltools/nl +@dirrm share/apps/ksgmltools/ko/entities +@dirrm share/apps/ksgmltools/ko @dirrm share/apps/ksgmltools/ja/entities @dirrm share/apps/ksgmltools/ja @dirrm share/apps/ksgmltools/it/entities @@ -2154,7 +2471,7 @@ share/servicetypes/kurifilterplugin.desktop @dirrm share/apps/ksgmltools/ca/entities @dirrm share/apps/ksgmltools/ca @dirrm share/apps/ksgmltools -@dirrm share/apps/kssl +@dirrm share/apps/knotify @dirrm share/apps/kjava @dirrm share/apps/kio_uiserver/icons/locolor/16x16/apps @dirrm share/apps/kio_uiserver/icons/locolor/16x16 @@ -2174,13 +2491,17 @@ share/servicetypes/kurifilterplugin.desktop @dirrm share/apps/khtml @dirrm share/apps/kdeui/pics @dirrm share/apps/kdeui +@dirrm share/apps/kab/pics @dirrm share/apps/kab @dirrm share/apps/LICENSES +@dirrm share/apps @dirrm lib/mcop/Arts @dirrm lib/mcop +@dirrm lib/kde2 @dirrm include/libkmid @dirrm include/kparts @dirrm include/kjs +@dirrm include/kio/sasl @dirrm include/kio @dirrm include/kdesu @dirrm include/dom diff --git a/x11/kdelibs3/Makefile b/x11/kdelibs3/Makefile index a2025a298f30..44b695d2e414 100644 --- a/x11/kdelibs3/Makefile +++ b/x11/kdelibs3/Makefile @@ -6,13 +6,12 @@ # PORTNAME= kdelibs -PORTVERSION= 2.0.1 -PORTREVISION= 2 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION}/distribution/tar/generic/src -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff \ audiofile.0:${PORTSDIR}/audio/libaudiofile \ diff --git a/x11/kdelibs3/distinfo b/x11/kdelibs3/distinfo index 763aa8c1e749..992af6f45bd7 100644 --- a/x11/kdelibs3/distinfo +++ b/x11/kdelibs3/distinfo @@ -1 +1 @@ -MD5 (kdelibs-2.0.1.tar.bz2) = 563d6b24a216a32be2f55f5b1c14e14c +MD5 (kdelibs-2.1.tar.bz2) = d1795459c4bc8bedc4af67211275b050 diff --git a/x11/kdelibs3/pkg-plist b/x11/kdelibs3/pkg-plist index 23caf2feb129..d716fe96d906 100644 --- a/x11/kdelibs3/pkg-plist +++ b/x11/kdelibs3/pkg-plist @@ -3,6 +3,7 @@ bin/artscat bin/artsd bin/artsdsp bin/artsplay +bin/artsshell bin/artswrapper bin/dcop bin/dcopidl @@ -11,6 +12,7 @@ bin/dcopserver bin/kbuildsycoca bin/kcookiejar bin/kdb2html +bin/kde-config bin/kded bin/kdeinit bin/kdeinit_wrapper @@ -29,6 +31,7 @@ include/arts/anyref.h include/arts/artsflow.h include/arts/artsflow.idl include/arts/asyncstream.h +include/arts/audioio.h include/arts/audiosubsys.h include/arts/buffer.h include/arts/cache.h @@ -38,6 +41,7 @@ include/arts/connect.h include/arts/connection.h include/arts/convert.h include/arts/core.h +include/arts/core.idl include/arts/datapacket.h include/arts/debug.h include/arts/dispatcher.h @@ -61,6 +65,7 @@ include/arts/pool.h include/arts/qiomanager.h include/arts/reference.h include/arts/referenceclean.h +include/arts/resample.h include/arts/socketconnection.h include/arts/soundserver.h include/arts/soundserver.idl @@ -116,6 +121,7 @@ include/kaccel.h include/kaccelmenu.h include/kaction.h include/kallocator.h +include/kalphapainter.h include/kanimwidget.h include/kapp.h include/kaudioplayer.h @@ -136,7 +142,9 @@ include/kcolordlg.h include/kcolordrag.h include/kcombiview.h include/kcombobox.h +include/kcommand.h include/kcompletion.h +include/kcompletionbox.h include/kconfig.h include/kconfigbackend.h include/kconfigbase.h @@ -178,7 +186,9 @@ include/kdockwindow.h include/kdrawutil.h include/kdualcolorbtn.h include/keditcl.h +include/keditlistbox.h include/kedittoolbar.h +include/kemailsettings.h include/kfile.h include/kfilebookmark.h include/kfiledetailview.h @@ -190,6 +200,8 @@ include/kfilepreview.h include/kfilereader.h include/kfileview.h include/kfileviewitem.h +include/kfilterbase.h +include/kfilterdev.h include/kfontdialog.h include/kglobal.h include/kglobalaccel.h @@ -208,19 +220,27 @@ include/kiconview.h include/kimageeffect.h include/kimageio.h include/kinstance.h +include/kio/authinfo.h +include/kio/chmodjob.h include/kio/connection.h include/kio/defaultprogress.h include/kio/file.h include/kio/global.h include/kio/job.h include/kio/jobclasses.h +include/kio/kmdbase.h +include/kio/kmdcodec.h +include/kio/kpac.h include/kio/netaccess.h include/kio/observer.h include/kio/passdlg.h include/kio/paste.h include/kio/progressbase.h include/kio/renamedlg.h +include/kio/sasl/saslcontext.h +include/kio/sasl/saslmodule.h include/kio/skipdlg.h +include/kio/slave.h include/kio/slavebase.h include/kio/slaveinterface.h include/kio/statusbarprogress.h @@ -253,6 +273,7 @@ include/kmainwindow.h include/kmenubar.h include/kmessagebox.h include/kmimemagic.h +include/kmimesourcefactory.h include/kmimetype.h include/knotifyclient.h include/knuminput.h @@ -260,11 +281,13 @@ include/knumvalidator.h include/kopenwith.h include/kpalette.h include/kpanelapplet.h +include/kpanelextension.h include/kpanelmenu.h include/kparts/browserextension.h include/kparts/dockmainwindow.h include/kparts/event.h include/kparts/factory.h +include/kparts/historyprovider.h include/kparts/mainwindow.h include/kparts/part.h include/kparts/partmanager.h @@ -274,6 +297,7 @@ include/kpixmap.h include/kpixmapeffect.h include/kpixmapio.h include/kpixmapprovider.h +include/kpixmapsplitter.h include/kpopupmenu.h include/kprocctrl.h include/kprocess.h @@ -282,6 +306,7 @@ include/kprogress.h include/kpropsdlg.h include/kprotocolinfo.h include/kprotocolmanager.h +include/kpushbutton.h include/krandomsequence.h include/krecentdocument.h include/kregexp.h @@ -306,6 +331,7 @@ include/ksimpleconfig.h include/ksock.h include/kspell.h include/kspelldlg.h +include/ksqueezedtextlabel.h include/kssl.h include/ksslcertificate.h include/ksslcertificatecache.h @@ -354,6 +380,7 @@ include/kurlrequesterdlg.h include/kuserprofile.h include/kwidgetid.h include/kwin.h +include/kwindowlistmenu.h include/kwinmodule.h include/kwizard.h include/kxmlgui.h @@ -396,28 +423,36 @@ lib/kbuildsycoca.la lib/kbuildsycoca.so lib/kcookiejar.la lib/kcookiejar.so +lib/kde2/kbzip2filter.la +lib/kde2/kbzip2filter.so +lib/kde2/kgzipfilter.la +lib/kde2/kgzipfilter.so +lib/kde2/kimg_eps.la +lib/kde2/kimg_eps.so +lib/kde2/kimg_g3.la +lib/kde2/kimg_g3.so +lib/kde2/kimg_ico.la +lib/kde2/kimg_ico.so +lib/kde2/kimg_krl.la +lib/kde2/kimg_krl.so +lib/kde2/kimg_tiff.la +lib/kde2/kimg_tiff.so +lib/kde2/kimg_xview.la +lib/kde2/kimg_xview.so +lib/kde2/kio_file.la +lib/kde2/kio_file.so +lib/kde2/kio_ftp.la +lib/kde2/kio_ftp.so +lib/kde2/kio_http.la +lib/kde2/kio_http.so +lib/kde2/kio_https.la +lib/kde2/kio_https.so +lib/kde2/libkpac.la +lib/kde2/libkpac.so lib/kded.la lib/kded.so -lib/kimg_eps.la -lib/kimg_eps.so -lib/kimg_g3.la -lib/kimg_g3.so -lib/kimg_krl.la -lib/kimg_krl.so -lib/kimg_tiff.la -lib/kimg_tiff.so -lib/kimg_xview.la -lib/kimg_xview.so -lib/kio_file.la -lib/kio_file.so -lib/kio_ftp.la -lib/kio_ftp.so -lib/kio_http.la -lib/kio_http.so lib/kio_http_cache_cleaner.la lib/kio_http_cache_cleaner.so -lib/kio_https.la -lib/kio_https.so lib/kio_uiserver.la lib/kio_uiserver.so lib/kjs_html.la @@ -428,6 +463,8 @@ lib/klegacystyle.la lib/klegacystyle.so lib/knotify.la lib/knotify.so +lib/ksasl_auth_plain.la +lib/ksasl_auth_plain.so lib/ksgistyle.la lib/ksgistyle.so lib/kstephighcolor.la @@ -452,12 +489,18 @@ lib/libartsflow.so.0 lib/libartsflow_idl.la lib/libartsflow_idl.so lib/libartsflow_idl.so.0 +lib/libartswavplayobject.la +lib/libartswavplayobject.so +lib/libartswavplayobject.so.0 lib/libkab.la lib/libkab.so lib/libkab.so.4 lib/libkdecore.la lib/libkdecore.so lib/libkdecore.so.4 +lib/libkdefakes.la +lib/libkdefakes.so +lib/libkdefakes.so.4 lib/libkdesu.la lib/libkdesu.so lib/libkdesu.so.4 @@ -467,9 +510,12 @@ lib/libkdeui.so.4 lib/libkfile.la lib/libkfile.so lib/libkfile.so.4 +lib/libkformula.so lib/libkhtml.la lib/libkhtml.so lib/libkhtml.so.4 +lib/libkhtmlimage.la +lib/libkhtmlimage.so lib/libkio.la lib/libkio.so lib/libkio.so.4 @@ -488,6 +534,8 @@ lib/libkmid.so.0 lib/libkparts.la lib/libkparts.so lib/libkparts.so.4 +lib/libksasl.la +lib/libksasl.so lib/libkspell.la lib/libkspell.so lib/libkspell.so.4 @@ -526,6 +574,12 @@ lib/mcop/Arts/Synth_RECORD.mcopclass lib/mcop/Arts/Synth_WAVE_SIN.mcopclass lib/mcop/Arts/WavPlayObject.mcopclass lib/mcop/Arts/X11GlobalComm.mcopclass +lib/mcop/artsflow.mcopclass +lib/mcop/artsflow.mcoptype +lib/mcop/kmedia2.mcopclass +lib/mcop/kmedia2.mcoptype +lib/mcop/soundserver.mcopclass +lib/mcop/soundserver.mcoptype share/apps/LICENSES/ARTISTIC share/apps/LICENSES/BSD share/apps/LICENSES/GPL_V2 @@ -543,11 +597,12 @@ share/apps/khtml/khtml.rc share/apps/khtml/khtml_browser.rc share/apps/khtml/khtml_popupmenu.rc share/apps/kio_uiserver/icons/locolor/16x16/apps/kio_uiserver.png -share/apps/kjava/kjava-classes.zip +share/apps/kjava/kjava.jar +share/apps/kjava/kjava.policy +share/apps/knotify/eventsrc share/apps/ksgmltools/ca/catalog share/apps/ksgmltools/ca/entities/fdl-notice.docbook share/apps/ksgmltools/ca/entities/gpl-notice.docbook -share/apps/ksgmltools/ca/entities/help-menu.docbook share/apps/ksgmltools/ca/entities/lgpl-notice.docbook share/apps/ksgmltools/ca/entities/report-bugs.docbook share/apps/ksgmltools/ca/entities/underArtisticLicense.docbook @@ -562,7 +617,6 @@ share/apps/ksgmltools/catalog share/apps/ksgmltools/cs/catalog share/apps/ksgmltools/cs/entities/fdl-notice.docbook share/apps/ksgmltools/cs/entities/gpl-notice.docbook -share/apps/ksgmltools/cs/entities/help-menu.docbook share/apps/ksgmltools/cs/entities/lgpl-notice.docbook share/apps/ksgmltools/cs/entities/report-bugs.docbook share/apps/ksgmltools/cs/entities/underArtisticLicense.docbook @@ -576,7 +630,6 @@ share/apps/ksgmltools/cs/user.entities share/apps/ksgmltools/da/catalog share/apps/ksgmltools/da/entities/fdl-notice.docbook share/apps/ksgmltools/da/entities/gpl-notice.docbook -share/apps/ksgmltools/da/entities/help-menu.docbook share/apps/ksgmltools/da/entities/lgpl-notice.docbook share/apps/ksgmltools/da/entities/report-bugs.docbook share/apps/ksgmltools/da/entities/underArtisticLicense.docbook @@ -590,7 +643,6 @@ share/apps/ksgmltools/da/user.entities share/apps/ksgmltools/de/catalog share/apps/ksgmltools/de/entities/fdl-notice.docbook share/apps/ksgmltools/de/entities/gpl-notice.docbook -share/apps/ksgmltools/de/entities/help-menu.docbook share/apps/ksgmltools/de/entities/lgpl-notice.docbook share/apps/ksgmltools/de/entities/report-bugs.docbook share/apps/ksgmltools/de/entities/underArtisticLicense.docbook @@ -601,17 +653,14 @@ share/apps/ksgmltools/de/entities/underX11License.docbook share/apps/ksgmltools/de/kde-prologue.entities share/apps/ksgmltools/de/strings.entities share/apps/ksgmltools/de/user.entities -share/apps/ksgmltools/dtd/kde-genent.entities share/apps/ksgmltools/dtd/kde-modifications.elements share/apps/ksgmltools/dtd/kde-next.dtd -share/apps/ksgmltools/dtd/kde-prologue.entities share/apps/ksgmltools/dtd/kde-rdbhier2.elements share/apps/ksgmltools/dtd/kde-rdbpool.elements share/apps/ksgmltools/dtd/kde.dtd share/apps/ksgmltools/el/catalog share/apps/ksgmltools/el/entities/fdl-notice.docbook share/apps/ksgmltools/el/entities/gpl-notice.docbook -share/apps/ksgmltools/el/entities/help-menu.docbook share/apps/ksgmltools/el/entities/lgpl-notice.docbook share/apps/ksgmltools/el/entities/report-bugs.docbook share/apps/ksgmltools/el/entities/underArtisticLicense.docbook @@ -625,7 +674,6 @@ share/apps/ksgmltools/el/user.entities share/apps/ksgmltools/en/catalog share/apps/ksgmltools/en/entities/fdl-notice.docbook share/apps/ksgmltools/en/entities/gpl-notice.docbook -share/apps/ksgmltools/en/entities/help-menu.docbook share/apps/ksgmltools/en/entities/lgpl-notice.docbook share/apps/ksgmltools/en/entities/report-bugs.docbook share/apps/ksgmltools/en/entities/underArtisticLicense.docbook @@ -636,19 +684,11 @@ share/apps/ksgmltools/en/entities/underX11License.docbook share/apps/ksgmltools/en/kde-prologue.entities share/apps/ksgmltools/en/strings.entities share/apps/ksgmltools/en/user.entities -share/apps/ksgmltools/entities/artistic-license.docbook -share/apps/ksgmltools/entities/artisticlicense-links.docbook -share/apps/ksgmltools/entities/bsd-license.docbook -share/apps/ksgmltools/entities/bsdlicense-links.docbook -share/apps/ksgmltools/entities/license-links.docbook -share/apps/ksgmltools/entities/qpl-license.docbook -share/apps/ksgmltools/entities/qpllicense-links.docbook -share/apps/ksgmltools/entities/x11-license.docbook -share/apps/ksgmltools/entities/x11license-links.docbook +share/apps/ksgmltools/entities/kde-genent.entities +share/apps/ksgmltools/entities/kde-prologue.entities share/apps/ksgmltools/es/catalog share/apps/ksgmltools/es/entities/fdl-notice.docbook share/apps/ksgmltools/es/entities/gpl-notice.docbook -share/apps/ksgmltools/es/entities/help-menu.docbook share/apps/ksgmltools/es/entities/lgpl-notice.docbook share/apps/ksgmltools/es/entities/report-bugs.docbook share/apps/ksgmltools/es/entities/underArtisticLicense.docbook @@ -662,7 +702,6 @@ share/apps/ksgmltools/es/user.entities share/apps/ksgmltools/et/catalog share/apps/ksgmltools/et/entities/fdl-notice.docbook share/apps/ksgmltools/et/entities/gpl-notice.docbook -share/apps/ksgmltools/et/entities/help-menu.docbook share/apps/ksgmltools/et/entities/lgpl-notice.docbook share/apps/ksgmltools/et/entities/report-bugs.docbook share/apps/ksgmltools/et/entities/underArtisticLicense.docbook @@ -676,7 +715,6 @@ share/apps/ksgmltools/et/user.entities share/apps/ksgmltools/fi/catalog share/apps/ksgmltools/fi/entities/fdl-notice.docbook share/apps/ksgmltools/fi/entities/gpl-notice.docbook -share/apps/ksgmltools/fi/entities/help-menu.docbook share/apps/ksgmltools/fi/entities/lgpl-notice.docbook share/apps/ksgmltools/fi/entities/report-bugs.docbook share/apps/ksgmltools/fi/entities/underArtisticLicense.docbook @@ -690,7 +728,6 @@ share/apps/ksgmltools/fi/user.entities share/apps/ksgmltools/fr/catalog share/apps/ksgmltools/fr/entities/fdl-notice.docbook share/apps/ksgmltools/fr/entities/gpl-notice.docbook -share/apps/ksgmltools/fr/entities/help-menu.docbook share/apps/ksgmltools/fr/entities/lgpl-notice.docbook share/apps/ksgmltools/fr/entities/report-bugs.docbook share/apps/ksgmltools/fr/entities/underArtisticLicense.docbook @@ -704,7 +741,6 @@ share/apps/ksgmltools/fr/user.entities share/apps/ksgmltools/hu/catalog share/apps/ksgmltools/hu/entities/fdl-notice.docbook share/apps/ksgmltools/hu/entities/gpl-notice.docbook -share/apps/ksgmltools/hu/entities/help-menu.docbook share/apps/ksgmltools/hu/entities/lgpl-notice.docbook share/apps/ksgmltools/hu/entities/report-bugs.docbook share/apps/ksgmltools/hu/entities/underArtisticLicense.docbook @@ -718,7 +754,6 @@ share/apps/ksgmltools/hu/user.entities share/apps/ksgmltools/it/catalog share/apps/ksgmltools/it/entities/fdl-notice.docbook share/apps/ksgmltools/it/entities/gpl-notice.docbook -share/apps/ksgmltools/it/entities/help-menu.docbook share/apps/ksgmltools/it/entities/lgpl-notice.docbook share/apps/ksgmltools/it/entities/report-bugs.docbook share/apps/ksgmltools/it/entities/underArtisticLicense.docbook @@ -732,7 +767,6 @@ share/apps/ksgmltools/it/user.entities share/apps/ksgmltools/ja/catalog share/apps/ksgmltools/ja/entities/fdl-notice.docbook share/apps/ksgmltools/ja/entities/gpl-notice.docbook -share/apps/ksgmltools/ja/entities/help-menu.docbook share/apps/ksgmltools/ja/entities/lgpl-notice.docbook share/apps/ksgmltools/ja/entities/report-bugs.docbook share/apps/ksgmltools/ja/entities/underArtisticLicense.docbook @@ -744,10 +778,21 @@ share/apps/ksgmltools/ja/kde-prologue.entities share/apps/ksgmltools/ja/strings.entities share/apps/ksgmltools/ja/user.entities share/apps/ksgmltools/kde.dcl +share/apps/ksgmltools/ko/catalog +share/apps/ksgmltools/ko/entities/fdl-notice.docbook +share/apps/ksgmltools/ko/entities/gpl-notice.docbook +share/apps/ksgmltools/ko/entities/lgpl-notice.docbook +share/apps/ksgmltools/ko/entities/underArtisticLicense.docbook +share/apps/ksgmltools/ko/entities/underBSDLicense.docbook +share/apps/ksgmltools/ko/entities/underFDL.docbook +share/apps/ksgmltools/ko/entities/underGPL.docbook +share/apps/ksgmltools/ko/entities/underX11License.docbook +share/apps/ksgmltools/ko/kde-prologue.entities +share/apps/ksgmltools/ko/strings.entities +share/apps/ksgmltools/ko/user.entities share/apps/ksgmltools/nl/catalog share/apps/ksgmltools/nl/entities/fdl-notice.docbook share/apps/ksgmltools/nl/entities/gpl-notice.docbook -share/apps/ksgmltools/nl/entities/help-menu.docbook share/apps/ksgmltools/nl/entities/lgpl-notice.docbook share/apps/ksgmltools/nl/entities/report-bugs.docbook share/apps/ksgmltools/nl/entities/underArtisticLicense.docbook @@ -761,7 +806,6 @@ share/apps/ksgmltools/nl/user.entities share/apps/ksgmltools/no/catalog share/apps/ksgmltools/no/entities/fdl-notice.docbook share/apps/ksgmltools/no/entities/gpl-notice.docbook -share/apps/ksgmltools/no/entities/help-menu.docbook share/apps/ksgmltools/no/entities/lgpl-notice.docbook share/apps/ksgmltools/no/entities/report-bugs.docbook share/apps/ksgmltools/no/entities/underArtisticLicense.docbook @@ -775,7 +819,6 @@ share/apps/ksgmltools/no/user.entities share/apps/ksgmltools/pl/catalog share/apps/ksgmltools/pl/entities/fdl-notice.docbook share/apps/ksgmltools/pl/entities/gpl-notice.docbook -share/apps/ksgmltools/pl/entities/help-menu.docbook share/apps/ksgmltools/pl/entities/lgpl-notice.docbook share/apps/ksgmltools/pl/entities/report-bugs.docbook share/apps/ksgmltools/pl/entities/underArtisticLicense.docbook @@ -789,7 +832,6 @@ share/apps/ksgmltools/pl/user.entities share/apps/ksgmltools/pt-BR/catalog share/apps/ksgmltools/pt-BR/entities/fdl-notice.docbook share/apps/ksgmltools/pt-BR/entities/gpl-notice.docbook -share/apps/ksgmltools/pt-BR/entities/help-menu.docbook share/apps/ksgmltools/pt-BR/entities/lgpl-notice.docbook share/apps/ksgmltools/pt-BR/entities/report-bugs.docbook share/apps/ksgmltools/pt-BR/entities/underArtisticLicense.docbook @@ -803,7 +845,6 @@ share/apps/ksgmltools/pt-BR/user.entities share/apps/ksgmltools/pt/catalog share/apps/ksgmltools/pt/entities/fdl-notice.docbook share/apps/ksgmltools/pt/entities/gpl-notice.docbook -share/apps/ksgmltools/pt/entities/help-menu.docbook share/apps/ksgmltools/pt/entities/lgpl-notice.docbook share/apps/ksgmltools/pt/entities/report-bugs.docbook share/apps/ksgmltools/pt/entities/underArtisticLicense.docbook @@ -817,7 +858,6 @@ share/apps/ksgmltools/pt/user.entities share/apps/ksgmltools/ro/catalog share/apps/ksgmltools/ro/entities/fdl-notice.docbook share/apps/ksgmltools/ro/entities/gpl-notice.docbook -share/apps/ksgmltools/ro/entities/help-menu.docbook share/apps/ksgmltools/ro/entities/lgpl-notice.docbook share/apps/ksgmltools/ro/entities/report-bugs.docbook share/apps/ksgmltools/ro/entities/underArtisticLicense.docbook @@ -831,7 +871,6 @@ share/apps/ksgmltools/ro/user.entities share/apps/ksgmltools/ru/catalog share/apps/ksgmltools/ru/entities/fdl-notice.docbook share/apps/ksgmltools/ru/entities/gpl-notice.docbook -share/apps/ksgmltools/ru/entities/help-menu.docbook share/apps/ksgmltools/ru/entities/lgpl-notice.docbook share/apps/ksgmltools/ru/entities/report-bugs.docbook share/apps/ksgmltools/ru/entities/underArtisticLicense.docbook @@ -845,7 +884,6 @@ share/apps/ksgmltools/ru/user.entities share/apps/ksgmltools/sk/catalog share/apps/ksgmltools/sk/entities/fdl-notice.docbook share/apps/ksgmltools/sk/entities/gpl-notice.docbook -share/apps/ksgmltools/sk/entities/help-menu.docbook share/apps/ksgmltools/sk/entities/lgpl-notice.docbook share/apps/ksgmltools/sk/entities/report-bugs.docbook share/apps/ksgmltools/sk/entities/underArtisticLicense.docbook @@ -859,7 +897,6 @@ share/apps/ksgmltools/sk/user.entities share/apps/ksgmltools/sl/catalog share/apps/ksgmltools/sl/entities/fdl-notice.docbook share/apps/ksgmltools/sl/entities/gpl-notice.docbook -share/apps/ksgmltools/sl/entities/help-menu.docbook share/apps/ksgmltools/sl/entities/lgpl-notice.docbook share/apps/ksgmltools/sl/entities/report-bugs.docbook share/apps/ksgmltools/sl/entities/underArtisticLicense.docbook @@ -873,7 +910,6 @@ share/apps/ksgmltools/sl/user.entities share/apps/ksgmltools/sr/catalog share/apps/ksgmltools/sr/entities/fdl-notice.docbook share/apps/ksgmltools/sr/entities/gpl-notice.docbook -share/apps/ksgmltools/sr/entities/help-menu.docbook share/apps/ksgmltools/sr/entities/lgpl-notice.docbook share/apps/ksgmltools/sr/entities/report-bugs.docbook share/apps/ksgmltools/sr/entities/underArtisticLicense.docbook @@ -915,6 +951,8 @@ share/apps/ksgmltools/stylesheets/kde-l1it.dsl share/apps/ksgmltools/stylesheets/kde-l1it.ent share/apps/ksgmltools/stylesheets/kde-l1ja.dsl share/apps/ksgmltools/stylesheets/kde-l1ja.ent +share/apps/ksgmltools/stylesheets/kde-l1ko.dsl +share/apps/ksgmltools/stylesheets/kde-l1ko.ent share/apps/ksgmltools/stylesheets/kde-l1nl.dsl share/apps/ksgmltools/stylesheets/kde-l1nl.ent share/apps/ksgmltools/stylesheets/kde-l1no.dsl @@ -939,6 +977,8 @@ share/apps/ksgmltools/stylesheets/kde-l1sv.dsl share/apps/ksgmltools/stylesheets/kde-l1sv.ent share/apps/ksgmltools/stylesheets/kde-l1zhcn.dsl share/apps/ksgmltools/stylesheets/kde-l1zhcn.ent +share/apps/ksgmltools/stylesheets/kde-l1zhtw.dsl +share/apps/ksgmltools/stylesheets/kde-l1zhtw.ent share/apps/ksgmltools/stylesheets/kde-navig.dsl share/apps/ksgmltools/stylesheets/kde-search.dsl share/apps/ksgmltools/stylesheets/kde-ttlpg.dsl @@ -947,7 +987,6 @@ share/apps/ksgmltools/stylesheets/kde.dsl share/apps/ksgmltools/sv/catalog share/apps/ksgmltools/sv/entities/fdl-notice.docbook share/apps/ksgmltools/sv/entities/gpl-notice.docbook -share/apps/ksgmltools/sv/entities/help-menu.docbook share/apps/ksgmltools/sv/entities/lgpl-notice.docbook share/apps/ksgmltools/sv/entities/report-bugs.docbook share/apps/ksgmltools/sv/entities/underArtisticLicense.docbook @@ -961,7 +1000,6 @@ share/apps/ksgmltools/sv/user.entities share/apps/ksgmltools/zh-CN/catalog share/apps/ksgmltools/zh-CN/entities/fdl-notice.docbook share/apps/ksgmltools/zh-CN/entities/gpl-notice.docbook -share/apps/ksgmltools/zh-CN/entities/help-menu.docbook share/apps/ksgmltools/zh-CN/entities/lgpl-notice.docbook share/apps/ksgmltools/zh-CN/entities/report-bugs.docbook share/apps/ksgmltools/zh-CN/entities/underArtisticLicense.docbook @@ -972,6 +1010,19 @@ share/apps/ksgmltools/zh-CN/entities/underX11License.docbook share/apps/ksgmltools/zh-CN/kde-prologue.entities share/apps/ksgmltools/zh-CN/strings.entities share/apps/ksgmltools/zh-CN/user.entities +share/apps/ksgmltools/zh-TW/catalog +share/apps/ksgmltools/zh-TW/entities/fdl-notice.docbook +share/apps/ksgmltools/zh-TW/entities/gpl-notice.docbook +share/apps/ksgmltools/zh-TW/entities/lgpl-notice.docbook +share/apps/ksgmltools/zh-TW/entities/report-bugs.docbook +share/apps/ksgmltools/zh-TW/entities/underArtisticLicense.docbook +share/apps/ksgmltools/zh-TW/entities/underBSDLicense.docbook +share/apps/ksgmltools/zh-TW/entities/underFDL.docbook +share/apps/ksgmltools/zh-TW/entities/underGPL.docbook +share/apps/ksgmltools/zh-TW/entities/underX11License.docbook +share/apps/ksgmltools/zh-TW/kde-prologue.entities +share/apps/ksgmltools/zh-TW/strings.entities +share/apps/ksgmltools/zh-TW/user.entities share/apps/kssl/caroot/ca-bundle.crt share/apps/kstyle/pixmaps/aquaice.png share/apps/kstyle/pixmaps/black_combo.png @@ -1045,46 +1096,40 @@ share/apps/kstyle/themes/qtsgi.themerc share/apps/kstyle/themes/qtwindows.themerc share/apps/kstyle/themes/system.themerc share/apps/kstyle/themes/systemalt.themerc -share/apps/kstyle/themes/systemtest.themerc share/config/charsets share/config/colors/40 Colors share/config/colors/Royal share/config/colors/Web -share/config/eventsrc -share/config/kde-config share/config/kdebug.areas share/config/kdebugrc share/config/ui/ui_standards.rc -share/doc/HTML/en/common/artistic-licence.html -share/doc/HTML/en/common/bsd-licence.html +share/doc/HTML/default +share/doc/HTML/en/common/artistic-license.html +share/doc/HTML/en/common/bsd-license.html share/doc/HTML/en/common/caution.png -share/doc/HTML/en/common/fdl-licence -share/doc/HTML/en/common/fdl-licence.html -share/doc/HTML/en/common/fdl-notice -share/doc/HTML/en/common/gpl-licence -share/doc/HTML/en/common/gpl-licence.html -share/doc/HTML/en/common/gpl-notice +share/doc/HTML/en/common/fdl-license +share/doc/HTML/en/common/fdl-license.html +share/doc/HTML/en/common/gpl-license +share/doc/HTML/en/common/gpl-license.html share/doc/HTML/en/common/home.png share/doc/HTML/en/common/important.png share/doc/HTML/en/common/kde-common.css share/doc/HTML/en/common/kde-default.css -share/doc/HTML/en/common/lgpl-licence -share/doc/HTML/en/common/lgpl-licence.html -share/doc/HTML/en/common/lgpl-notice +share/doc/HTML/en/common/lgpl-license +share/doc/HTML/en/common/lgpl-license.html share/doc/HTML/en/common/logotp3-small.png share/doc/HTML/en/common/logotp3.png -share/doc/HTML/en/common/mieterra-artistic-license share/doc/HTML/en/common/next.png share/doc/HTML/en/common/note.png share/doc/HTML/en/common/prev.png -share/doc/HTML/en/common/qpl-licence.html +share/doc/HTML/en/common/qpl-license.html share/doc/HTML/en/common/tip.png share/doc/HTML/en/common/toc-blank.png share/doc/HTML/en/common/toc-minus.png share/doc/HTML/en/common/toc-plus.png share/doc/HTML/en/common/up.png share/doc/HTML/en/common/warning.png -share/doc/HTML/en/common/x11-licence.html +share/doc/HTML/en/common/x11-license.html share/doc/HTML/en/common/xml.dcl share/doc/HTML/en/kspell/.anchors share/doc/HTML/en/kspell/common @@ -1098,6 +1143,174 @@ share/doc/HTML/en/kspell/misspelled-word-dialog.html share/doc/HTML/en/kspell/other-functions.html share/doc/HTML/en/kspell/other.html share/doc/HTML/en/kspell/spell-checking-client.html +share/icons/hicolor/16x16/actions/1downarrow.png +share/icons/hicolor/16x16/actions/1leftarrow.png +share/icons/hicolor/16x16/actions/1rightarrow.png +share/icons/hicolor/16x16/actions/1uparrow.png +share/icons/hicolor/16x16/actions/2downarrow.png +share/icons/hicolor/16x16/actions/2leftarrow.png +share/icons/hicolor/16x16/actions/2rightarrow.png +share/icons/hicolor/16x16/actions/2uparrow.png +share/icons/hicolor/16x16/actions/airbrush.png +share/icons/hicolor/16x16/actions/attach.png +share/icons/hicolor/16x16/actions/back.png +share/icons/hicolor/16x16/actions/blend.png +share/icons/hicolor/16x16/actions/bookmark.png +share/icons/hicolor/16x16/actions/bookmark_add.png +share/icons/hicolor/16x16/actions/bookmark_folder.png +share/icons/hicolor/16x16/actions/bookmark_toolbar.png +share/icons/hicolor/16x16/actions/bottom.png +share/icons/hicolor/16x16/actions/colorpicker.png +share/icons/hicolor/16x16/actions/configure.png +share/icons/hicolor/16x16/actions/connect_creating.png +share/icons/hicolor/16x16/actions/connect_established.png +share/icons/hicolor/16x16/actions/connect_no.png +share/icons/hicolor/16x16/actions/contents.png +share/icons/hicolor/16x16/actions/contents2.png +share/icons/hicolor/16x16/actions/contexthelp.png +share/icons/hicolor/16x16/actions/crop.png +share/icons/hicolor/16x16/actions/decrypted.png +share/icons/hicolor/16x16/actions/down.png +share/icons/hicolor/16x16/actions/edit.png +share/icons/hicolor/16x16/actions/editcopy.png +share/icons/hicolor/16x16/actions/editcut.png +share/icons/hicolor/16x16/actions/editdelete.png +share/icons/hicolor/16x16/actions/editpaste.png +share/icons/hicolor/16x16/actions/editshred.png +share/icons/hicolor/16x16/actions/encrypted.png +share/icons/hicolor/16x16/actions/eraser.png +share/icons/hicolor/16x16/actions/exec.png +share/icons/hicolor/16x16/actions/exit.png +share/icons/hicolor/16x16/actions/fileclose.png +share/icons/hicolor/16x16/actions/filefind.png +share/icons/hicolor/16x16/actions/filenew.png +share/icons/hicolor/16x16/actions/fileopen.png +share/icons/hicolor/16x16/actions/fileprint.png +share/icons/hicolor/16x16/actions/filesave.png +share/icons/hicolor/16x16/actions/fill.png +share/icons/hicolor/16x16/actions/filter.png +share/icons/hicolor/16x16/actions/find.png +share/icons/hicolor/16x16/actions/finish.png +share/icons/hicolor/16x16/actions/flag.png +share/icons/hicolor/16x16/actions/folder_new.png +share/icons/hicolor/16x16/actions/forward.png +share/icons/hicolor/16x16/actions/frameprint.png +share/icons/hicolor/16x16/actions/gear.png +share/icons/hicolor/16x16/actions/gohome.png +share/icons/hicolor/16x16/actions/goto.png +share/icons/hicolor/16x16/actions/help.png +share/icons/hicolor/16x16/actions/history.png +share/icons/hicolor/16x16/actions/idea.png +share/icons/hicolor/16x16/actions/lock.png +share/icons/hicolor/16x16/actions/mail_forward.png +share/icons/hicolor/16x16/actions/mail_generic.png +share/icons/hicolor/16x16/actions/mail_get.png +share/icons/hicolor/16x16/actions/mail_reply.png +share/icons/hicolor/16x16/actions/mail_replyall.png +share/icons/hicolor/16x16/actions/mail_send.png +share/icons/hicolor/16x16/actions/move.png +share/icons/hicolor/16x16/actions/news_subscribe.png +share/icons/hicolor/16x16/actions/news_unsubscribe.png +share/icons/hicolor/16x16/actions/next.png +share/icons/hicolor/16x16/actions/openterm.png +share/icons/hicolor/16x16/actions/previous.png +share/icons/hicolor/16x16/actions/redo.png +share/icons/hicolor/16x16/actions/reload.png +share/icons/hicolor/16x16/actions/run.png +share/icons/hicolor/16x16/actions/start.png +share/icons/hicolor/16x16/actions/stop.png +share/icons/hicolor/16x16/actions/top.png +share/icons/hicolor/16x16/actions/undo.png +share/icons/hicolor/16x16/actions/unlock.png +share/icons/hicolor/16x16/actions/up.png +share/icons/hicolor/16x16/actions/viewmag+.png +share/icons/hicolor/16x16/actions/viewmag-.png +share/icons/hicolor/16x16/actions/viewmag.png +share/icons/hicolor/16x16/actions/window_fullscreen.png +share/icons/hicolor/16x16/actions/window_new.png +share/icons/hicolor/16x16/actions/window_nofullscreen.png +share/icons/hicolor/16x16/filesystems/desktop.png +share/icons/hicolor/16x16/filesystems/folder.png +share/icons/hicolor/16x16/filesystems/folder_blue.png +share/icons/hicolor/16x16/filesystems/folder_blue_open.png +share/icons/hicolor/16x16/filesystems/folder_cyan.png +share/icons/hicolor/16x16/filesystems/folder_cyan_open.png +share/icons/hicolor/16x16/filesystems/folder_green.png +share/icons/hicolor/16x16/filesystems/folder_green_open.png +share/icons/hicolor/16x16/filesystems/folder_grey.png +share/icons/hicolor/16x16/filesystems/folder_grey_open.png +share/icons/hicolor/16x16/filesystems/folder_home.png +share/icons/hicolor/16x16/filesystems/folder_html.png +share/icons/hicolor/16x16/filesystems/folder_image.png +share/icons/hicolor/16x16/filesystems/folder_locked.png +share/icons/hicolor/16x16/filesystems/folder_man.png +share/icons/hicolor/16x16/filesystems/folder_open.png +share/icons/hicolor/16x16/filesystems/folder_orange.png +share/icons/hicolor/16x16/filesystems/folder_orange_open.png +share/icons/hicolor/16x16/filesystems/folder_red.png +share/icons/hicolor/16x16/filesystems/folder_red_open.png +share/icons/hicolor/16x16/filesystems/folder_sound.png +share/icons/hicolor/16x16/filesystems/folder_tar.png +share/icons/hicolor/16x16/filesystems/folder_txt.png +share/icons/hicolor/16x16/filesystems/folder_video.png +share/icons/hicolor/16x16/filesystems/folder_violet.png +share/icons/hicolor/16x16/filesystems/folder_violet_open.png +share/icons/hicolor/16x16/filesystems/folder_wordprocessing.png +share/icons/hicolor/16x16/filesystems/folder_yellow.png +share/icons/hicolor/16x16/filesystems/folder_yellow_open.png +share/icons/hicolor/16x16/filesystems/ftp.png +share/icons/hicolor/16x16/filesystems/link.png +share/icons/hicolor/16x16/filesystems/network.png +share/icons/hicolor/16x16/filesystems/www.png +share/icons/hicolor/16x16/mimetypes/applix.png +share/icons/hicolor/16x16/mimetypes/binary.png +share/icons/hicolor/16x16/mimetypes/binary2.png +share/icons/hicolor/16x16/mimetypes/core.png +share/icons/hicolor/16x16/mimetypes/deb.png +share/icons/hicolor/16x16/mimetypes/document.png +share/icons/hicolor/16x16/mimetypes/document2.png +share/icons/hicolor/16x16/mimetypes/dvi.png +share/icons/hicolor/16x16/mimetypes/font_bitmap.png +share/icons/hicolor/16x16/mimetypes/font_truetype.png +share/icons/hicolor/16x16/mimetypes/font_type1.png +share/icons/hicolor/16x16/mimetypes/html.png +share/icons/hicolor/16x16/mimetypes/image.png +share/icons/hicolor/16x16/mimetypes/info.png +share/icons/hicolor/16x16/mimetypes/log.png +share/icons/hicolor/16x16/mimetypes/make.png +share/icons/hicolor/16x16/mimetypes/man.png +share/icons/hicolor/16x16/mimetypes/metafont.png +share/icons/hicolor/16x16/mimetypes/midi.png +share/icons/hicolor/16x16/mimetypes/mime_empty.png +share/icons/hicolor/16x16/mimetypes/misc_doc.png +share/icons/hicolor/16x16/mimetypes/netscape_doc.png +share/icons/hicolor/16x16/mimetypes/pdf.png +share/icons/hicolor/16x16/mimetypes/postscript.png +share/icons/hicolor/16x16/mimetypes/readme.png +share/icons/hicolor/16x16/mimetypes/recycled.png +share/icons/hicolor/16x16/mimetypes/resource.png +share/icons/hicolor/16x16/mimetypes/rpm.png +share/icons/hicolor/16x16/mimetypes/shellscript.png +share/icons/hicolor/16x16/mimetypes/shellscript2.png +share/icons/hicolor/16x16/mimetypes/sound.png +share/icons/hicolor/16x16/mimetypes/source.png +share/icons/hicolor/16x16/mimetypes/source_c.png +share/icons/hicolor/16x16/mimetypes/source_cpp.png +share/icons/hicolor/16x16/mimetypes/source_f.png +share/icons/hicolor/16x16/mimetypes/source_h.png +share/icons/hicolor/16x16/mimetypes/source_java.png +share/icons/hicolor/16x16/mimetypes/source_l.png +share/icons/hicolor/16x16/mimetypes/source_o.png +share/icons/hicolor/16x16/mimetypes/source_pl.png +share/icons/hicolor/16x16/mimetypes/source_py.png +share/icons/hicolor/16x16/mimetypes/source_s.png +share/icons/hicolor/16x16/mimetypes/source_y.png +share/icons/hicolor/16x16/mimetypes/tar.png +share/icons/hicolor/16x16/mimetypes/tgz.png +share/icons/hicolor/16x16/mimetypes/txt.png +share/icons/hicolor/16x16/mimetypes/unknown.png +share/icons/hicolor/16x16/mimetypes/video.png +share/icons/hicolor/16x16/mimetypes/wordprocessing.png share/icons/hicolor/22x22/actions/1downarrow.png share/icons/hicolor/22x22/actions/1leftarrow.png share/icons/hicolor/22x22/actions/1rightarrow.png @@ -1111,6 +1324,8 @@ share/icons/hicolor/22x22/actions/appearance.png share/icons/hicolor/22x22/actions/attach.png share/icons/hicolor/22x22/actions/back.png share/icons/hicolor/22x22/actions/blend.png +share/icons/hicolor/22x22/actions/bookmark.png +share/icons/hicolor/22x22/actions/bookmark_add.png share/icons/hicolor/22x22/actions/bottom.png share/icons/hicolor/22x22/actions/centrejust.png share/icons/hicolor/22x22/actions/colorize.png @@ -1134,6 +1349,7 @@ share/icons/hicolor/22x22/actions/edittrash.png share/icons/hicolor/22x22/actions/encrypted.png share/icons/hicolor/22x22/actions/eraser.png share/icons/hicolor/22x22/actions/exec.png +share/icons/hicolor/22x22/actions/filefind.png share/icons/hicolor/22x22/actions/filenew.png share/icons/hicolor/22x22/actions/fileopen.png share/icons/hicolor/22x22/actions/fileprint.png @@ -1144,6 +1360,7 @@ share/icons/hicolor/22x22/actions/find.png share/icons/hicolor/22x22/actions/finish.png share/icons/hicolor/22x22/actions/folder_new.png share/icons/hicolor/22x22/actions/forward.png +share/icons/hicolor/22x22/actions/frameprint.png share/icons/hicolor/22x22/actions/gear.png share/icons/hicolor/22x22/actions/gohome.png share/icons/hicolor/22x22/actions/goto.png @@ -1241,6 +1458,7 @@ share/icons/hicolor/22x22/actions/top.png share/icons/hicolor/22x22/actions/undo.png share/icons/hicolor/22x22/actions/unlock.png share/icons/hicolor/22x22/actions/up.png +share/icons/hicolor/22x22/actions/view_sidetree.png share/icons/hicolor/22x22/actions/viewmag+.png share/icons/hicolor/22x22/actions/viewmag-.png share/icons/hicolor/22x22/actions/viewmag.png @@ -1259,6 +1477,10 @@ share/icons/hicolor/32x32/actions/appearance.png share/icons/hicolor/32x32/actions/attach.png share/icons/hicolor/32x32/actions/back.png share/icons/hicolor/32x32/actions/blend.png +share/icons/hicolor/32x32/actions/bookmark.png +share/icons/hicolor/32x32/actions/bookmark_add.png +share/icons/hicolor/32x32/actions/bookmark_folder.png +share/icons/hicolor/32x32/actions/bookmark_toolbar.png share/icons/hicolor/32x32/actions/bottom.png share/icons/hicolor/32x32/actions/centrejust.png share/icons/hicolor/32x32/actions/colorize.png @@ -1402,13 +1624,25 @@ share/icons/hicolor/32x32/filesystems/folder_cyan.png share/icons/hicolor/32x32/filesystems/folder_cyan_open.png share/icons/hicolor/32x32/filesystems/folder_green.png share/icons/hicolor/32x32/filesystems/folder_green_open.png +share/icons/hicolor/32x32/filesystems/folder_grey.png +share/icons/hicolor/32x32/filesystems/folder_grey_open.png share/icons/hicolor/32x32/filesystems/folder_home.png +share/icons/hicolor/32x32/filesystems/folder_html.png +share/icons/hicolor/32x32/filesystems/folder_image.png share/icons/hicolor/32x32/filesystems/folder_locked.png +share/icons/hicolor/32x32/filesystems/folder_man.png share/icons/hicolor/32x32/filesystems/folder_open.png share/icons/hicolor/32x32/filesystems/folder_orange.png share/icons/hicolor/32x32/filesystems/folder_orange_open.png share/icons/hicolor/32x32/filesystems/folder_red.png share/icons/hicolor/32x32/filesystems/folder_red_open.png +share/icons/hicolor/32x32/filesystems/folder_sound.png +share/icons/hicolor/32x32/filesystems/folder_tar.png +share/icons/hicolor/32x32/filesystems/folder_txt.png +share/icons/hicolor/32x32/filesystems/folder_video.png +share/icons/hicolor/32x32/filesystems/folder_violet.png +share/icons/hicolor/32x32/filesystems/folder_violet_open.png +share/icons/hicolor/32x32/filesystems/folder_wordprocessing.png share/icons/hicolor/32x32/filesystems/folder_yellow.png share/icons/hicolor/32x32/filesystems/folder_yellow_open.png share/icons/hicolor/32x32/filesystems/ftp.png @@ -1428,6 +1662,7 @@ share/icons/hicolor/32x32/mimetypes/binary2.png share/icons/hicolor/32x32/mimetypes/core.png share/icons/hicolor/32x32/mimetypes/deb.png share/icons/hicolor/32x32/mimetypes/document.png +share/icons/hicolor/32x32/mimetypes/document2.png share/icons/hicolor/32x32/mimetypes/dvi.png share/icons/hicolor/32x32/mimetypes/font_bitmap.png share/icons/hicolor/32x32/mimetypes/font_truetype.png @@ -1477,6 +1712,7 @@ share/icons/hicolor/32x32/mimetypes/unknown.png share/icons/hicolor/32x32/mimetypes/vcalendar.png share/icons/hicolor/32x32/mimetypes/vcard.png share/icons/hicolor/32x32/mimetypes/video.png +share/icons/hicolor/32x32/mimetypes/wordprocessing.png share/icons/hicolor/48x48/actions/kde/0001.png share/icons/hicolor/48x48/actions/kde/0002.png share/icons/hicolor/48x48/actions/kde/0003.png @@ -1540,13 +1776,25 @@ share/icons/hicolor/48x48/filesystems/folder_cyan.png share/icons/hicolor/48x48/filesystems/folder_cyan_open.png share/icons/hicolor/48x48/filesystems/folder_green.png share/icons/hicolor/48x48/filesystems/folder_green_open.png +share/icons/hicolor/48x48/filesystems/folder_grey.png +share/icons/hicolor/48x48/filesystems/folder_grey_open.png share/icons/hicolor/48x48/filesystems/folder_home.png +share/icons/hicolor/48x48/filesystems/folder_html.png +share/icons/hicolor/48x48/filesystems/folder_image.png share/icons/hicolor/48x48/filesystems/folder_locked.png +share/icons/hicolor/48x48/filesystems/folder_man.png share/icons/hicolor/48x48/filesystems/folder_open.png share/icons/hicolor/48x48/filesystems/folder_orange.png share/icons/hicolor/48x48/filesystems/folder_orange_open.png share/icons/hicolor/48x48/filesystems/folder_red.png share/icons/hicolor/48x48/filesystems/folder_red_open.png +share/icons/hicolor/48x48/filesystems/folder_sound.png +share/icons/hicolor/48x48/filesystems/folder_tar.png +share/icons/hicolor/48x48/filesystems/folder_txt.png +share/icons/hicolor/48x48/filesystems/folder_video.png +share/icons/hicolor/48x48/filesystems/folder_violet.png +share/icons/hicolor/48x48/filesystems/folder_violet_open.png +share/icons/hicolor/48x48/filesystems/folder_wordprocessing.png share/icons/hicolor/48x48/filesystems/folder_yellow.png share/icons/hicolor/48x48/filesystems/folder_yellow_open.png share/icons/hicolor/48x48/filesystems/ftp.png @@ -1565,6 +1813,7 @@ share/icons/hicolor/48x48/mimetypes/binary2.png share/icons/hicolor/48x48/mimetypes/core.png share/icons/hicolor/48x48/mimetypes/deb.png share/icons/hicolor/48x48/mimetypes/document.png +share/icons/hicolor/48x48/mimetypes/document2.png share/icons/hicolor/48x48/mimetypes/dvi.png share/icons/hicolor/48x48/mimetypes/font_bitmap.png share/icons/hicolor/48x48/mimetypes/font_truetype.png @@ -1614,6 +1863,7 @@ share/icons/hicolor/48x48/mimetypes/unknown.png share/icons/hicolor/48x48/mimetypes/vcalendar.png share/icons/hicolor/48x48/mimetypes/vcard.png share/icons/hicolor/48x48/mimetypes/video.png +share/icons/hicolor/48x48/mimetypes/wordprocessing.png share/icons/hicolor/index.desktop share/icons/locolor/16x16/actions/1downarrow.png share/icons/locolor/16x16/actions/1leftarrow.png @@ -1633,6 +1883,7 @@ share/icons/locolor/16x16/actions/bookmark_toolbar.png share/icons/locolor/16x16/actions/bottom.png share/icons/locolor/16x16/actions/colorize.png share/icons/locolor/16x16/actions/colorpicker.png +share/icons/locolor/16x16/actions/completion.png share/icons/locolor/16x16/actions/configure.png share/icons/locolor/16x16/actions/connect_creating.png share/icons/locolor/16x16/actions/connect_established.png @@ -1643,6 +1894,7 @@ share/icons/locolor/16x16/actions/crop.png share/icons/locolor/16x16/actions/decrypted.png share/icons/locolor/16x16/actions/down.png share/icons/locolor/16x16/actions/edit.png +share/icons/locolor/16x16/actions/editclear.png share/icons/locolor/16x16/actions/editcopy.png share/icons/locolor/16x16/actions/editcut.png share/icons/locolor/16x16/actions/editdelete.png @@ -1722,6 +1974,7 @@ share/icons/locolor/16x16/actions/kde/0047.png share/icons/locolor/16x16/actions/kde/0048.png share/icons/locolor/16x16/actions/kde/0049.png share/icons/locolor/16x16/actions/kde/0050.png +share/icons/locolor/16x16/actions/locationbar_erase.png share/icons/locolor/16x16/actions/lock.png share/icons/locolor/16x16/actions/mail_forward.png share/icons/locolor/16x16/actions/mail_generic.png @@ -1961,6 +2214,7 @@ share/mimelnk/application/msexcel.desktop share/mimelnk/application/msexcel2.desktop share/mimelnk/application/mspowerpoint.desktop share/mimelnk/application/msword.desktop +share/mimelnk/application/msword2.desktop share/mimelnk/application/octet-stream.desktop share/mimelnk/application/pdf.desktop share/mimelnk/application/postscript.desktop @@ -2026,6 +2280,7 @@ share/mimelnk/image/png.desktop share/mimelnk/image/tiff.desktop share/mimelnk/image/x-bmp.desktop share/mimelnk/image/x-eps.desktop +share/mimelnk/image/x-ico.desktop share/mimelnk/image/x-photo-cd.desktop share/mimelnk/image/x-xbm.desktop share/mimelnk/image/x-xpm.desktop @@ -2042,14 +2297,18 @@ share/mimelnk/text/css.desktop share/mimelnk/text/english.desktop share/mimelnk/text/html.desktop share/mimelnk/text/plain.desktop +share/mimelnk/text/rdf.desktop +share/mimelnk/text/rss.desktop share/mimelnk/text/rtf.desktop share/mimelnk/text/sgml.desktop +share/mimelnk/text/x-bibtex.desktop share/mimelnk/text/x-c++hdr.desktop share/mimelnk/text/x-c++src.desktop share/mimelnk/text/x-chdr.desktop share/mimelnk/text/x-csrc.desktop share/mimelnk/text/x-diff.desktop share/mimelnk/text/x-java.desktop +share/mimelnk/text/x-log.desktop share/mimelnk/text/x-makefile.desktop share/mimelnk/text/x-moc.desktop share/mimelnk/text/x-pascal.desktop @@ -2073,33 +2332,89 @@ share/services/gif.kimgio share/services/http.protocol share/services/http_cache_cleaner.desktop share/services/https.protocol +share/services/ico.kimgio share/services/jpeg.kimgio +share/services/kauthplainmodule.desktop +share/services/kbzip2filter.desktop share/services/kcookiejar.desktop +share/services/kgzipfilter.desktop share/services/khtml.desktop +share/services/khtmlimage.desktop share/services/kio_uiserver.desktop share/services/kmailservice.protocol -share/services/knewsservice.protocol share/services/knotify.desktop share/services/krl.kimgio share/services/png.kimgio share/services/pnm.kimgio +share/services/rlogin.protocol +share/services/telnet.protocol share/services/tiff.kimgio share/services/xbm.kimgio share/services/xpm.kimgio share/services/xv.kimgio share/servicetypes/application.desktop share/servicetypes/browserview.desktop +share/servicetypes/kcomprfilter.desktop share/servicetypes/kpart.desktop share/servicetypes/kpropsdlgplugin.desktop share/servicetypes/krop.desktop share/servicetypes/krwp.desktop +share/servicetypes/ksasl.desktop share/servicetypes/ktexteditor.desktop share/servicetypes/kurifilterplugin.desktop +@dirrm share/servicetypes +@dirrm share/services +@dirrm share/mimelnk/video +@dirrm share/mimelnk/text +@dirrm share/mimelnk/message +@dirrm share/mimelnk/inode +@dirrm share/mimelnk/image +@dirrm share/mimelnk/audio +@dirrm share/mimelnk/application +@dirrm share/mimelnk/all +@dirrm share/mimelnk +@dirrm share/icons/locolor/32x32/mimetypes +@dirrm share/icons/locolor/32x32/filesystems +@dirrm share/icons/locolor/32x32/actions +@dirrm share/icons/locolor/32x32 +@dirrm share/icons/locolor/16x16/mimetypes +@dirrm share/icons/locolor/16x16/filesystems +@dirrm share/icons/locolor/16x16/actions/kde +@dirrm share/icons/locolor/16x16/actions +@dirrm share/icons/locolor/16x16 +@dirrm share/icons/locolor +@dirrm share/icons/hicolor/48x48/mimetypes +@dirrm share/icons/hicolor/48x48/filesystems +@dirrm share/icons/hicolor/48x48/actions/kde +@dirrm share/icons/hicolor/48x48/actions +@dirrm share/icons/hicolor/48x48 +@dirrm share/icons/hicolor/32x32/mimetypes +@dirrm share/icons/hicolor/32x32/filesystems +@dirrm share/icons/hicolor/32x32/actions/kde +@dirrm share/icons/hicolor/32x32/actions +@dirrm share/icons/hicolor/32x32 +@dirrm share/icons/hicolor/22x22/actions/kde +@dirrm share/icons/hicolor/22x22/actions +@dirrm share/icons/hicolor/22x22 +@dirrm share/icons/hicolor/16x16/mimetypes +@dirrm share/icons/hicolor/16x16/filesystems +@dirrm share/icons/hicolor/16x16/actions +@dirrm share/icons/hicolor/16x16 +@dirrm share/icons/hicolor @dirrm share/doc/HTML/en/kspell +@dirrm share/doc/HTML/en/common +@dirrm share/doc/HTML/en +@dirrm share/doc/HTML +@dirrm share/config/ui +@dirrm share/config/colors +@dirrm share/config @dirrm share/apps/kstyle/themes @dirrm share/apps/kstyle/pixmaps @dirrm share/apps/kstyle @dirrm share/apps/kssl/caroot +@dirrm share/apps/kssl +@dirrm share/apps/ksgmltools/zh-TW/entities +@dirrm share/apps/ksgmltools/zh-TW @dirrm share/apps/ksgmltools/zh-CN/entities @dirrm share/apps/ksgmltools/zh-CN @dirrm share/apps/ksgmltools/sv/entities @@ -2125,6 +2440,8 @@ share/servicetypes/kurifilterplugin.desktop @dirrm share/apps/ksgmltools/no @dirrm share/apps/ksgmltools/nl/entities @dirrm share/apps/ksgmltools/nl +@dirrm share/apps/ksgmltools/ko/entities +@dirrm share/apps/ksgmltools/ko @dirrm share/apps/ksgmltools/ja/entities @dirrm share/apps/ksgmltools/ja @dirrm share/apps/ksgmltools/it/entities @@ -2154,7 +2471,7 @@ share/servicetypes/kurifilterplugin.desktop @dirrm share/apps/ksgmltools/ca/entities @dirrm share/apps/ksgmltools/ca @dirrm share/apps/ksgmltools -@dirrm share/apps/kssl +@dirrm share/apps/knotify @dirrm share/apps/kjava @dirrm share/apps/kio_uiserver/icons/locolor/16x16/apps @dirrm share/apps/kio_uiserver/icons/locolor/16x16 @@ -2174,13 +2491,17 @@ share/servicetypes/kurifilterplugin.desktop @dirrm share/apps/khtml @dirrm share/apps/kdeui/pics @dirrm share/apps/kdeui +@dirrm share/apps/kab/pics @dirrm share/apps/kab @dirrm share/apps/LICENSES +@dirrm share/apps @dirrm lib/mcop/Arts @dirrm lib/mcop +@dirrm lib/kde2 @dirrm include/libkmid @dirrm include/kparts @dirrm include/kjs +@dirrm include/kio/sasl @dirrm include/kio @dirrm include/kdesu @dirrm include/dom diff --git a/x11/kdelibs4/Makefile b/x11/kdelibs4/Makefile index a2025a298f30..44b695d2e414 100644 --- a/x11/kdelibs4/Makefile +++ b/x11/kdelibs4/Makefile @@ -6,13 +6,12 @@ # PORTNAME= kdelibs -PORTVERSION= 2.0.1 -PORTREVISION= 2 +PORTVERSION= 2.1 CATEGORIES= x11 kde MASTER_SITES= ${MASTER_SITE_KDE} MASTER_SITE_SUBDIR= stable/${PORTVERSION}/distribution/tar/generic/src -MAINTAINER= kevlo@FreeBSD.org +MAINTAINER= will@FreeBSD.org LIB_DEPENDS= tiff.4:${PORTSDIR}/graphics/tiff \ audiofile.0:${PORTSDIR}/audio/libaudiofile \ diff --git a/x11/kdelibs4/distinfo b/x11/kdelibs4/distinfo index 763aa8c1e749..992af6f45bd7 100644 --- a/x11/kdelibs4/distinfo +++ b/x11/kdelibs4/distinfo @@ -1 +1 @@ -MD5 (kdelibs-2.0.1.tar.bz2) = 563d6b24a216a32be2f55f5b1c14e14c +MD5 (kdelibs-2.1.tar.bz2) = d1795459c4bc8bedc4af67211275b050 diff --git a/x11/kdelibs4/pkg-plist b/x11/kdelibs4/pkg-plist index 23caf2feb129..d716fe96d906 100644 --- a/x11/kdelibs4/pkg-plist +++ b/x11/kdelibs4/pkg-plist @@ -3,6 +3,7 @@ bin/artscat bin/artsd bin/artsdsp bin/artsplay +bin/artsshell bin/artswrapper bin/dcop bin/dcopidl @@ -11,6 +12,7 @@ bin/dcopserver bin/kbuildsycoca bin/kcookiejar bin/kdb2html +bin/kde-config bin/kded bin/kdeinit bin/kdeinit_wrapper @@ -29,6 +31,7 @@ include/arts/anyref.h include/arts/artsflow.h include/arts/artsflow.idl include/arts/asyncstream.h +include/arts/audioio.h include/arts/audiosubsys.h include/arts/buffer.h include/arts/cache.h @@ -38,6 +41,7 @@ include/arts/connect.h include/arts/connection.h include/arts/convert.h include/arts/core.h +include/arts/core.idl include/arts/datapacket.h include/arts/debug.h include/arts/dispatcher.h @@ -61,6 +65,7 @@ include/arts/pool.h include/arts/qiomanager.h include/arts/reference.h include/arts/referenceclean.h +include/arts/resample.h include/arts/socketconnection.h include/arts/soundserver.h include/arts/soundserver.idl @@ -116,6 +121,7 @@ include/kaccel.h include/kaccelmenu.h include/kaction.h include/kallocator.h +include/kalphapainter.h include/kanimwidget.h include/kapp.h include/kaudioplayer.h @@ -136,7 +142,9 @@ include/kcolordlg.h include/kcolordrag.h include/kcombiview.h include/kcombobox.h +include/kcommand.h include/kcompletion.h +include/kcompletionbox.h include/kconfig.h include/kconfigbackend.h include/kconfigbase.h @@ -178,7 +186,9 @@ include/kdockwindow.h include/kdrawutil.h include/kdualcolorbtn.h include/keditcl.h +include/keditlistbox.h include/kedittoolbar.h +include/kemailsettings.h include/kfile.h include/kfilebookmark.h include/kfiledetailview.h @@ -190,6 +200,8 @@ include/kfilepreview.h include/kfilereader.h include/kfileview.h include/kfileviewitem.h +include/kfilterbase.h +include/kfilterdev.h include/kfontdialog.h include/kglobal.h include/kglobalaccel.h @@ -208,19 +220,27 @@ include/kiconview.h include/kimageeffect.h include/kimageio.h include/kinstance.h +include/kio/authinfo.h +include/kio/chmodjob.h include/kio/connection.h include/kio/defaultprogress.h include/kio/file.h include/kio/global.h include/kio/job.h include/kio/jobclasses.h +include/kio/kmdbase.h +include/kio/kmdcodec.h +include/kio/kpac.h include/kio/netaccess.h include/kio/observer.h include/kio/passdlg.h include/kio/paste.h include/kio/progressbase.h include/kio/renamedlg.h +include/kio/sasl/saslcontext.h +include/kio/sasl/saslmodule.h include/kio/skipdlg.h +include/kio/slave.h include/kio/slavebase.h include/kio/slaveinterface.h include/kio/statusbarprogress.h @@ -253,6 +273,7 @@ include/kmainwindow.h include/kmenubar.h include/kmessagebox.h include/kmimemagic.h +include/kmimesourcefactory.h include/kmimetype.h include/knotifyclient.h include/knuminput.h @@ -260,11 +281,13 @@ include/knumvalidator.h include/kopenwith.h include/kpalette.h include/kpanelapplet.h +include/kpanelextension.h include/kpanelmenu.h include/kparts/browserextension.h include/kparts/dockmainwindow.h include/kparts/event.h include/kparts/factory.h +include/kparts/historyprovider.h include/kparts/mainwindow.h include/kparts/part.h include/kparts/partmanager.h @@ -274,6 +297,7 @@ include/kpixmap.h include/kpixmapeffect.h include/kpixmapio.h include/kpixmapprovider.h +include/kpixmapsplitter.h include/kpopupmenu.h include/kprocctrl.h include/kprocess.h @@ -282,6 +306,7 @@ include/kprogress.h include/kpropsdlg.h include/kprotocolinfo.h include/kprotocolmanager.h +include/kpushbutton.h include/krandomsequence.h include/krecentdocument.h include/kregexp.h @@ -306,6 +331,7 @@ include/ksimpleconfig.h include/ksock.h include/kspell.h include/kspelldlg.h +include/ksqueezedtextlabel.h include/kssl.h include/ksslcertificate.h include/ksslcertificatecache.h @@ -354,6 +380,7 @@ include/kurlrequesterdlg.h include/kuserprofile.h include/kwidgetid.h include/kwin.h +include/kwindowlistmenu.h include/kwinmodule.h include/kwizard.h include/kxmlgui.h @@ -396,28 +423,36 @@ lib/kbuildsycoca.la lib/kbuildsycoca.so lib/kcookiejar.la lib/kcookiejar.so +lib/kde2/kbzip2filter.la +lib/kde2/kbzip2filter.so +lib/kde2/kgzipfilter.la +lib/kde2/kgzipfilter.so +lib/kde2/kimg_eps.la +lib/kde2/kimg_eps.so +lib/kde2/kimg_g3.la +lib/kde2/kimg_g3.so +lib/kde2/kimg_ico.la +lib/kde2/kimg_ico.so +lib/kde2/kimg_krl.la +lib/kde2/kimg_krl.so +lib/kde2/kimg_tiff.la +lib/kde2/kimg_tiff.so +lib/kde2/kimg_xview.la +lib/kde2/kimg_xview.so +lib/kde2/kio_file.la +lib/kde2/kio_file.so +lib/kde2/kio_ftp.la +lib/kde2/kio_ftp.so +lib/kde2/kio_http.la +lib/kde2/kio_http.so +lib/kde2/kio_https.la +lib/kde2/kio_https.so +lib/kde2/libkpac.la +lib/kde2/libkpac.so lib/kded.la lib/kded.so -lib/kimg_eps.la -lib/kimg_eps.so -lib/kimg_g3.la -lib/kimg_g3.so -lib/kimg_krl.la -lib/kimg_krl.so -lib/kimg_tiff.la -lib/kimg_tiff.so -lib/kimg_xview.la -lib/kimg_xview.so -lib/kio_file.la -lib/kio_file.so -lib/kio_ftp.la -lib/kio_ftp.so -lib/kio_http.la -lib/kio_http.so lib/kio_http_cache_cleaner.la lib/kio_http_cache_cleaner.so -lib/kio_https.la -lib/kio_https.so lib/kio_uiserver.la lib/kio_uiserver.so lib/kjs_html.la @@ -428,6 +463,8 @@ lib/klegacystyle.la lib/klegacystyle.so lib/knotify.la lib/knotify.so +lib/ksasl_auth_plain.la +lib/ksasl_auth_plain.so lib/ksgistyle.la lib/ksgistyle.so lib/kstephighcolor.la @@ -452,12 +489,18 @@ lib/libartsflow.so.0 lib/libartsflow_idl.la lib/libartsflow_idl.so lib/libartsflow_idl.so.0 +lib/libartswavplayobject.la +lib/libartswavplayobject.so +lib/libartswavplayobject.so.0 lib/libkab.la lib/libkab.so lib/libkab.so.4 lib/libkdecore.la lib/libkdecore.so lib/libkdecore.so.4 +lib/libkdefakes.la +lib/libkdefakes.so +lib/libkdefakes.so.4 lib/libkdesu.la lib/libkdesu.so lib/libkdesu.so.4 @@ -467,9 +510,12 @@ lib/libkdeui.so.4 lib/libkfile.la lib/libkfile.so lib/libkfile.so.4 +lib/libkformula.so lib/libkhtml.la lib/libkhtml.so lib/libkhtml.so.4 +lib/libkhtmlimage.la +lib/libkhtmlimage.so lib/libkio.la lib/libkio.so lib/libkio.so.4 @@ -488,6 +534,8 @@ lib/libkmid.so.0 lib/libkparts.la lib/libkparts.so lib/libkparts.so.4 +lib/libksasl.la +lib/libksasl.so lib/libkspell.la lib/libkspell.so lib/libkspell.so.4 @@ -526,6 +574,12 @@ lib/mcop/Arts/Synth_RECORD.mcopclass lib/mcop/Arts/Synth_WAVE_SIN.mcopclass lib/mcop/Arts/WavPlayObject.mcopclass lib/mcop/Arts/X11GlobalComm.mcopclass +lib/mcop/artsflow.mcopclass +lib/mcop/artsflow.mcoptype +lib/mcop/kmedia2.mcopclass +lib/mcop/kmedia2.mcoptype +lib/mcop/soundserver.mcopclass +lib/mcop/soundserver.mcoptype share/apps/LICENSES/ARTISTIC share/apps/LICENSES/BSD share/apps/LICENSES/GPL_V2 @@ -543,11 +597,12 @@ share/apps/khtml/khtml.rc share/apps/khtml/khtml_browser.rc share/apps/khtml/khtml_popupmenu.rc share/apps/kio_uiserver/icons/locolor/16x16/apps/kio_uiserver.png -share/apps/kjava/kjava-classes.zip +share/apps/kjava/kjava.jar +share/apps/kjava/kjava.policy +share/apps/knotify/eventsrc share/apps/ksgmltools/ca/catalog share/apps/ksgmltools/ca/entities/fdl-notice.docbook share/apps/ksgmltools/ca/entities/gpl-notice.docbook -share/apps/ksgmltools/ca/entities/help-menu.docbook share/apps/ksgmltools/ca/entities/lgpl-notice.docbook share/apps/ksgmltools/ca/entities/report-bugs.docbook share/apps/ksgmltools/ca/entities/underArtisticLicense.docbook @@ -562,7 +617,6 @@ share/apps/ksgmltools/catalog share/apps/ksgmltools/cs/catalog share/apps/ksgmltools/cs/entities/fdl-notice.docbook share/apps/ksgmltools/cs/entities/gpl-notice.docbook -share/apps/ksgmltools/cs/entities/help-menu.docbook share/apps/ksgmltools/cs/entities/lgpl-notice.docbook share/apps/ksgmltools/cs/entities/report-bugs.docbook share/apps/ksgmltools/cs/entities/underArtisticLicense.docbook @@ -576,7 +630,6 @@ share/apps/ksgmltools/cs/user.entities share/apps/ksgmltools/da/catalog share/apps/ksgmltools/da/entities/fdl-notice.docbook share/apps/ksgmltools/da/entities/gpl-notice.docbook -share/apps/ksgmltools/da/entities/help-menu.docbook share/apps/ksgmltools/da/entities/lgpl-notice.docbook share/apps/ksgmltools/da/entities/report-bugs.docbook share/apps/ksgmltools/da/entities/underArtisticLicense.docbook @@ -590,7 +643,6 @@ share/apps/ksgmltools/da/user.entities share/apps/ksgmltools/de/catalog share/apps/ksgmltools/de/entities/fdl-notice.docbook share/apps/ksgmltools/de/entities/gpl-notice.docbook -share/apps/ksgmltools/de/entities/help-menu.docbook share/apps/ksgmltools/de/entities/lgpl-notice.docbook share/apps/ksgmltools/de/entities/report-bugs.docbook share/apps/ksgmltools/de/entities/underArtisticLicense.docbook @@ -601,17 +653,14 @@ share/apps/ksgmltools/de/entities/underX11License.docbook share/apps/ksgmltools/de/kde-prologue.entities share/apps/ksgmltools/de/strings.entities share/apps/ksgmltools/de/user.entities -share/apps/ksgmltools/dtd/kde-genent.entities share/apps/ksgmltools/dtd/kde-modifications.elements share/apps/ksgmltools/dtd/kde-next.dtd -share/apps/ksgmltools/dtd/kde-prologue.entities share/apps/ksgmltools/dtd/kde-rdbhier2.elements share/apps/ksgmltools/dtd/kde-rdbpool.elements share/apps/ksgmltools/dtd/kde.dtd share/apps/ksgmltools/el/catalog share/apps/ksgmltools/el/entities/fdl-notice.docbook share/apps/ksgmltools/el/entities/gpl-notice.docbook -share/apps/ksgmltools/el/entities/help-menu.docbook share/apps/ksgmltools/el/entities/lgpl-notice.docbook share/apps/ksgmltools/el/entities/report-bugs.docbook share/apps/ksgmltools/el/entities/underArtisticLicense.docbook @@ -625,7 +674,6 @@ share/apps/ksgmltools/el/user.entities share/apps/ksgmltools/en/catalog share/apps/ksgmltools/en/entities/fdl-notice.docbook share/apps/ksgmltools/en/entities/gpl-notice.docbook -share/apps/ksgmltools/en/entities/help-menu.docbook share/apps/ksgmltools/en/entities/lgpl-notice.docbook share/apps/ksgmltools/en/entities/report-bugs.docbook share/apps/ksgmltools/en/entities/underArtisticLicense.docbook @@ -636,19 +684,11 @@ share/apps/ksgmltools/en/entities/underX11License.docbook share/apps/ksgmltools/en/kde-prologue.entities share/apps/ksgmltools/en/strings.entities share/apps/ksgmltools/en/user.entities -share/apps/ksgmltools/entities/artistic-license.docbook -share/apps/ksgmltools/entities/artisticlicense-links.docbook -share/apps/ksgmltools/entities/bsd-license.docbook -share/apps/ksgmltools/entities/bsdlicense-links.docbook -share/apps/ksgmltools/entities/license-links.docbook -share/apps/ksgmltools/entities/qpl-license.docbook -share/apps/ksgmltools/entities/qpllicense-links.docbook -share/apps/ksgmltools/entities/x11-license.docbook -share/apps/ksgmltools/entities/x11license-links.docbook +share/apps/ksgmltools/entities/kde-genent.entities +share/apps/ksgmltools/entities/kde-prologue.entities share/apps/ksgmltools/es/catalog share/apps/ksgmltools/es/entities/fdl-notice.docbook share/apps/ksgmltools/es/entities/gpl-notice.docbook -share/apps/ksgmltools/es/entities/help-menu.docbook share/apps/ksgmltools/es/entities/lgpl-notice.docbook share/apps/ksgmltools/es/entities/report-bugs.docbook share/apps/ksgmltools/es/entities/underArtisticLicense.docbook @@ -662,7 +702,6 @@ share/apps/ksgmltools/es/user.entities share/apps/ksgmltools/et/catalog share/apps/ksgmltools/et/entities/fdl-notice.docbook share/apps/ksgmltools/et/entities/gpl-notice.docbook -share/apps/ksgmltools/et/entities/help-menu.docbook share/apps/ksgmltools/et/entities/lgpl-notice.docbook share/apps/ksgmltools/et/entities/report-bugs.docbook share/apps/ksgmltools/et/entities/underArtisticLicense.docbook @@ -676,7 +715,6 @@ share/apps/ksgmltools/et/user.entities share/apps/ksgmltools/fi/catalog share/apps/ksgmltools/fi/entities/fdl-notice.docbook share/apps/ksgmltools/fi/entities/gpl-notice.docbook -share/apps/ksgmltools/fi/entities/help-menu.docbook share/apps/ksgmltools/fi/entities/lgpl-notice.docbook share/apps/ksgmltools/fi/entities/report-bugs.docbook share/apps/ksgmltools/fi/entities/underArtisticLicense.docbook @@ -690,7 +728,6 @@ share/apps/ksgmltools/fi/user.entities share/apps/ksgmltools/fr/catalog share/apps/ksgmltools/fr/entities/fdl-notice.docbook share/apps/ksgmltools/fr/entities/gpl-notice.docbook -share/apps/ksgmltools/fr/entities/help-menu.docbook share/apps/ksgmltools/fr/entities/lgpl-notice.docbook share/apps/ksgmltools/fr/entities/report-bugs.docbook share/apps/ksgmltools/fr/entities/underArtisticLicense.docbook @@ -704,7 +741,6 @@ share/apps/ksgmltools/fr/user.entities share/apps/ksgmltools/hu/catalog share/apps/ksgmltools/hu/entities/fdl-notice.docbook share/apps/ksgmltools/hu/entities/gpl-notice.docbook -share/apps/ksgmltools/hu/entities/help-menu.docbook share/apps/ksgmltools/hu/entities/lgpl-notice.docbook share/apps/ksgmltools/hu/entities/report-bugs.docbook share/apps/ksgmltools/hu/entities/underArtisticLicense.docbook @@ -718,7 +754,6 @@ share/apps/ksgmltools/hu/user.entities share/apps/ksgmltools/it/catalog share/apps/ksgmltools/it/entities/fdl-notice.docbook share/apps/ksgmltools/it/entities/gpl-notice.docbook -share/apps/ksgmltools/it/entities/help-menu.docbook share/apps/ksgmltools/it/entities/lgpl-notice.docbook share/apps/ksgmltools/it/entities/report-bugs.docbook share/apps/ksgmltools/it/entities/underArtisticLicense.docbook @@ -732,7 +767,6 @@ share/apps/ksgmltools/it/user.entities share/apps/ksgmltools/ja/catalog share/apps/ksgmltools/ja/entities/fdl-notice.docbook share/apps/ksgmltools/ja/entities/gpl-notice.docbook -share/apps/ksgmltools/ja/entities/help-menu.docbook share/apps/ksgmltools/ja/entities/lgpl-notice.docbook share/apps/ksgmltools/ja/entities/report-bugs.docbook share/apps/ksgmltools/ja/entities/underArtisticLicense.docbook @@ -744,10 +778,21 @@ share/apps/ksgmltools/ja/kde-prologue.entities share/apps/ksgmltools/ja/strings.entities share/apps/ksgmltools/ja/user.entities share/apps/ksgmltools/kde.dcl +share/apps/ksgmltools/ko/catalog +share/apps/ksgmltools/ko/entities/fdl-notice.docbook +share/apps/ksgmltools/ko/entities/gpl-notice.docbook +share/apps/ksgmltools/ko/entities/lgpl-notice.docbook +share/apps/ksgmltools/ko/entities/underArtisticLicense.docbook +share/apps/ksgmltools/ko/entities/underBSDLicense.docbook +share/apps/ksgmltools/ko/entities/underFDL.docbook +share/apps/ksgmltools/ko/entities/underGPL.docbook +share/apps/ksgmltools/ko/entities/underX11License.docbook +share/apps/ksgmltools/ko/kde-prologue.entities +share/apps/ksgmltools/ko/strings.entities +share/apps/ksgmltools/ko/user.entities share/apps/ksgmltools/nl/catalog share/apps/ksgmltools/nl/entities/fdl-notice.docbook share/apps/ksgmltools/nl/entities/gpl-notice.docbook -share/apps/ksgmltools/nl/entities/help-menu.docbook share/apps/ksgmltools/nl/entities/lgpl-notice.docbook share/apps/ksgmltools/nl/entities/report-bugs.docbook share/apps/ksgmltools/nl/entities/underArtisticLicense.docbook @@ -761,7 +806,6 @@ share/apps/ksgmltools/nl/user.entities share/apps/ksgmltools/no/catalog share/apps/ksgmltools/no/entities/fdl-notice.docbook share/apps/ksgmltools/no/entities/gpl-notice.docbook -share/apps/ksgmltools/no/entities/help-menu.docbook share/apps/ksgmltools/no/entities/lgpl-notice.docbook share/apps/ksgmltools/no/entities/report-bugs.docbook share/apps/ksgmltools/no/entities/underArtisticLicense.docbook @@ -775,7 +819,6 @@ share/apps/ksgmltools/no/user.entities share/apps/ksgmltools/pl/catalog share/apps/ksgmltools/pl/entities/fdl-notice.docbook share/apps/ksgmltools/pl/entities/gpl-notice.docbook -share/apps/ksgmltools/pl/entities/help-menu.docbook share/apps/ksgmltools/pl/entities/lgpl-notice.docbook share/apps/ksgmltools/pl/entities/report-bugs.docbook share/apps/ksgmltools/pl/entities/underArtisticLicense.docbook @@ -789,7 +832,6 @@ share/apps/ksgmltools/pl/user.entities share/apps/ksgmltools/pt-BR/catalog share/apps/ksgmltools/pt-BR/entities/fdl-notice.docbook share/apps/ksgmltools/pt-BR/entities/gpl-notice.docbook -share/apps/ksgmltools/pt-BR/entities/help-menu.docbook share/apps/ksgmltools/pt-BR/entities/lgpl-notice.docbook share/apps/ksgmltools/pt-BR/entities/report-bugs.docbook share/apps/ksgmltools/pt-BR/entities/underArtisticLicense.docbook @@ -803,7 +845,6 @@ share/apps/ksgmltools/pt-BR/user.entities share/apps/ksgmltools/pt/catalog share/apps/ksgmltools/pt/entities/fdl-notice.docbook share/apps/ksgmltools/pt/entities/gpl-notice.docbook -share/apps/ksgmltools/pt/entities/help-menu.docbook share/apps/ksgmltools/pt/entities/lgpl-notice.docbook share/apps/ksgmltools/pt/entities/report-bugs.docbook share/apps/ksgmltools/pt/entities/underArtisticLicense.docbook @@ -817,7 +858,6 @@ share/apps/ksgmltools/pt/user.entities share/apps/ksgmltools/ro/catalog share/apps/ksgmltools/ro/entities/fdl-notice.docbook share/apps/ksgmltools/ro/entities/gpl-notice.docbook -share/apps/ksgmltools/ro/entities/help-menu.docbook share/apps/ksgmltools/ro/entities/lgpl-notice.docbook share/apps/ksgmltools/ro/entities/report-bugs.docbook share/apps/ksgmltools/ro/entities/underArtisticLicense.docbook @@ -831,7 +871,6 @@ share/apps/ksgmltools/ro/user.entities share/apps/ksgmltools/ru/catalog share/apps/ksgmltools/ru/entities/fdl-notice.docbook share/apps/ksgmltools/ru/entities/gpl-notice.docbook -share/apps/ksgmltools/ru/entities/help-menu.docbook share/apps/ksgmltools/ru/entities/lgpl-notice.docbook share/apps/ksgmltools/ru/entities/report-bugs.docbook share/apps/ksgmltools/ru/entities/underArtisticLicense.docbook @@ -845,7 +884,6 @@ share/apps/ksgmltools/ru/user.entities share/apps/ksgmltools/sk/catalog share/apps/ksgmltools/sk/entities/fdl-notice.docbook share/apps/ksgmltools/sk/entities/gpl-notice.docbook -share/apps/ksgmltools/sk/entities/help-menu.docbook share/apps/ksgmltools/sk/entities/lgpl-notice.docbook share/apps/ksgmltools/sk/entities/report-bugs.docbook share/apps/ksgmltools/sk/entities/underArtisticLicense.docbook @@ -859,7 +897,6 @@ share/apps/ksgmltools/sk/user.entities share/apps/ksgmltools/sl/catalog share/apps/ksgmltools/sl/entities/fdl-notice.docbook share/apps/ksgmltools/sl/entities/gpl-notice.docbook -share/apps/ksgmltools/sl/entities/help-menu.docbook share/apps/ksgmltools/sl/entities/lgpl-notice.docbook share/apps/ksgmltools/sl/entities/report-bugs.docbook share/apps/ksgmltools/sl/entities/underArtisticLicense.docbook @@ -873,7 +910,6 @@ share/apps/ksgmltools/sl/user.entities share/apps/ksgmltools/sr/catalog share/apps/ksgmltools/sr/entities/fdl-notice.docbook share/apps/ksgmltools/sr/entities/gpl-notice.docbook -share/apps/ksgmltools/sr/entities/help-menu.docbook share/apps/ksgmltools/sr/entities/lgpl-notice.docbook share/apps/ksgmltools/sr/entities/report-bugs.docbook share/apps/ksgmltools/sr/entities/underArtisticLicense.docbook @@ -915,6 +951,8 @@ share/apps/ksgmltools/stylesheets/kde-l1it.dsl share/apps/ksgmltools/stylesheets/kde-l1it.ent share/apps/ksgmltools/stylesheets/kde-l1ja.dsl share/apps/ksgmltools/stylesheets/kde-l1ja.ent +share/apps/ksgmltools/stylesheets/kde-l1ko.dsl +share/apps/ksgmltools/stylesheets/kde-l1ko.ent share/apps/ksgmltools/stylesheets/kde-l1nl.dsl share/apps/ksgmltools/stylesheets/kde-l1nl.ent share/apps/ksgmltools/stylesheets/kde-l1no.dsl @@ -939,6 +977,8 @@ share/apps/ksgmltools/stylesheets/kde-l1sv.dsl share/apps/ksgmltools/stylesheets/kde-l1sv.ent share/apps/ksgmltools/stylesheets/kde-l1zhcn.dsl share/apps/ksgmltools/stylesheets/kde-l1zhcn.ent +share/apps/ksgmltools/stylesheets/kde-l1zhtw.dsl +share/apps/ksgmltools/stylesheets/kde-l1zhtw.ent share/apps/ksgmltools/stylesheets/kde-navig.dsl share/apps/ksgmltools/stylesheets/kde-search.dsl share/apps/ksgmltools/stylesheets/kde-ttlpg.dsl @@ -947,7 +987,6 @@ share/apps/ksgmltools/stylesheets/kde.dsl share/apps/ksgmltools/sv/catalog share/apps/ksgmltools/sv/entities/fdl-notice.docbook share/apps/ksgmltools/sv/entities/gpl-notice.docbook -share/apps/ksgmltools/sv/entities/help-menu.docbook share/apps/ksgmltools/sv/entities/lgpl-notice.docbook share/apps/ksgmltools/sv/entities/report-bugs.docbook share/apps/ksgmltools/sv/entities/underArtisticLicense.docbook @@ -961,7 +1000,6 @@ share/apps/ksgmltools/sv/user.entities share/apps/ksgmltools/zh-CN/catalog share/apps/ksgmltools/zh-CN/entities/fdl-notice.docbook share/apps/ksgmltools/zh-CN/entities/gpl-notice.docbook -share/apps/ksgmltools/zh-CN/entities/help-menu.docbook share/apps/ksgmltools/zh-CN/entities/lgpl-notice.docbook share/apps/ksgmltools/zh-CN/entities/report-bugs.docbook share/apps/ksgmltools/zh-CN/entities/underArtisticLicense.docbook @@ -972,6 +1010,19 @@ share/apps/ksgmltools/zh-CN/entities/underX11License.docbook share/apps/ksgmltools/zh-CN/kde-prologue.entities share/apps/ksgmltools/zh-CN/strings.entities share/apps/ksgmltools/zh-CN/user.entities +share/apps/ksgmltools/zh-TW/catalog +share/apps/ksgmltools/zh-TW/entities/fdl-notice.docbook +share/apps/ksgmltools/zh-TW/entities/gpl-notice.docbook +share/apps/ksgmltools/zh-TW/entities/lgpl-notice.docbook +share/apps/ksgmltools/zh-TW/entities/report-bugs.docbook +share/apps/ksgmltools/zh-TW/entities/underArtisticLicense.docbook +share/apps/ksgmltools/zh-TW/entities/underBSDLicense.docbook +share/apps/ksgmltools/zh-TW/entities/underFDL.docbook +share/apps/ksgmltools/zh-TW/entities/underGPL.docbook +share/apps/ksgmltools/zh-TW/entities/underX11License.docbook +share/apps/ksgmltools/zh-TW/kde-prologue.entities +share/apps/ksgmltools/zh-TW/strings.entities +share/apps/ksgmltools/zh-TW/user.entities share/apps/kssl/caroot/ca-bundle.crt share/apps/kstyle/pixmaps/aquaice.png share/apps/kstyle/pixmaps/black_combo.png @@ -1045,46 +1096,40 @@ share/apps/kstyle/themes/qtsgi.themerc share/apps/kstyle/themes/qtwindows.themerc share/apps/kstyle/themes/system.themerc share/apps/kstyle/themes/systemalt.themerc -share/apps/kstyle/themes/systemtest.themerc share/config/charsets share/config/colors/40 Colors share/config/colors/Royal share/config/colors/Web -share/config/eventsrc -share/config/kde-config share/config/kdebug.areas share/config/kdebugrc share/config/ui/ui_standards.rc -share/doc/HTML/en/common/artistic-licence.html -share/doc/HTML/en/common/bsd-licence.html +share/doc/HTML/default +share/doc/HTML/en/common/artistic-license.html +share/doc/HTML/en/common/bsd-license.html share/doc/HTML/en/common/caution.png -share/doc/HTML/en/common/fdl-licence -share/doc/HTML/en/common/fdl-licence.html -share/doc/HTML/en/common/fdl-notice -share/doc/HTML/en/common/gpl-licence -share/doc/HTML/en/common/gpl-licence.html -share/doc/HTML/en/common/gpl-notice +share/doc/HTML/en/common/fdl-license +share/doc/HTML/en/common/fdl-license.html +share/doc/HTML/en/common/gpl-license +share/doc/HTML/en/common/gpl-license.html share/doc/HTML/en/common/home.png share/doc/HTML/en/common/important.png share/doc/HTML/en/common/kde-common.css share/doc/HTML/en/common/kde-default.css -share/doc/HTML/en/common/lgpl-licence -share/doc/HTML/en/common/lgpl-licence.html -share/doc/HTML/en/common/lgpl-notice +share/doc/HTML/en/common/lgpl-license +share/doc/HTML/en/common/lgpl-license.html share/doc/HTML/en/common/logotp3-small.png share/doc/HTML/en/common/logotp3.png -share/doc/HTML/en/common/mieterra-artistic-license share/doc/HTML/en/common/next.png share/doc/HTML/en/common/note.png share/doc/HTML/en/common/prev.png -share/doc/HTML/en/common/qpl-licence.html +share/doc/HTML/en/common/qpl-license.html share/doc/HTML/en/common/tip.png share/doc/HTML/en/common/toc-blank.png share/doc/HTML/en/common/toc-minus.png share/doc/HTML/en/common/toc-plus.png share/doc/HTML/en/common/up.png share/doc/HTML/en/common/warning.png -share/doc/HTML/en/common/x11-licence.html +share/doc/HTML/en/common/x11-license.html share/doc/HTML/en/common/xml.dcl share/doc/HTML/en/kspell/.anchors share/doc/HTML/en/kspell/common @@ -1098,6 +1143,174 @@ share/doc/HTML/en/kspell/misspelled-word-dialog.html share/doc/HTML/en/kspell/other-functions.html share/doc/HTML/en/kspell/other.html share/doc/HTML/en/kspell/spell-checking-client.html +share/icons/hicolor/16x16/actions/1downarrow.png +share/icons/hicolor/16x16/actions/1leftarrow.png +share/icons/hicolor/16x16/actions/1rightarrow.png +share/icons/hicolor/16x16/actions/1uparrow.png +share/icons/hicolor/16x16/actions/2downarrow.png +share/icons/hicolor/16x16/actions/2leftarrow.png +share/icons/hicolor/16x16/actions/2rightarrow.png +share/icons/hicolor/16x16/actions/2uparrow.png +share/icons/hicolor/16x16/actions/airbrush.png +share/icons/hicolor/16x16/actions/attach.png +share/icons/hicolor/16x16/actions/back.png +share/icons/hicolor/16x16/actions/blend.png +share/icons/hicolor/16x16/actions/bookmark.png +share/icons/hicolor/16x16/actions/bookmark_add.png +share/icons/hicolor/16x16/actions/bookmark_folder.png +share/icons/hicolor/16x16/actions/bookmark_toolbar.png +share/icons/hicolor/16x16/actions/bottom.png +share/icons/hicolor/16x16/actions/colorpicker.png +share/icons/hicolor/16x16/actions/configure.png +share/icons/hicolor/16x16/actions/connect_creating.png +share/icons/hicolor/16x16/actions/connect_established.png +share/icons/hicolor/16x16/actions/connect_no.png +share/icons/hicolor/16x16/actions/contents.png +share/icons/hicolor/16x16/actions/contents2.png +share/icons/hicolor/16x16/actions/contexthelp.png +share/icons/hicolor/16x16/actions/crop.png +share/icons/hicolor/16x16/actions/decrypted.png +share/icons/hicolor/16x16/actions/down.png +share/icons/hicolor/16x16/actions/edit.png +share/icons/hicolor/16x16/actions/editcopy.png +share/icons/hicolor/16x16/actions/editcut.png +share/icons/hicolor/16x16/actions/editdelete.png +share/icons/hicolor/16x16/actions/editpaste.png +share/icons/hicolor/16x16/actions/editshred.png +share/icons/hicolor/16x16/actions/encrypted.png +share/icons/hicolor/16x16/actions/eraser.png +share/icons/hicolor/16x16/actions/exec.png +share/icons/hicolor/16x16/actions/exit.png +share/icons/hicolor/16x16/actions/fileclose.png +share/icons/hicolor/16x16/actions/filefind.png +share/icons/hicolor/16x16/actions/filenew.png +share/icons/hicolor/16x16/actions/fileopen.png +share/icons/hicolor/16x16/actions/fileprint.png +share/icons/hicolor/16x16/actions/filesave.png +share/icons/hicolor/16x16/actions/fill.png +share/icons/hicolor/16x16/actions/filter.png +share/icons/hicolor/16x16/actions/find.png +share/icons/hicolor/16x16/actions/finish.png +share/icons/hicolor/16x16/actions/flag.png +share/icons/hicolor/16x16/actions/folder_new.png +share/icons/hicolor/16x16/actions/forward.png +share/icons/hicolor/16x16/actions/frameprint.png +share/icons/hicolor/16x16/actions/gear.png +share/icons/hicolor/16x16/actions/gohome.png +share/icons/hicolor/16x16/actions/goto.png +share/icons/hicolor/16x16/actions/help.png +share/icons/hicolor/16x16/actions/history.png +share/icons/hicolor/16x16/actions/idea.png +share/icons/hicolor/16x16/actions/lock.png +share/icons/hicolor/16x16/actions/mail_forward.png +share/icons/hicolor/16x16/actions/mail_generic.png +share/icons/hicolor/16x16/actions/mail_get.png +share/icons/hicolor/16x16/actions/mail_reply.png +share/icons/hicolor/16x16/actions/mail_replyall.png +share/icons/hicolor/16x16/actions/mail_send.png +share/icons/hicolor/16x16/actions/move.png +share/icons/hicolor/16x16/actions/news_subscribe.png +share/icons/hicolor/16x16/actions/news_unsubscribe.png +share/icons/hicolor/16x16/actions/next.png +share/icons/hicolor/16x16/actions/openterm.png +share/icons/hicolor/16x16/actions/previous.png +share/icons/hicolor/16x16/actions/redo.png +share/icons/hicolor/16x16/actions/reload.png +share/icons/hicolor/16x16/actions/run.png +share/icons/hicolor/16x16/actions/start.png +share/icons/hicolor/16x16/actions/stop.png +share/icons/hicolor/16x16/actions/top.png +share/icons/hicolor/16x16/actions/undo.png +share/icons/hicolor/16x16/actions/unlock.png +share/icons/hicolor/16x16/actions/up.png +share/icons/hicolor/16x16/actions/viewmag+.png +share/icons/hicolor/16x16/actions/viewmag-.png +share/icons/hicolor/16x16/actions/viewmag.png +share/icons/hicolor/16x16/actions/window_fullscreen.png +share/icons/hicolor/16x16/actions/window_new.png +share/icons/hicolor/16x16/actions/window_nofullscreen.png +share/icons/hicolor/16x16/filesystems/desktop.png +share/icons/hicolor/16x16/filesystems/folder.png +share/icons/hicolor/16x16/filesystems/folder_blue.png +share/icons/hicolor/16x16/filesystems/folder_blue_open.png +share/icons/hicolor/16x16/filesystems/folder_cyan.png +share/icons/hicolor/16x16/filesystems/folder_cyan_open.png +share/icons/hicolor/16x16/filesystems/folder_green.png +share/icons/hicolor/16x16/filesystems/folder_green_open.png +share/icons/hicolor/16x16/filesystems/folder_grey.png +share/icons/hicolor/16x16/filesystems/folder_grey_open.png +share/icons/hicolor/16x16/filesystems/folder_home.png +share/icons/hicolor/16x16/filesystems/folder_html.png +share/icons/hicolor/16x16/filesystems/folder_image.png +share/icons/hicolor/16x16/filesystems/folder_locked.png +share/icons/hicolor/16x16/filesystems/folder_man.png +share/icons/hicolor/16x16/filesystems/folder_open.png +share/icons/hicolor/16x16/filesystems/folder_orange.png +share/icons/hicolor/16x16/filesystems/folder_orange_open.png +share/icons/hicolor/16x16/filesystems/folder_red.png +share/icons/hicolor/16x16/filesystems/folder_red_open.png +share/icons/hicolor/16x16/filesystems/folder_sound.png +share/icons/hicolor/16x16/filesystems/folder_tar.png +share/icons/hicolor/16x16/filesystems/folder_txt.png +share/icons/hicolor/16x16/filesystems/folder_video.png +share/icons/hicolor/16x16/filesystems/folder_violet.png +share/icons/hicolor/16x16/filesystems/folder_violet_open.png +share/icons/hicolor/16x16/filesystems/folder_wordprocessing.png +share/icons/hicolor/16x16/filesystems/folder_yellow.png +share/icons/hicolor/16x16/filesystems/folder_yellow_open.png +share/icons/hicolor/16x16/filesystems/ftp.png +share/icons/hicolor/16x16/filesystems/link.png +share/icons/hicolor/16x16/filesystems/network.png +share/icons/hicolor/16x16/filesystems/www.png +share/icons/hicolor/16x16/mimetypes/applix.png +share/icons/hicolor/16x16/mimetypes/binary.png +share/icons/hicolor/16x16/mimetypes/binary2.png +share/icons/hicolor/16x16/mimetypes/core.png +share/icons/hicolor/16x16/mimetypes/deb.png +share/icons/hicolor/16x16/mimetypes/document.png +share/icons/hicolor/16x16/mimetypes/document2.png +share/icons/hicolor/16x16/mimetypes/dvi.png +share/icons/hicolor/16x16/mimetypes/font_bitmap.png +share/icons/hicolor/16x16/mimetypes/font_truetype.png +share/icons/hicolor/16x16/mimetypes/font_type1.png +share/icons/hicolor/16x16/mimetypes/html.png +share/icons/hicolor/16x16/mimetypes/image.png +share/icons/hicolor/16x16/mimetypes/info.png +share/icons/hicolor/16x16/mimetypes/log.png +share/icons/hicolor/16x16/mimetypes/make.png +share/icons/hicolor/16x16/mimetypes/man.png +share/icons/hicolor/16x16/mimetypes/metafont.png +share/icons/hicolor/16x16/mimetypes/midi.png +share/icons/hicolor/16x16/mimetypes/mime_empty.png +share/icons/hicolor/16x16/mimetypes/misc_doc.png +share/icons/hicolor/16x16/mimetypes/netscape_doc.png +share/icons/hicolor/16x16/mimetypes/pdf.png +share/icons/hicolor/16x16/mimetypes/postscript.png +share/icons/hicolor/16x16/mimetypes/readme.png +share/icons/hicolor/16x16/mimetypes/recycled.png +share/icons/hicolor/16x16/mimetypes/resource.png +share/icons/hicolor/16x16/mimetypes/rpm.png +share/icons/hicolor/16x16/mimetypes/shellscript.png +share/icons/hicolor/16x16/mimetypes/shellscript2.png +share/icons/hicolor/16x16/mimetypes/sound.png +share/icons/hicolor/16x16/mimetypes/source.png +share/icons/hicolor/16x16/mimetypes/source_c.png +share/icons/hicolor/16x16/mimetypes/source_cpp.png +share/icons/hicolor/16x16/mimetypes/source_f.png +share/icons/hicolor/16x16/mimetypes/source_h.png +share/icons/hicolor/16x16/mimetypes/source_java.png +share/icons/hicolor/16x16/mimetypes/source_l.png +share/icons/hicolor/16x16/mimetypes/source_o.png +share/icons/hicolor/16x16/mimetypes/source_pl.png +share/icons/hicolor/16x16/mimetypes/source_py.png +share/icons/hicolor/16x16/mimetypes/source_s.png +share/icons/hicolor/16x16/mimetypes/source_y.png +share/icons/hicolor/16x16/mimetypes/tar.png +share/icons/hicolor/16x16/mimetypes/tgz.png +share/icons/hicolor/16x16/mimetypes/txt.png +share/icons/hicolor/16x16/mimetypes/unknown.png +share/icons/hicolor/16x16/mimetypes/video.png +share/icons/hicolor/16x16/mimetypes/wordprocessing.png share/icons/hicolor/22x22/actions/1downarrow.png share/icons/hicolor/22x22/actions/1leftarrow.png share/icons/hicolor/22x22/actions/1rightarrow.png @@ -1111,6 +1324,8 @@ share/icons/hicolor/22x22/actions/appearance.png share/icons/hicolor/22x22/actions/attach.png share/icons/hicolor/22x22/actions/back.png share/icons/hicolor/22x22/actions/blend.png +share/icons/hicolor/22x22/actions/bookmark.png +share/icons/hicolor/22x22/actions/bookmark_add.png share/icons/hicolor/22x22/actions/bottom.png share/icons/hicolor/22x22/actions/centrejust.png share/icons/hicolor/22x22/actions/colorize.png @@ -1134,6 +1349,7 @@ share/icons/hicolor/22x22/actions/edittrash.png share/icons/hicolor/22x22/actions/encrypted.png share/icons/hicolor/22x22/actions/eraser.png share/icons/hicolor/22x22/actions/exec.png +share/icons/hicolor/22x22/actions/filefind.png share/icons/hicolor/22x22/actions/filenew.png share/icons/hicolor/22x22/actions/fileopen.png share/icons/hicolor/22x22/actions/fileprint.png @@ -1144,6 +1360,7 @@ share/icons/hicolor/22x22/actions/find.png share/icons/hicolor/22x22/actions/finish.png share/icons/hicolor/22x22/actions/folder_new.png share/icons/hicolor/22x22/actions/forward.png +share/icons/hicolor/22x22/actions/frameprint.png share/icons/hicolor/22x22/actions/gear.png share/icons/hicolor/22x22/actions/gohome.png share/icons/hicolor/22x22/actions/goto.png @@ -1241,6 +1458,7 @@ share/icons/hicolor/22x22/actions/top.png share/icons/hicolor/22x22/actions/undo.png share/icons/hicolor/22x22/actions/unlock.png share/icons/hicolor/22x22/actions/up.png +share/icons/hicolor/22x22/actions/view_sidetree.png share/icons/hicolor/22x22/actions/viewmag+.png share/icons/hicolor/22x22/actions/viewmag-.png share/icons/hicolor/22x22/actions/viewmag.png @@ -1259,6 +1477,10 @@ share/icons/hicolor/32x32/actions/appearance.png share/icons/hicolor/32x32/actions/attach.png share/icons/hicolor/32x32/actions/back.png share/icons/hicolor/32x32/actions/blend.png +share/icons/hicolor/32x32/actions/bookmark.png +share/icons/hicolor/32x32/actions/bookmark_add.png +share/icons/hicolor/32x32/actions/bookmark_folder.png +share/icons/hicolor/32x32/actions/bookmark_toolbar.png share/icons/hicolor/32x32/actions/bottom.png share/icons/hicolor/32x32/actions/centrejust.png share/icons/hicolor/32x32/actions/colorize.png @@ -1402,13 +1624,25 @@ share/icons/hicolor/32x32/filesystems/folder_cyan.png share/icons/hicolor/32x32/filesystems/folder_cyan_open.png share/icons/hicolor/32x32/filesystems/folder_green.png share/icons/hicolor/32x32/filesystems/folder_green_open.png +share/icons/hicolor/32x32/filesystems/folder_grey.png +share/icons/hicolor/32x32/filesystems/folder_grey_open.png share/icons/hicolor/32x32/filesystems/folder_home.png +share/icons/hicolor/32x32/filesystems/folder_html.png +share/icons/hicolor/32x32/filesystems/folder_image.png share/icons/hicolor/32x32/filesystems/folder_locked.png +share/icons/hicolor/32x32/filesystems/folder_man.png share/icons/hicolor/32x32/filesystems/folder_open.png share/icons/hicolor/32x32/filesystems/folder_orange.png share/icons/hicolor/32x32/filesystems/folder_orange_open.png share/icons/hicolor/32x32/filesystems/folder_red.png share/icons/hicolor/32x32/filesystems/folder_red_open.png +share/icons/hicolor/32x32/filesystems/folder_sound.png +share/icons/hicolor/32x32/filesystems/folder_tar.png +share/icons/hicolor/32x32/filesystems/folder_txt.png +share/icons/hicolor/32x32/filesystems/folder_video.png +share/icons/hicolor/32x32/filesystems/folder_violet.png +share/icons/hicolor/32x32/filesystems/folder_violet_open.png +share/icons/hicolor/32x32/filesystems/folder_wordprocessing.png share/icons/hicolor/32x32/filesystems/folder_yellow.png share/icons/hicolor/32x32/filesystems/folder_yellow_open.png share/icons/hicolor/32x32/filesystems/ftp.png @@ -1428,6 +1662,7 @@ share/icons/hicolor/32x32/mimetypes/binary2.png share/icons/hicolor/32x32/mimetypes/core.png share/icons/hicolor/32x32/mimetypes/deb.png share/icons/hicolor/32x32/mimetypes/document.png +share/icons/hicolor/32x32/mimetypes/document2.png share/icons/hicolor/32x32/mimetypes/dvi.png share/icons/hicolor/32x32/mimetypes/font_bitmap.png share/icons/hicolor/32x32/mimetypes/font_truetype.png @@ -1477,6 +1712,7 @@ share/icons/hicolor/32x32/mimetypes/unknown.png share/icons/hicolor/32x32/mimetypes/vcalendar.png share/icons/hicolor/32x32/mimetypes/vcard.png share/icons/hicolor/32x32/mimetypes/video.png +share/icons/hicolor/32x32/mimetypes/wordprocessing.png share/icons/hicolor/48x48/actions/kde/0001.png share/icons/hicolor/48x48/actions/kde/0002.png share/icons/hicolor/48x48/actions/kde/0003.png @@ -1540,13 +1776,25 @@ share/icons/hicolor/48x48/filesystems/folder_cyan.png share/icons/hicolor/48x48/filesystems/folder_cyan_open.png share/icons/hicolor/48x48/filesystems/folder_green.png share/icons/hicolor/48x48/filesystems/folder_green_open.png +share/icons/hicolor/48x48/filesystems/folder_grey.png +share/icons/hicolor/48x48/filesystems/folder_grey_open.png share/icons/hicolor/48x48/filesystems/folder_home.png +share/icons/hicolor/48x48/filesystems/folder_html.png +share/icons/hicolor/48x48/filesystems/folder_image.png share/icons/hicolor/48x48/filesystems/folder_locked.png +share/icons/hicolor/48x48/filesystems/folder_man.png share/icons/hicolor/48x48/filesystems/folder_open.png share/icons/hicolor/48x48/filesystems/folder_orange.png share/icons/hicolor/48x48/filesystems/folder_orange_open.png share/icons/hicolor/48x48/filesystems/folder_red.png share/icons/hicolor/48x48/filesystems/folder_red_open.png +share/icons/hicolor/48x48/filesystems/folder_sound.png +share/icons/hicolor/48x48/filesystems/folder_tar.png +share/icons/hicolor/48x48/filesystems/folder_txt.png +share/icons/hicolor/48x48/filesystems/folder_video.png +share/icons/hicolor/48x48/filesystems/folder_violet.png +share/icons/hicolor/48x48/filesystems/folder_violet_open.png +share/icons/hicolor/48x48/filesystems/folder_wordprocessing.png share/icons/hicolor/48x48/filesystems/folder_yellow.png share/icons/hicolor/48x48/filesystems/folder_yellow_open.png share/icons/hicolor/48x48/filesystems/ftp.png @@ -1565,6 +1813,7 @@ share/icons/hicolor/48x48/mimetypes/binary2.png share/icons/hicolor/48x48/mimetypes/core.png share/icons/hicolor/48x48/mimetypes/deb.png share/icons/hicolor/48x48/mimetypes/document.png +share/icons/hicolor/48x48/mimetypes/document2.png share/icons/hicolor/48x48/mimetypes/dvi.png share/icons/hicolor/48x48/mimetypes/font_bitmap.png share/icons/hicolor/48x48/mimetypes/font_truetype.png @@ -1614,6 +1863,7 @@ share/icons/hicolor/48x48/mimetypes/unknown.png share/icons/hicolor/48x48/mimetypes/vcalendar.png share/icons/hicolor/48x48/mimetypes/vcard.png share/icons/hicolor/48x48/mimetypes/video.png +share/icons/hicolor/48x48/mimetypes/wordprocessing.png share/icons/hicolor/index.desktop share/icons/locolor/16x16/actions/1downarrow.png share/icons/locolor/16x16/actions/1leftarrow.png @@ -1633,6 +1883,7 @@ share/icons/locolor/16x16/actions/bookmark_toolbar.png share/icons/locolor/16x16/actions/bottom.png share/icons/locolor/16x16/actions/colorize.png share/icons/locolor/16x16/actions/colorpicker.png +share/icons/locolor/16x16/actions/completion.png share/icons/locolor/16x16/actions/configure.png share/icons/locolor/16x16/actions/connect_creating.png share/icons/locolor/16x16/actions/connect_established.png @@ -1643,6 +1894,7 @@ share/icons/locolor/16x16/actions/crop.png share/icons/locolor/16x16/actions/decrypted.png share/icons/locolor/16x16/actions/down.png share/icons/locolor/16x16/actions/edit.png +share/icons/locolor/16x16/actions/editclear.png share/icons/locolor/16x16/actions/editcopy.png share/icons/locolor/16x16/actions/editcut.png share/icons/locolor/16x16/actions/editdelete.png @@ -1722,6 +1974,7 @@ share/icons/locolor/16x16/actions/kde/0047.png share/icons/locolor/16x16/actions/kde/0048.png share/icons/locolor/16x16/actions/kde/0049.png share/icons/locolor/16x16/actions/kde/0050.png +share/icons/locolor/16x16/actions/locationbar_erase.png share/icons/locolor/16x16/actions/lock.png share/icons/locolor/16x16/actions/mail_forward.png share/icons/locolor/16x16/actions/mail_generic.png @@ -1961,6 +2214,7 @@ share/mimelnk/application/msexcel.desktop share/mimelnk/application/msexcel2.desktop share/mimelnk/application/mspowerpoint.desktop share/mimelnk/application/msword.desktop +share/mimelnk/application/msword2.desktop share/mimelnk/application/octet-stream.desktop share/mimelnk/application/pdf.desktop share/mimelnk/application/postscript.desktop @@ -2026,6 +2280,7 @@ share/mimelnk/image/png.desktop share/mimelnk/image/tiff.desktop share/mimelnk/image/x-bmp.desktop share/mimelnk/image/x-eps.desktop +share/mimelnk/image/x-ico.desktop share/mimelnk/image/x-photo-cd.desktop share/mimelnk/image/x-xbm.desktop share/mimelnk/image/x-xpm.desktop @@ -2042,14 +2297,18 @@ share/mimelnk/text/css.desktop share/mimelnk/text/english.desktop share/mimelnk/text/html.desktop share/mimelnk/text/plain.desktop +share/mimelnk/text/rdf.desktop +share/mimelnk/text/rss.desktop share/mimelnk/text/rtf.desktop share/mimelnk/text/sgml.desktop +share/mimelnk/text/x-bibtex.desktop share/mimelnk/text/x-c++hdr.desktop share/mimelnk/text/x-c++src.desktop share/mimelnk/text/x-chdr.desktop share/mimelnk/text/x-csrc.desktop share/mimelnk/text/x-diff.desktop share/mimelnk/text/x-java.desktop +share/mimelnk/text/x-log.desktop share/mimelnk/text/x-makefile.desktop share/mimelnk/text/x-moc.desktop share/mimelnk/text/x-pascal.desktop @@ -2073,33 +2332,89 @@ share/services/gif.kimgio share/services/http.protocol share/services/http_cache_cleaner.desktop share/services/https.protocol +share/services/ico.kimgio share/services/jpeg.kimgio +share/services/kauthplainmodule.desktop +share/services/kbzip2filter.desktop share/services/kcookiejar.desktop +share/services/kgzipfilter.desktop share/services/khtml.desktop +share/services/khtmlimage.desktop share/services/kio_uiserver.desktop share/services/kmailservice.protocol -share/services/knewsservice.protocol share/services/knotify.desktop share/services/krl.kimgio share/services/png.kimgio share/services/pnm.kimgio +share/services/rlogin.protocol +share/services/telnet.protocol share/services/tiff.kimgio share/services/xbm.kimgio share/services/xpm.kimgio share/services/xv.kimgio share/servicetypes/application.desktop share/servicetypes/browserview.desktop +share/servicetypes/kcomprfilter.desktop share/servicetypes/kpart.desktop share/servicetypes/kpropsdlgplugin.desktop share/servicetypes/krop.desktop share/servicetypes/krwp.desktop +share/servicetypes/ksasl.desktop share/servicetypes/ktexteditor.desktop share/servicetypes/kurifilterplugin.desktop +@dirrm share/servicetypes +@dirrm share/services +@dirrm share/mimelnk/video +@dirrm share/mimelnk/text +@dirrm share/mimelnk/message +@dirrm share/mimelnk/inode +@dirrm share/mimelnk/image +@dirrm share/mimelnk/audio +@dirrm share/mimelnk/application +@dirrm share/mimelnk/all +@dirrm share/mimelnk +@dirrm share/icons/locolor/32x32/mimetypes +@dirrm share/icons/locolor/32x32/filesystems +@dirrm share/icons/locolor/32x32/actions +@dirrm share/icons/locolor/32x32 +@dirrm share/icons/locolor/16x16/mimetypes +@dirrm share/icons/locolor/16x16/filesystems +@dirrm share/icons/locolor/16x16/actions/kde +@dirrm share/icons/locolor/16x16/actions +@dirrm share/icons/locolor/16x16 +@dirrm share/icons/locolor +@dirrm share/icons/hicolor/48x48/mimetypes +@dirrm share/icons/hicolor/48x48/filesystems +@dirrm share/icons/hicolor/48x48/actions/kde +@dirrm share/icons/hicolor/48x48/actions +@dirrm share/icons/hicolor/48x48 +@dirrm share/icons/hicolor/32x32/mimetypes +@dirrm share/icons/hicolor/32x32/filesystems +@dirrm share/icons/hicolor/32x32/actions/kde +@dirrm share/icons/hicolor/32x32/actions +@dirrm share/icons/hicolor/32x32 +@dirrm share/icons/hicolor/22x22/actions/kde +@dirrm share/icons/hicolor/22x22/actions +@dirrm share/icons/hicolor/22x22 +@dirrm share/icons/hicolor/16x16/mimetypes +@dirrm share/icons/hicolor/16x16/filesystems +@dirrm share/icons/hicolor/16x16/actions +@dirrm share/icons/hicolor/16x16 +@dirrm share/icons/hicolor @dirrm share/doc/HTML/en/kspell +@dirrm share/doc/HTML/en/common +@dirrm share/doc/HTML/en +@dirrm share/doc/HTML +@dirrm share/config/ui +@dirrm share/config/colors +@dirrm share/config @dirrm share/apps/kstyle/themes @dirrm share/apps/kstyle/pixmaps @dirrm share/apps/kstyle @dirrm share/apps/kssl/caroot +@dirrm share/apps/kssl +@dirrm share/apps/ksgmltools/zh-TW/entities +@dirrm share/apps/ksgmltools/zh-TW @dirrm share/apps/ksgmltools/zh-CN/entities @dirrm share/apps/ksgmltools/zh-CN @dirrm share/apps/ksgmltools/sv/entities @@ -2125,6 +2440,8 @@ share/servicetypes/kurifilterplugin.desktop @dirrm share/apps/ksgmltools/no @dirrm share/apps/ksgmltools/nl/entities @dirrm share/apps/ksgmltools/nl +@dirrm share/apps/ksgmltools/ko/entities +@dirrm share/apps/ksgmltools/ko @dirrm share/apps/ksgmltools/ja/entities @dirrm share/apps/ksgmltools/ja @dirrm share/apps/ksgmltools/it/entities @@ -2154,7 +2471,7 @@ share/servicetypes/kurifilterplugin.desktop @dirrm share/apps/ksgmltools/ca/entities @dirrm share/apps/ksgmltools/ca @dirrm share/apps/ksgmltools -@dirrm share/apps/kssl +@dirrm share/apps/knotify @dirrm share/apps/kjava @dirrm share/apps/kio_uiserver/icons/locolor/16x16/apps @dirrm share/apps/kio_uiserver/icons/locolor/16x16 @@ -2174,13 +2491,17 @@ share/servicetypes/kurifilterplugin.desktop @dirrm share/apps/khtml @dirrm share/apps/kdeui/pics @dirrm share/apps/kdeui +@dirrm share/apps/kab/pics @dirrm share/apps/kab @dirrm share/apps/LICENSES +@dirrm share/apps @dirrm lib/mcop/Arts @dirrm lib/mcop +@dirrm lib/kde2 @dirrm include/libkmid @dirrm include/kparts @dirrm include/kjs +@dirrm include/kio/sasl @dirrm include/kio @dirrm include/kdesu @dirrm include/dom |