summaryrefslogtreecommitdiff
path: root/multimedia
diff options
context:
space:
mode:
authorMichael Nottebrock <lofi@FreeBSD.org>2006-02-01 09:13:29 +0000
committerMichael Nottebrock <lofi@FreeBSD.org>2006-02-01 09:13:29 +0000
commit79fc2a8db2d71f8c383c4457b4d8795116a4d927 (patch)
treeb56d5720d83221f3aedc320944c71e3cbfeca62f /multimedia
parentUpdate to 0.684 (diff)
Update to KDE 3.5.1.
Notes
Notes: svn path=/head/; revision=154984
Diffstat (limited to 'multimedia')
-rw-r--r--multimedia/kdemultimedia3/Makefile1
-rw-r--r--multimedia/kdemultimedia3/distinfo6
-rw-r--r--multimedia/kdemultimedia3/files/patch-post-3.5.0-audiocd118
-rw-r--r--multimedia/kdemultimedia3/pkg-plist1
-rw-r--r--multimedia/kdemultimedia4/Makefile1
-rw-r--r--multimedia/kdemultimedia4/distinfo6
-rw-r--r--multimedia/kdemultimedia4/files/patch-post-3.5.0-audiocd118
-rw-r--r--multimedia/kdemultimedia4/pkg-plist1
-rw-r--r--multimedia/noatun-plugins/distinfo6
-rw-r--r--multimedia/noatun-plugins/pkg-plist2
-rw-r--r--multimedia/xine_artsplugin/distinfo6
11 files changed, 17 insertions, 249 deletions
diff --git a/multimedia/kdemultimedia3/Makefile b/multimedia/kdemultimedia3/Makefile
index 5a4f6326e705..34630309aeec 100644
--- a/multimedia/kdemultimedia3/Makefile
+++ b/multimedia/kdemultimedia3/Makefile
@@ -4,6 +4,7 @@
# Whom: Alan Eldridge <alane@freebsd.org>
#
# $FreeBSD$
+#
PORTNAME= kdemultimedia
PORTVERSION= ${KDE_VERSION}
diff --git a/multimedia/kdemultimedia3/distinfo b/multimedia/kdemultimedia3/distinfo
index 121084bfd270..adec207ede25 100644
--- a/multimedia/kdemultimedia3/distinfo
+++ b/multimedia/kdemultimedia3/distinfo
@@ -1,3 +1,3 @@
-MD5 (KDE/kdemultimedia-3.5.0.tar.bz2) = dd0ba9ccb2f522508c6543cd24e54c98
-SHA256 (KDE/kdemultimedia-3.5.0.tar.bz2) = 85112c1e36ffcbc95266b0dd7d6b78e003607580de522ae49ef527c35e2ae35a
-SIZE (KDE/kdemultimedia-3.5.0.tar.bz2) = 5519386
+MD5 (KDE/kdemultimedia-3.5.1.tar.bz2) = 595f637c637987a92f6dac9d9cd6667d
+SHA256 (KDE/kdemultimedia-3.5.1.tar.bz2) = 7fc247790ca2b723823878a84714f12187c42b10245e612ddfbf75a435eeb3e2
+SIZE (KDE/kdemultimedia-3.5.1.tar.bz2) = 5502185
diff --git a/multimedia/kdemultimedia3/files/patch-post-3.5.0-audiocd b/multimedia/kdemultimedia3/files/patch-post-3.5.0-audiocd
deleted file mode 100644
index b1989c1d697e..000000000000
--- a/multimedia/kdemultimedia3/files/patch-post-3.5.0-audiocd
+++ /dev/null
@@ -1,118 +0,0 @@
---- kioslave/audiocd/audiocd.cpp 2005/11/09 09:19:18 479118
-+++ kioslave/audiocd/audiocd.cpp 2006/01/04 13:15:18 494259
-@@ -219,7 +219,40 @@
- #if defined(Q_OS_LINUX)
- cd.setDevice(drive->cdda_device_name, 50, false);
- #elif defined(Q_OS_FREEBSD)
-- cd.setDevice(drive->dev->device_path);
-+ // FreeBSD's cdparanoia as of january 5th 2006 has rather broken
-+ // support for non-SCSI devices. Although it finds ATA cdroms just
-+ // fine, there is no straightforward way to discover the device
-+ // name associated with the device, which throws the rest of audiocd
-+ // for a loop.
-+ //
-+ if ( !(drive->dev) || (COOKED_IOCTL == drive->interface) )
-+ {
-+ // For ATAPI devices, we have no real choice. Use the
-+ // user selected value, even if there is none.
-+ //
-+ kdWarning(7117) << "Found an ATAPI device, assuming it is the one specified by the user." << endl;
-+ cd.setDevice( d->device );
-+ }
-+ else
-+ {
-+ kdDebug(7117) << "Found a SCSI or ATAPICAM device." << endl;
-+ if ( strlen(drive->dev->device_path) > 0 )
-+ {
-+ cd.setDevice( drive->dev->device_path );
-+ }
-+ else
-+ {
-+ // But the device_path can be empty under some
-+ // circumstances, so build a representation from
-+ // the unit number and SCSI device name.
-+ //
-+ QString devname = QString::fromLatin1( "/dev/%1%2" )
-+ .arg( drive->dev->given_dev_name )
-+ .arg( drive->dev->given_unit_number ) ;
-+ kdDebug(7117) << " Using derived name " << devname << endl;
-+ cd.setDevice( devname );
-+ }
-+ }
- #endif
-
- if (cd.discId() != d->discid && cd.discId() != cd.missingDisc){
-
-
---- kioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp 2005/12/17 19:47:34 489232
-+++ kioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp 2006/01/05 22:39:27 494647
-@@ -64,7 +64,7 @@
- }
-
- //CDDA Options
-- connect(cd_autosearch_check,SIGNAL(clicked()),this,SLOT(slotConfigChanged()));
-+ connect(cd_specify_device,SIGNAL(clicked()),this,SLOT(slotConfigChanged()));
- connect(ec_enable_check,SIGNAL(clicked()),this,SLOT(slotEcEnable()));
- connect(ec_skip_check,SIGNAL(clicked()),SLOT(slotConfigChanged()));
- connect(cd_device_string,SIGNAL(textChanged(const QString &)),SLOT(slotConfigChanged()));
-@@ -99,7 +99,7 @@
- }
-
- void KAudiocdModule::defaults() {
-- cd_autosearch_check->setChecked(true);
-+ cd_specify_device->setChecked(false);
- cd_device_string->setText("/dev/cdrom");
-
- ec_enable_check->setChecked(true);
-@@ -124,7 +124,11 @@
- {
- KConfigGroupSaver saver(config, "CDDA");
-
-- config->writeEntry("autosearch",cd_autosearch_check->isChecked());
-+ // autosearch is the name of the config option, which has the
-+ // reverse sense of the current text of the configuration option,
-+ // which is specify the device. Therefore, invert the value on write.
-+ //
-+ config->writeEntry("autosearch", !(cd_specify_device->isChecked()) );
- config->writeEntry("device",cd_device_string->text());
- config->writeEntry("disable_paranoia",!(ec_enable_check->isChecked()));
- config->writeEntry("never_skip",!(ec_skip_check->isChecked()));
-@@ -156,7 +160,8 @@
- {
- KConfigGroupSaver saver(config, "CDDA");
-
-- cd_autosearch_check->setChecked(config->readBoolEntry("autosearch",true));
-+ // Specify <=> not autosearch, as explained above in ::save()
-+ cd_specify_device->setChecked( !(config->readBoolEntry("autosearch",true)) );
- cd_device_string->setText(config->readEntry("device","/dev/cdrom"));
- ec_enable_check->setChecked(!(config->readBoolEntry("disable_paranoia",false)));
- ec_skip_check->setChecked(!(config->readBoolEntry("never_skip",true)));
-
---- kioslave/audiocd/kcmaudiocd/audiocdconfig.ui 2005/10/02 06:23:59 466277
-+++ kioslave/audiocd/kcmaudiocd/audiocdconfig.ui 2006/01/05 22:39:27 494647
-@@ -149,13 +149,13 @@
- </widget>
- <widget class="QCheckBox" row="0" column="0" rowspan="1" colspan="2">
- <property name="name">
-- <cstring>cd_autosearch_check</cstring>
-+ <cstring>cd_specify_device</cstring>
- </property>
- <property name="text">
- <string>&amp;Specify CD device:</string>
- </property>
- <property name="whatsThis" stdset="0">
-- <string>Uncheck this if you want to specify a CD device different from the one autoprobed</string>
-+ <string>Check this to specify a CD device different from the one which is detected automatically</string>
- </property>
- </widget>
- <widget class="QCheckBox" row="1" column="0" rowspan="1" colspan="3">
-@@ -597,7 +597,7 @@
- <slot>setEnabled(bool)</slot>
- </connection>
- <connection>
-- <sender>cd_autosearch_check</sender>
-+ <sender>cd_specify_device</sender>
- <signal>toggled(bool)</signal>
- <receiver>cd_device_string</receiver>
- <slot>setEnabled(bool)</slot>
-
diff --git a/multimedia/kdemultimedia3/pkg-plist b/multimedia/kdemultimedia3/pkg-plist
index 5ae631783579..d9086d9c804a 100644
--- a/multimedia/kdemultimedia3/pkg-plist
+++ b/multimedia/kdemultimedia3/pkg-plist
@@ -927,6 +927,7 @@ share/doc/HTML/en/kscd/kscd3.png
share/doc/HTML/en/kscd/kscd5.png
share/doc/HTML/en/kscd/kscd6.png
share/doc/HTML/en/kscd/kscd9.png
+share/doc/HTML/en/kscd/kscdannounc.png
share/doc/HTML/en/noatun/common
share/doc/HTML/en/noatun/index.cache.bz2
share/doc/HTML/en/noatun/index.docbook
diff --git a/multimedia/kdemultimedia4/Makefile b/multimedia/kdemultimedia4/Makefile
index 5a4f6326e705..34630309aeec 100644
--- a/multimedia/kdemultimedia4/Makefile
+++ b/multimedia/kdemultimedia4/Makefile
@@ -4,6 +4,7 @@
# Whom: Alan Eldridge <alane@freebsd.org>
#
# $FreeBSD$
+#
PORTNAME= kdemultimedia
PORTVERSION= ${KDE_VERSION}
diff --git a/multimedia/kdemultimedia4/distinfo b/multimedia/kdemultimedia4/distinfo
index 121084bfd270..adec207ede25 100644
--- a/multimedia/kdemultimedia4/distinfo
+++ b/multimedia/kdemultimedia4/distinfo
@@ -1,3 +1,3 @@
-MD5 (KDE/kdemultimedia-3.5.0.tar.bz2) = dd0ba9ccb2f522508c6543cd24e54c98
-SHA256 (KDE/kdemultimedia-3.5.0.tar.bz2) = 85112c1e36ffcbc95266b0dd7d6b78e003607580de522ae49ef527c35e2ae35a
-SIZE (KDE/kdemultimedia-3.5.0.tar.bz2) = 5519386
+MD5 (KDE/kdemultimedia-3.5.1.tar.bz2) = 595f637c637987a92f6dac9d9cd6667d
+SHA256 (KDE/kdemultimedia-3.5.1.tar.bz2) = 7fc247790ca2b723823878a84714f12187c42b10245e612ddfbf75a435eeb3e2
+SIZE (KDE/kdemultimedia-3.5.1.tar.bz2) = 5502185
diff --git a/multimedia/kdemultimedia4/files/patch-post-3.5.0-audiocd b/multimedia/kdemultimedia4/files/patch-post-3.5.0-audiocd
deleted file mode 100644
index b1989c1d697e..000000000000
--- a/multimedia/kdemultimedia4/files/patch-post-3.5.0-audiocd
+++ /dev/null
@@ -1,118 +0,0 @@
---- kioslave/audiocd/audiocd.cpp 2005/11/09 09:19:18 479118
-+++ kioslave/audiocd/audiocd.cpp 2006/01/04 13:15:18 494259
-@@ -219,7 +219,40 @@
- #if defined(Q_OS_LINUX)
- cd.setDevice(drive->cdda_device_name, 50, false);
- #elif defined(Q_OS_FREEBSD)
-- cd.setDevice(drive->dev->device_path);
-+ // FreeBSD's cdparanoia as of january 5th 2006 has rather broken
-+ // support for non-SCSI devices. Although it finds ATA cdroms just
-+ // fine, there is no straightforward way to discover the device
-+ // name associated with the device, which throws the rest of audiocd
-+ // for a loop.
-+ //
-+ if ( !(drive->dev) || (COOKED_IOCTL == drive->interface) )
-+ {
-+ // For ATAPI devices, we have no real choice. Use the
-+ // user selected value, even if there is none.
-+ //
-+ kdWarning(7117) << "Found an ATAPI device, assuming it is the one specified by the user." << endl;
-+ cd.setDevice( d->device );
-+ }
-+ else
-+ {
-+ kdDebug(7117) << "Found a SCSI or ATAPICAM device." << endl;
-+ if ( strlen(drive->dev->device_path) > 0 )
-+ {
-+ cd.setDevice( drive->dev->device_path );
-+ }
-+ else
-+ {
-+ // But the device_path can be empty under some
-+ // circumstances, so build a representation from
-+ // the unit number and SCSI device name.
-+ //
-+ QString devname = QString::fromLatin1( "/dev/%1%2" )
-+ .arg( drive->dev->given_dev_name )
-+ .arg( drive->dev->given_unit_number ) ;
-+ kdDebug(7117) << " Using derived name " << devname << endl;
-+ cd.setDevice( devname );
-+ }
-+ }
- #endif
-
- if (cd.discId() != d->discid && cd.discId() != cd.missingDisc){
-
-
---- kioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp 2005/12/17 19:47:34 489232
-+++ kioslave/audiocd/kcmaudiocd/kcmaudiocd.cpp 2006/01/05 22:39:27 494647
-@@ -64,7 +64,7 @@
- }
-
- //CDDA Options
-- connect(cd_autosearch_check,SIGNAL(clicked()),this,SLOT(slotConfigChanged()));
-+ connect(cd_specify_device,SIGNAL(clicked()),this,SLOT(slotConfigChanged()));
- connect(ec_enable_check,SIGNAL(clicked()),this,SLOT(slotEcEnable()));
- connect(ec_skip_check,SIGNAL(clicked()),SLOT(slotConfigChanged()));
- connect(cd_device_string,SIGNAL(textChanged(const QString &)),SLOT(slotConfigChanged()));
-@@ -99,7 +99,7 @@
- }
-
- void KAudiocdModule::defaults() {
-- cd_autosearch_check->setChecked(true);
-+ cd_specify_device->setChecked(false);
- cd_device_string->setText("/dev/cdrom");
-
- ec_enable_check->setChecked(true);
-@@ -124,7 +124,11 @@
- {
- KConfigGroupSaver saver(config, "CDDA");
-
-- config->writeEntry("autosearch",cd_autosearch_check->isChecked());
-+ // autosearch is the name of the config option, which has the
-+ // reverse sense of the current text of the configuration option,
-+ // which is specify the device. Therefore, invert the value on write.
-+ //
-+ config->writeEntry("autosearch", !(cd_specify_device->isChecked()) );
- config->writeEntry("device",cd_device_string->text());
- config->writeEntry("disable_paranoia",!(ec_enable_check->isChecked()));
- config->writeEntry("never_skip",!(ec_skip_check->isChecked()));
-@@ -156,7 +160,8 @@
- {
- KConfigGroupSaver saver(config, "CDDA");
-
-- cd_autosearch_check->setChecked(config->readBoolEntry("autosearch",true));
-+ // Specify <=> not autosearch, as explained above in ::save()
-+ cd_specify_device->setChecked( !(config->readBoolEntry("autosearch",true)) );
- cd_device_string->setText(config->readEntry("device","/dev/cdrom"));
- ec_enable_check->setChecked(!(config->readBoolEntry("disable_paranoia",false)));
- ec_skip_check->setChecked(!(config->readBoolEntry("never_skip",true)));
-
---- kioslave/audiocd/kcmaudiocd/audiocdconfig.ui 2005/10/02 06:23:59 466277
-+++ kioslave/audiocd/kcmaudiocd/audiocdconfig.ui 2006/01/05 22:39:27 494647
-@@ -149,13 +149,13 @@
- </widget>
- <widget class="QCheckBox" row="0" column="0" rowspan="1" colspan="2">
- <property name="name">
-- <cstring>cd_autosearch_check</cstring>
-+ <cstring>cd_specify_device</cstring>
- </property>
- <property name="text">
- <string>&amp;Specify CD device:</string>
- </property>
- <property name="whatsThis" stdset="0">
-- <string>Uncheck this if you want to specify a CD device different from the one autoprobed</string>
-+ <string>Check this to specify a CD device different from the one which is detected automatically</string>
- </property>
- </widget>
- <widget class="QCheckBox" row="1" column="0" rowspan="1" colspan="3">
-@@ -597,7 +597,7 @@
- <slot>setEnabled(bool)</slot>
- </connection>
- <connection>
-- <sender>cd_autosearch_check</sender>
-+ <sender>cd_specify_device</sender>
- <signal>toggled(bool)</signal>
- <receiver>cd_device_string</receiver>
- <slot>setEnabled(bool)</slot>
-
diff --git a/multimedia/kdemultimedia4/pkg-plist b/multimedia/kdemultimedia4/pkg-plist
index 5ae631783579..d9086d9c804a 100644
--- a/multimedia/kdemultimedia4/pkg-plist
+++ b/multimedia/kdemultimedia4/pkg-plist
@@ -927,6 +927,7 @@ share/doc/HTML/en/kscd/kscd3.png
share/doc/HTML/en/kscd/kscd5.png
share/doc/HTML/en/kscd/kscd6.png
share/doc/HTML/en/kscd/kscd9.png
+share/doc/HTML/en/kscd/kscdannounc.png
share/doc/HTML/en/noatun/common
share/doc/HTML/en/noatun/index.cache.bz2
share/doc/HTML/en/noatun/index.docbook
diff --git a/multimedia/noatun-plugins/distinfo b/multimedia/noatun-plugins/distinfo
index 58b586a1d507..f95e463151d2 100644
--- a/multimedia/noatun-plugins/distinfo
+++ b/multimedia/noatun-plugins/distinfo
@@ -1,3 +1,3 @@
-MD5 (KDE/kdeaddons-3.5.0.tar.bz2) = a61bcb10580208c3abb8c47aed198597
-SHA256 (KDE/kdeaddons-3.5.0.tar.bz2) = 2b232ec558937b04191f08aa937d91c5f0d154e1ddebcc19b5630f9adf948e08
-SIZE (KDE/kdeaddons-3.5.0.tar.bz2) = 1618786
+MD5 (KDE/kdeaddons-3.5.1.tar.bz2) = cbd2a6f65ae7338736d93b72bfdf5ae3
+SHA256 (KDE/kdeaddons-3.5.1.tar.bz2) = ba4575e78f7d044214358aee1b9fe01c86bb7fc4309d36d3d5be8a81bb7c21e4
+SIZE (KDE/kdeaddons-3.5.1.tar.bz2) = 1618807
diff --git a/multimedia/noatun-plugins/pkg-plist b/multimedia/noatun-plugins/pkg-plist
index 3e519b5fa2c4..045379604eae 100644
--- a/multimedia/noatun-plugins/pkg-plist
+++ b/multimedia/noatun-plugins/pkg-plist
@@ -29,7 +29,7 @@ lib/kde3/noatunwakeup.la
lib/kde3/noatunwakeup.so
lib/kde3/noatunwavecapture.la
lib/kde3/noatunwavecapture.so
-share/applications/kdeaddons-noatun-plugins-3.5.0
+share/applications/kdeaddons-noatun-plugins-3.5.1
share/apps/noatun/alsaplayerui.plugin
share/apps/noatun/blurscope.plugin
share/apps/noatun/charlatanui.plugin
diff --git a/multimedia/xine_artsplugin/distinfo b/multimedia/xine_artsplugin/distinfo
index 121084bfd270..adec207ede25 100644
--- a/multimedia/xine_artsplugin/distinfo
+++ b/multimedia/xine_artsplugin/distinfo
@@ -1,3 +1,3 @@
-MD5 (KDE/kdemultimedia-3.5.0.tar.bz2) = dd0ba9ccb2f522508c6543cd24e54c98
-SHA256 (KDE/kdemultimedia-3.5.0.tar.bz2) = 85112c1e36ffcbc95266b0dd7d6b78e003607580de522ae49ef527c35e2ae35a
-SIZE (KDE/kdemultimedia-3.5.0.tar.bz2) = 5519386
+MD5 (KDE/kdemultimedia-3.5.1.tar.bz2) = 595f637c637987a92f6dac9d9cd6667d
+SHA256 (KDE/kdemultimedia-3.5.1.tar.bz2) = 7fc247790ca2b723823878a84714f12187c42b10245e612ddfbf75a435eeb3e2
+SIZE (KDE/kdemultimedia-3.5.1.tar.bz2) = 5502185