summaryrefslogtreecommitdiff
path: root/multimedia/kplayer-kde4
diff options
context:
space:
mode:
Diffstat (limited to 'multimedia/kplayer-kde4')
-rw-r--r--multimedia/kplayer-kde4/Makefile26
-rw-r--r--multimedia/kplayer-kde4/distinfo3
-rw-r--r--multimedia/kplayer-kde4/files/patch-kplayerproperties.h11
-rw-r--r--multimedia/kplayer-kde4/files/patch-kplayerpropertiesdialog.cpp112
-rw-r--r--multimedia/kplayer-kde4/files/patch-kplayersettings.h11
-rw-r--r--multimedia/kplayer-kde4/files/patch-kplayersettingsdialog.cpp29
-rw-r--r--multimedia/kplayer-kde4/pkg-descr12
-rw-r--r--multimedia/kplayer-kde4/pkg-plist256
8 files changed, 0 insertions, 460 deletions
diff --git a/multimedia/kplayer-kde4/Makefile b/multimedia/kplayer-kde4/Makefile
deleted file mode 100644
index b9c796fe466a..000000000000
--- a/multimedia/kplayer-kde4/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-# New ports collection makefile for: kplayer
-# Date created: Fri Apr 11 09:12:55 CEST 2003
-# Whom: Stefan Eßer <se@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= kplayer
-PORTVERSION= 0.5.3
-CATEGORIES= multimedia kde
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
-MASTER_SITE_SUBDIR= ${PORTNAME}
-
-MAINTAINER= se@FreeBSD.org
-COMMENT= Movie player based on mplayer
-
-RUN_DEPENDS= mplayer:${PORTSDIR}/multimedia/mplayer
-
-USE_BZIP2= yes
-USE_GMAKE= yes
-USE_KDELIBS_VER=3
-PREFIX= ${KDE_PREFIX}
-
-USE_AUTOTOOLS= libtool:15
-
-.include <bsd.port.mk>
diff --git a/multimedia/kplayer-kde4/distinfo b/multimedia/kplayer-kde4/distinfo
deleted file mode 100644
index f223fd6aaa10..000000000000
--- a/multimedia/kplayer-kde4/distinfo
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 (kplayer-0.5.3.tar.bz2) = ea7398f96efa2f01ac875c548ab01878
-SHA256 (kplayer-0.5.3.tar.bz2) = d08ab0046734294eea59818395a023426fa722fbe8baccad26081bfcb9e8c9cf
-SIZE (kplayer-0.5.3.tar.bz2) = 3156593
diff --git a/multimedia/kplayer-kde4/files/patch-kplayerproperties.h b/multimedia/kplayer-kde4/files/patch-kplayerproperties.h
deleted file mode 100644
index c9db6de3e5fe..000000000000
--- a/multimedia/kplayer-kde4/files/patch-kplayerproperties.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- kplayer/kplayerproperties.h.orig Sat Oct 16 01:58:03 2004
-+++ kplayer/kplayerproperties.h Sat Oct 16 01:58:43 2004
-@@ -349,7 +349,7 @@
- // Advanced properties
-
- QString executablePathValue (void) const
-- { return m_executable_path.isEmpty() ? "mplayer" : m_executable_path; }
-+ { return m_executable_path.isEmpty() ? QString::fromLatin1("mplayer") : m_executable_path; }
- void setExecutablePathValue (QString path)
- { m_executable_path = path; }
-
diff --git a/multimedia/kplayer-kde4/files/patch-kplayerpropertiesdialog.cpp b/multimedia/kplayer-kde4/files/patch-kplayerpropertiesdialog.cpp
deleted file mode 100644
index e67ac1c665a9..000000000000
--- a/multimedia/kplayer-kde4/files/patch-kplayerpropertiesdialog.cpp
+++ /dev/null
@@ -1,112 +0,0 @@
---- kplayer/kplayerpropertiesdialog.cpp.orig Sat Oct 16 02:14:58 2004
-+++ kplayer/kplayerpropertiesdialog.cpp Sat Oct 16 02:13:17 2004
-@@ -153,7 +153,7 @@
- config -> deleteEntry ("Properties Dialog Page");
- else
- config -> writeEntry ("Properties Dialog Page", name);
-- setHelp (name.isEmpty() ? "properties" : "properties-" + name);
-+ setHelp (name.isEmpty() ? QString::fromLatin1("properties") : "properties-" + name);
- }
-
- void KPlayerPropertiesDialog::slotOk (void)
-@@ -191,8 +191,8 @@
- c_name -> setText (m_properties -> name());
- c_playlist -> setCurrentItem (m_properties -> playlistOption());
- c_length -> setText (timeString (m_properties -> length()));
-- c_original_width -> setText (m_properties -> originalSize().isEmpty() ? "" : QString::number (m_properties -> originalSize().width()));
-- c_original_height -> setText (m_properties -> originalSize().isEmpty() ? "" : QString::number (m_properties -> originalSize().height()));
-+ c_original_width -> setText (m_properties -> originalSize().isEmpty() ? QString::fromLatin1("") : QString::number (m_properties -> originalSize().width()));
-+ c_original_height -> setText (m_properties -> originalSize().isEmpty() ? QString::fromLatin1("") : QString::number (m_properties -> originalSize().height()));
- c_display_size -> setCurrentItem (m_properties -> displaySizeOption());
- displaySizeChanged (c_display_size -> currentItem());
- c_maintain_aspect -> setCurrentItem (m_properties -> maintainAspectOption() + 1);
-@@ -266,7 +266,7 @@
-
- void KPlayerPropertiesSubtitles::autoloadChanged (int option)
- {
-- c_url -> setText (option < 2 || m_properties -> subtitleUrl().isEmpty() ? ""
-+ c_url -> setText (option < 2 || m_properties -> subtitleUrl().isEmpty() ? QString::fromLatin1("")
- : m_properties -> subtitleUrl().isLocalFile() ? m_properties -> subtitleUrl().path()
- : m_properties -> subtitleUrl().url());
- c_url -> setEnabled (option == 2);
-@@ -274,7 +274,7 @@
-
- void KPlayerPropertiesSubtitles::positionChanged (int option)
- {
-- c_position -> setText (option > 0 ? QString::number (m_properties -> subtitlePositionValue()) : "");
-+ c_position -> setText (option > 0 ? QString::number (m_properties -> subtitlePositionValue()) : QString::fromLatin1(""));
- c_position -> setEnabled (option > 0);
- if ( option > 0 && sender() )
- {
-@@ -285,7 +285,7 @@
-
- void KPlayerPropertiesSubtitles::delayChanged (int option)
- {
-- c_delay -> setText (option > 0 ? QString::number (m_properties -> subtitleDelayValue()) : "");
-+ c_delay -> setText (option > 0 ? QString::number (m_properties -> subtitleDelayValue()) : QString::fromLatin1(""));
- c_delay -> setEnabled (option > 0);
- if ( option > 0 && sender() )
- {
-@@ -348,7 +348,7 @@
-
- void KPlayerPropertiesAudio::volumeChanged (int option)
- {
-- c_volume -> setText (option > 0 ? QString::number (m_properties -> volumeValue()) : "");
-+ c_volume -> setText (option > 0 ? QString::number (m_properties -> volumeValue()) : QString::fromLatin1(""));
- c_volume -> setEnabled (option > 0);
- if ( option > 0 && sender() )
- {
-@@ -359,7 +359,7 @@
-
- void KPlayerPropertiesAudio::delayChanged (int option)
- {
-- c_delay -> setText (option > 0 ? QString::number (m_properties -> audioDelayValue()) : "");
-+ c_delay -> setText (option > 0 ? QString::number (m_properties -> audioDelayValue()) : QString::fromLatin1(""));
- c_delay -> setEnabled (option > 0);
- if ( option > 0 && sender() )
- {
-@@ -441,7 +441,7 @@
-
- void KPlayerPropertiesVideo::contrastChanged (int option)
- {
-- c_contrast -> setText (option > 0 ? QString::number (m_properties -> contrastValue()) : "");
-+ c_contrast -> setText (option > 0 ? QString::number (m_properties -> contrastValue()) : QString::fromLatin1(""));
- c_contrast -> setEnabled (option > 0);
- if ( option > 0 && sender() )
- {
-@@ -452,7 +452,7 @@
-
- void KPlayerPropertiesVideo::brightnessChanged (int option)
- {
-- c_brightness -> setText (option > 0 ? QString::number (m_properties -> brightnessValue()) : "");
-+ c_brightness -> setText (option > 0 ? QString::number (m_properties -> brightnessValue()) : QString::fromLatin1(""));
- c_brightness -> setEnabled (option > 0);
- if ( option > 0 && sender() )
- {
-@@ -463,7 +463,7 @@
-
- void KPlayerPropertiesVideo::hueChanged (int option)
- {
-- c_hue -> setText (option > 0 ? QString::number (m_properties -> hueValue()) : "");
-+ c_hue -> setText (option > 0 ? QString::number (m_properties -> hueValue()) : QString::fromLatin1(""));
- c_hue -> setEnabled (option > 0);
- if ( option > 0 && sender() )
- {
-@@ -474,7 +474,7 @@
-
- void KPlayerPropertiesVideo::saturationChanged (int option)
- {
-- c_saturation -> setText (option > 0 ? QString::number (m_properties -> saturationValue()) : "");
-+ c_saturation -> setText (option > 0 ? QString::number (m_properties -> saturationValue()) : QString::fromLatin1(""));
- c_saturation -> setEnabled (option > 0);
- if ( option > 0 && sender() )
- {
-@@ -524,7 +524,7 @@
-
- void KPlayerPropertiesAdvanced::commandLineChanged (int option)
- {
-- c_command_line -> setText (option > 0 ? m_properties -> commandLineValue() : "");
-+ c_command_line -> setText (option > 0 ? m_properties -> commandLineValue() : QString::fromLatin1(""));
- c_command_line -> setEnabled (option > 0);
- if ( option > 0 && sender() )
- {
diff --git a/multimedia/kplayer-kde4/files/patch-kplayersettings.h b/multimedia/kplayer-kde4/files/patch-kplayersettings.h
deleted file mode 100644
index da34272e09c3..000000000000
--- a/multimedia/kplayer-kde4/files/patch-kplayersettings.h
+++ /dev/null
@@ -1,11 +0,0 @@
---- kplayer/kplayersettings.h.orig Sat Oct 16 02:00:48 2004
-+++ kplayer/kplayersettings.h Sat Oct 16 02:01:22 2004
-@@ -982,7 +982,7 @@
- }
-
- QString executablePathDefault (void) const
-- { return m_executable_path_default.isEmpty() ? "mplayer" : m_executable_path_default; }
-+ { return m_executable_path_default.isEmpty() ? QString::fromLatin1("mplayer") : m_executable_path_default; }
- void setExecutablePathDefault (QString path)
- { m_executable_path_default = path; }
-
diff --git a/multimedia/kplayer-kde4/files/patch-kplayersettingsdialog.cpp b/multimedia/kplayer-kde4/files/patch-kplayersettingsdialog.cpp
deleted file mode 100644
index 5cc882a58ec6..000000000000
--- a/multimedia/kplayer-kde4/files/patch-kplayersettingsdialog.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
---- kplayer/kplayersettingsdialog.cpp.orig Sat Oct 16 02:16:39 2004
-+++ kplayer/kplayersettingsdialog.cpp Sat Oct 16 02:17:35 2004
-@@ -271,7 +271,7 @@
- config -> deleteEntry ("Settings Dialog Page");
- else
- config -> writeEntry ("Settings Dialog Page", name);
-- setHelp (name.isEmpty() ? "settings" : "settings-" + name);
-+ setHelp (name.isEmpty() ? QString::fromLatin1("settings") : "settings-" + name);
- }
-
- void KPlayerSettingsDialog::slotOk (void)
-@@ -435,7 +435,7 @@
- KPlayerSettings* settings = kPlayerSettings();
- c_driver_fallback -> setChecked (index > 0 && settings -> audioDriverFallbackDefault());
- c_driver_fallback -> setEnabled (index > 0);
-- c_device -> setText (index > 0 ? settings -> audioDeviceDefault() : "");
-+ c_device -> setText (index > 0 ? settings -> audioDeviceDefault() : QString::fromLatin1(""));
- c_device -> setEnabled (index > 0);
- }
-
-@@ -792,7 +792,7 @@
- KPlayerSettings* settings = kPlayerSettings();
- c_driver_fallback -> setChecked (index > 0 && settings -> videoDriverFallbackDefault());
- c_driver_fallback -> setEnabled (index > 0);
-- c_device -> setText (index > 0 ? settings -> videoDeviceDefault() : "");
-+ c_device -> setText (index > 0 ? settings -> videoDeviceDefault() : QString::fromLatin1(""));
- c_device -> setEnabled (index > 0);
- }
-
diff --git a/multimedia/kplayer-kde4/pkg-descr b/multimedia/kplayer-kde4/pkg-descr
deleted file mode 100644
index ba9cd08fb507..000000000000
--- a/multimedia/kplayer-kde4/pkg-descr
+++ /dev/null
@@ -1,12 +0,0 @@
-KPlayer is a KDE media player based on MPlayer, www.mplayerhq.hu.
-
-Features include video, audio and subtitle playback from file, URL, DVD, VCD,
-audio CD, TV, etc.; volume, contrast, brightness, hue and saturation controls;
-zooming, full screen and fixed aspect options; status and progress display
-and seeking; user friendly interface.
-
-Among planned enhancements are configuration dialog, global and per-file
-options, playlist, further KDE integration, MPlayer config file handling,
-support for media encoding.
-
-WWW: http://sourceforge.net/projects/kplayer
diff --git a/multimedia/kplayer-kde4/pkg-plist b/multimedia/kplayer-kde4/pkg-plist
deleted file mode 100644
index 179282fc7c65..000000000000
--- a/multimedia/kplayer-kde4/pkg-plist
+++ /dev/null
@@ -1,256 +0,0 @@
-bin/kplayer
-lib/kde3/kfile_kplayer.a
-lib/kde3/kfile_kplayer.la
-lib/kde3/kfile_kplayer.so
-lib/kde3/libkplayerpart.a
-lib/kde3/libkplayerpart.la
-lib/kde3/libkplayerpart.so
-share/applnk/Multimedia/kplayer.desktop
-share/apps/kplayer/icons/hicolor/16x16/actions/brightness.png
-share/apps/kplayer/icons/hicolor/16x16/actions/contrast.png
-share/apps/kplayer/icons/hicolor/16x16/actions/fileopen.png
-share/apps/kplayer/icons/hicolor/16x16/actions/fileopenurl.png
-share/apps/kplayer/icons/hicolor/16x16/actions/hue.png
-share/apps/kplayer/icons/hicolor/16x16/actions/lock.png
-share/apps/kplayer/icons/hicolor/16x16/actions/loop.png
-share/apps/kplayer/icons/hicolor/16x16/actions/mute.png
-share/apps/kplayer/icons/hicolor/16x16/actions/player_fwd.png
-share/apps/kplayer/icons/hicolor/16x16/actions/player_pause.png
-share/apps/kplayer/icons/hicolor/16x16/actions/player_play.png
-share/apps/kplayer/icons/hicolor/16x16/actions/player_rew.png
-share/apps/kplayer/icons/hicolor/16x16/actions/player_stop.png
-share/apps/kplayer/icons/hicolor/16x16/actions/properties.png
-share/apps/kplayer/icons/hicolor/16x16/actions/saturation.png
-share/apps/kplayer/icons/hicolor/16x16/actions/shuffle.png
-share/apps/kplayer/icons/hicolor/16x16/actions/viewmag+.png
-share/apps/kplayer/icons/hicolor/16x16/actions/viewmag-.png
-share/apps/kplayer/icons/hicolor/16x16/actions/viewmagfit.png
-share/apps/kplayer/icons/hicolor/16x16/actions/volume.png
-share/apps/kplayer/icons/hicolor/16x16/actions/window_fullscreen.png
-share/apps/kplayer/icons/hicolor/22x22/actions/brightness.png
-share/apps/kplayer/icons/hicolor/22x22/actions/contrast.png
-share/apps/kplayer/icons/hicolor/22x22/actions/fileopen.png
-share/apps/kplayer/icons/hicolor/22x22/actions/fileopenurl.png
-share/apps/kplayer/icons/hicolor/22x22/actions/hue.png
-share/apps/kplayer/icons/hicolor/22x22/actions/lock.png
-share/apps/kplayer/icons/hicolor/22x22/actions/loop.png
-share/apps/kplayer/icons/hicolor/22x22/actions/mute.png
-share/apps/kplayer/icons/hicolor/22x22/actions/player_fwd.png
-share/apps/kplayer/icons/hicolor/22x22/actions/player_pause.png
-share/apps/kplayer/icons/hicolor/22x22/actions/player_play.png
-share/apps/kplayer/icons/hicolor/22x22/actions/player_rew.png
-share/apps/kplayer/icons/hicolor/22x22/actions/player_stop.png
-share/apps/kplayer/icons/hicolor/22x22/actions/properties.png
-share/apps/kplayer/icons/hicolor/22x22/actions/saturation.png
-share/apps/kplayer/icons/hicolor/22x22/actions/shuffle.png
-share/apps/kplayer/icons/hicolor/22x22/actions/viewmag+.png
-share/apps/kplayer/icons/hicolor/22x22/actions/viewmag-.png
-share/apps/kplayer/icons/hicolor/22x22/actions/viewmagfit.png
-share/apps/kplayer/icons/hicolor/22x22/actions/volume.png
-share/apps/kplayer/icons/hicolor/22x22/actions/window_fullscreen.png
-share/apps/kplayer/icons/hicolor/32x32/actions/brightness.png
-share/apps/kplayer/icons/hicolor/32x32/actions/contrast.png
-share/apps/kplayer/icons/hicolor/32x32/actions/fileopen.png
-share/apps/kplayer/icons/hicolor/32x32/actions/fileopenurl.png
-share/apps/kplayer/icons/hicolor/32x32/actions/hue.png
-share/apps/kplayer/icons/hicolor/32x32/actions/lock.png
-share/apps/kplayer/icons/hicolor/32x32/actions/loop.png
-share/apps/kplayer/icons/hicolor/32x32/actions/mute.png
-share/apps/kplayer/icons/hicolor/32x32/actions/player_fwd.png
-share/apps/kplayer/icons/hicolor/32x32/actions/player_pause.png
-share/apps/kplayer/icons/hicolor/32x32/actions/player_play.png
-share/apps/kplayer/icons/hicolor/32x32/actions/player_rew.png
-share/apps/kplayer/icons/hicolor/32x32/actions/player_stop.png
-share/apps/kplayer/icons/hicolor/32x32/actions/properties.png
-share/apps/kplayer/icons/hicolor/32x32/actions/saturation.png
-share/apps/kplayer/icons/hicolor/32x32/actions/shuffle.png
-share/apps/kplayer/icons/hicolor/32x32/actions/viewmag+.png
-share/apps/kplayer/icons/hicolor/32x32/actions/viewmag-.png
-share/apps/kplayer/icons/hicolor/32x32/actions/viewmagfit.png
-share/apps/kplayer/icons/hicolor/32x32/actions/volume.png
-share/apps/kplayer/icons/hicolor/32x32/actions/window_fullscreen.png
-share/apps/kplayer/input.conf
-share/apps/kplayer/kplayerpartui.rc
-share/apps/kplayer/kplayerui.rc
-share/doc/HTML/da/kplayer/basics.docbook
-share/doc/HTML/da/kplayer/commands.docbook
-share/doc/HTML/da/kplayer/common
-share/doc/HTML/da/kplayer/configuration.docbook
-share/doc/HTML/da/kplayer/howto-bug-reporting.docbook
-share/doc/HTML/da/kplayer/howto-compilation.docbook
-share/doc/HTML/da/kplayer/howto-configuration.docbook
-share/doc/HTML/da/kplayer/howto-devices.docbook
-share/doc/HTML/da/kplayer/howto-full-screen.docbook
-share/doc/HTML/da/kplayer/howto-installation.docbook
-share/doc/HTML/da/kplayer/howto-playlist.docbook
-share/doc/HTML/da/kplayer/howto-properties.docbook
-share/doc/HTML/da/kplayer/howto-settings.docbook
-share/doc/HTML/da/kplayer/howto-slaves.docbook
-share/doc/HTML/da/kplayer/howto-streams.docbook
-share/doc/HTML/da/kplayer/howto-subtitles.docbook
-share/doc/HTML/da/kplayer/howto-translation.docbook
-share/doc/HTML/da/kplayer/howto-troubleshooting.docbook
-share/doc/HTML/da/kplayer/howto.docbook
-share/doc/HTML/da/kplayer/index.cache.bz2
-share/doc/HTML/da/kplayer/index.docbook
-share/doc/HTML/da/kplayer/introduction.docbook
-share/doc/HTML/da/kplayer/properties.docbook
-share/doc/HTML/da/kplayer/settings.docbook
-share/doc/HTML/en/kplayer/basics.docbook
-share/doc/HTML/en/kplayer/commands.docbook
-share/doc/HTML/en/kplayer/common
-share/doc/HTML/en/kplayer/configuration.docbook
-share/doc/HTML/en/kplayer/dvd-bear.png
-share/doc/HTML/en/kplayer/howto-bug-reporting.docbook
-share/doc/HTML/en/kplayer/howto-compilation.docbook
-share/doc/HTML/en/kplayer/howto-configuration.docbook
-share/doc/HTML/en/kplayer/howto-devices.docbook
-share/doc/HTML/en/kplayer/howto-full-screen.docbook
-share/doc/HTML/en/kplayer/howto-installation.docbook
-share/doc/HTML/en/kplayer/howto-playlist.docbook
-share/doc/HTML/en/kplayer/howto-properties.docbook
-share/doc/HTML/en/kplayer/howto-settings.docbook
-share/doc/HTML/en/kplayer/howto-slaves.docbook
-share/doc/HTML/en/kplayer/howto-streams.docbook
-share/doc/HTML/en/kplayer/howto-subtitles.docbook
-share/doc/HTML/en/kplayer/howto-translation.docbook
-share/doc/HTML/en/kplayer/howto-troubleshooting.docbook
-share/doc/HTML/en/kplayer/howto.docbook
-share/doc/HTML/en/kplayer/index.cache.bz2
-share/doc/HTML/en/kplayer/index.docbook
-share/doc/HTML/en/kplayer/introduction.docbook
-share/doc/HTML/en/kplayer/properties-advanced.png
-share/doc/HTML/en/kplayer/properties-audio.png
-share/doc/HTML/en/kplayer/properties-general.png
-share/doc/HTML/en/kplayer/properties-subtitles.png
-share/doc/HTML/en/kplayer/properties-video.png
-share/doc/HTML/en/kplayer/properties.docbook
-share/doc/HTML/en/kplayer/settings-advanced.png
-share/doc/HTML/en/kplayer/settings-audio.png
-share/doc/HTML/en/kplayer/settings-brightness.png
-share/doc/HTML/en/kplayer/settings-contrast.png
-share/doc/HTML/en/kplayer/settings-controls.png
-share/doc/HTML/en/kplayer/settings-general.png
-share/doc/HTML/en/kplayer/settings-hue.png
-share/doc/HTML/en/kplayer/settings-messages.png
-share/doc/HTML/en/kplayer/settings-playlist.png
-share/doc/HTML/en/kplayer/settings-progress.png
-share/doc/HTML/en/kplayer/settings-saturation.png
-share/doc/HTML/en/kplayer/settings-sliders.png
-share/doc/HTML/en/kplayer/settings-subtitles.png
-share/doc/HTML/en/kplayer/settings-video.png
-share/doc/HTML/en/kplayer/settings-volume.png
-share/doc/HTML/en/kplayer/settings.docbook
-share/doc/HTML/en/kplayer/shortcuts-configure.png
-share/doc/HTML/en/kplayer/shortcuts-define.png
-share/doc/HTML/pt/kplayer/basics.docbook
-share/doc/HTML/pt/kplayer/commands.docbook
-share/doc/HTML/pt/kplayer/common
-share/doc/HTML/pt/kplayer/configuration.docbook
-share/doc/HTML/pt/kplayer/howto-bug-reporting.docbook
-share/doc/HTML/pt/kplayer/howto-compilation.docbook
-share/doc/HTML/pt/kplayer/howto-configuration.docbook
-share/doc/HTML/pt/kplayer/howto-devices.docbook
-share/doc/HTML/pt/kplayer/howto-full-screen.docbook
-share/doc/HTML/pt/kplayer/howto-installation.docbook
-share/doc/HTML/pt/kplayer/howto-playlist.docbook
-share/doc/HTML/pt/kplayer/howto-properties.docbook
-share/doc/HTML/pt/kplayer/howto-settings.docbook
-share/doc/HTML/pt/kplayer/howto-slaves.docbook
-share/doc/HTML/pt/kplayer/howto-streams.docbook
-share/doc/HTML/pt/kplayer/howto-subtitles.docbook
-share/doc/HTML/pt/kplayer/howto-translation.docbook
-share/doc/HTML/pt/kplayer/howto-troubleshooting.docbook
-share/doc/HTML/pt/kplayer/howto.docbook
-share/doc/HTML/pt/kplayer/index.cache.bz2
-share/doc/HTML/pt/kplayer/index.docbook
-share/doc/HTML/pt/kplayer/introduction.docbook
-share/doc/HTML/pt/kplayer/properties.docbook
-share/doc/HTML/pt/kplayer/settings.docbook
-share/doc/HTML/sv/kplayer/basics.docbook
-share/doc/HTML/sv/kplayer/commands.docbook
-share/doc/HTML/sv/kplayer/common
-share/doc/HTML/sv/kplayer/configuration.docbook
-share/doc/HTML/sv/kplayer/howto-bug-reporting.docbook
-share/doc/HTML/sv/kplayer/howto-compilation.docbook
-share/doc/HTML/sv/kplayer/howto-configuration.docbook
-share/doc/HTML/sv/kplayer/dvd-bear.png
-share/doc/HTML/sv/kplayer/howto-devices.docbook
-share/doc/HTML/sv/kplayer/howto-full-screen.docbook
-share/doc/HTML/sv/kplayer/howto-installation.docbook
-share/doc/HTML/sv/kplayer/howto-playlist.docbook
-share/doc/HTML/sv/kplayer/howto-properties.docbook
-share/doc/HTML/sv/kplayer/howto-settings.docbook
-share/doc/HTML/sv/kplayer/howto-slaves.docbook
-share/doc/HTML/sv/kplayer/howto-streams.docbook
-share/doc/HTML/sv/kplayer/howto-subtitles.docbook
-share/doc/HTML/sv/kplayer/howto-translation.docbook
-share/doc/HTML/sv/kplayer/howto-troubleshooting.docbook
-share/doc/HTML/sv/kplayer/howto.docbook
-share/doc/HTML/sv/kplayer/index.cache.bz2
-share/doc/HTML/sv/kplayer/index.docbook
-share/doc/HTML/sv/kplayer/introduction.docbook
-share/doc/HTML/sv/kplayer/properties-advanced.png
-share/doc/HTML/sv/kplayer/properties-audio.png
-share/doc/HTML/sv/kplayer/properties-general.png
-share/doc/HTML/sv/kplayer/properties-subtitles.png
-share/doc/HTML/sv/kplayer/properties-video.png
-share/doc/HTML/sv/kplayer/properties.docbook
-share/doc/HTML/sv/kplayer/settings-advanced.png
-share/doc/HTML/sv/kplayer/settings-audio.png
-share/doc/HTML/sv/kplayer/settings-brightness.png
-share/doc/HTML/sv/kplayer/settings-contrast.png
-share/doc/HTML/sv/kplayer/settings-controls.png
-share/doc/HTML/sv/kplayer/settings-general.png
-share/doc/HTML/sv/kplayer/settings-hue.png
-share/doc/HTML/sv/kplayer/settings-messages.png
-share/doc/HTML/sv/kplayer/settings-playlist.png
-share/doc/HTML/sv/kplayer/settings-progress.png
-share/doc/HTML/sv/kplayer/settings-saturation.png
-share/doc/HTML/sv/kplayer/settings-sliders.png
-share/doc/HTML/sv/kplayer/settings-subtitles.png
-share/doc/HTML/sv/kplayer/settings-video.png
-share/doc/HTML/sv/kplayer/settings-volume.png
-share/doc/HTML/sv/kplayer/settings.docbook
-share/doc/HTML/sv/kplayer/shortcuts-configure.png
-share/doc/HTML/sv/kplayer/shortcuts-define.png
-share/icons/hicolor/16x16/apps/kplayer.png
-share/icons/hicolor/22x22/apps/kplayer.png
-share/icons/hicolor/32x32/apps/kplayer.png
-share/icons/hicolor/48x48/apps/kplayer.png
-share/icons/hicolor/64x64/apps/kplayer.png
-share/icons/locolor/16x16/apps/kplayer.png
-share/icons/locolor/22x22/apps/kplayer.png
-share/icons/locolor/32x32/apps/kplayer.png
-share/locale/ca/LC_MESSAGES/kplayer.mo
-share/locale/cs/LC_MESSAGES/kplayer.mo
-share/locale/da/LC_MESSAGES/kplayer.mo
-share/locale/de/LC_MESSAGES/kplayer.mo
-share/locale/en_GB/LC_MESSAGES/kplayer.mo
-share/locale/es/LC_MESSAGES/kplayer.mo
-share/locale/fi/LC_MESSAGES/kplayer.mo
-share/locale/fr/LC_MESSAGES/kplayer.mo
-share/locale/hu/LC_MESSAGES/kplayer.mo
-share/locale/it/LC_MESSAGES/kplayer.mo
-share/locale/pl/LC_MESSAGES/kplayer.mo
-share/locale/pt/LC_MESSAGES/kplayer.mo
-share/locale/ru/LC_MESSAGES/kplayer.mo
-share/locale/sv/LC_MESSAGES/kplayer.mo
-share/locale/zh_CN/LC_MESSAGES/kplayer.mo
-share/services/kfile_kplayer.desktop
-share/services/kplayerpart.desktop
-@dirrmtry lib/kde3
-@dirrmtry share/services
-@dirrm share/doc/HTML/sv/kplayer/
-@dirrm share/doc/HTML/pt/kplayer/
-@dirrm share/doc/HTML/en/kplayer
-@dirrm share/doc/HTML/da/kplayer/
-@dirrm share/apps/kplayer/icons/hicolor/32x32/actions
-@dirrm share/apps/kplayer/icons/hicolor/32x32
-@dirrm share/apps/kplayer/icons/hicolor/22x22/actions
-@dirrm share/apps/kplayer/icons/hicolor/22x22
-@dirrm share/apps/kplayer/icons/hicolor/16x16/actions
-@dirrm share/apps/kplayer/icons/hicolor/16x16
-@dirrm share/apps/kplayer/icons/hicolor
-@dirrm share/apps/kplayer/icons
-@dirrm share/apps/kplayer