Bug#765578: closed by Benjamin Drung bdr...@debian.org (Bug#765578: fixed in vlc 2.2.0-1)

2015-04-06 Thread Gabriele Giacone
Control: reopen 765578
Control: found 765578 2.2.0-1

On Mon, Apr 6, 2015 at 11:51 PM, Debian Bug Tracking System
[ Mateusz Łukasik ]
[...]
* Disable build samba plugin on hurd for fix FTBFS. (Closes: #765578)

To fix FTBFS you also need to apply patches in debdiff.


 Dear Maintainer,

 {
  vlc (2.1.5-1)
* Fix FTBFS on hurd. (Closes: #742183)

  vlc (2.2.0~pre3-1)
* Remove hurd.patch, because this is a bug in Hurd and not in VLC.
 }

 attached debdiff fixes FTBFS on Hurd by reintroducing hurd.patch,
 replacing PATH_MAX and disabling smbclient plugin.

  * Fix FTBFS on Hurd.
+ Disable smbclient. Currently samba FTBFS due to lack of record file
  locking, see #748943.
+ Reintroduce hurd.patch, see #742183.
+ Add hurd-path_max.patch, replacing unsupported PATH_MAX.

 Thanks for considering,
 --
 G..e

-- 
G..e

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#765578: vlc: FTBFS on Hurd

2014-10-16 Thread Gabriele Giacone
Package: vlc
Version: 2.2.0~pre4-1
Severity: important
Tags: patch
User: debian-h...@lists.debian.org
Usertags: hurd

Dear Maintainer,

{
 vlc (2.1.5-1)
   * Fix FTBFS on hurd. (Closes: #742183)

 vlc (2.2.0~pre3-1)
   * Remove hurd.patch, because this is a bug in Hurd and not in VLC.
}

attached debdiff fixes FTBFS on Hurd by reintroducing hurd.patch,
replacing PATH_MAX and disabling smbclient plugin.

 * Fix FTBFS on Hurd.
   + Disable smbclient. Currently samba FTBFS due to lack of record file
 locking, see #748943.
   + Reintroduce hurd.patch, see #742183.
   + Add hurd-path_max.patch, replacing unsupported PATH_MAX.

Thanks for considering,
-- 
G..e
diff -Nru vlc-2.2.0~pre4/debian/changelog vlc-2.2.0~pre4/debian/changelog
--- vlc-2.2.0~pre4/debian/changelog 2014-10-06 22:26:42.0 +
+++ vlc-2.2.0~pre4/debian/changelog 2014-10-16 10:57:33.0 +
@@ -1,3 +1,13 @@
+vlc (2.2.0~pre4-2) UNRELEASED; urgency=medium
+
+  * Fix FTBFS on Hurd.
++ Disable smbclient. Currently samba FTBFS due to lack of record file
+  locking, see #748943.
++ Reintroduce hurd.patch, see #742183.
++ Add hurd-path_max.patch, replacing unsupported PATH_MAX.
+
+ -- Gabriele Giacone 1o5g4...@gmail.com  Tue, 14 Oct 2014 22:26:54 +
+
 vlc (2.2.0~pre4-1) unstable; urgency=medium
 
   * New upstream release.
diff -Nru vlc-2.2.0~pre4/debian/control vlc-2.2.0~pre4/debian/control
--- vlc-2.2.0~pre4/debian/control   2014-10-06 16:26:28.0 +
+++ vlc-2.2.0~pre4/debian/control   2014-10-15 00:40:16.0 +
@@ -80,7 +80,7 @@
libshine-dev (= 3.0.0),
libshout3-dev,
libsidplay2-dev,
-   libsmbclient-dev,
+   libsmbclient-dev [linux-any kfreebsd-any],
libspeex-dev (= 1.0.5),
libspeexdsp-dev (= 1.0.5),
libssh2-1-dev,
@@ -327,7 +327,7 @@
  podcasts, and multimedia streams from various network sources.
 
 Package: vlc-plugin-samba
-Architecture: any
+Architecture: linux-any kfreebsd-any
 Breaks: vlc-nox ( 2.2.0~pre2-2~)
 Replaces: vlc-nox ( 2.2.0~pre2-2~)
 Depends: vlc-nox (= ${binary:Version}), ${misc:Depends}, ${shlibs:Depends}
diff -Nru vlc-2.2.0~pre4/debian/patches/hurd-path_max.patch 
vlc-2.2.0~pre4/debian/patches/hurd-path_max.patch
--- vlc-2.2.0~pre4/debian/patches/hurd-path_max.patch   1970-01-01 
00:00:00.0 +
+++ vlc-2.2.0~pre4/debian/patches/hurd-path_max.patch   2014-10-16 
10:45:33.0 +
@@ -0,0 +1,17 @@
+Description: Replace PATH_MAX, unsupported on Hurd, with fixed size as in
+ src/posix/filesystem.c
+Author: Gabriele Giacone 1o5g4...@gmail.com
+--- a/modules/gui/skins2/src/theme_loader.cpp
 b/modules/gui/skins2/src/theme_loader.cpp
+@@ -509,7 +509,10 @@ int tar_extract_all( TAR *t, char *prefi
+ union tar_buffer buffer;
+ int   len, err, getheader = 1, remaining = 0;
+ FILE  *outfile = NULL;
+-char  fname[BLOCKSIZE + PATH_MAX];
++
++long path_max = pathconf (., _PC_PATH_MAX);
++size_t maxsize = (path_max == -1 || path_max  4096) ? 4096 : path_max;
++char  fname[BLOCKSIZE + maxsize];
+ 
+ while( 1 )
+ {
diff -Nru vlc-2.2.0~pre4/debian/patches/hurd.patch 
vlc-2.2.0~pre4/debian/patches/hurd.patch
--- vlc-2.2.0~pre4/debian/patches/hurd.patch1970-01-01 00:00:00.0 
+
+++ vlc-2.2.0~pre4/debian/patches/hurd.patch2014-10-16 10:45:42.0 
+
@@ -0,0 +1,40 @@
+Description: Fix FTBFS on GNU/Hurd
+ On Hurd, due to a missing implementation _POSIX_TIMERS = 0,
+ _POSIX_MONOTONIC_CLOCK [0] and _POSIX_CLOCK_SELECTION = 200809L. Such
+ combination is considered non POSIX-compliant by vlc upstream which
+ don't accept patches to workaround it. More info at [1,2].
+ .
+ [0] 
http://anonscm.debian.org/viewvc/pkg-glibc/glibc-package/trunk/debian/patches/hurd-i386/local-clock_gettime_MONOTONIC.diff?revision=5951view=markup
+ [1] https://lists.debian.org/debian-hurd/2014/02/msg00112.html
+ [2] https://lists.debian.org/debian-hurd/2014/02/msg00118.html
+Author: Gabriele Giacone 1o5g4...@gmail.com
+Forwarded: not-needed
+--- a/src/posix/thread.c
 b/src/posix/thread.c
+@@ -300,7 +300,7 @@ void vlc_cond_init (vlc_cond_t *p_condva
+ 
+ if (unlikely(pthread_condattr_init (attr)))
+ abort ();
+-#if (_POSIX_CLOCK_SELECTION  0)
++#if (_POSIX_TIMERS  0)  (_POSIX_CLOCK_SELECTION  0)
+ vlc_clock_setup ();
+ pthread_condattr_setclock (attr, vlc_clock_id);
+ #endif
+@@ -874,7 +874,7 @@ mtime_t mdate (void)
+  */
+ void mwait (mtime_t deadline)
+ {
+-#if (_POSIX_CLOCK_SELECTION  0)
++#if (_POSIX_TIMERS  0)  (_POSIX_CLOCK_SELECTION  0)
+ vlc_clock_setup ();
+ /* If the deadline is already elapsed, or within the clock precision,
+  * do not even bother the system timer. */
+@@ -901,7 +901,7 @@ void msleep (mtime_t delay)
+ {
+ struct timespec ts = mtime_to_ts (delay);
+ 
+-#if (_POSIX_CLOCK_SELECTION  0)
++#if (_POSIX_TIMERS  0)  (_POSIX_CLOCK_SELECTION  0

Bug#754366: gecko-mediaplayer: please consider npapi-sdk-dev B-D

2014-07-10 Thread Gabriele Giacone
Source: gecko-mediaplayer
Severity: wishlist
User: npapi-...@packages.debian.org
Usertags: b-d-switch

Dear maintainer,

your package Build-Depends on xulrunner-dev or iceweasel-dev.
If it only needs NPAPI headers, you might be interested in switching B-D
to npapi-sdk-dev, very small package providing them only, just landed to
unstable.

  https://packages.qa.debian.org/n/npapi-sdk.html

Otherwise sorry for the noise.

Thanks for considering.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#754369: npapi-vlc: please consider npapi-sdk-dev B-D

2014-07-10 Thread Gabriele Giacone
Source: npapi-vlc
Severity: wishlist
User: npapi-...@packages.debian.org
Usertags: b-d-switch

Dear maintainer,

your package Build-Depends on xulrunner-dev or iceweasel-dev.
If it only needs NPAPI headers, you might be interested in switching B-D
to npapi-sdk-dev, very small package providing them only, just landed to
unstable.

  https://packages.qa.debian.org/n/npapi-sdk.html

Otherwise sorry for the noise.

Thanks for considering.

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#754027: supercollider: please switch to emacs24

2014-07-06 Thread Gabriele Giacone
Source: supercollider
Severity: normal
Tags: patch
User: r...@debian.org
Usertags: emacs24
Control: block 753885 by -1

Dear maintainer,

we're hoping to remove emacs23 from unstable/testing in future:

  https://bugs.debian.org/753885

Please migrate your dependencies to emacs | emacsen (or whatever's
more appropriate for your package) as soon as possible.  The attached
patch may help.

Thanks for considering.

--
mass bug filer on behalf of Rob Browning, emacs maintainer
--- debian/control.orig	2014-07-06 13:33:26.617425714 +0200
+++ debian/control	2014-07-06 13:33:43.181627776 +0200
@@ -13,7 +13,7 @@
  debhelper,
  dh-linktree,
  libjs-mathjax,
- emacs23 | emacsen,
+ emacs | emacsen,
  libasound2-dev [linux-any],
  libavahi-client-dev,
  libcwiid-dev,
@@ -159,7 +159,7 @@
 Architecture: all
 Depends: ${misc:Depends},
   supercollider-language (= ${source:Version}),
-  emacs23 | emacsen
+  emacs | emacsen
 Recommends: w3m-el
 Description: SuperCollider mode for Emacs
  SuperCollider is an environment and programming language for real time
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Re: xulrunner-dev is gone

2014-06-12 Thread Gabriele Giacone
[ CC'ing Petter Reinholdtsen possible sponsor ]

On Thu, Jun 12, 2014 at 1:14 PM, Mike Hommey m...@glandium.org wrote:
 You should install a mozilla-plugin.pc pkg-config file too. (and
 conflict with xulrunner-dev as a consequence). That would allow packages
 requiring the headers to build against that package instead of
 xulrunner-dev without having to patch the source.

Done.

 That said, the source you took seems outdated, and there are a few other
 repos on github that have more recent headers. Also note the canonical
 upstream is https://code.google.com/p/npapi-sdk/source/list (and r20 is
 what the iceweasel source contains)

I'm considering as upstream both mozilla providing headers [1] and
gentoo folks providing autotools files [2].
[2] misses revisions from r21 to r23 I've cherry-picked from [1].
Initial release would be 0.27.3~r23-1

[1] https://code.google.com/p/npapi-sdk
[2] https://bitbucket.org/mgorny/npapi-sdk

Moved from github and pkg-mozilla I don't belong to to collab-maint
http://anonscm.debian.org/gitweb/?p=collab-maint/npapi-sdk.git
and reuploaded to mentors
http://mentors.debian.net/package/npapi-sdk

-- 
G..e

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Re: xulrunner-dev is gone

2014-06-11 Thread Gabriele Giacone
Hi,

On Wed, Jun 11, 2014 at 4:47 AM, Mike Hommey m...@glandium.org wrote:
 I just uploaded iceweasel 30 to unstable, which is the first version not
 to provide xulrunner-dev. Instead, there is an iceweasel-dev package,
 and it most certainly has things missing. Read: I *know* there are
 things missing. I just don't know what specifically reverse build deps
 would need.

 This is where I need your assistance: could you try building your
 packages against iceweasel-dev and see what they are bugging about?
 Please file bugs against iceweasel-dev for anything missing you'd
 encounter.

At the moment gnash expects npapi.h under /usr/include/xulrunner*
dirs. Fixable by making it look for it also under
/usr/include/iceweasel*. Will ubuntu move headers to /u/i/firefox*?
How about linking /u/i/xulrunner - /u/i/iceweasel-N instead?

BTW would packaging npapi-sdk still be a good alternative?

  https://bugs.debian.org/642168

-- 
G..e

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Re: xulrunner-dev is gone

2014-06-11 Thread Gabriele Giacone
On Wed, Jun 11, 2014 at 11:41 AM, Mike Hommey m...@glandium.org wrote:
 AFAICT, Ubuntu has a firefox-dev package that only contains NPAPI
 headers in /usr/include/firefox. I don't think that would be enough for
 all rdeps we have in Debian. I think some are not NPAPI plugins.

 Anyways, I guess most rdeps are just using the mozilla-*.pc files. I'll
 at least add the mozilla-plugin.pc one in next upload (which I'll do
 tomorrow morning, after I confirm only armel is broken). That should
 help most.

 How about linking /u/i/xulrunner - /u/i/iceweasel-N instead?

Thanks, way cleaner.

 BTW would packaging npapi-sdk still be a good alternative?

   https://bugs.debian.org/642168

 Definitely, yes.

I've just uploaded it to mentors. Anyone interested in reviewing/sponsoring it?

http://mentors.debian.net/package/npapi-sdk

Packaging at https://github.com/gg0/npapi-sdk

Thanks,
-- 
G..e

___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers


Bug#742183: vlc: FTBFS on Hurd

2014-03-20 Thread Gabriele Giacone
Package: vlc
Version: 2.1.2-2+b2
Severity: important
Tags: patch
User: debian-h...@lists.debian.org
Usertags: hurd

On Hurd, due to a missing implementation _POSIX_TIMERS = 0,
_POSIX_MONOTONIC_CLOCK [0] and _POSIX_CLOCK_SELECTION = 200809L. Such
combination is considered non POSIX-compliant by vlc upstream which
don't accept patches to workaround it. More info at [1,2].

Attached debdiff also disables oss, cdda and vcd on hurd-i386.

[0] 
http://anonscm.debian.org/viewvc/pkg-glibc/glibc-package/trunk/debian/patches/hurd-i386/local-clock_gettime_MONOTONIC.diff?revision=59
51view=markup
[1] https://lists.debian.org/debian-hurd/2014/02/msg00112.html
[2] https://lists.debian.org/debian-hurd/2014/02/msg00118.html

Thanks for considering.
diff -Nru vlc-2.1.2/debian/patches/hurd.patch 
vlc-2.1.2/debian/patches/hurd.patch
--- vlc-2.1.2/debian/patches/hurd.patch 1970-01-01 01:00:00.0 +0100
+++ vlc-2.1.2/debian/patches/hurd.patch 2014-02-16 18:58:36.0 +0100
@@ -0,0 +1,40 @@
+Description: Fix FTBFS on GNU/Hurd
+ On Hurd, due to a missing implementation _POSIX_TIMERS = 0,
+ _POSIX_MONOTONIC_CLOCK [0] and _POSIX_CLOCK_SELECTION = 200809L. Such
+ combination is considered non POSIX-compliant by vlc upstream which
+ don't accept patches to workaround it. More info at [1,2].
+ .
+ [0] 
http://anonscm.debian.org/viewvc/pkg-glibc/glibc-package/trunk/debian/patches/hurd-i386/local-clock_gettime_MONOTONIC.diff?revision=5951view=markup
+ [1] https://lists.debian.org/debian-hurd/2014/02/msg00112.html
+ [2] https://lists.debian.org/debian-hurd/2014/02/msg00118.html
+Author: Gabriele Giacone 1o5g4...@gmail.com
+Forwarded: not-needed
+--- a/src/posix/thread.c
 b/src/posix/thread.c
+@@ -327,7 +327,7 @@ void vlc_cond_init (vlc_cond_t *p_condva
+ 
+ if (unlikely(pthread_condattr_init (attr)))
+ abort ();
+-#if (_POSIX_CLOCK_SELECTION  0)
++#if (_POSIX_TIMERS  0)  (_POSIX_CLOCK_SELECTION  0)
+ vlc_clock_setup ();
+ pthread_condattr_setclock (attr, vlc_clock_id);
+ #endif
+@@ -929,7 +929,7 @@ mtime_t mdate (void)
+  */
+ void mwait (mtime_t deadline)
+ {
+-#if (_POSIX_CLOCK_SELECTION  0)
++#if (_POSIX_TIMERS  0)  (_POSIX_CLOCK_SELECTION  0)
+ vlc_clock_setup ();
+ /* If the deadline is already elapsed, or within the clock precision,
+  * do not even bother the system timer. */
+@@ -956,7 +956,7 @@ void msleep (mtime_t delay)
+ {
+ struct timespec ts = mtime_to_ts (delay);
+ 
+-#if (_POSIX_CLOCK_SELECTION  0)
++#if (_POSIX_TIMERS  0)  (_POSIX_CLOCK_SELECTION  0)
+ vlc_clock_setup ();
+ while (clock_nanosleep (vlc_clock_id, 0, ts, ts) == EINTR);
+ 
diff -Nru vlc-2.1.2/debian/patches/series vlc-2.1.2/debian/patches/series
--- vlc-2.1.2/debian/patches/series 2013-12-21 22:52:19.0 +0100
+++ vlc-2.1.2/debian/patches/series 2014-02-21 22:19:16.0 +0100
@@ -1 +1,2 @@
 pnap-grammar.patch
+hurd.patch
diff -Nru vlc-2.1.2/debian/rules vlc-2.1.2/debian/rules
--- vlc-2.1.2/debian/rules  2013-12-21 22:52:19.0 +0100
+++ vlc-2.1.2/debian/rules  2014-02-21 22:13:57.0 +0100
@@ -78,7 +78,6 @@
--enable-notify \
--enable-ogg \
--enable-opus \
-   --enable-oss \
--enable-pulse \
--enable-qt \
--enable-realrtsp \
@@ -95,7 +94,6 @@
--enable-theora \
--enable-twolame \
--enable-upnp \
-   --enable-vcd \
--enable-vcdx \
--enable-vorbis \
--enable-x264 \
@@ -186,6 +184,23 @@
 removeplugins += libv4l2
 endif
 
+# Hurd specific flags
+ifeq (,$(filter-out hurd,$(DEB_HOST_ARCH_OS)))
+confflags += \
+   --disable-oss \
+   --disable-vcd
+removeplugins += \
+   oss \
+   cdda \
+   vcd \
+   $(NULL)
+else
+confflags += \
+   --enable-oss \
+   --enable-vcd \
+   $(NULL)
+endif
+
 # Linux amd64 and i386 specific flags
 ifeq (,$(filter-out amd64 i386,$(DEB_HOST_ARCH)))
 confflags += --enable-crystalhd
___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers

Bug#653516: vlc segfaults by trying to open a directory if playlist is visible

2011-12-28 Thread Gabriele Giacone
Package: vlc
Version: 1.1.12-3
Severity: normal

To reproduce:

1- start vlc
2- if playlist is not visible, menu View - Playlist or CTRL+L
3- close vlc
4- from nautilus, right-click on the directory which contains multimedia files
   and select Open with - VLC (same behavior by running $ vlc 
multimedia_dir_full_path BTW)
5- vlc crashes on DVDOpen() (libdvdread.so.4)

It won't happen, if playlist is not visible:

2- if playlist is visible, close it


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'proposed-updates'), (500, 'unstable'), 
(500, 'stable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 3.1.0-1-amd64 (SMP w/3 CPU cores)
Locale: LANG=en_US.utf8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages vlc depends on:
ii  libaa11.4p5-39
ii  libavcodec53  4:0.7.2-1+b1
ii  libavutil51   4:0.7.2-1+b1
ii  libc6 2.13-23
ii  libfreetype6  2.4.8-1
ii  libfribidi0   0.19.2-1
ii  libgcc1   1:4.6.2-9
ii  libgl1-mesa-glx [libgl1]  7.11.2-1
ii  libice6   2:1.0.7-2
ii  libqtcore44:4.7.3-5
ii  libqtgui4 4:4.7.3-5
ii  libsdl-image1.2   1.2.10-2.1+b1
ii  libsdl1.2debian   1.2.14-6.4
ii  libsm62:1.2.0-2
ii  libstdc++64.6.2-9
ii  libtar0   1.2.11-8
ii  libva-x11-1   1.0.14-1
ii  libva11.0.14-1
ii  libvlccore4   1.1.12-3
ii  libx11-6  2:1.4.4-4
ii  libx11-xcb1   2:1.4.4-4
ii  libxcb-keysyms1   0.3.8-1
ii  libxcb-randr0 1.7-4
ii  libxcb-shm0   1.7-4
ii  libxcb-xv01.7-4
ii  libxcb1   1.7-4
ii  libxext6  2:1.3.0-3
ii  libxpm4   1:3.5.9-4
ii  ttf-freefont  20100919-1
ii  vlc-nox   1.1.12-3
ii  zlib1g1:1.2.3.4.dfsg-3

Versions of packages vlc recommends:
ii  vlc-plugin-notify  1.1.12-3
ii  vlc-plugin-pulse   1.1.12-3
ii  xdg-utils  1.1.0~rc1+git20111210-3

Versions of packages vlc suggests:
pn  mozilla-plugin-vlc  none
pn  videolan-docnone

Versions of packages vlc-nox depends on:
ii  liba52-0.7.4   0.7.4-16
ii  libasound2 1.0.24.1-4
ii  libass40.10.0-2
ii  libavahi-client3   0.6.30-5
ii  libavahi-common3   0.6.30-5
ii  libavc1394-0   0.5.3-1+b2
ii  libavcodec53   4:0.7.2-1+b1
ii  libavformat53  4:0.7.2-1+b1
ii  libavutil514:0.7.2-1+b1
ii  libc6  2.13-23
ii  libcaca0   0.99.beta17-2.1
ii  libcddb2   1.3.2-3
ii  libcdio10  0.81-4.1
ii  libdbus-1-31.4.16-1
ii  libdc1394-22   2.1.3-4
ii  libdca00.0.5-5
ii  libdirac-decoder0  1.0.2-4
ii  libdirac-encoder0  1.0.2-4
ii  libdvbpsi7 0.2.2-1
ii  libdvdnav4 4.2.0-1
ii  libdvdread44.2.0-1
ii  libebml3   1.2.2-1
ii  libfaad2   2.7-7
ii  libflac8   1.2.1-6
ii  libfontconfig1 2.8.0-3
ii  libfreetype6   2.4.8-1
ii  libfribidi00.19.2-1
ii  libgcc11:4.6.2-9
ii  libgcrypt111.5.0-3
ii  libgnutls262.12.14-5
ii  libgpg-error0  1.10-1
ii  libiso9660-7   0.81-4.1
ii  libkate1   0.4.1-1
ii  liblircclient0 0.9.0~pre1-1
ii  liblua5.1-05.1.4-10
ii  libmad00.15.1b-6
ii  libmatroska5   1.3.0-1
ii  libmodplug11:0.8.8.4-1
ii  libmpcdec6 2:0.1~r459-1
ii  libmpeg2-4 0.4.1-3
ii  libmtp91.1.1-1
ii  libncursesw5   5.9-4
ii  libogg01.2.2~dfsg-1
ii  libpng12-0 1.2.46-3
ii  libpostproc52  4:0.7.2-1+b1
ii  libproxy0  0.3.1-4+b1
ii  libraw1394-11  2.0.7-1
ii  libschroedinger-1.0-0  1.0.10-2.1
ii  libshout3  2.2.2-5+b1
ii  libsmbclient   2:3.6.1-3
ii  libspeex1  1.2~rc1-3
ii  libstdc++6 4.6.2-9
ii  libswscale24:0.7.2-1+b1
ii  libtag1c2a 1.7-1
ii  libtheora0 1.1.1+dfsg.1-3
ii  libtinfo5  5.9-4
ii  libtwolame00.3.13-1
ii  libudev0   175-3
ii  libupnp3   1:1.6.6-5.1
ii  libusb-0.1-4   2:0.1.12-19
ii  libv4l-0   0.8.5-6
ii  libvcdinfo00.7.23-4.1
ii  libvlc51.1.12-3
ii  libvlccore41.1.12-3
ii  libvorbis0a1.3.2-1
ii  libvorbisenc2  1.3.2-1
ii  libx264-1182:0.118.2092+git6eac7c3-1
ii  libxml22.7.8.dfsg-5
ii  zlib1g 1:1.2.3.4.dfsg-3

Versions of packages libvlc5 depends on:
ii  libc62.13-23
ii  libvlccore4  

Bug#638453: mozilla-plugin-vlc: Please remove libvlcplugin.so from all directories but /usr/lib/mozilla/plugins

2011-08-19 Thread Gabriele Giacone
Package: mozilla-plugin-vlc
Severity: normal

Please remove libvlcplugin.so from all directories but /usr/lib/mozilla/plugins.
Recent mozilla code base versions look there only.

mozilla-plugin-vlc: /usr/lib/mozilla/plugins/libvlcplugin.so

To be removed:
mozilla-plugin-vlc: /usr/lib/xulrunner-addons/plugins/libvlcplugin.so




___
pkg-multimedia-maintainers mailing list
pkg-multimedia-maintainers@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-multimedia-maintainers